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; 6+ 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] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2022-03-20  0:05 Sam James
  0 siblings, 0 replies; 6+ 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] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-08-12  1:23 Sam James
  0 siblings, 0 replies; 6+ 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] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-08-12  1:23 Sam James
  0 siblings, 0 replies; 6+ 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] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-08-12  1:23 Sam James
  0 siblings, 0 replies; 6+ 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] 6+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/
@ 2024-09-01 19:46 Arthur Zamarin
  0 siblings, 0 replies; 6+ 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] 6+ messages in thread

end of thread, other threads:[~2024-09-01 19:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-09 18:50 [gentoo-commits] repo/gentoo:master commit in: net-libs/udns/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2022-03-20  0:05 Sam James
2024-08-12  1:23 Sam James
2024-08-12  1:23 Sam James
2024-08-12  1:23 Sam James
2024-09-01 19:46 Arthur Zamarin

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