diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-04-13 21:10:16 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-04-13 21:10:16 (GMT) |
commit | e890f4ba7b7ed37b7004a582a042403a501e010a (patch) | |
tree | 6162e67d2b000e39ec1147890827064e9806a485 /abs/core/rpcbind/PKGBUILD | |
parent | 50c3908c1a76b9c291e4e0d3ee76b8684d65a8ea (diff) | |
download | linhes_pkgbuild-e890f4ba7b7ed37b7004a582a042403a501e010a.zip linhes_pkgbuild-e890f4ba7b7ed37b7004a582a042403a501e010a.tar.gz linhes_pkgbuild-e890f4ba7b7ed37b7004a582a042403a501e010a.tar.bz2 |
rpcbind: update to 0.2.4
Diffstat (limited to 'abs/core/rpcbind/PKGBUILD')
-rw-r--r-- | abs/core/rpcbind/PKGBUILD | 61 |
1 files changed, 39 insertions, 22 deletions
diff --git a/abs/core/rpcbind/PKGBUILD b/abs/core/rpcbind/PKGBUILD index 75cb398..5bbcf8b 100644 --- a/abs/core/rpcbind/PKGBUILD +++ b/abs/core/rpcbind/PKGBUILD @@ -1,46 +1,63 @@ -# $Id: PKGBUILD 157234 2012-04-26 13:06:13Z tpowa $ +# $Id$ +# Maintainer: AndyRTR <andyrtr@archlinux.org> # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=rpcbind -pkgver=0.2.0 -pkgrel=8 +pkgver=0.2.4 +pkgrel=4 pkgdesc="portmap replacement which supports RPC over various protocols" -arch=(i686 x86_64) -depends=('bash' 'glibc' 'libtirpc') +arch=(x86_64) +backup=('etc/conf.d/rpcbind') +makedepends=('systemd') +depends=('bash' 'glibc' 'libtirpc' 'libsystemd') url="http://rpcbind.sourceforge.net" license=('custom') replaces=('portmap') -source=(http://downloads.sourceforge.net/sourceforge/rpcbind/rpcbind-0.2.0.tar.bz2 +# see also http://git.infradead.org/users/steved/rpcbind.git +source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 rpcbind-sunrpc.patch - rpcbind.service - rpcbind) -md5sums=('1a77ddb1aaea8099ab19c351eeb26316' - 'c02ac36a98baac70b8a26190524b7b73' - 'd2615f4c0d58f154aab6e294997ac9be' - '78a963654f57cbb209e228884767836e') + rpcbind.conf + systemd_service.diff + tmpfiles.d + sysusers.d + CVE-2017-8779.diff) +sha1sums=('8a6045dd3397e9f71bf3a7c9d269e255cca537bd' + '1b997ce76f9727efc8c72fc5f97189591c9a60e2' + '08246ff18d12cee01e5c9391c6ba8f5597cac936' + '3ebfcf09d01e41c70135124e68b3db681c768aa0' + 'eb8b7375a4ca31b3f61fa726f387884d5e4ca7a3' + '97fed152572790a44e972114cbb436ca517254f9' + '38044ce8f3376a0b69da8e078e988fd1645bd435') -build() { +prepare() { cd $srcdir/$pkgname-$pkgver - # patch for iana services file + # patch for iana services file # FS#20273 patch -Np1 -i ../rpcbind-sunrpc.patch - ./configure --prefix=/usr --enable-warmstarts --with-statedir=/run - make + # use distro config file; FS#52058 + patch -Np1 -i ../systemd_service.diff + # http://seclists.org/oss-sec/2017/q2/209 + patch -Np1 -i ../CVE-2017-8779.diff } -check() { +build() { cd $srcdir/$pkgname-$pkgver - make check + ./configure --prefix=/usr \ + --with-rpcuser=rpc \ + --enable-warmstarts \ + --with-statedir=/var/lib/rpcbind + make } package() { cd $srcdir/$pkgname-$pkgver make DESTDIR=$pkgdir install + # install rpcbind config file + install -D -m644 $srcdir/rpcbind.conf $pkgdir/etc/conf.d/rpcbind # install missing man page - https://bugs.archlinux.org/task/21271 install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/ - # install daemon - install -D -m755 $srcdir/rpcbind $pkgdir/etc/rc.d/rpcbind - # install systemd service file - install -D -m644 $srcdir/rpcbind.service $pkgdir/usr/lib/systemd/system/rpcbind.service + # systemd sysusers/tempfile + install -Dm644 ../tmpfiles.d ${pkgdir}/usr/lib/tmpfiles.d/rpcbind.conf + install -Dm644 ../sysusers.d ${pkgdir}/usr/lib/sysusers.d/rpcbind.conf # install license install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING } |