net-fs/nfs4-acl-tools: bump to v0.3.5
authorThomas Deutschmann <whissi@gentoo.org>
Wed, 14 Nov 2018 20:37:31 +0000 (21:37 +0100)
committerThomas Deutschmann <whissi@gentoo.org>
Wed, 14 Nov 2018 21:57:58 +0000 (22:57 +0100)
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
net-fs/nfs4-acl-tools/Manifest
net-fs/nfs4-acl-tools/files/nfs4-acl-tools-0.3.5-jobserver-unavailable.patch [new file with mode: 0644]
net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.5.ebuild [new file with mode: 0644]

index 9b0405a7d6612ea4ecc851e4e6dd50f4985f505c..d893bf620d9d7517726ec31310c4720c89864109 100644 (file)
@@ -1 +1,2 @@
 DIST nfs4-acl-tools-0.3.3.tar.gz 176018 BLAKE2B d9788af56f4ce5d2ebb8cef95287227a646ec2ec60a7a2ff24c4c26158383271bed0a3aedd5c851dd1182f98ea32a57338d9b7bd68d24525cfab16dc4b401b6a SHA512 8efa67c9f8a2f360c96b0df4e4aad55c044544188ebacd2e23b5f1c8a2c6c03d06cb8ffa434b03f502351a3403e98f4013bf6e6d9c85909995747b5489ea22d7
+DIST nfs4-acl-tools-0.3.5.tar.gz 99113 BLAKE2B a51e7a1ab3c43d5844697ccb8afb3dbef19d72b688c1aa9af334d9ccd9e0b70c2d5c7fc762ef80d69b9b4038c2fc83d9edc26e6f6119c05525cd13d4b7e5ea1b SHA512 c23d5c5c676c03cbb8016de32e384086525df6f181c85b36331f42b9bab023ab5158c4e01096f837da5d59c64d8a247cc7e92c9d37bd6bb38fc2aed960705618
diff --git a/net-fs/nfs4-acl-tools/files/nfs4-acl-tools-0.3.5-jobserver-unavailable.patch b/net-fs/nfs4-acl-tools/files/nfs4-acl-tools-0.3.5-jobserver-unavailable.patch
new file mode 100644 (file)
index 0000000..746d585
--- /dev/null
@@ -0,0 +1,24 @@
+Fix
+
+*      gmake[1]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.
+
+--- a/include/buildmacros
++++ b/include/buildmacros
+@@ -152,7 +152,7 @@ INSTALL_LINGUAS = \
+ endif
+ SUBDIRS_MAKERULE = \
+-      @for d in $(SUBDIRS) ""; do \
++      @+for d in $(SUBDIRS) ""; do \
+               if test -d "$$d" -a ! -z "$$d"; then \
+                       $(ECHO) === $$d ===; \
+                       $(MAKEF) -C $$d $@ || exit $$?; \
+@@ -170,7 +170,7 @@ DIST_MAKERULE = \
+       $(MAKEF) -C build dist
+ SOURCE_MAKERULE = \
+-      @test -z "$$DIR" && DIR="."; \
++      @+test -z "$$DIR" && DIR="."; \
+       for f in $(SRCFILES) ""; do \
+           if test ! -z "$$f"; then $(ECHO) $$DIR/$$f; fi;\
+       done; \
diff --git a/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.5.ebuild b/net-fs/nfs4-acl-tools/nfs4-acl-tools-0.3.5.ebuild
new file mode 100644 (file)
index 0000000..d0bf66f
--- /dev/null
@@ -0,0 +1,26 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools
+
+DESCRIPTION="Commandline and GUI tools that deal directly with NFSv4 ACLs"
+HOMEPAGE="https://git.linux-nfs.org/?p=bfields/nfs4-acl-tools.git;a=summary"
+SRC_URI="https://linux-nfs.org/~bfields/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="sys-apps/attr"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}"/${PN}-0.3.5-jobserver-unavailable.patch )
+
+src_prepare() {
+       default
+
+       eautoreconf
+}