From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 804B81396DA for ; Sun, 12 Nov 2017 21:08:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADB80E101B; Sun, 12 Nov 2017 21:08:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 78CA7E101A for ; Sun, 12 Nov 2017 21:08:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1767433BF3C for ; Sun, 12 Nov 2017 21:08:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AAD09AC1 for ; Sun, 12 Nov 2017 21:08:53 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1510520929.de3be8b3c4d4275a5f2f0289041fbaf92aaec4a3.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/nfs-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/nfs-utils/metadata.xml net-fs/nfs-utils/nfs-utils-2.2.1.ebuild net-fs/nfs-utils/nfs-utils-2.2.2_rc1.ebuild X-VCS-Directories: net-fs/nfs-utils/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: de3be8b3c4d4275a5f2f0289041fbaf92aaec4a3 X-VCS-Branch: master Date: Sun, 12 Nov 2017 21:08:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 025a0687-e4f4-46e0-82ea-3bb94b790762 X-Archives-Hash: b8960666f2aaabeba476613a3d35888f commit: de3be8b3c4d4275a5f2f0289041fbaf92aaec4a3 Author: Justin Lecher gentoo org> AuthorDate: Sun Nov 12 20:22:07 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Nov 12 21:08:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3be8b3 net-fs/nfs-utils: Fix automagic dep by being explicit using USE Signed-off-by: Justin Lecher gentoo.org> Package-Manager: Portage-2.3.13, Repoman-2.3.4 net-fs/nfs-utils/metadata.xml | 1 + net-fs/nfs-utils/nfs-utils-2.2.1.ebuild | 4 +++- net-fs/nfs-utils/nfs-utils-2.2.2_rc1.ebuild | 3 ++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/net-fs/nfs-utils/metadata.xml b/net-fs/nfs-utils/metadata.xml index 2ec31888ca1..34459d2e162 100644 --- a/net-fs/nfs-utils/metadata.xml +++ b/net-fs/nfs-utils/metadata.xml @@ -7,6 +7,7 @@ NFS client and server daemons + Add ldap support Link mount.nfs with libmount Enable nfsdcld NFSv4 clientid tracking daemon Enable support for newer nfsidmap helper diff --git a/net-fs/nfs-utils/nfs-utils-2.2.1.ebuild b/net-fs/nfs-utils/nfs-utils-2.2.1.ebuild index 9dcb159618a..c83293caff3 100644 --- a/net-fs/nfs-utils/nfs-utils-2.2.1.ebuild +++ b/net-fs/nfs-utils/nfs-utils-2.2.1.ebuild @@ -20,7 +20,7 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="caps ipv6 kerberos +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux tcpd +uuid" +IUSE="caps ipv6 kerberos ldap +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux tcpd +uuid" REQUIRED_USE="kerberos? ( nfsv4 )" RESTRICT="test" #315573 @@ -33,6 +33,7 @@ DEPEND_COMMON=" >=net-nds/rpcbind-0.2.4 sys-libs/e2fsprogs-libs caps? ( sys-libs/libcap ) + ldap? ( net-nds/openldap ) libmount? ( sys-apps/util-linux ) nfsdcld? ( >=dev-db/sqlite-3.3 ) nfsv4? ( @@ -82,6 +83,7 @@ src_configure() { --with-statedir="${EPREFIX}"/var/lib/nfs --enable-tirpc --with-tirpcinclude="${EPREFIX}"/usr/include/tirpc/ + $(use_enable ldap) $(use_enable libmount libmount-mount) $(use_with tcpd tcp-wrappers) $(use_enable nfsdcld nfsdcltrack) diff --git a/net-fs/nfs-utils/nfs-utils-2.2.2_rc1.ebuild b/net-fs/nfs-utils/nfs-utils-2.2.2_rc1.ebuild index 9dcb159618a..59b18b6b2a1 100644 --- a/net-fs/nfs-utils/nfs-utils-2.2.2_rc1.ebuild +++ b/net-fs/nfs-utils/nfs-utils-2.2.2_rc1.ebuild @@ -20,7 +20,7 @@ fi LICENSE="GPL-2" SLOT="0" -IUSE="caps ipv6 kerberos +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux tcpd +uuid" +IUSE="caps ipv6 kerberos ldap +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux tcpd +uuid" REQUIRED_USE="kerberos? ( nfsv4 )" RESTRICT="test" #315573 @@ -33,6 +33,7 @@ DEPEND_COMMON=" >=net-nds/rpcbind-0.2.4 sys-libs/e2fsprogs-libs caps? ( sys-libs/libcap ) + ldap? ( net-nds/openldap ) libmount? ( sys-apps/util-linux ) nfsdcld? ( >=dev-db/sqlite-3.3 ) nfsv4? (