public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ian Whyman" <thev00d00@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libupnp/
Date: Sun, 20 Aug 2017 12:24:20 +0000 (UTC)	[thread overview]
Message-ID: <1503231845.5ba4a469022dd7f5a0ddb9cc7cb39f05e21db3cc.thev00d00@gentoo> (raw)

commit:     5ba4a469022dd7f5a0ddb9cc7cb39f05e21db3cc
Author:     Ian Whyman <thev00d00 <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 20 12:24:05 2017 +0000
Commit:     Ian Whyman <thev00d00 <AT> gentoo <DOT> org>
CommitDate: Sun Aug 20 12:24:05 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba4a469

net-libs/libupnp: Version bump

Slot manually as they have removed it upstream

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 net-libs/libupnp/Manifest             |  1 +
 net-libs/libupnp/libupnp-1.8.2.ebuild | 70 +++++++++++++++++++++++++++++++++++
 net-libs/libupnp/metadata.xml         |  4 +-
 3 files changed, 74 insertions(+), 1 deletion(-)

diff --git a/net-libs/libupnp/Manifest b/net-libs/libupnp/Manifest
index 1de712d79f1..7f605e1fa02 100644
--- a/net-libs/libupnp/Manifest
+++ b/net-libs/libupnp/Manifest
@@ -1,3 +1,4 @@
 DIST libupnp-1.6.21.tar.bz2 1245353 SHA256 af3f3c0846a1d75baeadae4aa5a2bda427567e2a1fb4559bf73ccff0a4f9a39b SHA512 65a2989497b941dfa1f7ac09fe44267de4a5231af25a304f0f6e754c7cbb578bdcb3c500188b5ebfbff9f579099db7501817d45e1724ef8e384d6d918bcdcdeb WHIRLPOOL b4869189054ac00d57394e0919ad2f672af64f2c2b0ecc676c2b3fc4a3c22caa25ac38b57bbb5cf1ef12a5857b4cdfd450c6bd5955a5eacaf8bdf95a058c9dab
 DIST libupnp-1.6.22.tar.bz2 1242211 SHA256 0bdfacb7fa8d99b78343b550800ff193264f92c66ef67852f87f042fd1a1ebbc SHA512 abf7265155fb819e971e27dd25fd3f8143c04d6373b1b4a2769de9fadbbd3a012758acda866511a443f7e159b66068d9f7f99072c509a8fa06bcfe1275bdd9af WHIRLPOOL e3bfd207adff942d1a60337fb5ff00d2e4a4d52073724fb19415f14aa2def746706d863360779b00d842756ea6d809d5cf2f3cde910a3863398cbcfe49957bec
 DIST libupnp-1.8.1.tar.gz 1363979 SHA256 0569e6afd979baa4e533312cb682394cea5b2638b8b412623e28943103593ea0 SHA512 7dd90f0c0332e7171d96a37a50223e18d5325ac1dd8dbe04fadac4655ad7c4d8443c52f904aaa35d3f12d2abd9ee2690ba990d0a93b15cbebb4d3de35d25ffe4 WHIRLPOOL 184e8844fab6a7a04d902d77c9b28141cdb15e4026b1b45105aabcf7616c2f6bbffa81fe14a1e6ddcd3f6494d9505f8f2cf190bf00fa341ca7192668e46e732d
+DIST libupnp-1.8.2.tar.gz 1379953 SHA256 438ad86bfd933cb1e9be1c41bf3bd69f049daba11d71bbb5d715336e00106cb4 SHA512 026f2568a1ffa56a3a0ebc823b126dceabb7e821acb6db52fbca02c4c02febd5508cb644cd2ac51f65397c3248a22340b3673069951e97dcdd22d4cc321d4511 WHIRLPOOL f1c1c18300ff597cf57837def8f35289aca7a85fa0e86d8307e3859c8eb55a011bf3c37b372aaebb73c79f95283d0f6964a555ba1353ab28f6c706bbf30fd8ad

diff --git a/net-libs/libupnp/libupnp-1.8.2.ebuild b/net-libs/libupnp/libupnp-1.8.2.ebuild
new file mode 100644
index 00000000000..4e724b79fc2
--- /dev/null
+++ b/net-libs/libupnp/libupnp-1.8.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic autotools vcs-snapshot
+
+DESCRIPTION="An Portable Open Source UPnP Development Kit"
+HOMEPAGE="http://pupnp.sourceforge.net/"
+SRC_URI="https://github.com/mrjimenez/pupnp/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="1.8"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="blocking-tcp debug doc ipv6 +reuseaddr samples static-libs"
+
+DOCS="NEWS README.md ChangeLog"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-1.6.19-docs-install.patch
+	"${FILESDIR}"/${PN}-1.6.21-cflags.patch
+)
+
+src_prepare() {
+	default
+
+	# fix tests
+	chmod +x ixml/test/test_document.sh || die
+
+	eautoreconf
+}
+
+src_configure() {
+	use x86-fbsd &&	append-flags -O1
+	# w/o docdir to avoid sandbox violations
+	econf $(use_enable debug) \
+		$(use_enable blocking-tcp blocking-tcp-connections) \
+		$(use_enable ipv6) \
+		$(use_enable reuseaddr) \
+		$(use_enable static-libs static) \
+		$(use_enable samples) \
+		$(use_with doc documentation "${EPREFIX}/usr/share/doc/${PF}")
+}
+
+src_install () {
+	default
+
+	use static-libs || prune_libtool_files
+
+	# Slot samples
+	if $(use samples); then
+		for bin in combo ctrlpt device ; do
+			newbin "upnp/sample/.libs/tv_$bin" "tv_$bin-${SLOT}"
+		done
+	fi
+
+	# Slot includes
+	cd "${D}/usr/include" || die
+	mv upnp "upnp-${SLOT}" || die
+
+	# Slot pkgconfig
+	cd "${D}/usr/$(get_libdir)/pkgconfig" || die
+	mv libupnp.pc "libupnp-${SLOT}.pc" || die
+	sed -i "s#/upnp#/upnp-${SLOT}#" "libupnp-${SLOT}.pc" || die
+
+	# Slot symlinks
+	cd "${D}/usr/$(get_libdir)" || die
+	mv libupnp.so "libupnp-${SLOT}.so" || die
+	mv libixml.so "libixml-${SLOT}.so" || die
+}

diff --git a/net-libs/libupnp/metadata.xml b/net-libs/libupnp/metadata.xml
index 4c6479b76fb..53c42dd9025 100644
--- a/net-libs/libupnp/metadata.xml
+++ b/net-libs/libupnp/metadata.xml
@@ -14,6 +14,8 @@
     <remote-id type="github">mrjimenez/pupnp</remote-id>
   </upstream>
   <use>
-	<flag name="reuseaddr">Allow clean restarts by binding the socket with SO_REUSEADDR.</flag>
+    <flag name="reuseaddr">Allow clean restarts by binding the socket with SO_REUSEADDR.</flag>
+    <flag name="blocking-tcp">Do not use async socket calls.</flag>
+    <flag name="samples">Install sample applications.</flag>
   </use>
 </pkgmetadata>


             reply	other threads:[~2017-08-20 12:24 UTC|newest]

Thread overview: 134+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-20 12:24 Ian Whyman [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-12-23 20:13 [gentoo-commits] repo/gentoo:master commit in: net-libs/libupnp/ Conrad Kostecki
2024-11-23 13:16 Michał Górny
2024-11-23  8:06 Arthur Zamarin
2024-11-23  3:28 Sam James
2024-11-23  3:28 Sam James
2024-11-23  3:28 Sam James
2024-11-23  3:28 Sam James
2024-11-23  3:28 Sam James
2024-06-22 20:01 Conrad Kostecki
2024-05-25 17:31 Arthur Zamarin
2024-05-25  5:05 Arthur Zamarin
2024-05-25  2:03 Sam James
2024-05-25  2:03 Sam James
2024-05-25  0:49 Sam James
2024-05-25  0:49 Sam James
2024-05-25  0:49 Sam James
2024-04-23 22:09 Conrad Kostecki
2024-04-23 22:09 Conrad Kostecki
2023-10-04 18:32 Arthur Zamarin
2023-10-03  1:51 Sam James
2023-10-03  1:41 Sam James
2023-10-03  1:41 Sam James
2023-10-03  1:41 Sam James
2023-10-03  1:41 Sam James
2023-10-02 19:28 Arthur Zamarin
2023-08-26 23:42 Conrad Kostecki
2023-08-26 23:42 Conrad Kostecki
2023-06-03 19:45 Arthur Zamarin
2023-06-02 11:54 Arthur Zamarin
2023-06-02 11:54 Arthur Zamarin
2023-06-02 11:07 Arthur Zamarin
2023-06-02 11:07 Arthur Zamarin
2023-06-02 11:07 Arthur Zamarin
2023-06-02 11:07 Arthur Zamarin
2023-05-05  9:30 Arthur Zamarin
2023-05-05  9:30 Arthur Zamarin
2023-05-03  6:29 Sam James
2023-05-02 22:53 Sam James
2023-05-02 22:53 Sam James
2023-05-02 22:53 Sam James
2023-05-02 22:53 Sam James
2023-05-02 21:57 Conrad Kostecki
2023-04-01 19:39 Conrad Kostecki
2022-12-20 22:03 Conrad Kostecki
2022-12-20 18:55 Sam James
2022-12-20 18:55 Sam James
2022-12-20 16:53 Arthur Zamarin
2022-12-20 16:53 Arthur Zamarin
2022-12-20 16:53 Arthur Zamarin
2022-12-20 14:20 Arthur Zamarin
2022-12-20 14:20 Arthur Zamarin
2022-11-19 21:52 Conrad Kostecki
2022-11-06 13:00 Conrad Kostecki
2022-11-06  8:05 Agostino Sarubbo
2022-11-06  5:52 Sam James
2022-11-06  5:52 Sam James
2022-11-06  5:52 Sam James
2022-11-06  4:00 Sam James
2022-11-06  4:00 Sam James
2022-11-06  4:00 Sam James
2022-10-06 21:15 Conrad Kostecki
2022-09-03 12:46 Conrad Kostecki
2022-09-03  5:16 Sam James
2022-09-03  5:16 Sam James
2022-09-03  4:42 Arthur Zamarin
2022-09-03  4:42 Arthur Zamarin
2022-09-03  4:42 Arthur Zamarin
2022-09-03  4:42 Arthur Zamarin
2022-09-03  4:42 Arthur Zamarin
2022-08-03 20:08 Conrad Kostecki
2022-06-28  4:18 WANG Xuerui
2022-01-05 10:01 David Seifert
2021-11-05 17:38 Sam James
2021-11-05 17:38 Sam James
2021-11-04 21:44 Sam James
2021-11-04 15:30 Sam James
2021-11-04  7:40 Agostino Sarubbo
2021-11-04  7:40 Agostino Sarubbo
2021-11-04  0:42 Jakov Smolić
2021-10-04 19:01 Conrad Kostecki
2021-10-04 18:28 Conrad Kostecki
2021-10-03 17:13 Conrad Kostecki
2021-08-21  8:44 Marek Szuba
2021-08-20  1:50 Sam James
2021-07-26  3:25 John Helmert III
2021-06-21  7:19 Sam James
2021-06-18 22:38 Sam James
2021-06-18  6:28 Agostino Sarubbo
2021-06-18  6:27 Agostino Sarubbo
2021-06-17 20:24 Sam James
2021-06-17 20:23 Sam James
2021-06-17  7:23 Agostino Sarubbo
2021-06-02 12:25 Thomas Deutschmann
2021-04-11 12:05 Ian Whyman
2021-03-12 16:27 John Helmert III
2020-09-20 20:21 Agostino Sarubbo
2020-09-12  8:06 Sergei Trofimovich
2020-09-07 21:21 Sam James
2020-09-07 21:21 Sam James
2020-09-07 19:54 Thomas Deutschmann
2020-09-07 19:51 Thomas Deutschmann
2020-09-07 19:51 Thomas Deutschmann
2020-09-07 17:39 Sergei Trofimovich
2020-08-24 18:25 Ian Whyman
2020-04-10  8:33 Ian Whyman
2020-01-30 22:08 Ian Whyman
2020-01-23 20:13 Ian Whyman
2019-11-21 19:34 Ian Whyman
2019-11-17 18:14 Ian Whyman
2019-11-02 21:07 Ian Whyman
2019-07-27 12:54 Aaron Bauman
2018-10-25 18:21 Ian Whyman
2018-10-25 17:21 Ian Whyman
2018-03-13 11:59 Pacho Ramos
2017-12-16 10:27 Ian Whyman
2017-12-04 20:46 Ian Whyman
2017-07-14 14:09 Ian Whyman
2017-07-08  9:20 Alexis Ballier
2017-05-28 12:19 Ian Whyman
2017-05-25 17:15 Ian Whyman
2017-01-23 18:37 Ian Whyman
2017-01-16  8:49 Tobias Klausmann
2017-01-15  0:30 Jeroen Roovers
2017-01-13 16:54 Markus Meier
2017-01-10 12:34 Aaron Bauman
2016-12-30 21:39 Ian Whyman
2016-12-30 21:34 Ian Whyman
2016-11-29 17:39 Markus Meier
2016-11-23 13:12 Tobias Klausmann
2016-11-19 13:55 Agostino Sarubbo
2016-11-19 13:53 Agostino Sarubbo
2016-09-15 20:10 Ian Whyman
2016-09-15 19:53 Ian Whyman

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=1503231845.5ba4a469022dd7f5a0ddb9cc7cb39f05e21db3cc.thev00d00@gentoo \
    --to=thev00d00@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

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

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