public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2020-02-09 18:50 David Seifert
  0 siblings, 0 replies; 14+ messages in thread
From: David Seifert @ 2020-02-09 18:50 UTC (permalink / raw
  To: gentoo-commits

commit:     481e4782929aef758ba3de9d28cc598d88a1fe9c
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  9 18:49:24 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 18:49:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=481e4782

net-libs/udns: Port to EAPI 7

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 net-libs/udns/metadata.xml    | 14 +++++++-------
 net-libs/udns/udns-0.4.ebuild | 26 ++++++++------------------
 2 files changed, 15 insertions(+), 25 deletions(-)

diff --git a/net-libs/udns/metadata.xml b/net-libs/udns/metadata.xml
index f0db182dbd4..63f96226167 100644
--- a/net-libs/udns/metadata.xml
+++ b/net-libs/udns/metadata.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
-<use>
-	<flag name="tools">Build and install dnsget, ex-rdns and rblcheck tools</flag>
-</use>
-<longdescription>
-UDNS is a stub DNS resolver library with ability to perform both syncronous and asyncronous DNS queries.
-</longdescription>
+	<!-- maintainer-needed -->
+	<use>
+		<flag name="tools">Build and install dnsget, ex-rdns and rblcheck tools</flag>
+	</use>
+	<longdescription>
+		UDNS is a stub DNS resolver library with ability to perform both syncronous and asyncronous DNS queries.
+	</longdescription>
 </pkgmetadata>

diff --git a/net-libs/udns/udns-0.4.ebuild b/net-libs/udns/udns-0.4.ebuild
index f19b2595dc0..0953628925e 100644
--- a/net-libs/udns/udns-0.4.ebuild
+++ b/net-libs/udns/udns-0.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="4"
+EAPI=7
 
-inherit eutils multilib toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Async-capable DNS stub resolver library"
 HOMEPAGE="http://www.corpit.ru/mjt/udns.html"
@@ -14,26 +14,18 @@ SLOT="0"
 KEYWORDS="amd64 ~hppa ppc ~ppc64 sparc x86"
 IUSE="ipv6 static +tools"
 
-# Yes, this doesn't depend on any other library beside "system" set
-DEPEND=""
-RDEPEND=""
-
 src_configure() {
 	# Uses non-standard configure script, econf doesn't work
 	CC=$(tc-getCC) ./configure $(use_enable ipv6) || die "Configure failed"
 }
 
 src_compile() {
-	if use tools; then
-		emake shared
-	else
-		emake sharedlib
-	fi
+	emake $(usex tools shared sharedlib)
 }
 
 src_install() {
 	dolib.so libudns.so.0
-	dosym libudns.so.0 "/usr/$(get_libdir)/libudns.so"
+	dosym libudns.so.0 /usr/$(get_libdir)/libudns.so
 
 	if use tools; then
 		newbin dnsget_s dnsget
@@ -41,12 +33,10 @@ src_install() {
 		newbin rblcheck_s rblcheck
 	fi
 
-	insinto /usr/include
-	doins udns.h
+	doheader udns.h
 
 	doman udns.3
-	if use tools; then
-		doman dnsget.1 rblcheck.1
-	fi
+	use tools && doman dnsget.1 rblcheck.1
+
 	dodoc NEWS NOTES TODO
 }


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2022-03-20  0:05 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2022-03-20  0:05 UTC (permalink / raw
  To: gentoo-commits

commit:     4b3e924c1183ec10084b61c1a582662d3152a9e8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 23:47:35 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 23:47:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b3e924c

net-libs/udns: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

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

 net-libs/udns/udns-0.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/udns/udns-0.4.ebuild b/net-libs/udns/udns-0.4.ebuild
index 0953628925ed..da981b2165e9 100644
--- a/net-libs/udns/udns-0.4.ebuild
+++ b/net-libs/udns/udns-0.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ IUSE="ipv6 static +tools"
 
 src_configure() {
 	# Uses non-standard configure script, econf doesn't work
-	CC=$(tc-getCC) ./configure $(use_enable ipv6) || die "Configure failed"
+	CC="$(tc-getCC)" ./configure $(use_enable ipv6) || die "Configure failed"
 }
 
 src_compile() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-08-12  1:23 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2024-08-12  1:23 UTC (permalink / raw
  To: gentoo-commits

commit:     7d9f7057a904a4b9e1120a990734a3f0aa3cdae5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 01:23:30 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 01:23:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d9f7057

net-libs/udns: Stabilize 0.4-r3 x86, #937790

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

 net-libs/udns/udns-0.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.4-r3.ebuild b/net-libs/udns/udns-0.4-r3.ebuild
index 3939133f516b..b6ff24ac2143 100644
--- a/net-libs/udns/udns-0.4-r3.ebuild
+++ b/net-libs/udns/udns-0.4-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="ipv6 static +tools"
 
 PATCHES=(


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-08-12  1:23 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2024-08-12  1:23 UTC (permalink / raw
  To: gentoo-commits

commit:     d3771b043dfdec33674fde9f8541048555dddbb8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 01:23:28 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 01:23:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3771b04

net-libs/udns: Stabilize 0.4-r3 amd64, #937790

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

 net-libs/udns/udns-0.4-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/udns/udns-0.4-r3.ebuild b/net-libs/udns/udns-0.4-r3.ebuild
index 76ee1d6bd4c5..3939133f516b 100644
--- a/net-libs/udns/udns-0.4-r3.ebuild
+++ b/net-libs/udns/udns-0.4-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="http://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="ipv6 static +tools"
 
 PATCHES=(


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-08-12  1:23 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2024-08-12  1:23 UTC (permalink / raw
  To: gentoo-commits

commit:     f56fbc99b204ce52fc60aca503b0671f833ac059
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 01:23:31 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 01:23:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56fbc99

net-libs/udns: Stabilize 0.4-r3 ppc, #937790

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

 net-libs/udns/udns-0.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.4-r3.ebuild b/net-libs/udns/udns-0.4-r3.ebuild
index b6ff24ac2143..ccc3d9b26b6a 100644
--- a/net-libs/udns/udns-0.4-r3.ebuild
+++ b/net-libs/udns/udns-0.4-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~hppa ppc ~ppc64 ~sparc x86"
 IUSE="ipv6 static +tools"
 
 PATCHES=(


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-09-01 19:46 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2024-09-01 19:46 UTC (permalink / raw
  To: gentoo-commits

commit:     82798194be7673adb476301f49dc6a712db5a5df
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  1 19:46:44 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep  1 19:46:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82798194

net-libs/udns: Stabilize 0.4-r3 sparc, #937790

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/udns/udns-0.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.4-r3.ebuild b/net-libs/udns/udns-0.4-r3.ebuild
index ccc3d9b26b6a..9a50ccbae09b 100644
--- a/net-libs/udns/udns-0.4-r3.ebuild
+++ b/net-libs/udns/udns-0.4-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~hppa ppc ~ppc64 sparc x86"
 IUSE="ipv6 static +tools"
 
 PATCHES=(


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-05-04  6:08 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2025-05-04  6:08 UTC (permalink / raw
  To: gentoo-commits

commit:     2f086fe99d8785fe7fcd34897e7a53680ac57ee4
Author:     Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Sat May  3 07:29:07 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May  4 06:07:17 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f086fe9

net-libs/udns: add 0.6

set HTTP+S for SRC_URI / HOMEPAGE

rm static useflag, no-op
add tc-getRANLIB

this release includes fixes for modern compilers,
tested with clang-19/gcc-15/musl-llvm

Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/41911
Closes: https://github.com/gentoo/gentoo/pull/41911
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/udns/Manifest        |  1 +
 net-libs/udns/udns-0.6.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-libs/udns/Manifest b/net-libs/udns/Manifest
index 6ffcf9f1dabb..09d28de1cca7 100644
--- a/net-libs/udns/Manifest
+++ b/net-libs/udns/Manifest
@@ -1 +1,2 @@
 DIST udns-0.4.tar.gz 84716 BLAKE2B df41b325ae2ffaaaf09e1bb6f52d9e9a7c468c70d8bec849cb90ebcb1fac773ee2dc7e37125a75750b61a1a78d0416e6c9aeb72e43780b474d36e370a1b9cd8d SHA512 2990d57b3b6bf176a12ee07fd4391921e13634fc8409e8ce4df8dbe7b3556a116ae59ab328a1b6a95ebc94298f6b56ec7197a06a649d8d642b371b8ecef3e40b
+DIST udns-0.6.tar.gz 85129 BLAKE2B 72d4753ca62b8528f8a0066622ec052ddd8adda2e4137e9a337d2f4048b789730a2c6e1b3420f6f59a59a2af9c4a8d8074a03b17f2774b5c014ef986fbd73895 SHA512 9846c476e23f148565d2ea986352c34a364ec5b949db3821a8ed6bdf5d33b830f0afbbcf4d441420a36c57620236a01ef04f6f8b2619f6ec64595bab5524afe1

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
new file mode 100644
index 000000000000..6703a8a6b7c0
--- /dev/null
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo toolchain-funcs
+
+DESCRIPTION="Async-capable DNS stub resolver library"
+HOMEPAGE="https://www.corpit.ru/mjt/udns.html"
+SRC_URI="https://www.corpit.ru/mjt/udns/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="ipv6 +tools"
+
+src_configure() {
+	# Uses non-standard configure script, econf doesn't work
+	CC="$(tc-getCC)" RANLIB="$(tc-getRANLIB)" edo ./configure $(use_enable ipv6)
+}
+
+src_compile() {
+	emake $(usex tools shared sharedlib)
+}
+
+src_install() {
+	dolib.so libudns.so.0
+	dosym libudns.so.0 /usr/$(get_libdir)/libudns.so
+
+	if use tools; then
+		newbin dnsget_s dnsget
+		newbin ex-rdns_s ex-rdns
+		newbin rblcheck_s rblcheck
+	fi
+
+	doheader udns.h
+
+	doman udns.3
+	use tools && doman dnsget.1 rblcheck.1
+
+	dodoc NEWS NOTES TODO
+}


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-05-28 10:19 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2025-05-28 10:19 UTC (permalink / raw
  To: gentoo-commits

commit:     2b9a28fd2ce4a1220a851d7218cfb6ac9e62ed2f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 28 10:19:31 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 28 10:19:31 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b9a28fd

net-libs/udns: Keyword 0.6 arm64, #956732

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

 net-libs/udns/udns-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
index 6703a8a6b7c0..28c449e4d892 100644
--- a/net-libs/udns/udns-0.6.ebuild
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="ipv6 +tools"
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-06-16 21:38 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2025-06-16 21:38 UTC (permalink / raw
  To: gentoo-commits

commit:     7b2141c3231b677a70a466710efc6fbffdd04b85
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 16 21:38:14 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 16 21:38:14 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b2141c3

net-libs/udns: Stabilize 0.6 amd64, #958278

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

 net-libs/udns/udns-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
index 28c449e4d892..1ec06f45f7e6 100644
--- a/net-libs/udns/udns-0.6.ebuild
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="ipv6 +tools"
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-06-16 21:38 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2025-06-16 21:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e807172e19bc3cd3fd0c133bdd1f985c5c1e61cf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 16 21:38:16 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 16 21:38:16 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e807172e

net-libs/udns: Stabilize 0.6 x86, #958278

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

 net-libs/udns/udns-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
index 1ec06f45f7e6..c7a997c57dc8 100644
--- a/net-libs/udns/udns-0.6.ebuild
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="ipv6 +tools"
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-06-21 16:25 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2025-06-21 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     3e9ba7b153d5b962ae5069a199f8dbc6c32bf17f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 21 16:25:17 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 21 16:25:17 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e9ba7b1

net-libs/udns: Stabilize 0.6 ppc, #958278

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/udns/udns-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
index c7a997c57dc8..f5568f807791 100644
--- a/net-libs/udns/udns-0.6.ebuild
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ~ppc64 ~sparc x86"
 IUSE="ipv6 +tools"
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-07-26  8:27 Arthur Zamarin
  0 siblings, 0 replies; 14+ messages in thread
From: Arthur Zamarin @ 2025-07-26  8:27 UTC (permalink / raw
  To: gentoo-commits

commit:     9099ed0739b25b9ba30b77419fbfb89821e974dc
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 26 08:27:44 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 26 08:27:44 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9099ed07

net-libs/udns: Stabilize 0.6 ppc64, #960688

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-libs/udns/udns-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
index 50faf4f84ce6..9a1cded4a93d 100644
--- a/net-libs/udns/udns-0.6.ebuild
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
 IUSE="ipv6 +tools"
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-07-26 13:05 Michał Górny
  0 siblings, 0 replies; 14+ messages in thread
From: Michał Górny @ 2025-07-26 13:05 UTC (permalink / raw
  To: gentoo-commits

commit:     0cbfb362779705a412a6d1e8c2724cc0cd034c67
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 26 13:05:08 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 26 13:05:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cbfb362

net-libs/udns: Stabilize 0.6 arm64, #960688

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-libs/udns/udns-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
index 9a1cded4a93d..5ee0c03edf24 100644
--- a/net-libs/udns/udns-0.6.ebuild
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.corpit.ru/mjt/udns/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 arm64 ~hppa ppc ppc64 sparc x86"
 IUSE="ipv6 +tools"
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2025-07-28 16:28 Sam James
  0 siblings, 0 replies; 14+ messages in thread
From: Sam James @ 2025-07-28 16:28 UTC (permalink / raw
  To: gentoo-commits

commit:     36628e8e25e2dc5f209854c58e5d0915156bb5ff
Author:     Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Sun Jul 27 22:18:01 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 28 16:26:00 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36628e8e

net-libs/udns: avoid collision with rblcheck

Bug: https://bugs.gentoo.org/525462
Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/43197
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/udns/udns-0.6.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-libs/udns/udns-0.6.ebuild b/net-libs/udns/udns-0.6.ebuild
index 5ee0c03edf24..9925b4d747b7 100644
--- a/net-libs/udns/udns-0.6.ebuild
+++ b/net-libs/udns/udns-0.6.ebuild
@@ -14,6 +14,8 @@ SLOT="0"
 KEYWORDS="amd64 arm64 ~hppa ppc ppc64 sparc x86"
 IUSE="ipv6 +tools"
 
+RDEPEND="tools? ( !mail-filter/rblcheck )"
+
 src_configure() {
 	# Uses non-standard configure script, econf doesn't work
 	CC="$(tc-getCC)" RANLIB="$(tc-getRANLIB)" edo ./configure $(use_enable ipv6)


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2025-07-28 16:28 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-16 21:38 [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2025-07-28 16:28 Sam James
2025-07-26 13:05 Michał Górny
2025-07-26  8:27 Arthur Zamarin
2025-06-21 16:25 Arthur Zamarin
2025-06-16 21:38 Sam James
2025-05-28 10:19 Sam James
2025-05-04  6:08 Sam James
2024-09-01 19:46 Arthur Zamarin
2024-08-12  1:23 Sam James
2024-08-12  1:23 Sam James
2024-08-12  1:23 Sam James
2022-03-20  0:05 Sam James
2020-02-09 18:50 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox