Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libupnp/
Date: Sun, 06 Nov 2022 13:00:27
Message-Id: 1667739601.293e8f0b9b2f4555cb816c213ae38e0e7225582c.conikost@gentoo
1 commit: 293e8f0b9b2f4555cb816c213ae38e0e7225582c
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 13:00:01 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 13:00:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293e8f0b
7
8 net-libs/libupnp: drop 1.14.13
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 net-libs/libupnp/Manifest | 1 -
13 net-libs/libupnp/libupnp-1.14.13.ebuild | 49 ---------------------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/net-libs/libupnp/Manifest b/net-libs/libupnp/Manifest
17 index e315863c6f3f..9c9cad635574 100644
18 --- a/net-libs/libupnp/Manifest
19 +++ b/net-libs/libupnp/Manifest
20 @@ -1,2 +1 @@
21 -DIST libupnp-1.14.13.tar.gz 807484 BLAKE2B af3cd6c852297d7b131b2deefba8a72427e225c765017edb5f927b81bd1ce2b72d43caf2c46bd383b83536ba858d52dc8d051e272dacc8bd3c952e43443650a4 SHA512 ae6ae72a5e784a0f9508af94c4070627e791660fa37966e9825643fd0f88b171826bda9a2ec872d4961bf3454e5a9cd716127f0bdf6e63c789c4e22aab0b7e71
22 DIST libupnp-1.14.14.tar.gz 808851 BLAKE2B e1f69df386e2781cf17248733bf720c7e88c0d818ef8589648cdb4ec800c3a0cf381aa44fadcfdabcac31bf5d44091b8f421a1d53310046fb6a6c87e6035245f SHA512 bf134e87981ceb051e101b104f143672711de19a1b35cfc89a49e18f3a289fab443fbdef4a918e1f8a464de38a1eccbeee9c847c243e35f73a92373473b2465f
23
24 diff --git a/net-libs/libupnp/libupnp-1.14.13.ebuild b/net-libs/libupnp/libupnp-1.14.13.ebuild
25 deleted file mode 100644
26 index b74eee98c312..000000000000
27 --- a/net-libs/libupnp/libupnp-1.14.13.ebuild
28 +++ /dev/null
29 @@ -1,49 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit autotools
36 -
37 -MY_PN="pupnp"
38 -
39 -DESCRIPTION="An Portable Open Source UPnP Development Kit"
40 -HOMEPAGE="http://pupnp.sourceforge.net/"
41 -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
42 -S="${WORKDIR}/${MY_PN}-release-${PV}"
43 -
44 -LICENSE="BSD"
45 -SLOT="0/17"
46 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux"
47 -IUSE="blocking-tcp debug doc +ipv6 +reuseaddr samples +ssl static-libs"
48 -
49 -RDEPEND="ssl? ( dev-libs/openssl:0= )"
50 -DEPEND="${RDEPEND}"
51 -BDEPEND="virtual/pkgconfig"
52 -
53 -PATCHES=( "${FILESDIR}/${PN}-1.14.12-disable-network-tests.patch" )
54 -
55 -src_prepare() {
56 - default
57 - eautoreconf
58 -}
59 -
60 -src_configure() {
61 - local myeconfargs=(
62 - $(use_enable blocking-tcp blocking-tcp-connections)
63 - $(use_enable debug)
64 - $(use_enable ipv6)
65 - $(use_enable reuseaddr)
66 - $(use_enable samples)
67 - $(use_enable ssl open_ssl)
68 - $(use_enable static-libs static)
69 - )
70 -
71 - econf ${myeconfargs[@]}
72 -}
73 -
74 -src_install() {
75 - default
76 -
77 - find "${D}" -name '*.la' -delete || die
78 -}