public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2020-11-12  5:04 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2020-11-12  5:04 UTC (permalink / raw
  To: gentoo-commits

commit:     e2990436bce967ea8c782843873100a883d0dd4e
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 12 05:03:41 2020 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Thu Nov 12 05:03:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2990436

net-libs/libnpupnp: Add new package 4.0.13

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.9, Repoman-3.0.2

 net-libs/libnpupnp/Manifest                |  1 +
 net-libs/libnpupnp/libnpupnp-4.0.13.ebuild | 39 ++++++++++++++++++++++++++++++
 net-libs/libnpupnp/metadata.xml            | 36 +++++++++++++++++++++++++++
 3 files changed, 76 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
new file mode 100644
index 00000000000..73b212161a1
--- /dev/null
+++ b/net-libs/libnpupnp/Manifest
@@ -0,0 +1 @@
+DIST libnpupnp-4.0.13.tar.gz 537389 BLAKE2B 0085d9ea9cf1786bba8e8abb812b0c1279fc30c70a16cb2bf4cfad405ec1346180171dd39296a30f5747cd55ee06fc314bcb49fdb6537a4dfbcf048fb66fd7f5 SHA512 c0332552ab2ba8aea8e72858601f2415a08a68224f724454d230acddf612b2fdd873daf41aeeeb3e1b4d1694665245087b3c4f96c896d36e2e9c017ea95d13aa

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
new file mode 100644
index 00000000000..80a418d1649
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="client debug device gena ipv6 optssdp reuseaddr soap ssdp tools webserver"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+
+src_prepare() {
+	default
+	./autogen.sh || die
+}
+
+src_configure() {
+	econf \
+		$(use_enable client) \
+		$(use_enable debug) \
+		$(use_enable device) \
+		$(use_enable gena) \
+		$(use_enable ipv6) \
+		$(use_enable optssdp) \
+		$(use_enable reuseaddr) \
+		$(use_enable soap) \
+		$(use_enable ssdp) \
+		$(use_enable tools) \
+		$(use_enable webserver)
+}

diff --git a/net-libs/libnpupnp/metadata.xml b/net-libs/libnpupnp/metadata.xml
new file mode 100644
index 00000000000..63aca78f507
--- /dev/null
+++ b/net-libs/libnpupnp/metadata.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<!--
+  This is the example metadata file.
+  The root element of this file is <pkgmetadata>. Within this element a
+  number of subelements are allowed, the most common being maintainer.
+
+  For a full description look at:
+  https://devmanual.gentoo.org/ebuild-writing/misc-files/metadata/
+
+  Before committing, please remove the comments from this file. They are
+  not relevant for general metadata.xml files.
+-->
+<pkgmetadata>
+  <maintainer type="person">
+    <email>stasibear@gentoo.org</email>
+    <description>Primary maintainer</description>
+  </maintainer>
+  <longdescription>
+    The libupnpp library, which provides the C++ interface for
+    upmpdcli and upplay, used to rely on the venerable libupnp library
+    (a.k.a pupnp: Portable UPnP) to provide the base UPnP protocol
+    functionality.
+  </longdescription>
+  <use>
+    <flag name="client">control point code (client)</flag>
+    <flag name="device">device specific code (implies -webserver if disabled)</flag>
+    <flag name="gena">GENA part</flag>
+    <flag name="optssdp">optional SSDP headers support</flag>
+    <flag name="reuseaddr">bind the miniserver socket with reuseaddr</flag>
+    <flag name="soap">SOAP part</flag>
+    <flag name="ssdp">SSDP part</flag>
+    <flag name="tools">helper APIs in upnptools.h</flag>
+    <flag name="webserver">integrated web server</flag>
+  </use>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2020-11-12 16:45 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2020-11-12 16:45 UTC (permalink / raw
  To: gentoo-commits

commit:     c44e53ee53d80ad5e78dfe63f959f278ee441b09
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 12 16:45:38 2020 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Thu Nov 12 16:45:38 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c44e53ee

net-libs/libnpupnp: Constrain USE to minimal working set

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Closes: https://bugs.gentoo.org/754135
Package-Manager: Portage-3.0.9, Repoman-3.0.2

 net-libs/libnpupnp/libnpupnp-4.0.13.ebuild | 18 +++++++++---------
 net-libs/libnpupnp/metadata.xml            | 16 ----------------
 2 files changed, 9 insertions(+), 25 deletions(-)

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
index 80a418d1649..3715a21e36d 100644
--- a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
@@ -10,7 +10,7 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
 
-IUSE="client debug device gena ipv6 optssdp reuseaddr soap ssdp tools webserver"
+IUSE="client optssdp reuseaddr tools"
 
 RDEPEND="
 	dev-libs/expat
@@ -25,15 +25,15 @@ src_prepare() {
 
 src_configure() {
 	econf \
-		$(use_enable client) \
-		$(use_enable debug) \
-		$(use_enable device) \
-		$(use_enable gena) \
-		$(use_enable ipv6) \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
 		$(use_enable optssdp) \
 		$(use_enable reuseaddr) \
-		$(use_enable soap) \
-		$(use_enable ssdp) \
+		--enable-soap \
+		--enable-ssdp \
 		$(use_enable tools) \
-		$(use_enable webserver)
+		--enable-webserver
 }

diff --git a/net-libs/libnpupnp/metadata.xml b/net-libs/libnpupnp/metadata.xml
index 63aca78f507..cde7ea4d30b 100644
--- a/net-libs/libnpupnp/metadata.xml
+++ b/net-libs/libnpupnp/metadata.xml
@@ -1,16 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<!--
-  This is the example metadata file.
-  The root element of this file is <pkgmetadata>. Within this element a
-  number of subelements are allowed, the most common being maintainer.
-
-  For a full description look at:
-  https://devmanual.gentoo.org/ebuild-writing/misc-files/metadata/
-
-  Before committing, please remove the comments from this file. They are
-  not relevant for general metadata.xml files.
--->
 <pkgmetadata>
   <maintainer type="person">
     <email>stasibear@gentoo.org</email>
@@ -24,13 +13,8 @@
   </longdescription>
   <use>
     <flag name="client">control point code (client)</flag>
-    <flag name="device">device specific code (implies -webserver if disabled)</flag>
-    <flag name="gena">GENA part</flag>
     <flag name="optssdp">optional SSDP headers support</flag>
     <flag name="reuseaddr">bind the miniserver socket with reuseaddr</flag>
-    <flag name="soap">SOAP part</flag>
-    <flag name="ssdp">SSDP part</flag>
     <flag name="tools">helper APIs in upnptools.h</flag>
-    <flag name="webserver">integrated web server</flag>
   </use>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2020-11-13  2:05 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2020-11-13  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     324522b51aefdbad70ff7e5c3a1a8beb3698519a
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 13 02:05:27 2020 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Fri Nov 13 02:05:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=324522b5

net-libs/libnpupnp: Enable remaining flags, none are really optional

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Closes: https://bugs.gentoo.org/754177
Closes: https://bugs.gentoo.org/754198
Package-Manager: Portage-3.0.9, Repoman-3.0.2

 net-libs/libnpupnp/libnpupnp-4.0.13.ebuild | 8 +++-----
 net-libs/libnpupnp/metadata.xml            | 6 ------
 2 files changed, 3 insertions(+), 11 deletions(-)

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
index 3715a21e36d..a00ee17059e 100644
--- a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
@@ -10,8 +10,6 @@ LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
 
-IUSE="client optssdp reuseaddr tools"
-
 RDEPEND="
 	dev-libs/expat
 	net-libs/libmicrohttpd
@@ -30,10 +28,10 @@ src_configure() {
 		--enable-device \
 		--enable-gena \
 		--enable-ipv6 \
-		$(use_enable optssdp) \
-		$(use_enable reuseaddr) \
+		--enable-optssdp \
+		--enable-reuseaddr \
 		--enable-soap \
 		--enable-ssdp \
-		$(use_enable tools) \
+		--enable-tools \
 		--enable-webserver
 }

diff --git a/net-libs/libnpupnp/metadata.xml b/net-libs/libnpupnp/metadata.xml
index cde7ea4d30b..d468735607a 100644
--- a/net-libs/libnpupnp/metadata.xml
+++ b/net-libs/libnpupnp/metadata.xml
@@ -11,10 +11,4 @@
     (a.k.a pupnp: Portable UPnP) to provide the base UPnP protocol
     functionality.
   </longdescription>
-  <use>
-    <flag name="client">control point code (client)</flag>
-    <flag name="optssdp">optional SSDP headers support</flag>
-    <flag name="reuseaddr">bind the miniserver socket with reuseaddr</flag>
-    <flag name="tools">helper APIs in upnptools.h</flag>
-  </use>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2020-11-21 17:54 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2020-11-21 17:54 UTC (permalink / raw
  To: gentoo-commits

commit:     e64d849808e79b589ffeb5e477913380b0d7f76f
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 21 17:54:23 2020 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Nov 21 17:54:23 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e64d8498

net-libs/libnpupnp: Bump to 4.0.14

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.9, Repoman-3.0.2

 net-libs/libnpupnp/Manifest                |  1 +
 net-libs/libnpupnp/libnpupnp-4.0.14.ebuild | 37 ++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 73b212161a1..240ceb39013 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-4.0.13.tar.gz 537389 BLAKE2B 0085d9ea9cf1786bba8e8abb812b0c1279fc30c70a16cb2bf4cfad405ec1346180171dd39296a30f5747cd55ee06fc314bcb49fdb6537a4dfbcf048fb66fd7f5 SHA512 c0332552ab2ba8aea8e72858601f2415a08a68224f724454d230acddf612b2fdd873daf41aeeeb3e1b4d1694665245087b3c4f96c896d36e2e9c017ea95d13aa
+DIST libnpupnp-4.0.14.tar.gz 538629 BLAKE2B 3bcd1cf04126aa0d16056865e2f7c90bc479ae4ccea5094b2c44ee687be95fe346494a2d07ab7925963d88e614fff1a451341af7d41c2a16df1208aef728d515 SHA512 b224cadbcd92b8d66118da015db345b3ef5c4858a458ac681d550c1409e62f212d3b2a744a8368fa4149309f29de2edb8cb14c75ebcb14653ee351e0d24cba71

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild
new file mode 100644
index 00000000000..a00ee17059e
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+
+src_prepare() {
+	default
+	./autogen.sh || die
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2020-11-22 16:01 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2020-11-22 16:01 UTC (permalink / raw
  To: gentoo-commits

commit:     795c402bc6547bacb4a570885ccec543305b689e
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 22 16:01:06 2020 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Nov 22 16:01:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795c402b

net-libs/libnpupnp: revbump for prior flags change

Should have revbumped with 324522b51aefdbad70ff7e5c3a1a8beb3698519a,
doing it now.

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.9, Repoman-3.0.2

 net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild | 37 +++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild
new file mode 100644
index 00000000000..733dfdc3381
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+
+src_prepare() {
+	default
+	./autogen.sh || die
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2020-12-27 16:17 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2020-12-27 16:17 UTC (permalink / raw
  To: gentoo-commits

commit:     be30607c6cc0359ed49e3ac2f027e5d39d0c3335
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 16:16:12 2020 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 16:17:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be30607c

net-libs/libnpupnp: stabilize 4.0.14-r1

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.12, Repoman-3.0.2

 net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild
index 733dfdc3381..da0ca888452 100644
--- a/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://framagit.org/medoc92/npupnp"
 SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2020-12-27 16:21 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2020-12-27 16:21 UTC (permalink / raw
  To: gentoo-commits

commit:     a57aff0b618791bb2c39ee64489272cef777d8a9
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 27 16:18:55 2020 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Dec 27 16:20:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a57aff0b

net-libs/libnpupnp: Remove old

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.12, Repoman-3.0.2

 net-libs/libnpupnp/Manifest                |  1 -
 net-libs/libnpupnp/libnpupnp-4.0.13.ebuild | 37 ------------------------------
 net-libs/libnpupnp/libnpupnp-4.0.14.ebuild | 37 ------------------------------
 3 files changed, 75 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 240ceb39013..0936599ce31 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-4.0.13.tar.gz 537389 BLAKE2B 0085d9ea9cf1786bba8e8abb812b0c1279fc30c70a16cb2bf4cfad405ec1346180171dd39296a30f5747cd55ee06fc314bcb49fdb6537a4dfbcf048fb66fd7f5 SHA512 c0332552ab2ba8aea8e72858601f2415a08a68224f724454d230acddf612b2fdd873daf41aeeeb3e1b4d1694665245087b3c4f96c896d36e2e9c017ea95d13aa
 DIST libnpupnp-4.0.14.tar.gz 538629 BLAKE2B 3bcd1cf04126aa0d16056865e2f7c90bc479ae4ccea5094b2c44ee687be95fe346494a2d07ab7925963d88e614fff1a451341af7d41c2a16df1208aef728d515 SHA512 b224cadbcd92b8d66118da015db345b3ef5c4858a458ac681d550c1409e62f212d3b2a744a8368fa4149309f29de2edb8cb14c75ebcb14653ee351e0d24cba71

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
deleted file mode 100644
index a00ee17059e..00000000000
--- a/net-libs/libnpupnp/libnpupnp-4.0.13.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-
-src_prepare() {
-	default
-	./autogen.sh || die
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild
deleted file mode 100644
index a00ee17059e..00000000000
--- a/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-
-src_prepare() {
-	default
-	./autogen.sh || die
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2021-08-03 20:52 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2021-08-03 20:52 UTC (permalink / raw
  To: gentoo-commits

commit:     f7d0dd3b17b0588881711f671bcfee23334a01a0
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  3 20:51:55 2021 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Tue Aug  3 20:51:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7d0dd3b

net-libs/libnpupnp: bump to 4.1.4

Closes: https://bugs.gentoo.org/784593
Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.20, Repoman-3.0.3

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-4.1.4.ebuild | 37 +++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 0936599ce31..f9f4c73a95f 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-4.0.14.tar.gz 538629 BLAKE2B 3bcd1cf04126aa0d16056865e2f7c90bc479ae4ccea5094b2c44ee687be95fe346494a2d07ab7925963d88e614fff1a451341af7d41c2a16df1208aef728d515 SHA512 b224cadbcd92b8d66118da015db345b3ef5c4858a458ac681d550c1409e62f212d3b2a744a8368fa4149309f29de2edb8cb14c75ebcb14653ee351e0d24cba71
+DIST libnpupnp-4.1.4.tar.gz 544243 BLAKE2B 4e2d0ad827fd566d70df440246ad8fe081c5eb125fac72827e84680a1d842125562449866dab69305c16e170e8b04679ad40f73c2ac573aae266d24679053c76 SHA512 8a41f52a5665470ddf48233a5262cd906a384f89308423020a6f4d2b67d38b53d9608ec6f01a1118f703dce41ba0c58a863965e7226411b4f8aababd7b1d22b0

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild
new file mode 100644
index 00000000000..d35dc2f8d1e
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+
+src_prepare() {
+	default
+	./autogen.sh || die
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2021-08-10 13:24 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2021-08-10 13:24 UTC (permalink / raw
  To: gentoo-commits

commit:     6ec7c33586d48576ce4e8f398e96b3ab50f89399
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 10 13:24:03 2021 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Tue Aug 10 13:24:03 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ec7c335

net-libs/libnpupnp: stabilize 4.1.4

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.20, Repoman-3.0.3

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

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild
index d35dc2f8d1e..12dfef202a9 100644
--- a/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://framagit.org/medoc92/npupnp"
 SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2021-08-10 13:30 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2021-08-10 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     e39b5a4d20ec9d4a93ea799a281a35081f16a6f5
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 10 13:30:43 2021 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Tue Aug 10 13:30:43 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e39b5a4d

net-libs/libnpupnp: remove old

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.20, Repoman-3.0.3

 net-libs/libnpupnp/Manifest                   |  1 -
 net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild | 37 ---------------------------
 2 files changed, 38 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index f9f4c73a95f..673fe3ab581 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-4.0.14.tar.gz 538629 BLAKE2B 3bcd1cf04126aa0d16056865e2f7c90bc479ae4ccea5094b2c44ee687be95fe346494a2d07ab7925963d88e614fff1a451341af7d41c2a16df1208aef728d515 SHA512 b224cadbcd92b8d66118da015db345b3ef5c4858a458ac681d550c1409e62f212d3b2a744a8368fa4149309f29de2edb8cb14c75ebcb14653ee351e0d24cba71
 DIST libnpupnp-4.1.4.tar.gz 544243 BLAKE2B 4e2d0ad827fd566d70df440246ad8fe081c5eb125fac72827e84680a1d842125562449866dab69305c16e170e8b04679ad40f73c2ac573aae266d24679053c76 SHA512 8a41f52a5665470ddf48233a5262cd906a384f89308423020a6f4d2b67d38b53d9608ec6f01a1118f703dce41ba0c58a863965e7226411b4f8aababd7b1d22b0

diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild
deleted file mode 100644
index da0ca888452..00000000000
--- a/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-
-src_prepare() {
-	default
-	./autogen.sh || die
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2021-10-27  1:12 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2021-10-27  1:12 UTC (permalink / raw
  To: gentoo-commits

commit:     448198bb9a9356edccea1a2201f67370ff6ef6d2
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 27 01:04:23 2021 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Wed Oct 27 01:04:23 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448198bb

net-libs/libnpupnp: bump to 4.1.5

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.28, Repoman-3.0.3

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-4.1.5.ebuild | 37 +++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 673fe3ab581..a16f8adf89b 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-4.1.4.tar.gz 544243 BLAKE2B 4e2d0ad827fd566d70df440246ad8fe081c5eb125fac72827e84680a1d842125562449866dab69305c16e170e8b04679ad40f73c2ac573aae266d24679053c76 SHA512 8a41f52a5665470ddf48233a5262cd906a384f89308423020a6f4d2b67d38b53d9608ec6f01a1118f703dce41ba0c58a863965e7226411b4f8aababd7b1d22b0
+DIST libnpupnp-4.1.5.tar.gz 545672 BLAKE2B 75f3236cd18324ffa35215f152ef2b84d81b4bc81b9c73488e7274ecb5d76918f0ef328edcf089d81202e92f4fa3922bfe46d6eb3e9a1bbd065858bf6e5cff60 SHA512 a7b2f620c846f2127220a062eab76f2c06b3eee4503d9f4922d7d6342feea19381be1486bf1cb033c44275f83ab90be3f8f2c09f0ec6f0af7367c314023c889e

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
new file mode 100644
index 00000000000..d35dc2f8d1e
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+
+src_prepare() {
+	default
+	./autogen.sh || die
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2021-11-27 23:45 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2021-11-27 23:45 UTC (permalink / raw
  To: gentoo-commits

commit:     1c4ea39f545008a2e3d064df37d0c852c4d1a8cd
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 27 23:45:29 2021 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Nov 27 23:45:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c4ea39f

net-libs/libnpupnp: stabilize 4.1.5

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.28, Repoman-3.0.3

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

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
index d35dc2f8d1ed..12dfef202a9e 100644
--- a/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://framagit.org/medoc92/npupnp"
 SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2021-11-27 23:46 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2021-11-27 23:46 UTC (permalink / raw
  To: gentoo-commits

commit:     4d4a778facde61b28439bd86ce90bc21608aefdb
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 27 23:46:28 2021 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Nov 27 23:46:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d4a778f

net-libs/libnpupnp: remove old

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.28, Repoman-3.0.3

 net-libs/libnpupnp/Manifest               |  1 -
 net-libs/libnpupnp/libnpupnp-4.1.4.ebuild | 37 -------------------------------
 2 files changed, 38 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index a16f8adf89bc..c5effee74846 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-4.1.4.tar.gz 544243 BLAKE2B 4e2d0ad827fd566d70df440246ad8fe081c5eb125fac72827e84680a1d842125562449866dab69305c16e170e8b04679ad40f73c2ac573aae266d24679053c76 SHA512 8a41f52a5665470ddf48233a5262cd906a384f89308423020a6f4d2b67d38b53d9608ec6f01a1118f703dce41ba0c58a863965e7226411b4f8aababd7b1d22b0
 DIST libnpupnp-4.1.5.tar.gz 545672 BLAKE2B 75f3236cd18324ffa35215f152ef2b84d81b4bc81b9c73488e7274ecb5d76918f0ef328edcf089d81202e92f4fa3922bfe46d6eb3e9a1bbd065858bf6e5cff60 SHA512 a7b2f620c846f2127220a062eab76f2c06b3eee4503d9f4922d7d6342feea19381be1486bf1cb033c44275f83ab90be3f8f2c09f0ec6f0af7367c314023c889e

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild
deleted file mode 100644
index 12dfef202a9e..000000000000
--- a/net-libs/libnpupnp/libnpupnp-4.1.4.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-
-src_prepare() {
-	default
-	./autogen.sh || die
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-03-13  5:54 Sam James
  0 siblings, 0 replies; 38+ messages in thread
From: Sam James @ 2022-03-13  5:54 UTC (permalink / raw
  To: gentoo-commits

commit:     22b5c2e92d64f93584291a4c9ec102f14ac9a4db
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 05:34:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 05:36:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22b5c2e9

net-libs/libnpupnp: [QA] use eautoreconf, fix DEPEND

- Use eautoreconf instead of autogen.sh (handles everything we need, plus
  inheriting autotools.eclass guarantees correct dependencies).
- Define DEPEND (these dependencies need to be around at build-time too)
- Add missing virtual/pkgconfig BDEPEND

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

 net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild | 48 ++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild
new file mode 100644
index 000000000000..e43e9d04e31f
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-03-13 14:38 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2022-03-13 14:38 UTC (permalink / raw
  To: gentoo-commits

commit:     d181bb303598455da58d1ec53910bb8f0059fe50
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 13 14:37:52 2022 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Mar 13 14:37:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d181bb30

net-libs/libnpupnp: Bump to 4.2.1

Includes Sam's very recent updates

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-4.2.1.ebuild | 48 +++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index c5effee74846..77be72307f41 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-4.1.5.tar.gz 545672 BLAKE2B 75f3236cd18324ffa35215f152ef2b84d81b4bc81b9c73488e7274ecb5d76918f0ef328edcf089d81202e92f4fa3922bfe46d6eb3e9a1bbd065858bf6e5cff60 SHA512 a7b2f620c846f2127220a062eab76f2c06b3eee4503d9f4922d7d6342feea19381be1486bf1cb033c44275f83ab90be3f8f2c09f0ec6f0af7367c314023c889e
+DIST libnpupnp-4.2.1.tar.gz 544987 BLAKE2B dee3b5ffb0a3005c1ac9a262df61c8823f59cb0e1b204776ff4f7a465b5caf226a6149315af0862b397607bd07783c2f876fd143090cc92174e081d9a4dbd585 SHA512 89c83bf05e64684432698b36a2152b4b35e8cffd7e4ef12046289533bc54f014ab0275190e98e79338efe8ebee03d6e7e20a032d1d293b2eb01bf5e0f9e6154f

diff --git a/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild b/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild
new file mode 100644
index 000000000000..e43e9d04e31f
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-05-21 20:36 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2022-05-21 20:36 UTC (permalink / raw
  To: gentoo-commits

commit:     8b6104c91f66d24705efaef5a3e4f344b7d986b6
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 20:27:43 2022 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat May 21 20:36:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b6104c9

net-libs/libnpupnp: stabilize 4.2.1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

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

diff --git a/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild b/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild
index e43e9d04e31f..19af384d8482 100644
--- a/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-05-21 20:36 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2022-05-21 20:36 UTC (permalink / raw
  To: gentoo-commits

commit:     dcb908bbe5f01dd148280b43eb244a0b0e702dae
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 20:29:03 2022 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat May 21 20:36:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb908bb

net-libs/libnpupnp: remove old versions

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 net-libs/libnpupnp/Manifest                  |  1 -
 net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild | 48 ----------------------------
 net-libs/libnpupnp/libnpupnp-4.1.5.ebuild    | 37 ---------------------
 3 files changed, 86 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 77be72307f41..537d3baf7e25 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-4.1.5.tar.gz 545672 BLAKE2B 75f3236cd18324ffa35215f152ef2b84d81b4bc81b9c73488e7274ecb5d76918f0ef328edcf089d81202e92f4fa3922bfe46d6eb3e9a1bbd065858bf6e5cff60 SHA512 a7b2f620c846f2127220a062eab76f2c06b3eee4503d9f4922d7d6342feea19381be1486bf1cb033c44275f83ab90be3f8f2c09f0ec6f0af7367c314023c889e
 DIST libnpupnp-4.2.1.tar.gz 544987 BLAKE2B dee3b5ffb0a3005c1ac9a262df61c8823f59cb0e1b204776ff4f7a465b5caf226a6149315af0862b397607bd07783c2f876fd143090cc92174e081d9a4dbd585 SHA512 89c83bf05e64684432698b36a2152b4b35e8cffd7e4ef12046289533bc54f014ab0275190e98e79338efe8ebee03d6e7e20a032d1d293b2eb01bf5e0f9e6154f

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild
deleted file mode 100644
index e43e9d04e31f..000000000000
--- a/net-libs/libnpupnp/libnpupnp-4.1.5-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}

diff --git a/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild b/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
deleted file mode 100644
index 12dfef202a9e..000000000000
--- a/net-libs/libnpupnp/libnpupnp-4.1.5.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-
-src_prepare() {
-	default
-	./autogen.sh || die
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-05-21 20:36 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2022-05-21 20:36 UTC (permalink / raw
  To: gentoo-commits

commit:     f142caa77ed4dbe18130043027daf9e36870fe2c
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 20:30:16 2022 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat May 21 20:36:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f142caa7

net-libs/libnpupnp: bump 4.2.2

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-4.2.2.ebuild | 48 +++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 537d3baf7e25..67ab09e9ae1b 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-4.2.1.tar.gz 544987 BLAKE2B dee3b5ffb0a3005c1ac9a262df61c8823f59cb0e1b204776ff4f7a465b5caf226a6149315af0862b397607bd07783c2f876fd143090cc92174e081d9a4dbd585 SHA512 89c83bf05e64684432698b36a2152b4b35e8cffd7e4ef12046289533bc54f014ab0275190e98e79338efe8ebee03d6e7e20a032d1d293b2eb01bf5e0f9e6154f
+DIST libnpupnp-4.2.2.tar.gz 544198 BLAKE2B 450b3bf3f3ef2027bf50ad339c74b20dc4f075aac5c1b2419954bd558f114ca1dd973f5c14962b046cd6e57a0256586070aab7639b7da080452406d8a0fd24bc SHA512 22262e3dcb42f8c5ceb3df6296682ba993c4f86a810aaa63c7a6b5ec277c525d3d666a58840fb40833096e4f69916d309ca549bf67a137f200a236b1f71ec1f8

diff --git a/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild b/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild
new file mode 100644
index 000000000000..e43e9d04e31f
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-07-02  1:18 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2022-07-02  1:18 UTC (permalink / raw
  To: gentoo-commits

commit:     bfb7be6e1a597ac2f269a2f5f950e648fba59c0c
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 00:07:47 2022 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 01:16:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfb7be6e

net-libs/libnpupnp: remove old

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 -
 net-libs/libnpupnp/libnpupnp-4.2.1.ebuild | 48 -------------------------------
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 67ab09e9ae1b..523f640fe72f 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-4.2.1.tar.gz 544987 BLAKE2B dee3b5ffb0a3005c1ac9a262df61c8823f59cb0e1b204776ff4f7a465b5caf226a6149315af0862b397607bd07783c2f876fd143090cc92174e081d9a4dbd585 SHA512 89c83bf05e64684432698b36a2152b4b35e8cffd7e4ef12046289533bc54f014ab0275190e98e79338efe8ebee03d6e7e20a032d1d293b2eb01bf5e0f9e6154f
 DIST libnpupnp-4.2.2.tar.gz 544198 BLAKE2B 450b3bf3f3ef2027bf50ad339c74b20dc4f075aac5c1b2419954bd558f114ca1dd973f5c14962b046cd6e57a0256586070aab7639b7da080452406d8a0fd24bc SHA512 22262e3dcb42f8c5ceb3df6296682ba993c4f86a810aaa63c7a6b5ec277c525d3d666a58840fb40833096e4f69916d309ca549bf67a137f200a236b1f71ec1f8

diff --git a/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild b/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild
deleted file mode 100644
index 19af384d8482..000000000000
--- a/net-libs/libnpupnp/libnpupnp-4.2.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-07-02  1:18 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2022-07-02  1:18 UTC (permalink / raw
  To: gentoo-commits

commit:     22eec57c4a7b4a6d2213a3a1ce2dea6559a8a741
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 00:07:03 2022 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 01:16:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22eec57c

net-libs/libnpupnp: stabilize 4.2.2

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

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

diff --git a/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild b/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild
index e43e9d04e31f..19af384d8482 100644
--- a/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2022-09-25 15:51 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2022-09-25 15:51 UTC (permalink / raw
  To: gentoo-commits

commit:     8af14f3e641b0a6dafbf8ae050f4374ceca877fb
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 15:37:37 2022 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 15:37:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af14f3e

net-libs/libnpupnp: add 5.0.0

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-5.0.0.ebuild | 48 +++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 523f640fe72f..205b83e634be 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-4.2.2.tar.gz 544198 BLAKE2B 450b3bf3f3ef2027bf50ad339c74b20dc4f075aac5c1b2419954bd558f114ca1dd973f5c14962b046cd6e57a0256586070aab7639b7da080452406d8a0fd24bc SHA512 22262e3dcb42f8c5ceb3df6296682ba993c4f86a810aaa63c7a6b5ec277c525d3d666a58840fb40833096e4f69916d309ca549bf67a137f200a236b1f71ec1f8
+DIST libnpupnp-5.0.0.tar.gz 545368 BLAKE2B a0b83186df66ff5608a7d579d3653028497ce92536ea85abc03c73134046c4f55ad31fb849c7231cf7842a424e4f408747f7da3769aae441499fd7ec7ae2544f SHA512 325be49f64d901e67aaf3893ac91f21523e81b1810c717f70a40486dde65080620ffa38f622ec785475b181f84a6d51fad89a86e709a9bd5554f278b90ae92f9

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild
new file mode 100644
index 000000000000..e43e9d04e31f
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-01-15 21:25 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-01-15 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     5ba39ba73ba38203050218b3436c8800c490de2c
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 14 16:10:24 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 21:24:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba39ba7

net-libs/libnpupnp: stabilize 5.0.0 for amd64, x86

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

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

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild
index e43e9d04e31f..f1e07f46c8cb 100644
--- a/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-01-15 21:25 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-01-15 21:25 UTC (permalink / raw
  To: gentoo-commits

commit:     3552ad063b49d0dfa19ae5718f2bd53543a8c4b7
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 14 16:11:45 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 21:24:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3552ad06

net-libs/libnpupnp: drop 4.2.2

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 -
 net-libs/libnpupnp/libnpupnp-4.2.2.ebuild | 48 -------------------------------
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 205b83e634be..a1548b43c5a1 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-4.2.2.tar.gz 544198 BLAKE2B 450b3bf3f3ef2027bf50ad339c74b20dc4f075aac5c1b2419954bd558f114ca1dd973f5c14962b046cd6e57a0256586070aab7639b7da080452406d8a0fd24bc SHA512 22262e3dcb42f8c5ceb3df6296682ba993c4f86a810aaa63c7a6b5ec277c525d3d666a58840fb40833096e4f69916d309ca549bf67a137f200a236b1f71ec1f8
 DIST libnpupnp-5.0.0.tar.gz 545368 BLAKE2B a0b83186df66ff5608a7d579d3653028497ce92536ea85abc03c73134046c4f55ad31fb849c7231cf7842a424e4f408747f7da3769aae441499fd7ec7ae2544f SHA512 325be49f64d901e67aaf3893ac91f21523e81b1810c717f70a40486dde65080620ffa38f622ec785475b181f84a6d51fad89a86e709a9bd5554f278b90ae92f9

diff --git a/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild b/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild
deleted file mode 100644
index 19af384d8482..000000000000
--- a/net-libs/libnpupnp/libnpupnp-4.2.2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-03-02  6:14 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-03-02  6:14 UTC (permalink / raw
  To: gentoo-commits

commit:     2bcab0a8fb658631cf4a2cb39d655231b992db64
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  2 06:14:16 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Thu Mar  2 06:14:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bcab0a8

net-libs/libnpupnp: add 5.0.1

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-5.0.1.ebuild | 48 +++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index a1548b43c5a1..b6f48618090f 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-5.0.0.tar.gz 545368 BLAKE2B a0b83186df66ff5608a7d579d3653028497ce92536ea85abc03c73134046c4f55ad31fb849c7231cf7842a424e4f408747f7da3769aae441499fd7ec7ae2544f SHA512 325be49f64d901e67aaf3893ac91f21523e81b1810c717f70a40486dde65080620ffa38f622ec785475b181f84a6d51fad89a86e709a9bd5554f278b90ae92f9
+DIST libnpupnp-5.0.1.tar.gz 553258 BLAKE2B 141967e60a4776b6470dc55d2b0736e17281c671d7f102aee9553ff48d66833ec0c97d405427161989130f6cac21c90c2663f945e6c69c317de710a08e84627a SHA512 2a8cd7c1f2bd710a9b72d69dde56b2e5094ef1b6282239377f7fd15e0a6d9f85218f5b95ec17dabc678897f2d597cf7bf800890524762488c0e6fcc315a8cef7

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild
new file mode 100644
index 000000000000..9990fede9a9f
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-04-08 20:05 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-04-08 20:05 UTC (permalink / raw
  To: gentoo-commits

commit:     04b51690d65a37ab3ff074275de090d9fb66a4e3
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  8 20:04:14 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Apr  8 20:04:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04b51690

net-libs/libnpupnp: stabilize 5.0.1 for amd64, x86

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

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

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild
index 9990fede9a9f..f1e07f46c8cb 100644
--- a/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-04-08 20:05 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-04-08 20:05 UTC (permalink / raw
  To: gentoo-commits

commit:     53ed9a4db18ce688240f968a6845f9df006870ef
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  8 20:05:07 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Apr  8 20:05:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ed9a4d

net-libs/libnpupnp: drop 5.0.0

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 -
 net-libs/libnpupnp/libnpupnp-5.0.0.ebuild | 48 -------------------------------
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index b6f48618090f..34ffd1075a07 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-5.0.0.tar.gz 545368 BLAKE2B a0b83186df66ff5608a7d579d3653028497ce92536ea85abc03c73134046c4f55ad31fb849c7231cf7842a424e4f408747f7da3769aae441499fd7ec7ae2544f SHA512 325be49f64d901e67aaf3893ac91f21523e81b1810c717f70a40486dde65080620ffa38f622ec785475b181f84a6d51fad89a86e709a9bd5554f278b90ae92f9
 DIST libnpupnp-5.0.1.tar.gz 553258 BLAKE2B 141967e60a4776b6470dc55d2b0736e17281c671d7f102aee9553ff48d66833ec0c97d405427161989130f6cac21c90c2663f945e6c69c317de710a08e84627a SHA512 2a8cd7c1f2bd710a9b72d69dde56b2e5094ef1b6282239377f7fd15e0a6d9f85218f5b95ec17dabc678897f2d597cf7bf800890524762488c0e6fcc315a8cef7

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild
deleted file mode 100644
index f1e07f46c8cb..000000000000
--- a/net-libs/libnpupnp/libnpupnp-5.0.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-04-25  4:39 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-04-25  4:39 UTC (permalink / raw
  To: gentoo-commits

commit:     681d93ca2b5060d43ed4281f01a51c536b538975
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 04:31:39 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 04:39:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=681d93ca

net-libs/libnpupnp: add 5.0.2

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-5.0.2.ebuild | 48 +++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 34ffd1075a07..8b64d82369bd 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-5.0.1.tar.gz 553258 BLAKE2B 141967e60a4776b6470dc55d2b0736e17281c671d7f102aee9553ff48d66833ec0c97d405427161989130f6cac21c90c2663f945e6c69c317de710a08e84627a SHA512 2a8cd7c1f2bd710a9b72d69dde56b2e5094ef1b6282239377f7fd15e0a6d9f85218f5b95ec17dabc678897f2d597cf7bf800890524762488c0e6fcc315a8cef7
+DIST libnpupnp-5.0.2.tar.gz 553436 BLAKE2B d285bf2b58c74f2aefd98ffb4a0021d82ac508cf91be0dd02db9125fb2966358ce8e5969f540de8c4e6c4930b5f55e1a55588fcd65010b9e0181aa01d70f0b72 SHA512 6beab39649acd9ad3ac71420455bf4449f3c8223abcd84578c0a4a0ec52e5fa8df2c07cfda439ce91bc8c83b3a43b74c36de8765adf4feb11b61ee72936ede4e

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.2.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.2.ebuild
new file mode 100644
index 000000000000..9990fede9a9f
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-5.0.2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-05-31  7:51 Joonas Niilola
  0 siblings, 0 replies; 38+ messages in thread
From: Joonas Niilola @ 2023-05-31  7:51 UTC (permalink / raw
  To: gentoo-commits

commit:     10eec735fd1c2c5429dbf503b967dab2dbeac8b1
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 07:47:22 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed May 31 07:51:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10eec735

net-libs/libnpupnp: add subslot binder for net-libs/libmicrohttpd

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 .../libnpupnp/{libnpupnp-5.0.1.ebuild => libnpupnp-5.0.1-r1.ebuild}     | 2 +-
 .../libnpupnp/{libnpupnp-5.0.2.ebuild => libnpupnp-5.0.2-r1.ebuild}     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.1-r1.ebuild
similarity index 96%
rename from net-libs/libnpupnp/libnpupnp-5.0.1.ebuild
rename to net-libs/libnpupnp/libnpupnp-5.0.1-r1.ebuild
index f1e07f46c8cb..47edf9c364e2 100644
--- a/net-libs/libnpupnp/libnpupnp-5.0.1.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-5.0.1-r1.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat
-	net-libs/libmicrohttpd
+	net-libs/libmicrohttpd:=
 	net-misc/curl
 "
 DEPEND="${RDEPEND}"

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.2.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
similarity index 96%
rename from net-libs/libnpupnp/libnpupnp-5.0.2.ebuild
rename to net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
index 9990fede9a9f..f6bed8de5a5f 100644
--- a/net-libs/libnpupnp/libnpupnp-5.0.2.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
 	dev-libs/expat
-	net-libs/libmicrohttpd
+	net-libs/libmicrohttpd:=
 	net-misc/curl
 "
 DEPEND="${RDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-07-02 17:15 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-07-02 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     4b393a59cccac858afc5a79011117f28a7be6435
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  2 17:07:02 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Jul  2 17:07:08 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b393a59

net-libs/libnpupnp: drop 5.0.1-r1

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest                  |  1 -
 net-libs/libnpupnp/libnpupnp-5.0.1-r1.ebuild | 48 ----------------------------
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 8b64d82369bd..37047f7c4d55 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-5.0.1.tar.gz 553258 BLAKE2B 141967e60a4776b6470dc55d2b0736e17281c671d7f102aee9553ff48d66833ec0c97d405427161989130f6cac21c90c2663f945e6c69c317de710a08e84627a SHA512 2a8cd7c1f2bd710a9b72d69dde56b2e5094ef1b6282239377f7fd15e0a6d9f85218f5b95ec17dabc678897f2d597cf7bf800890524762488c0e6fcc315a8cef7
 DIST libnpupnp-5.0.2.tar.gz 553436 BLAKE2B d285bf2b58c74f2aefd98ffb4a0021d82ac508cf91be0dd02db9125fb2966358ce8e5969f540de8c4e6c4930b5f55e1a55588fcd65010b9e0181aa01d70f0b72 SHA512 6beab39649acd9ad3ac71420455bf4449f3c8223abcd84578c0a4a0ec52e5fa8df2c07cfda439ce91bc8c83b3a43b74c36de8765adf4feb11b61ee72936ede4e

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.1-r1.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.1-r1.ebuild
deleted file mode 100644
index 47edf9c364e2..000000000000
--- a/net-libs/libnpupnp/libnpupnp-5.0.1-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd:=
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2023-07-02 17:15 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2023-07-02 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     06f8ffdb9a0de68f90dcf834fd3a4e44af069dfc
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  2 17:06:16 2023 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun Jul  2 17:06:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06f8ffdb

net-libs/libnpupnp: stabilize 5.0.2-r1 for amd64, x86

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
index f6bed8de5a5f..47edf9c364e2 100644
--- a/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-03-16 15:09 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-03-16 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     5c48cced1895882ee218acb7f6974ef8b078fbdb
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 16 14:52:35 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 15:09:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c48cced

net-libs/libnpupnp: add 6.1.1

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-6.1.1.ebuild | 48 +++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 37047f7c4d55..ddd695b9305f 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-5.0.2.tar.gz 553436 BLAKE2B d285bf2b58c74f2aefd98ffb4a0021d82ac508cf91be0dd02db9125fb2966358ce8e5969f540de8c4e6c4930b5f55e1a55588fcd65010b9e0181aa01d70f0b72 SHA512 6beab39649acd9ad3ac71420455bf4449f3c8223abcd84578c0a4a0ec52e5fa8df2c07cfda439ce91bc8c83b3a43b74c36de8765adf4feb11b61ee72936ede4e
+DIST libnpupnp-6.1.1.tar.gz 549925 BLAKE2B b7d8db7ddf58f77ee855dd6e82567a8e0edf1cbad468e2f4fa9a813908ec3c25a304fd3f41c592f5dfda46831998bf74a39a1be4cb3cd63cdac55f5aa2bc08a0 SHA512 905c0dfc7f018a80380406682550271893d795a1964bb5e7c4a56c6934ce06b9b6e29a2c5a7a9c4bf1a5a2348637ad6af3fd99cd38d7bba9d935fdbec6a6dce5

diff --git a/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild b/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild
new file mode 100644
index 000000000000..fb767483046f
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd:=
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf \
+		--enable-client \
+		--enable-debug \
+		--enable-device \
+		--enable-gena \
+		--enable-ipv6 \
+		--enable-optssdp \
+		--enable-reuseaddr \
+		--enable-soap \
+		--enable-ssdp \
+		--enable-tools \
+		--enable-webserver
+}
+
+src_install() {
+	default
+
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-05-16  3:47 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-05-16  3:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f5fc0962e57d1fccdb712eae2a7e3c5586b7a1a2
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Thu May 16 03:37:50 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Thu May 16 03:47:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5fc0962

net-libs/libnpupnp: drop 5.0.2-r1

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest                  |  1 -
 net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild | 48 ----------------------------
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index ddd695b9305f..2e70c09b0012 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-5.0.2.tar.gz 553436 BLAKE2B d285bf2b58c74f2aefd98ffb4a0021d82ac508cf91be0dd02db9125fb2966358ce8e5969f540de8c4e6c4930b5f55e1a55588fcd65010b9e0181aa01d70f0b72 SHA512 6beab39649acd9ad3ac71420455bf4449f3c8223abcd84578c0a4a0ec52e5fa8df2c07cfda439ce91bc8c83b3a43b74c36de8765adf4feb11b61ee72936ede4e
 DIST libnpupnp-6.1.1.tar.gz 549925 BLAKE2B b7d8db7ddf58f77ee855dd6e82567a8e0edf1cbad468e2f4fa9a813908ec3c25a304fd3f41c592f5dfda46831998bf74a39a1be4cb3cd63cdac55f5aa2bc08a0 SHA512 905c0dfc7f018a80380406682550271893d795a1964bb5e7c4a56c6934ce06b9b6e29a2c5a7a9c4bf1a5a2348637ad6af3fd99cd38d7bba9d935fdbec6a6dce5

diff --git a/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild b/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
deleted file mode 100644
index 47edf9c364e2..000000000000
--- a/net-libs/libnpupnp/libnpupnp-5.0.2-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd:=
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-05-16  3:47 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-05-16  3:47 UTC (permalink / raw
  To: gentoo-commits

commit:     bedf47a8a131dddd58721672350ef93d1dbd79c9
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Thu May 16 03:32:29 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Thu May 16 03:47:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bedf47a8

net-libs/libnpupnp: stabilize 6.1.1 for amd64, x86

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

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

diff --git a/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild b/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild
index fb767483046f..cc6a0334d4dd 100644
--- a/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-05-19  4:17 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-05-19  4:17 UTC (permalink / raw
  To: gentoo-commits

commit:     2d378418eeabdeebf39d15263d9182be3221881f
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 04:17:16 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sun May 19 04:17:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d378418

net-libs/libnpupnp: add 6.1.2

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-6.1.2.ebuild | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 2e70c09b0012..35bb969a3964 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1 +1,2 @@
 DIST libnpupnp-6.1.1.tar.gz 549925 BLAKE2B b7d8db7ddf58f77ee855dd6e82567a8e0edf1cbad468e2f4fa9a813908ec3c25a304fd3f41c592f5dfda46831998bf74a39a1be4cb3cd63cdac55f5aa2bc08a0 SHA512 905c0dfc7f018a80380406682550271893d795a1964bb5e7c4a56c6934ce06b9b6e29a2c5a7a9c4bf1a5a2348637ad6af3fd99cd38d7bba9d935fdbec6a6dce5
+DIST libnpupnp-6.1.2.tar.gz 447271 BLAKE2B 3c63fde4a4e526fc5701c51f9da279d7d026744f9d709a83acf2532b8a48d50381887630ee78907266be9e77c27bd58a4ae5783826e28a0f76996a2e4a742abc SHA512 4ca4e56f896e21cd1a47de95e28b2b298b71c385c6ce9841d85c09ce3dd0387742b01ec11d65701ddeeee1f7b2cc9ed30127b53496910601a273f9c7663741b2

diff --git a/net-libs/libnpupnp/libnpupnp-6.1.2.ebuild b/net-libs/libnpupnp/libnpupnp-6.1.2.ebuild
new file mode 100644
index 000000000000..95bffb2a221d
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-6.1.2.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd:=
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-05-22  0:53 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-05-22  0:53 UTC (permalink / raw
  To: gentoo-commits

commit:     9ecbe4891bf5e0ed7f1fadd823c2cafba412f09c
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 00:50:49 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Wed May 22 00:50:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ecbe489

net-libs/libnpupnp: add 6.1.3

I worked with upstream to get the fix in without a patch

Closes: https://bugs.gentoo.org/932232
Closes: https://bugs.gentoo.org/927146

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 +
 net-libs/libnpupnp/libnpupnp-6.1.3.ebuild | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 35bb969a3964..98192f2c2891 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1,3 @@
 DIST libnpupnp-6.1.1.tar.gz 549925 BLAKE2B b7d8db7ddf58f77ee855dd6e82567a8e0edf1cbad468e2f4fa9a813908ec3c25a304fd3f41c592f5dfda46831998bf74a39a1be4cb3cd63cdac55f5aa2bc08a0 SHA512 905c0dfc7f018a80380406682550271893d795a1964bb5e7c4a56c6934ce06b9b6e29a2c5a7a9c4bf1a5a2348637ad6af3fd99cd38d7bba9d935fdbec6a6dce5
 DIST libnpupnp-6.1.2.tar.gz 447271 BLAKE2B 3c63fde4a4e526fc5701c51f9da279d7d026744f9d709a83acf2532b8a48d50381887630ee78907266be9e77c27bd58a4ae5783826e28a0f76996a2e4a742abc SHA512 4ca4e56f896e21cd1a47de95e28b2b298b71c385c6ce9841d85c09ce3dd0387742b01ec11d65701ddeeee1f7b2cc9ed30127b53496910601a273f9c7663741b2
+DIST libnpupnp-6.1.3.tar.gz 448010 BLAKE2B 3bba4abac3702fc5f675110aacdebba0e0850cbf5edfe357944415aff4319c375674fc30418cbf74bfcc6a43ab4c8e308310f20cdb87eb5a9f3338895facf4f8 SHA512 763bf891a45efd1e022259839ac258b961a81a0e1e45d0b14c8a84a1ee3cdd02897ab98b9c4264871e2ec9cbc6cd315311d0a058f3fa0040b0f1198d1bd4b986

diff --git a/net-libs/libnpupnp/libnpupnp-6.1.3.ebuild b/net-libs/libnpupnp/libnpupnp-6.1.3.ebuild
new file mode 100644
index 000000000000..95bffb2a221d
--- /dev/null
+++ b/net-libs/libnpupnp/libnpupnp-6.1.3.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
+HOMEPAGE="https://framagit.org/medoc92/npupnp"
+SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-libs/expat
+	net-libs/libmicrohttpd:=
+	net-misc/curl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-05-22  1:03 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-05-22  1:03 UTC (permalink / raw
  To: gentoo-commits

commit:     acdbfc65d0f35ff46f9491f7c4c11a8a8bae5b4b
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 01:02:55 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Wed May 22 01:02:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acdbfc65

net-libs/libnpupnp: drop 6.1.2

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 -
 net-libs/libnpupnp/libnpupnp-6.1.2.ebuild | 22 ----------------------
 2 files changed, 23 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 98192f2c2891..05aad6d6b0c4 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,3 +1,2 @@
 DIST libnpupnp-6.1.1.tar.gz 549925 BLAKE2B b7d8db7ddf58f77ee855dd6e82567a8e0edf1cbad468e2f4fa9a813908ec3c25a304fd3f41c592f5dfda46831998bf74a39a1be4cb3cd63cdac55f5aa2bc08a0 SHA512 905c0dfc7f018a80380406682550271893d795a1964bb5e7c4a56c6934ce06b9b6e29a2c5a7a9c4bf1a5a2348637ad6af3fd99cd38d7bba9d935fdbec6a6dce5
-DIST libnpupnp-6.1.2.tar.gz 447271 BLAKE2B 3c63fde4a4e526fc5701c51f9da279d7d026744f9d709a83acf2532b8a48d50381887630ee78907266be9e77c27bd58a4ae5783826e28a0f76996a2e4a742abc SHA512 4ca4e56f896e21cd1a47de95e28b2b298b71c385c6ce9841d85c09ce3dd0387742b01ec11d65701ddeeee1f7b2cc9ed30127b53496910601a273f9c7663741b2
 DIST libnpupnp-6.1.3.tar.gz 448010 BLAKE2B 3bba4abac3702fc5f675110aacdebba0e0850cbf5edfe357944415aff4319c375674fc30418cbf74bfcc6a43ab4c8e308310f20cdb87eb5a9f3338895facf4f8 SHA512 763bf891a45efd1e022259839ac258b961a81a0e1e45d0b14c8a84a1ee3cdd02897ab98b9c4264871e2ec9cbc6cd315311d0a058f3fa0040b0f1198d1bd4b986

diff --git a/net-libs/libnpupnp/libnpupnp-6.1.2.ebuild b/net-libs/libnpupnp/libnpupnp-6.1.2.ebuild
deleted file mode 100644
index 95bffb2a221d..000000000000
--- a/net-libs/libnpupnp/libnpupnp-6.1.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd:=
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-07-13 15:37 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-07-13 15:37 UTC (permalink / raw
  To: gentoo-commits

commit:     135283abcd371227327ef0d0941790a56271a130
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 15:30:03 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 15:37:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=135283ab

net-libs/libnpupnp: drop 6.1.1

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

 net-libs/libnpupnp/Manifest               |  1 -
 net-libs/libnpupnp/libnpupnp-6.1.1.ebuild | 48 -------------------------------
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest
index 05aad6d6b0c4..0f6fd5bb50fd 100644
--- a/net-libs/libnpupnp/Manifest
+++ b/net-libs/libnpupnp/Manifest
@@ -1,2 +1 @@
-DIST libnpupnp-6.1.1.tar.gz 549925 BLAKE2B b7d8db7ddf58f77ee855dd6e82567a8e0edf1cbad468e2f4fa9a813908ec3c25a304fd3f41c592f5dfda46831998bf74a39a1be4cb3cd63cdac55f5aa2bc08a0 SHA512 905c0dfc7f018a80380406682550271893d795a1964bb5e7c4a56c6934ce06b9b6e29a2c5a7a9c4bf1a5a2348637ad6af3fd99cd38d7bba9d935fdbec6a6dce5
 DIST libnpupnp-6.1.3.tar.gz 448010 BLAKE2B 3bba4abac3702fc5f675110aacdebba0e0850cbf5edfe357944415aff4319c375674fc30418cbf74bfcc6a43ab4c8e308310f20cdb87eb5a9f3338895facf4f8 SHA512 763bf891a45efd1e022259839ac258b961a81a0e1e45d0b14c8a84a1ee3cdd02897ab98b9c4264871e2ec9cbc6cd315311d0a058f3fa0040b0f1198d1bd4b986

diff --git a/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild b/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild
deleted file mode 100644
index cc6a0334d4dd..000000000000
--- a/net-libs/libnpupnp/libnpupnp-6.1.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp"
-HOMEPAGE="https://framagit.org/medoc92/npupnp"
-SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-	dev-libs/expat
-	net-libs/libmicrohttpd:=
-	net-misc/curl
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-	default
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		--enable-client \
-		--enable-debug \
-		--enable-device \
-		--enable-gena \
-		--enable-ipv6 \
-		--enable-optssdp \
-		--enable-reuseaddr \
-		--enable-soap \
-		--enable-ssdp \
-		--enable-tools \
-		--enable-webserver
-}
-
-src_install() {
-	default
-
-	find "${ED}" -name '*.la' -delete || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/
@ 2024-07-13 15:37 Erik Mackdanz
  0 siblings, 0 replies; 38+ messages in thread
From: Erik Mackdanz @ 2024-07-13 15:37 UTC (permalink / raw
  To: gentoo-commits

commit:     49e6375b17fc3140768afe67f25baf8378fe225e
Author:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 15:29:07 2024 +0000
Commit:     Erik Mackdanz <stasibear <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 15:37:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49e6375b

net-libs/libnpupnp: stabilize 6.1.3 for amd64, x86

Signed-off-by: Erik Mackdanz <stasibear <AT> gentoo.org>

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

diff --git a/net-libs/libnpupnp/libnpupnp-6.1.3.ebuild b/net-libs/libnpupnp/libnpupnp-6.1.3.ebuild
index 95bffb2a221d..1b39d463d420 100644
--- a/net-libs/libnpupnp/libnpupnp-6.1.3.ebuild
+++ b/net-libs/libnpupnp/libnpupnp-6.1.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
 	dev-libs/expat


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

end of thread, other threads:[~2024-07-13 15:37 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-21 17:54 [gentoo-commits] repo/gentoo:master commit in: net-libs/libnpupnp/ Erik Mackdanz
  -- strict thread matches above, loose matches on Subject: below --
2024-07-13 15:37 Erik Mackdanz
2024-07-13 15:37 Erik Mackdanz
2024-05-22  1:03 Erik Mackdanz
2024-05-22  0:53 Erik Mackdanz
2024-05-19  4:17 Erik Mackdanz
2024-05-16  3:47 Erik Mackdanz
2024-05-16  3:47 Erik Mackdanz
2024-03-16 15:09 Erik Mackdanz
2023-07-02 17:15 Erik Mackdanz
2023-07-02 17:15 Erik Mackdanz
2023-05-31  7:51 Joonas Niilola
2023-04-25  4:39 Erik Mackdanz
2023-04-08 20:05 Erik Mackdanz
2023-04-08 20:05 Erik Mackdanz
2023-03-02  6:14 Erik Mackdanz
2023-01-15 21:25 Erik Mackdanz
2023-01-15 21:25 Erik Mackdanz
2022-09-25 15:51 Erik Mackdanz
2022-07-02  1:18 Erik Mackdanz
2022-07-02  1:18 Erik Mackdanz
2022-05-21 20:36 Erik Mackdanz
2022-05-21 20:36 Erik Mackdanz
2022-05-21 20:36 Erik Mackdanz
2022-03-13 14:38 Erik Mackdanz
2022-03-13  5:54 Sam James
2021-11-27 23:46 Erik Mackdanz
2021-11-27 23:45 Erik Mackdanz
2021-10-27  1:12 Erik Mackdanz
2021-08-10 13:30 Erik Mackdanz
2021-08-10 13:24 Erik Mackdanz
2021-08-03 20:52 Erik Mackdanz
2020-12-27 16:21 Erik Mackdanz
2020-12-27 16:17 Erik Mackdanz
2020-11-22 16:01 Erik Mackdanz
2020-11-13  2:05 Erik Mackdanz
2020-11-12 16:45 Erik Mackdanz
2020-11-12  5:04 Erik Mackdanz

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