public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-DNS/
Date: Wed, 22 Jan 2025 05:32:57 +0000 (UTC)	[thread overview]
Message-ID: <1737521878.8e36c545022a329f6c57c66412cffeef9d68e4c0.sam@gentoo> (raw)

commit:     8e36c545022a329f6c57c66412cffeef9d68e4c0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 22 04:57:58 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 22 04:57:58 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e36c545

dev-perl/Net-DNS: add 1.490.0

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-perl/Net-DNS/Manifest               |  1 +
 dev-perl/Net-DNS/Net-DNS-1.490.0.ebuild | 69 +++++++++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/dev-perl/Net-DNS/Manifest b/dev-perl/Net-DNS/Manifest
index d671bf56fa60..4afbddd36fe1 100644
--- a/dev-perl/Net-DNS/Manifest
+++ b/dev-perl/Net-DNS/Manifest
@@ -1,2 +1,3 @@
 DIST Net-DNS-1.47.tar.gz 259539 BLAKE2B 8aeff54bedc294ac75b967897798a4e8612debddfea3b0356c7e6c93fe3f382c1929c47f411c05fc5b7206fac7155d3ea8aafccf565039a04811f683b79c48e8 SHA512 f38060619532f8022829ece23c9593dfd682c971fb0e94a2ec61efa379fadfb88b965bb9f79b4ab1b692fe9f432046492e09826dca6ded19b333e2becab87bfa
 DIST Net-DNS-1.48.tar.gz 259568 BLAKE2B 6f37af9d490445ada1339cf4ee0b396234af4872ee6ab0181e3c19e023688d74a9b36719bfabcb77e88e2032a7d55de89cf73d13a8fd5a33c17fc0869b580acf SHA512 386cb9774ccb31359a65deb45b818d37f0dd55c397034f302171d181147ca90fb994ee38d841c5930e7dfd4e0f7157c6aa6ced0257aa334253cb3b9ee4b34187
+DIST Net-DNS-1.49.tar.gz 262957 BLAKE2B 23d5bb57969e21ec711e9630531a29670c4d37c3436ead3801a48959cfc7b4230e4604fbdaade5acacfd3736f563bc33cfa209f23cd38b84e9ac5c95e26d2575 SHA512 6976e01ee1e790f897635021dd2364131657455364eada7b8cdf0f0d975216007bfadbff01eeff89ad5c744e73bc22ebe01ec753b5751df12d7b799d7cae2107

diff --git a/dev-perl/Net-DNS/Net-DNS-1.490.0.ebuild b/dev-perl/Net-DNS/Net-DNS-1.490.0.ebuild
new file mode 100644
index 000000000000..27407fc800f1
--- /dev/null
+++ b/dev-perl/Net-DNS/Net-DNS-1.490.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=NLNETLABS
+DIST_VERSION=1.49
+DIST_EXAMPLES=( "contrib" "demo" )
+inherit toolchain-funcs perl-module
+
+DESCRIPTION="Perl Interface to the Domain Name System"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="minimal"
+
+PDEPEND="
+	!minimal? ( >=dev-perl/Net-DNS-SEC-1.30.0 )
+"
+RDEPEND="
+	>=virtual/perl-Carp-1.100.0
+	>=dev-perl/Digest-HMAC-1.30.0
+	>=virtual/perl-Digest-MD5-2.370.0
+	>=virtual/perl-Digest-SHA-5.230.0
+	>=virtual/perl-Encode-2.260.0
+	>=virtual/perl-Exporter-5.630.0
+	>=virtual/perl-File-Spec-3.290.0
+	>=virtual/perl-MIME-Base64-3.70.0
+	>=virtual/perl-Scalar-List-Utils-1.190.0
+	>=virtual/perl-Socket-1.810.0
+	>=virtual/perl-Time-Local-1.190.0
+	>=virtual/perl-IO-Socket-IP-0.380.0
+	>=virtual/perl-IO-1.140.0
+	!minimal? (
+		>=dev-perl/Digest-BubbleBabble-0.20.0
+		>=dev-perl/Net-LibIDN2-1.0.0
+	)
+"
+BDEPEND="
+	${RDEPEND}
+	>=virtual/perl-ExtUtils-MakeMaker-6.480.0
+	>=virtual/perl-Getopt-Long-2.430.0
+	test? (
+		>=virtual/perl-Test-Simple-0.520.0
+	)
+"
+
+src_prepare() {
+	perl-module_src_prepare
+	mydoc="TODO"
+	# --IPv6-tests requires that you have external IPv6 connectivity
+	# as it connects to 2001:7b8:206:1:0:1234:be21:e31e
+	if ! use test || ! has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then
+		myconf="${myconf} --no-online-tests --no-IPv6-tests"
+	fi
+}
+
+src_compile() {
+	emake FULL_AR="$(tc-getAR)" OTHERLDFLAGS="${LDFLAGS}"
+}
+
+src_test() {
+	perl_rm_files t/00-pod.t
+	if ! has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then
+		elog "Network tests disabled without to DIST_TEST_OVERIDE=~network"
+	fi
+	perl-module_src_test
+}


             reply	other threads:[~2025-01-22  5:33 UTC|newest]

Thread overview: 122+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-22  5:32 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-10-14 16:54 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-DNS/ Arthur Zamarin
2025-10-12 16:24 Sam James
2025-10-12 15:58 Sam James
2025-09-13 13:22 Sam James
2025-09-12 13:34 Arthur Zamarin
2025-09-10  5:53 Sam James
2025-09-10  4:59 Sam James
2025-09-10  4:59 Sam James
2025-09-07 14:56 Arthur Zamarin
2025-08-30 11:45 Arthur Zamarin
2025-08-18 15:55 Sam James
2025-08-01  0:10 Sam James
2025-07-04 19:01 Sam James
2025-03-05 23:31 Jakov Smolić
2025-03-05 23:31 Jakov Smolić
2025-03-03 20:52 Sam James
2025-03-03 20:34 Sam James
2025-02-26  7:45 Sam James
2025-01-18  7:11 Arthur Zamarin
2025-01-12 13:16 Sam James
2025-01-12 13:00 Sam James
2025-01-12 12:58 Sam James
2025-01-12 12:58 Sam James
2025-01-12 12:58 Sam James
2025-01-12 12:58 Sam James
2024-11-14  2:47 Sam James
2024-11-14  2:47 Sam James
2024-11-14  2:47 Sam James
2024-11-14  2:47 Sam James
2024-11-14  2:47 Sam James
2024-11-14  2:47 Sam James
2024-10-14  3:50 Sam James
2024-06-09 21:18 Sam James
2024-06-09 21:18 Sam James
2024-05-03  4:15 Sam James
2023-08-31  4:40 Sam James
2023-07-27 10:22 WANG Xuerui
2023-06-21  9:12 Arthur Zamarin
2023-06-21  9:12 Arthur Zamarin
2023-06-21  9:12 Arthur Zamarin
2023-06-21  8:18 Arthur Zamarin
2023-06-21  8:18 Sam James
2023-06-21  8:18 Sam James
2023-06-21  8:16 Arthur Zamarin
2023-06-02 22:35 Sam James
2023-05-10 18:49 Sam James
2023-03-14  2:00 Sam James
2022-12-18 11:47 Sam James
2022-12-18 11:44 Sam James
2022-06-01  2:06 Sam James
2022-02-19 12:02 Arthur Zamarin
2022-02-19 12:02 Arthur Zamarin
2022-02-19  9:13 Arthur Zamarin
2022-02-19  8:11 Arthur Zamarin
2022-02-19  7:19 Arthur Zamarin
2022-02-19  3:41 Sam James
2022-02-19  3:02 Sam James
2021-11-20 17:59 Andreas K. Hüttel
2021-11-20 17:59 Andreas K. Hüttel
2021-08-26 14:55 Sam James
2021-08-26 14:52 Sam James
2021-08-25 16:26 Sam James
2021-08-25  6:00 Agostino Sarubbo
2021-08-25  5:25 Agostino Sarubbo
2021-07-15 22:18 Sergei Trofimovich
2021-07-13 20:05 Sam James
2021-07-12  6:41 Sam James
2021-07-12  1:18 Sam James
2021-07-12  1:16 Sam James
2021-07-12  1:06 Sam James
2021-07-11 21:59 Andreas K. Hüttel
2021-07-11 20:15 Andreas K. Hüttel
2020-07-18  5:07 Kent Fredric
2020-07-06  2:51 Matt Turner
2020-05-22 19:22 Robin H. Johnson
2020-04-15  7:08 Agostino Sarubbo
2020-04-14 15:45 Agostino Sarubbo
2020-04-14 14:03 Agostino Sarubbo
2020-04-12 18:27 Sergei Trofimovich
2020-04-12 11:39 Mart Raudsepp
2020-04-12  9:34 Sergei Trofimovich
2019-10-12 11:35 Andreas K. Hüttel
2019-04-01 19:33 Andreas Sturmlechner
2018-12-22 16:50 Andreas K. Hüttel
2018-12-22 16:50 Andreas K. Hüttel
2018-10-27 12:31 Fabian Groffen
2018-08-20  7:15 Mikle Kolyada
2018-08-20  3:54 Mikle Kolyada
2018-04-28  6:02 Matt Turner
2018-03-26  5:28 Matt Turner
2018-01-05  7:32 Sergei Trofimovich
2017-12-31 21:37 Sergei Trofimovich
2017-12-25 11:42 Markus Meier
2017-12-21 13:40 Sergei Trofimovich
2017-12-09 11:31 Sergei Trofimovich
2017-12-08 23:31 Sergei Trofimovich
2017-12-05  8:45 Sergei Trofimovich
2017-12-04  1:46 Kent Fredric
2017-11-24 22:40 Sergei Trofimovich
2017-11-24 22:25 Sergei Trofimovich
2017-11-24  6:15 Markus Meier
2017-11-09  0:07 Matt Turner
2017-11-07 22:52 Sergei Trofimovich
2017-10-29 10:45 Sergei Trofimovich
2017-09-19 19:29 Sergei Trofimovich
2017-08-11 22:53 Sergei Trofimovich
2017-06-29  8:06 Agostino Sarubbo
2017-05-29 23:24 Kent Fredric
2017-05-25 20:04 Michael Weber
2017-04-19  7:02 Jeroen Roovers
2017-04-05 10:50 Michael Weber
2017-03-24 14:03 Kent Fredric
2017-03-20 22:45 Kent Fredric
2017-03-15 18:54 Matt Turner
2017-02-20 17:51 Markus Meier
2017-01-26 16:08 Tobias Klausmann
2017-01-07 21:14 Kent Fredric
2016-08-04 20:43 Kent Fredric
2016-04-02 12:45 Agostino Sarubbo
2016-03-30 23:19 Andreas Hüttel
2015-12-26 12:53 Andreas Hüttel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1737521878.8e36c545022a329f6c57c66412cffeef9d68e4c0.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox