* [gentoo-commits] proj/musl:master commit in: net-libs/miniupnpc/
@ 2015-07-16 20:52 Anthony G. Basile
0 siblings, 0 replies; 2+ messages in thread
From: Anthony G. Basile @ 2015-07-16 20:52 UTC (permalink / raw
To: gentoo-commits
commit: 24436f042e5c3da0ef4148ecddd98a19f8162980
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 16 20:55:11 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 20:55:11 2015 +0000
URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=24436f04
net-libs/miniupnpc: depend on sys-libs/queue if elibc_musl.
Package-Manager: portage-2.2.18
RepoMan-Options: --force
Manifest-Sign-Key: 0xF52D4BBA
net-libs/miniupnpc/Manifest | 3 ++
net-libs/miniupnpc/metadata.xml | 13 ++++++++
net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild | 51 +++++++++++++++++++++++++++++
3 files changed, 67 insertions(+)
diff --git a/net-libs/miniupnpc/Manifest b/net-libs/miniupnpc/Manifest
new file mode 100644
index 0000000..05fbea0
--- /dev/null
+++ b/net-libs/miniupnpc/Manifest
@@ -0,0 +1,3 @@
+DIST miniupnpc-1.8.tar.gz 70624 SHA256 bc5f73c7b0056252c1888a80e6075787a1e1e9112b808f863a245483ff79859c SHA512 8eedac9ad473fc952ca8896fe534d6da6b1b234e8b6f35f721394d4c71aca84ed287ca6c4f0455b50d97a45e4cd34e27d99a6813386e0864781364aa607e13d4 WHIRLPOOL 5b76ccbb5ed7daa9bb0d481b424b7c31a5f6dc85c5c812ba10175a29aefc0d3924f3db2aa8c3529d1241be59d67d1d4c702d27aad2de8c8a07fecf3857d73169
+EBUILD miniupnpc-1.8-r99.ebuild 1201 SHA256 2af96cbf410dadc35a1b0e5c2804a09da3ed5d6a837dcc3925d381316c923604 SHA512 f36a7fb1d5724fda4a62df2c64ea116fc6c63693ca1311ab18399e1b5f9b9c31c794df8bc07193593218be056b6510f06889d14121936488c95079594d26aeec WHIRLPOOL 48bd51a1aeae6c65fd61550f0a451cf4d88a59234fda98eda76f4632ce9e21bd6ebf85a416b255f6b2f48040d447f707f03470b8de82b961418fa931da5f7f5f
+MISC metadata.xml 338 SHA256 3de89305fee04e6757c25966f3edb3ed3a5c1d19ff8f95452286cee3fa8a9b51 SHA512 2acb780e7cdbbcb8e7c6d6ca4573adaa015cd5ba00dbbcae0b40c46517f6b7c1c7e1b72c3f5b7514308a47bbbd3af59bb853ecaac1c0319913daa401a7f078e2 WHIRLPOOL 5c25922c90a8d9393a23c131889ce7fd5b0fdf03a7968e225e05c11466ca2d8fabcad6f055423d9225798393a9b315c84838e83770ed59b3d9d89b7f761c5f80
diff --git a/net-libs/miniupnpc/metadata.xml b/net-libs/miniupnpc/metadata.xml
new file mode 100644
index 0000000..f38aad4
--- /dev/null
+++ b/net-libs/miniupnpc/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>proxy-maintainers</herd>
+<maintainer>
+ <email>mgorny@gentoo.org</email>
+ <name>Michał Górny</name>
+</maintainer>
+<maintainer>
+ <email>nikoli@gmx.us</email>
+ <name>Nikoli</name>
+</maintainer>
+</pkgmetadata>
diff --git a/net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild b/net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild
new file mode 100644
index 0000000..0e30464
--- /dev/null
+++ b/net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/miniupnpc/miniupnpc-1.8.ebuild,v 1.10 2014/05/02 12:53:17 jer Exp $
+
+EAPI=5
+
+inherit eutils multilib toolchain-funcs
+
+DESCRIPTION="UPnP client library and a simple UPnP client"
+HOMEPAGE="http://miniupnp.free.fr/"
+SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="amd64 arm ~mips ppc x86"
+IUSE="kernel_linux static-libs"
+
+# Tests hang trying to kill server, bug #409349
+RESTRICT="test"
+
+RDEPEND=""
+DEPEND="kernel_linux? ( sys-apps/lsb-release sys-apps/which )
+ elibc_musl? ( sys-libs/queue )"
+
+src_prepare() {
+ epatch_user
+
+ if ! use static-libs; then
+ sed -i \
+ -e '/FILESTOINSTALL =/s/ $(LIBRARY)//' \
+ -e '/$(INSTALL) -m 644 $(LIBRARY) $(INSTALLDIRLIB)/d' \
+ Makefile || die
+ fi
+}
+
+# Upstream cmake causes more trouble than it fixes,
+# so we'll just stay with the Makefile for now.
+
+src_compile() {
+ tc-export CC AR
+ emake upnpc-shared $(use static-libs && echo upnpc-static)
+}
+
+src_install() {
+ emake \
+ PREFIX="${D}" \
+ INSTALLDIRLIB="${D}usr/$(get_libdir)" \
+ install
+
+ dodoc README Changelog.txt
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/musl:master commit in: net-libs/miniupnpc/
@ 2017-09-03 20:54 Anthony G. Basile
0 siblings, 0 replies; 2+ messages in thread
From: Anthony G. Basile @ 2017-09-03 20:54 UTC (permalink / raw
To: gentoo-commits
commit: 67c3a51906c5b596c2a878445cc1564bfc018332
Author: stefson <herrtimson <AT> yahoo <DOT> de>
AuthorDate: Sun Sep 3 15:23:13 2017 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Sep 3 20:54:09 2017 +0000
URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=67c3a519
net-libs/miniupnpc: in tree version works and is stablizied for all musl arches
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
net-libs/miniupnpc/Manifest | 3 --
net-libs/miniupnpc/metadata.xml | 16 ---------
net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild | 50 -----------------------------
3 files changed, 69 deletions(-)
diff --git a/net-libs/miniupnpc/Manifest b/net-libs/miniupnpc/Manifest
deleted file mode 100644
index f809247..0000000
--- a/net-libs/miniupnpc/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST miniupnpc-1.8.tar.gz 70624 SHA256 bc5f73c7b0056252c1888a80e6075787a1e1e9112b808f863a245483ff79859c SHA512 8eedac9ad473fc952ca8896fe534d6da6b1b234e8b6f35f721394d4c71aca84ed287ca6c4f0455b50d97a45e4cd34e27d99a6813386e0864781364aa607e13d4 WHIRLPOOL 5b76ccbb5ed7daa9bb0d481b424b7c31a5f6dc85c5c812ba10175a29aefc0d3924f3db2aa8c3529d1241be59d67d1d4c702d27aad2de8c8a07fecf3857d73169
-EBUILD miniupnpc-1.8-r99.ebuild 1089 SHA256 973a1fcc49cc8dc85ae931bca9c0340c2b4670b146bd8b9b649c01c6e79f248e SHA512 f55ddc45e30ddb19e17009caa612f0dfb0cde921892abcc73f3939949c87772f4fae82a2e2f84f1339ff1392f04a377a61d9082c5f655668e33b7d153e648fa9 WHIRLPOOL 452ac05dca58c2a18618e42f9e28f75dccb9cf5660ff4f95cc38de82b0d2d2704dc496b23b89194a6044d9644f2ae1fc88e595f5fde71099964b7bfea279199f
-MISC metadata.xml 448 SHA256 2b269b3fd58c1af75ee2047c957a00ffd35f39c6b9e169a82002e0582d533e52 SHA512 c121219bdbf8ed436042e611e7f0bde7301418e2959bb1bffed61477e580e3f854931813924db0946c1af2b7a7048df4961f6f69e7252178a59b37a29514255c WHIRLPOOL acece58f22d56121a3ecc34ed77caf6cb2fcf228bccc568d4ff918955de584619d3f08e34545ea5ae671ed60d18742c68acba403eaa41d47d09ec59fbcf9be6a
diff --git a/net-libs/miniupnpc/metadata.xml b/net-libs/miniupnpc/metadata.xml
deleted file mode 100644
index 1924c6e..0000000
--- a/net-libs/miniupnpc/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
- <email>mgorny@gentoo.org</email>
- <name>Michał Górny</name>
-</maintainer>
-<maintainer type="person">
- <email>nikoli@gmx.us</email>
- <name>Nikoli</name>
-</maintainer>
-<maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
-</maintainer>
-</pkgmetadata>
diff --git a/net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild b/net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild
deleted file mode 100644
index a552b0f..0000000
--- a/net-libs/miniupnpc/miniupnpc-1.8-r99.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="UPnP client library and a simple UPnP client"
-HOMEPAGE="http://miniupnp.free.fr/"
-SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ~mips ppc x86"
-IUSE="kernel_linux static-libs"
-
-# Tests hang trying to kill server, bug #409349
-RESTRICT="test"
-
-RDEPEND=""
-DEPEND="kernel_linux? ( sys-apps/lsb-release sys-apps/which )
- elibc_musl? ( sys-libs/queue )"
-
-src_prepare() {
- epatch_user
-
- if ! use static-libs; then
- sed -i \
- -e '/FILESTOINSTALL =/s/ $(LIBRARY)//' \
- -e '/$(INSTALL) -m 644 $(LIBRARY) $(INSTALLDIRLIB)/d' \
- Makefile || die
- fi
-}
-
-# Upstream cmake causes more trouble than it fixes,
-# so we'll just stay with the Makefile for now.
-
-src_compile() {
- tc-export CC AR
- emake upnpc-shared $(use static-libs && echo upnpc-static)
-}
-
-src_install() {
- emake \
- PREFIX="${D}" \
- INSTALLDIRLIB="${D}usr/$(get_libdir)" \
- install
-
- dodoc README Changelog.txt
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-09-03 20:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-16 20:52 [gentoo-commits] proj/musl:master commit in: net-libs/miniupnpc/ Anthony G. Basile
-- strict thread matches above, loose matches on Subject: below --
2017-09-03 20:54 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox