diff options
author | Juergen Daubert <jue@jue.li> | 2021-02-21 10:51:54 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-02-21 10:51:54 +0100 |
commit | 06dcac3d7904bdf667b6119c5f5493ee65c99fcf (patch) | |
tree | d2b9f5b29efd41e0ed7497518e8d0153be77f7f6 /nfs-utils | |
parent | e3bc03255c1e624b3f98314df73fe91026259b33 (diff) | |
download | opt-06dcac3d7904bdf667b6119c5f5493ee65c99fcf.tar.gz opt-06dcac3d7904bdf667b6119c5f5493ee65c99fcf.tar.xz |
nfs-utils: update to 2.5.3
Diffstat (limited to 'nfs-utils')
-rw-r--r-- | nfs-utils/.signature | 6 | ||||
-rw-r--r-- | nfs-utils/Pkgfile | 55 |
2 files changed, 31 insertions, 30 deletions
diff --git a/nfs-utils/.signature b/nfs-utils/.signature index 12ab5063c..40f91e46e 100644 --- a/nfs-utils/.signature +++ b/nfs-utils/.signature @@ -1,8 +1,8 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/eFxLcHg2231sdfIxF/jyiaPToZkJ3RhZczqQ+BjOROrbW+rMwrhptsSMfqiqJ1E1iZIs41FHq7jxVJShVArEQM= -SHA256 (Pkgfile) = a77f9eba6e96a27e75d832dccf9ea34e7052f1230d78c28b1b369d38074a40be +RWSE3ohX2g5d/W20MD/LjGN64JUyKybOReFHUuFEJ1ECxvGBuZ2XgrW2++rgr5h4EeYg+qOFCK+cFrjZ14MvbORkDvHe7qeZOQg= +SHA256 (Pkgfile) = 3495fbe62573b7f2dc3d4c0979302b9c811f88e30d4cad0178d078a237563d10 SHA256 (.footprint) = 08bee52c264923d52794306fc37e29919a58e306901e482c727dc021e908797d -SHA256 (nfs-utils-2.5.2.tar.xz) = d493b81c9d3ffce5d10af701a63ed2b8a21768c23da4a2eceb4d708aea65d9de +SHA256 (nfs-utils-2.5.3.tar.xz) = b54d6d8ea2ee62d64111278301ba4631b7bb19174e7f717a724fe5d463900c80 SHA256 (exports) = 9556615724e66fbe6e7a2bfd740db4c5399a6abafab8cce868975f6926548eec SHA256 (idmapd.conf) = 2759ea36eff3397c39b534ee34752e02f60976160d66570ae19dbbbb5c00ee53 SHA256 (nfs) = 3ab2824ff5cbe4498faf6cbbbea19793d96bd80c48b9c18c0939938b18ab0217 diff --git a/nfs-utils/Pkgfile b/nfs-utils/Pkgfile index 24d05e458..0e99b11e7 100644 --- a/nfs-utils/Pkgfile +++ b/nfs-utils/Pkgfile @@ -1,40 +1,41 @@ # Description: NFS utilities -# URL: http://nfs.sourceforge.net/ -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: libdevmapper util-linux libcap rpcsvc-proto rpcbind libevent keyutils sqlite3 +# URL: http://nfs.sourceforge.net/ +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: libdevmapper util-linux libcap rpcsvc-proto rpcbind libevent keyutils sqlite3 name=nfs-utils -version=2.5.2 +version=2.5.3 release=1 source=(https://www.kernel.org/pub/linux/utils/$name/$version/$name-$version.tar.xz - exports idmapd.conf - nfs nfsclient nfsserver rpc.idmapd rpc.statd rpc.mountd rpc.nfsd nfsdcld) + exports idmapd.conf + nfs nfsclient nfsserver rpc.idmapd rpc.statd rpc.mountd rpc.nfsd nfsdcld) -build () { - cd $name-$version +build() { + cd $name-$version - CONFIG_SHELL=/bin/bash \ - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --with-statedir=/var/lib/nfs \ - --without-tcp-wrappers \ - --disable-gss \ - --enable-libmount-mount - make - make DESTDIR=$PKG install + CONFIG_SHELL=/bin/bash \ + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --with-statedir=/var/lib/nfs \ + --without-tcp-wrappers \ + --disable-gss \ + --enable-libmount-mount + make + make DESTDIR=$PKG install - install -d $PKG/etc/rc.d + install -d $PKG/etc/rc.d - install -m 755 $SRC/nfs{,client,server,dcld} $PKG/etc/rc.d/ - install -m 755 $SRC/rpc.* $PKG/etc/rc.d/ - install -m 644 $SRC/{exports,idmapd.conf} $PKG/etc/ + install -m 755 $SRC/nfs{,client,server,dcld} $PKG/etc/rc.d/ + install -m 755 $SRC/rpc.* $PKG/etc/rc.d/ + install -m 644 $SRC/{exports,idmapd.conf} $PKG/etc/ - install -m 644 utils/mount/nfsmount.conf $PKG/etc/ - install -m 644 nfs.conf $PKG/etc/ + install -m 644 utils/mount/nfsmount.conf $PKG/etc/ + install -m 644 nfs.conf $PKG/etc/ - install -d $PKG/var/lib/nfs/{rpc_pipefs,v4recovery,nfsdcltrack,nfsdcld} - install -d $PKG/etc/exports.d + install -d $PKG/var/lib/nfs/{rpc_pipefs,v4recovery,nfsdcltrack,nfsdcld} + install -d $PKG/etc/exports.d - # force rpc.statd to run as user nobody - chown nobody $PKG/var/lib/nfs + # force rpc.statd to run as user nobody + chown nobody $PKG/var/lib/nfs } |