Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/nsscache/
Date: Wed, 26 May 2021 10:35:07
Message-Id: 1622025030.b5e704d156f1ff9962e9c93685d1ff9b40164c63.sam@gentoo
1 commit: b5e704d156f1ff9962e9c93685d1ff9b40164c63
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 26 10:27:36 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 10:30:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5e704d1
7
8 net-nds/nsscache: hide bsddb3 usage behind USE=berkdb
9
10 We're looking at deprecating sys-libs/db usage where possible.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-nds/nsscache/nsscache-0.39.ebuild | 6 +++---
15 1 file changed, 3 insertions(+), 3 deletions(-)
16
17 diff --git a/net-nds/nsscache/nsscache-0.39.ebuild b/net-nds/nsscache/nsscache-0.39.ebuild
18 index 10bc2e80945..1b85909b423 100644
19 --- a/net-nds/nsscache/nsscache-0.39.ebuild
20 +++ b/net-nds/nsscache/nsscache-0.39.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -17,13 +17,13 @@ SRC_URI="
28 LICENSE="GPL-2"
29 SLOT="0"
30 KEYWORDS="~amd64 ~x86"
31 -IUSE="nsscache s3"
32 +IUSE="berkdb nsscache s3"
33 RESTRICT="test" # requires network
34
35 DEPEND="
36 dev-python/ldap3[${PYTHON_USEDEP}]
37 dev-python/pycurl[${PYTHON_USEDEP}]
38 - dev-python/bsddb3[${PYTHON_USEDEP}]
39 + berkdb? ( dev-python/bsddb3[${PYTHON_USEDEP}] )
40 s3? ( dev-python/boto3[${PYTHON_USEDEP}] )"
41 RDEPEND="${DEPEND}
42 nsscache? ( >=sys-auth/libnss-cache-0.10 )"