diff options
author | Juergen Daubert <jue@jue.li> | 2021-05-11 13:37:06 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-05-11 13:37:06 +0200 |
commit | 4df6e3e5f7d13a1cb1276e3a786ef8ed3bfb5920 (patch) | |
tree | c0b7dbdea55c81cf05fd859dedc6c26e882fc8f5 /rpcbind | |
parent | fff327a94c0576a7e2930663ae3706bc26e27712 (diff) | |
download | opt-4df6e3e5f7d13a1cb1276e3a786ef8ed3bfb5920.tar.gz opt-4df6e3e5f7d13a1cb1276e3a786ef8ed3bfb5920.tar.xz |
rpcbind: update to 1.2.6
Diffstat (limited to 'rpcbind')
-rw-r--r-- | rpcbind/.signature | 6 | ||||
-rw-r--r-- | rpcbind/Pkgfile | 31 |
2 files changed, 19 insertions, 18 deletions
diff --git a/rpcbind/.signature b/rpcbind/.signature index a5b8c9f13..3a1d12b62 100644 --- a/rpcbind/.signature +++ b/rpcbind/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/ShEVwO5NfZ5oAvLq2/VRTZd1jdHV8HVJT79swCoH0FxA1Z9z7c3sfrVhX9W79Oc1kH4VAUNmcaSMfC2Sg0whAA= -SHA256 (Pkgfile) = 2e12d29c541baba657261f3df473471c6a45306e270f01175acad42af233b340 +RWSE3ohX2g5d/RExFNMiqcZHRmtpMw9QT2aikdiQPAfPi7msaRJKPSl3UxjdreqZ29fTB9wUxA5o1ooWhJPVanM2YIo6iwhnpQw= +SHA256 (Pkgfile) = 8a67e8c2a6cdb351550ad3ceb1c25e0b30ff72fbfa78007f9d28fa50e02212ff SHA256 (.footprint) = 1ddf9f1f75433e98fa2bfaae830f7115428f650b285ebc3e845da09a84290502 -SHA256 (rpcbind-1.2.5.tar.bz2) = 2ce360683963b35c19c43f0ee2c7f18aa5b81ef41c3fdbd15ffcb00b8bffda7a +SHA256 (rpcbind-1.2.6.tar.bz2) = 5613746489cae5ae23a443bb85c05a11741a5f12c8f55d2bb5e83b9defeee8de SHA256 (rpcbind) = b8173ec0b927705100eab42f24797ac36ea7c5987475cba47474b5c73a117f1a diff --git a/rpcbind/Pkgfile b/rpcbind/Pkgfile index 8b3fd3e14..a5df0bbd8 100644 --- a/rpcbind/Pkgfile +++ b/rpcbind/Pkgfile @@ -1,27 +1,28 @@ # Description: Server that converts RPC program numbers into universal addresses -# URL: https://sourceforge.net/projects/rpcbind/ -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: libtirpc +# URL: https://sourceforge.net/projects/rpcbind/ +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: libtirpc name=rpcbind -version=1.2.5 +version=1.2.6 release=1 source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2 \ - rpcbind) + rpcbind) build() { - cd $name-$version + cd $name-$version - # use sunrpc instead of rpcbind as service-name - sed '/servname\[\]/s/rpcbind/sunrpc/' -i src/rpcbind.c + # use sunrpc instead of rpcbind as service-name + sed '/servname\[\]/s/rpcbind/sunrpc/' -i src/rpcbind.c - ./configure --prefix=/usr \ - --sbindir=/sbin \ - --disable-libwrap \ - --without-systemdsystemunitdir + ./configure \ + --prefix=/usr \ + --sbindir=/sbin \ + --disable-libwrap \ + --without-systemdsystemunitdir - make - make DESTDIR=$PKG install + make + make DESTDIR=$PKG install - install -D -m 755 $SRC/rpcbind $PKG/etc/rc.d/rpcbind + install -D -m 755 $SRC/rpcbind $PKG/etc/rc.d/rpcbind } |