void-packages/srcpkgs/plocate/template
Đoàn Trần Công Danh 49cb564d14 srcpkgs/p*: convert patches to -Np1
* par is kept at -Np0

```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.-][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.-][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

39 lines
1.1 KiB
Bash

# Template file for 'plocate'
pkgname=plocate
version=1.1.8
revision=1
build_style=meson
configure_args="
-Dupdatedb_progname=pupdatedb
-Dlocategroup=_plocate"
hostmakedepends="pkg-config"
makedepends="libzstd-devel"
short_desc="Much faster locate based on posting lists"
maintainer="Duncaen <duncaen@voidlinux.org>"
license="GPL-2.0-or-later"
homepage="https://plocate.sesse.net/"
changelog="https://git.sesse.net/?p=plocate;a=blob_plain;f=NEWS;hb=HEAD"
distfiles="https://plocate.sesse.net/download/plocate-${version}.tar.gz"
checksum=13002f065c28a93623a03d44c911a44f1659e8b1841aad80fd8a566a1200f43c
system_accounts="_plocate"
alternatives="
locate:locate:/usr/bin/plocate
locate:locate.1:/usr/share/man/man1/plocate.1
locate:updatedb:/usr/bin/pupdatedb
locate:updatedb.conf.5:/usr/share/man/man5/pupdatedb.conf.5"
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
makedepends+=" musl-legacy-compat"
fi
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
makedepends+=" libatomic-devel"
LIBS="-latomic"
fi
post_install() {
vinstall ${FILESDIR}/plocate.cron-daily 744 etc/cron.daily plocate-build
mv ${DESTDIR}/usr/share/man/man5/{,p}updatedb.conf.5
}