Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/miniupnpc/
Date: Fri, 19 Oct 2018 09:57:44
Message-Id: 1539942698.c913bb44bdb3e4463e1987c2bfe541364e987963.mgorny@gentoo
1 commit: c913bb44bdb3e4463e1987c2bfe541364e987963
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 19 09:51:38 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 19 09:51:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c913bb44
7
8 net-libs/miniupnpc: Drop old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 net-libs/miniupnpc/Manifest | 1 -
13 net-libs/miniupnpc/miniupnpc-2.0.20180222.ebuild | 56 ------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/net-libs/miniupnpc/Manifest b/net-libs/miniupnpc/Manifest
17 index ba0abf13e70..a677cb63c06 100644
18 --- a/net-libs/miniupnpc/Manifest
19 +++ b/net-libs/miniupnpc/Manifest
20 @@ -1,2 +1 @@
21 -DIST miniupnpc-2.0.20180222.tar.gz 87018 BLAKE2B 656ae02ac6e462084252d95e579972d2bbaec24cf44b5910d4fc1a956723a8ed8fecaa428aea361a7ec8a3ff60b82e0d9468ac21d251c16ac8c2b52eafec6ab3 SHA512 0cceeedff6c584d2d7037ff91fbba0fe580fabfda810b9a9ed7c8d8495445339e3ff115d63d4429bcd3eff2b13b123e1bd5855ff1bc9dcd986b968a82c368591
22 DIST miniupnpc-2.0.20180503.tar.gz 88207 BLAKE2B 1d6c6396e805eae3c53263a6856cc119033a645da29471b31705fdee8465808361057804496821f845112fb8490d351f67a5d5c9e1fef522fc6e6df8d4ac34c1 SHA512 68dcf76fe62223de80610afd392f14f46af2465796c3d4d46daa0c6f1f7e99034368b2484e260e718d42eef480644a684e83d4c0f32a6108fdd544cfc48443a3
23
24 diff --git a/net-libs/miniupnpc/miniupnpc-2.0.20180222.ebuild b/net-libs/miniupnpc/miniupnpc-2.0.20180222.ebuild
25 deleted file mode 100644
26 index 3547f9b9507..00000000000
27 --- a/net-libs/miniupnpc/miniupnpc-2.0.20180222.ebuild
28 +++ /dev/null
29 @@ -1,56 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit toolchain-funcs
36 -
37 -DESCRIPTION="UPnP client library and a simple UPnP client"
38 -HOMEPAGE="http://miniupnp.free.fr/"
39 -SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0/16"
43 -KEYWORDS="amd64 arm ~arm64 hppa ~mips ppc ppc64 s390 sparc x86 ~x86-fbsd"
44 -IUSE="ipv6 kernel_linux static-libs"
45 -
46 -RDEPEND=""
47 -DEPEND="kernel_linux? ( sys-apps/lsb-release sys-apps/which )"
48 -
49 -src_prepare() {
50 - eapply_user
51 -
52 - # These bins are not installed, upnpc-static requires building static lib
53 - sed -i -e '/EXECUTABLES =/s/ upnpc-static listdevices//' Makefile || die
54 - # Prevent gzipping manpage.
55 - sed -i -e '/gzip/d' Makefile || die
56 -
57 - if ! use static-libs; then
58 - sed -i \
59 - -e '/FILESTOINSTALL =/s/ $(LIBRARY)//' \
60 - -e '/$(INSTALL) -m 644 $(LIBRARY) $(DESTDIR)$(INSTALLDIRLIB)/d' \
61 - Makefile || die
62 - fi
63 -}
64 -
65 -# Upstream cmake causes more trouble than it fixes,
66 -# so we'll just stay with the Makefile for now.
67 -
68 -src_compile() {
69 - tc-export CC AR
70 - emake upnpc-shared $(usex static-libs upnpc-static '')
71 -}
72 -
73 -src_test() {
74 - emake -j1 HAVE_IPV6=$(usex ipv6) check
75 -}
76 -
77 -src_install() {
78 - emake \
79 - DESTDIR="${D}" \
80 - PREFIX="${EPREFIX}/usr" \
81 - INSTALLDIRLIB="${EPREFIX}/usr/$(get_libdir)" \
82 - install
83 -
84 - dodoc README Changelog.txt
85 -}