* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2020-09-29 10:26 Joonas Niilola
0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2020-09-29 10:26 UTC (permalink / raw
To: gentoo-commits
commit: 4493900d08273263afece7df9437babd5df5ee8f
Author: Philippe Chaintreuil <gentoo_bugs_peep <AT> parallaxshift <DOT> com>
AuthorDate: Wed Sep 2 13:28:59 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Sep 29 10:25:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4493900d
net-dns/dnssec-tools: Call perl_delete_localpod
Remove perllocal.pod to avoid file collisions
Closes: https://bugs.gentoo.org/612268
Closes: https://github.com/gentoo/gentoo/pull/17386
Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Philippe Chaintreuil <gentoo_bugs_peep <AT> parallaxshift.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild | 78 +++++++++++++++++++++++
1 file changed, 78 insertions(+)
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
new file mode 100644
index 00000000000..8e728f67af2
--- /dev/null
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Tools to ease the deployment of DNSSEC related technologies"
+HOMEPAGE="https://dnssec-tools.org/"
+SRC_URI="https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="static-libs"
+
+RDEPEND="
+ dev-lang/perl:=
+ dev-perl/CGI
+ dev-perl/Crypt-OpenSSL-Random
+ dev-perl/Getopt-GUI-Long
+ dev-perl/GraphViz
+ dev-perl/MailTools
+ dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
+ dev-perl/XML-Simple"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/DNSSEC-Tools-${P}/${PN}"
+
+PATCHES=( "${FILESDIR}"/${PN}-2.0-dtinitconf.patch )
+
+src_prepare() {
+ default
+ sed -e '/^maninstall:/,+3s:$(MKPATH) $(mandir)/$(man1dir):$(MKPATH) $(DESTDIR)/$(mandir)/$(man1dir):' \
+ -i Makefile.in || die
+ sed -e 's:/usr/local/etc:/etc:g' \
+ -e 's:/usr/local:/usr:g' \
+ -i tools/donuts/donuts \
+ -i tools/etc/dnssec-tools/dnssec-tools.conf \
+ -i tools/scripts/genkrf || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-bind-checks
+ --without-validator
+ --with-perl-build-args=INSTALLDIRS=vendor
+ $(use_enable static-libs static)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ newinitd "${FILESDIR}"/rollerd.initd rollerd
+ newconfd "${FILESDIR}"/rollerd.confd rollerd
+ systemd_dounit "${FILESDIR}"/rollerd.service
+
+ newinitd "${FILESDIR}"/donutsd.initd donutsd
+ newconfd "${FILESDIR}"/donutsd.confd donutsd
+ systemd_dounit "${FILESDIR}"/donutsd.service
+
+ find "${ED}" -name "*.la" -delete || die
+ readme.gentoo_create_doc
+
+ # Remove perllocal.pod to avoid file collisions (bugs #612268 and
+ # #603338).
+ perl_delete_localpod
+}
+
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS="Please run 'dtinitconf' in order to set up the required
+/etc/dnssec-tools/dnssec-tools.conf file
+
+DNSSEC Validator has been split into net-dns/dnssec-validator
+"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2021-03-04 23:22 Conrad Kostecki
0 siblings, 0 replies; 10+ messages in thread
From: Conrad Kostecki @ 2021-03-04 23:22 UTC (permalink / raw
To: gentoo-commits
commit: f9be9124541cdf64fcdd6b8472f5d22a474d4d6d
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 22:47:00 2021 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 22:47:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9be9124
net-dns/dnssec-tools: add license for init script
Closes: https://bugs.gentoo.org/426016
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild | 4 ++--
net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild
index bcddf668c5b..7328cfb57af 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ DESCRIPTION="Tools to ease the deployment of DNSSEC related technologies"
HOMEPAGE="https://dnssec-tools.org/"
SRC_URI="https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/${P}.tar.gz"
-LICENSE="BSD"
+LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
index 98a0b38d1ce..2fe66578bb9 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -9,7 +9,7 @@ DESCRIPTION="Tools to ease the deployment of DNSSEC related technologies"
HOMEPAGE="https://dnssec-tools.org/"
SRC_URI="https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/${P}.tar.gz"
-LICENSE="BSD"
+LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2020-09-29 10:26 Joonas Niilola
0 siblings, 0 replies; 10+ messages in thread
From: Joonas Niilola @ 2020-09-29 10:26 UTC (permalink / raw
To: gentoo-commits
commit: 12eac6521825fc2aefb2be2a8f8e0c6978ed2441
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 29 10:01:38 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Sep 29 10:25:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12eac652
net-dns/dnssec-tools: add missing inherit, restrict tests
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
index 8e728f67af2..98a0b38d1ce 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit readme.gentoo-r1 systemd
+inherit perl-module readme.gentoo-r1 systemd
DESCRIPTION="Tools to ease the deployment of DNSSEC related technologies"
HOMEPAGE="https://dnssec-tools.org/"
@@ -14,6 +14,9 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
+# There is no test case to be generated.
+RESTRICT="test"
+
RDEPEND="
dev-lang/perl:=
dev-perl/CGI
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2019-11-07 22:45 Andreas K. Hüttel
0 siblings, 0 replies; 10+ messages in thread
From: Andreas K. Hüttel @ 2019-11-07 22:45 UTC (permalink / raw
To: gentoo-commits
commit: 0275e277bfff28ab71e8a4b464581702b50db15e
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 7 22:45:25 2019 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Nov 7 22:45:25 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0275e277
net-dns/dnssec-tools: Needs rebuild on perl upgrade, bug 633514
Closes: https://bugs.gentoo.org/633514
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
.../{dnssec-tools-2.2.3.ebuild => dnssec-tools-2.2.3-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.3.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild
similarity index 97%
rename from net-dns/dnssec-tools/dnssec-tools-2.2.3.ebuild
rename to net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild
index ea911238a3b..bcddf668c5b 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.2.3.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
RDEPEND="
- dev-lang/perl
+ dev-lang/perl:=
dev-perl/CGI
dev-perl/Crypt-OpenSSL-Random
dev-perl/Getopt-GUI-Long
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2018-12-04 14:14 Lars Wendler
0 siblings, 0 replies; 10+ messages in thread
From: Lars Wendler @ 2018-12-04 14:14 UTC (permalink / raw
To: gentoo-commits
commit: c63436db36ad9d3585ae97eb0b69a45286394e4d
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 4 14:13:46 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Dec 4 14:14:16 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c63436db
net-dns/dnssec-tools: Bump to version 2.2.3
- Added dev-perl/CGI dependency
- This release builds against >=openssl-1.1.0
Closes: https://bugs.gentoo.org/664754
Closes: https://bugs.gentoo.org/672494
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
net-dns/dnssec-tools/Manifest | 1 +
net-dns/dnssec-tools/dnssec-tools-2.2.3.ebuild | 74 ++++++++++++++++++++++++++
2 files changed, 75 insertions(+)
diff --git a/net-dns/dnssec-tools/Manifest b/net-dns/dnssec-tools/Manifest
index b51de62b60e..c687e75e5a5 100644
--- a/net-dns/dnssec-tools/Manifest
+++ b/net-dns/dnssec-tools/Manifest
@@ -1 +1,2 @@
+DIST dnssec-tools-2.2.3.tar.gz 42941393 BLAKE2B b7b6a54113fb5cf030bd60e18f5446b02d1ceba3564ac854b0305225672545e802fecfa1169dc81e68ffe195533e06082dc22500a51b48965aa9c0fc32c915ed SHA512 fd2467f116f77089bddf9311706f356957f4ae735d827d393534e4001b621c9dfc904ff3d4da698d37e8e97b1be9448ab2fd5455c124656399aac30f1f642baf
DIST dnssec-tools-2.2.tar.gz 4430138 BLAKE2B 52683f19d66066b2938ef3667d066a6ab59b4579cb2cbba87c79b42700d3f70bfe84c0f712bca607ee3023d152b16b0ba1a9635e7779cc61aab7a2c8f9d05830 SHA512 5d0d936a2dabc648033cbd74ff6f1b309ae66bf3f2ab1223c8be5879fa4385bfdfd8cee2b4005b0d0e7ed85eeb1b81a9a4092d300fa725d4b19a84bf2619a280
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.3.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.3.ebuild
new file mode 100644
index 00000000000..ea911238a3b
--- /dev/null
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2.3.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Tools to ease the deployment of DNSSEC related technologies"
+HOMEPAGE="https://dnssec-tools.org/"
+SRC_URI="https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="static-libs"
+
+RDEPEND="
+ dev-lang/perl
+ dev-perl/CGI
+ dev-perl/Crypt-OpenSSL-Random
+ dev-perl/Getopt-GUI-Long
+ dev-perl/GraphViz
+ dev-perl/MailTools
+ dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
+ dev-perl/XML-Simple"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/DNSSEC-Tools-${P}/${PN}"
+
+PATCHES=( "${FILESDIR}"/${PN}-2.0-dtinitconf.patch )
+
+src_prepare() {
+ default
+ sed -e '/^maninstall:/,+3s:$(MKPATH) $(mandir)/$(man1dir):$(MKPATH) $(DESTDIR)/$(mandir)/$(man1dir):' \
+ -i Makefile.in || die
+ sed -e 's:/usr/local/etc:/etc:g' \
+ -e 's:/usr/local:/usr:g' \
+ -i tools/donuts/donuts \
+ -i tools/etc/dnssec-tools/dnssec-tools.conf \
+ -i tools/scripts/genkrf || die
+}
+
+src_configure() {
+ local myeconfargs=(
+ --disable-bind-checks
+ --without-validator
+ --with-perl-build-args=INSTALLDIRS=vendor
+ $(use_enable static-libs static)
+ )
+ econf "${myeconfargs[@]}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ newinitd "${FILESDIR}"/rollerd.initd rollerd
+ newconfd "${FILESDIR}"/rollerd.confd rollerd
+ systemd_dounit "${FILESDIR}"/rollerd.service
+
+ newinitd "${FILESDIR}"/donutsd.initd donutsd
+ newconfd "${FILESDIR}"/donutsd.confd donutsd
+ systemd_dounit "${FILESDIR}"/donutsd.service
+
+ find "${ED}" -name "*.la" -delete || die
+ readme.gentoo_create_doc
+}
+
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS="Please run 'dtinitconf' in order to set up the required
+/etc/dnssec-tools/dnssec-tools.conf file
+
+DNSSEC Validator has been split into net-dns/dnssec-validator
+"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2018-05-30 4:45 Markus Meier
0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier @ 2018-05-30 4:45 UTC (permalink / raw
To: gentoo-commits
commit: dea7b59c61e5aa5ee66f58366d22b73cb02db4b6
Author: Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Wed May 30 04:40:15 2018 +0000
Commit: Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Wed May 30 04:40:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dea7b59c
net-dns/dnssec-tools: add ~arm, bug #621440
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"
net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild
index 6b83d1c27fd..f4c7cf6da52 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.dnssec-tools.org/download/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"
RDEPEND="
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2018-05-10 8:01 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2018-05-10 8:01 UTC (permalink / raw
To: gentoo-commits
commit: b0db2c017d233ffd19b58354608b0e226988c06c
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu May 10 07:45:46 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu May 10 08:01:09 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0db2c01
net-dns/dnssec-tools: EAPI 6, bogus qt4-r2, drop ltprune
Bug: https://bugs.gentoo.org/645418
Package-Manager: Portage-2.3.36, Repoman-2.3.9
net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild | 69 +++++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild
new file mode 100644
index 00000000000..6b83d1c27fd
--- /dev/null
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2-r1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Tools to ease the deployment of DNSSEC related technologies"
+HOMEPAGE="https://www.dnssec-tools.org/"
+SRC_URI="https://www.dnssec-tools.org/download/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+RDEPEND="
+ dev-lang/perl
+ dev-perl/Crypt-OpenSSL-Random
+ dev-perl/Getopt-GUI-Long
+ dev-perl/GraphViz
+ dev-perl/MailTools
+ dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
+ dev-perl/XML-Simple"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}"/${PN}-2.0-dtinitconf.patch )
+
+src_prepare() {
+ default
+ sed -e '/^maninstall:/,+3s:$(MKPATH) $(mandir)/$(man1dir):$(MKPATH) $(DESTDIR)/$(mandir)/$(man1dir):' \
+ -i Makefile.in || die
+ sed -e 's:/usr/local/etc:/etc:g' \
+ -e 's:/usr/local:/usr:g' \
+ -i tools/donuts/donuts \
+ -i tools/etc/dnssec-tools/dnssec-tools.conf \
+ -i tools/scripts/genkrf || die
+}
+
+src_configure() {
+ econf \
+ --disable-bind-checks \
+ --without-validator \
+ --with-perl-build-args=INSTALLDIRS=vendor \
+ $(use_enable static-libs static)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ newinitd "${FILESDIR}"/rollerd.initd rollerd
+ newconfd "${FILESDIR}"/rollerd.confd rollerd
+ systemd_dounit "${FILESDIR}"/rollerd.service
+
+ newinitd "${FILESDIR}"/donutsd.initd donutsd
+ newconfd "${FILESDIR}"/donutsd.confd donutsd
+ systemd_dounit "${FILESDIR}"/donutsd.service
+
+ find "${ED}" -name "*.la" -delete || die
+ readme.gentoo_create_doc
+}
+
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS="Please run 'dtinitconf' in order to set up the required
+/etc/dnssec-tools/dnssec-tools.conf file
+
+DNSSEC Validator has been split into net-dns/dnssec-validator
+"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2018-05-10 8:01 Andreas Sturmlechner
0 siblings, 0 replies; 10+ messages in thread
From: Andreas Sturmlechner @ 2018-05-10 8:01 UTC (permalink / raw
To: gentoo-commits
commit: 3bbc99c999408ea89a8e77293986e168266944ab
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu May 10 07:46:29 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu May 10 08:01:09 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bbc99c9
net-dns/dnssec-tools: Drop old
Package-Manager: Portage-2.3.36, Repoman-2.3.9
net-dns/dnssec-tools/Manifest | 1 -
net-dns/dnssec-tools/dnssec-tools-2.1.ebuild | 66 ----------------------------
net-dns/dnssec-tools/dnssec-tools-2.2.ebuild | 66 ----------------------------
3 files changed, 133 deletions(-)
diff --git a/net-dns/dnssec-tools/Manifest b/net-dns/dnssec-tools/Manifest
index f6d79952bd6..b51de62b60e 100644
--- a/net-dns/dnssec-tools/Manifest
+++ b/net-dns/dnssec-tools/Manifest
@@ -1,2 +1 @@
-DIST dnssec-tools-2.1.tar.gz 4430320 BLAKE2B 53f4ed09d5a1c1237933b9ad8aa51411f8bd9b95aab7bfbee0149618bb038814de3ebf12115fde818b535bd8f09b58d9e780162b293ae5d697eb634e2a9e0fe5 SHA512 61119837320bf9a7c2d64a593fc3ed6b84ee7683b7e4ba5de380b0fd1be70e44bf73825ea5395cc1d3ddc729eaef17823a230b44b68fbc5fca988f8fb080f66b
DIST dnssec-tools-2.2.tar.gz 4430138 BLAKE2B 52683f19d66066b2938ef3667d066a6ab59b4579cb2cbba87c79b42700d3f70bfe84c0f712bca607ee3023d152b16b0ba1a9635e7779cc61aab7a2c8f9d05830 SHA512 5d0d936a2dabc648033cbd74ff6f1b309ae66bf3f2ab1223c8be5879fa4385bfdfd8cee2b4005b0d0e7ed85eeb1b81a9a4092d300fa725d4b19a84bf2619a280
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.1.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.1.ebuild
deleted file mode 100644
index bb63dd7c545..00000000000
--- a/net-dns/dnssec-tools/dnssec-tools-2.1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils qt4-r2 systemd readme.gentoo
-
-DESCRIPTION="tools to ease the deployment of DNSSEC related technologies"
-HOMEPAGE="http://www.dnssec-tools.org/"
-SRC_URI="http://www.dnssec-tools.org/download/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-RDEPEND="dev-lang/perl
- dev-perl/Crypt-OpenSSL-Random
- dev-perl/Getopt-GUI-Long
- dev-perl/GraphViz
- dev-perl/MailTools
- dev-perl/Net-DNS
- dev-perl/Net-DNS-SEC
- dev-perl/XML-Simple"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- sed -e '/^maninstall:/,+3s:$(MKPATH) $(mandir)/$(man1dir):$(MKPATH) $(DESTDIR)/$(mandir)/$(man1dir):' \
- -i Makefile.in || die
- sed -e 's:/usr/local/etc:/etc:g' \
- -e 's:/usr/local:/usr:g' \
- -i tools/donuts/donuts \
- -i tools/etc/dnssec-tools/dnssec-tools.conf \
- -i tools/scripts/genkrf || die
- epatch "${FILESDIR}"/${PN}-2.0-dtinitconf.patch
-}
-
-src_configure() {
- econf \
- --disable-bind-checks \
- --without-validator \
- --with-perl-build-args=INSTALLDIRS=vendor \
- $(use_enable static-libs static)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- newinitd "${FILESDIR}"/rollerd.initd rollerd
- newconfd "${FILESDIR}"/rollerd.confd rollerd
- systemd_dounit "${FILESDIR}"/rollerd.service
-
- newinitd "${FILESDIR}"/donutsd.initd donutsd
- newconfd "${FILESDIR}"/donutsd.confd donutsd
- systemd_dounit "${FILESDIR}"/donutsd.service
-
- prune_libtool_files
- readme.gentoo_create_doc
-}
-
-DISABLE_AUTOFORMATTING=1
-DOC_CONTENTS="Please run 'dtinitconf' in order to set up the required
-/etc/dnssec-tools/dnssec-tools.conf file
-
-DNSSEC Validator has been split into net-dns/dnssec-validator
-"
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.ebuild
deleted file mode 100644
index bb63dd7c545..00000000000
--- a/net-dns/dnssec-tools/dnssec-tools-2.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils qt4-r2 systemd readme.gentoo
-
-DESCRIPTION="tools to ease the deployment of DNSSEC related technologies"
-HOMEPAGE="http://www.dnssec-tools.org/"
-SRC_URI="http://www.dnssec-tools.org/download/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-RDEPEND="dev-lang/perl
- dev-perl/Crypt-OpenSSL-Random
- dev-perl/Getopt-GUI-Long
- dev-perl/GraphViz
- dev-perl/MailTools
- dev-perl/Net-DNS
- dev-perl/Net-DNS-SEC
- dev-perl/XML-Simple"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- sed -e '/^maninstall:/,+3s:$(MKPATH) $(mandir)/$(man1dir):$(MKPATH) $(DESTDIR)/$(mandir)/$(man1dir):' \
- -i Makefile.in || die
- sed -e 's:/usr/local/etc:/etc:g' \
- -e 's:/usr/local:/usr:g' \
- -i tools/donuts/donuts \
- -i tools/etc/dnssec-tools/dnssec-tools.conf \
- -i tools/scripts/genkrf || die
- epatch "${FILESDIR}"/${PN}-2.0-dtinitconf.patch
-}
-
-src_configure() {
- econf \
- --disable-bind-checks \
- --without-validator \
- --with-perl-build-args=INSTALLDIRS=vendor \
- $(use_enable static-libs static)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- newinitd "${FILESDIR}"/rollerd.initd rollerd
- newconfd "${FILESDIR}"/rollerd.confd rollerd
- systemd_dounit "${FILESDIR}"/rollerd.service
-
- newinitd "${FILESDIR}"/donutsd.initd donutsd
- newconfd "${FILESDIR}"/donutsd.confd donutsd
- systemd_dounit "${FILESDIR}"/donutsd.service
-
- prune_libtool_files
- readme.gentoo_create_doc
-}
-
-DISABLE_AUTOFORMATTING=1
-DOC_CONTENTS="Please run 'dtinitconf' in order to set up the required
-/etc/dnssec-tools/dnssec-tools.conf file
-
-DNSSEC Validator has been split into net-dns/dnssec-validator
-"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2016-01-08 13:07 Michael Weber
0 siblings, 0 replies; 10+ messages in thread
From: Michael Weber @ 2016-01-08 13:07 UTC (permalink / raw
To: gentoo-commits
commit: 3800aa15026b72c50428abbfad84636e17e8f8e1
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 8 11:43:17 2016 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Fri Jan 8 13:06:40 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3800aa15
net-dns/dnssec-tools: Version bump (thanks Samuel Tardieu, bug 570740).
Package-Manager: portage-2.2.26
net-dns/dnssec-tools/Manifest | 1 +
net-dns/dnssec-tools/dnssec-tools-2.2.ebuild | 67 ++++++++++++++++++++++++++++
2 files changed, 68 insertions(+)
diff --git a/net-dns/dnssec-tools/Manifest b/net-dns/dnssec-tools/Manifest
index f67a1de..c2dab56 100644
--- a/net-dns/dnssec-tools/Manifest
+++ b/net-dns/dnssec-tools/Manifest
@@ -2,3 +2,4 @@ DIST dnssec-tools-1.13.tar.gz 3299592 SHA256 ac2caba324f96170406c202724344315371
DIST dnssec-tools-1.14.tar.gz 3337126 SHA256 10c387879cb1cc9e26c239a6dc99a4cba23e8b336c4231d0a9eb204369bbdbeb SHA512 398a59e30a88516881dd4252c735b5a8320e3bc30087cceb5cbc707ba0c7d7e82455047b4f38b655b993bfb738880b42c3c0df24fe23fe70feccc0c83e991bba WHIRLPOOL d490f153a949ec3637401ccf6cb93edc8479d5c7479295dea16b7a1326a0a56c3e485bfbdc7cbd89769bc825d2dc913ac48d31ead06f6c7be1b350e01775ff61
DIST dnssec-tools-2.0.tar.gz 4271431 SHA256 7fd5d483c7a4b25277f17d9010b8de79a21948884368e6d870bec0194d007445 SHA512 48d05b9deb34b964cb5040c411ecf8347c129025bfd1d1f568ce9394c3580b87932ad71ee187736fbf2bd372bc44d0f26f2423a1a6f9c05419f6030aaecc4df5 WHIRLPOOL 47b795a785faf23ef1401e0f53294fbb5b706ba3ede14191bac9763eae9fbb9637c7a250a5c08256c415574620272de6adf66b916db9b5556d6847097dd946de
DIST dnssec-tools-2.1.tar.gz 4430320 SHA256 64eebfd1213714b530e501f22b5ff9786db9b982897c432fecba75740ddcda52 SHA512 61119837320bf9a7c2d64a593fc3ed6b84ee7683b7e4ba5de380b0fd1be70e44bf73825ea5395cc1d3ddc729eaef17823a230b44b68fbc5fca988f8fb080f66b WHIRLPOOL 9fb992b0b544c7abf10c78c72bccd5f3d4c8ba6c1c05d48348b9ff6a349f8026f84d35906d7887ba1b74136190c404d224e5e9efee98a05cc755c34c02468ec6
+DIST dnssec-tools-2.2.tar.gz 4430138 SHA256 4f45033a7a27382fe5284de705a1792277dfbe9a149d369b95d787865a44ef66 SHA512 5d0d936a2dabc648033cbd74ff6f1b309ae66bf3f2ab1223c8be5879fa4385bfdfd8cee2b4005b0d0e7ed85eeb1b81a9a4092d300fa725d4b19a84bf2619a280 WHIRLPOOL d73f380365bf39ed43a592d0d5904d78b105d35dcb2cab0e5827d3314fce12fdd473b413f628260eb3ce2449a386f02ced3df3af02736f8548a76a2f49794346
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.2.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.2.ebuild
new file mode 100644
index 0000000..f73be5a
--- /dev/null
+++ b/net-dns/dnssec-tools/dnssec-tools-2.2.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+
+inherit eutils qt4-r2 systemd readme.gentoo
+
+DESCRIPTION="tools to ease the deployment of DNSSEC related technologies"
+HOMEPAGE="http://www.dnssec-tools.org/"
+SRC_URI="http://www.dnssec-tools.org/download/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static-libs"
+
+RDEPEND="dev-lang/perl
+ dev-perl/Crypt-OpenSSL-Random
+ dev-perl/Getopt-GUI-Long
+ dev-perl/GraphViz
+ dev-perl/MailTools
+ dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
+ dev-perl/XML-Simple"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ sed -e '/^maninstall:/,+3s:$(MKPATH) $(mandir)/$(man1dir):$(MKPATH) $(DESTDIR)/$(mandir)/$(man1dir):' \
+ -i Makefile.in || die
+ sed -e 's:/usr/local/etc:/etc:g' \
+ -e 's:/usr/local:/usr:g' \
+ -i tools/donuts/donuts \
+ -i tools/etc/dnssec-tools/dnssec-tools.conf \
+ -i tools/scripts/genkrf || die
+ epatch "${FILESDIR}"/${PN}-2.0-dtinitconf.patch
+}
+
+src_configure() {
+ econf \
+ --disable-bind-checks \
+ --without-validator \
+ --with-perl-build-args=INSTALLDIRS=vendor \
+ $(use_enable static-libs static)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ newinitd "${FILESDIR}"/rollerd.initd rollerd
+ newconfd "${FILESDIR}"/rollerd.confd rollerd
+ systemd_dounit "${FILESDIR}"/rollerd.service
+
+ newinitd "${FILESDIR}"/donutsd.initd donutsd
+ newconfd "${FILESDIR}"/donutsd.confd donutsd
+ systemd_dounit "${FILESDIR}"/donutsd.service
+
+ prune_libtool_files
+ readme.gentoo_create_doc
+}
+
+DISABLE_AUTOFORMATTING=1
+DOC_CONTENTS="Please run 'dtinitconf' in order to set up the required
+/etc/dnssec-tools/dnssec-tools.conf file
+
+DNSSEC Validator has been split into net-dns/dnssec-validator
+"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/
@ 2015-08-12 18:53 Michael Weber
0 siblings, 0 replies; 10+ messages in thread
From: Michael Weber @ 2015-08-12 18:53 UTC (permalink / raw
To: gentoo-commits
commit: 2cac971ba214cc173fbdf10ce67a4302dca59d65
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 12 18:53:05 2015 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed Aug 12 18:53:24 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cac971b
net-dns/dnssec-tools: add RDEPEND=dev-perl/Net-DNS-SEC (bug 535734, thanks Nick Soveiko).
Package-Manager: portage-2.2.20.1
net-dns/dnssec-tools/dnssec-tools-1.13-r1.ebuild | 1 +
net-dns/dnssec-tools/dnssec-tools-1.14.ebuild | 1 +
net-dns/dnssec-tools/dnssec-tools-2.0-r1.ebuild | 1 +
net-dns/dnssec-tools/dnssec-tools-2.0.ebuild | 1 +
net-dns/dnssec-tools/dnssec-tools-2.1.ebuild | 1 +
5 files changed, 5 insertions(+)
diff --git a/net-dns/dnssec-tools/dnssec-tools-1.13-r1.ebuild b/net-dns/dnssec-tools/dnssec-tools-1.13-r1.ebuild
index b0c0d9c..afd9dcf 100644
--- a/net-dns/dnssec-tools/dnssec-tools-1.13-r1.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-1.13-r1.ebuild
@@ -21,6 +21,7 @@ RDEPEND="dev-lang/perl
dev-perl/GraphViz
dev-perl/MailTools
dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
dev-perl/XML-Simple"
DEPEND="${RDEPEND}"
diff --git a/net-dns/dnssec-tools/dnssec-tools-1.14.ebuild b/net-dns/dnssec-tools/dnssec-tools-1.14.ebuild
index 1d5ae25..244f246 100644
--- a/net-dns/dnssec-tools/dnssec-tools-1.14.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-1.14.ebuild
@@ -21,6 +21,7 @@ RDEPEND="dev-lang/perl
dev-perl/GraphViz
dev-perl/MailTools
dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
dev-perl/XML-Simple"
DEPEND="${RDEPEND}"
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.0-r1.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.0-r1.ebuild
index fa9700e..3251fc3 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.0-r1.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.0-r1.ebuild
@@ -21,6 +21,7 @@ RDEPEND="dev-lang/perl
dev-perl/GraphViz
dev-perl/MailTools
dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
dev-perl/XML-Simple"
DEPEND="${RDEPEND}"
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.0.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.0.ebuild
index 069e0c9..5c5dc13 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.0.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.0.ebuild
@@ -21,6 +21,7 @@ RDEPEND="dev-lang/perl
dev-perl/GraphViz
dev-perl/MailTools
dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
dev-perl/XML-Simple"
DEPEND="${RDEPEND}"
diff --git a/net-dns/dnssec-tools/dnssec-tools-2.1.ebuild b/net-dns/dnssec-tools/dnssec-tools-2.1.ebuild
index 38a082a..f73be5a 100644
--- a/net-dns/dnssec-tools/dnssec-tools-2.1.ebuild
+++ b/net-dns/dnssec-tools/dnssec-tools-2.1.ebuild
@@ -21,6 +21,7 @@ RDEPEND="dev-lang/perl
dev-perl/GraphViz
dev-perl/MailTools
dev-perl/Net-DNS
+ dev-perl/Net-DNS-SEC
dev-perl/XML-Simple"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-03-04 23:22 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-29 10:26 [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-tools/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2021-03-04 23:22 Conrad Kostecki
2020-09-29 10:26 Joonas Niilola
2019-11-07 22:45 Andreas K. Hüttel
2018-12-04 14:14 Lars Wendler
2018-05-30 4:45 Markus Meier
2018-05-10 8:01 Andreas Sturmlechner
2018-05-10 8:01 Andreas Sturmlechner
2016-01-08 13:07 Michael Weber
2015-08-12 18:53 Michael Weber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox