Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/ldns-utils/
Date: Sat, 04 Dec 2021 22:09:54
Message-Id: 1638655783.e7b21251455080016990aa8b9f19a2375c63e492.floppym@gentoo
1 commit: e7b21251455080016990aa8b9f19a2375c63e492
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 4 22:01:52 2021 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 4 22:09:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b21251
7
8 net-dns/ldns-utils: add a stub version to facilitate upgrades
9
10 It is likely that people have ldns-utils in @selected, so let's provide
11 a stub version that depends on a the "consolidated" ldns package until
12 we can last rites ldns-utils.
13
14 Bug: https://bugs.gentoo.org/828109
15 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
16
17 net-dns/ldns-utils/ldns-utils-1.8.0-r2.ebuild | 25 +++++++++++++++++++++++++
18 1 file changed, 25 insertions(+)
19
20 diff --git a/net-dns/ldns-utils/ldns-utils-1.8.0-r2.ebuild b/net-dns/ldns-utils/ldns-utils-1.8.0-r2.ebuild
21 new file mode 100644
22 index 000000000000..3dc600717c87
23 --- /dev/null
24 +++ b/net-dns/ldns-utils/ldns-utils-1.8.0-r2.ebuild
25 @@ -0,0 +1,25 @@
26 +# Copyright 1999-2021 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=8
30 +
31 +MY_P=${P/-utils}
32 +
33 +DESCRIPTION="Set of utilities to simplify various dns(sec) tasks"
34 +HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/"
35 +
36 +LICENSE="BSD"
37 +SLOT="0"
38 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
39 +IUSE="+dane ecdsa ed25519 ed448 examples gost ssl"
40 +
41 +REQUIRED_USE="
42 + ecdsa? ( ssl )
43 + ed25519? ( ssl )
44 + ed448? ( ssl )
45 + dane? ( ssl )
46 + gost? ( ssl )
47 +"
48 +
49 +RDEPEND=">=net-libs/ldns-1.8.0-r3[dane?,ecdsa?,ed25519?,ed448?,gost?]
50 + examples? ( >=net-libs/ldns-1.8.0-r3[examples(-)] )"