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: dev-python/miniupnpc/
Date: Wed, 26 Jun 2019 15:47:28
Message-Id: 1561564039.9a808fbc438f6df534c462b063c1fda5a78adcec.mgorny@gentoo
1 commit: 9a808fbc438f6df534c462b063c1fda5a78adcec
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 26 13:26:28 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 26 15:47:19 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a808fbc
7
8 dev-python/miniupnpc: Bump to 2.1.20190625
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/miniupnpc/Manifest | 1 +
13 dev-python/miniupnpc/miniupnpc-2.1.20190625.ebuild | 31 ++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-python/miniupnpc/Manifest b/dev-python/miniupnpc/Manifest
17 index 68fc9113173..ca5446b1ce2 100644
18 --- a/dev-python/miniupnpc/Manifest
19 +++ b/dev-python/miniupnpc/Manifest
20 @@ -1 +1,2 @@
21 DIST miniupnpc-2.1.20190408.tar.gz 94216 BLAKE2B 19b0bee46d2f738939fda31c465779a6e6c7c04b2e975aed77c3a642bbfd1c61813367da5f2aa3f351fe1e5a71a842bfcd7b54c4faf589e345ddb1551bc322c6 SHA512 faa0f1363ebb59ca636b6c974188c52903ad07652f8268563c9c1a5826fafc2458d9f521efd3546fbbd4b71b3b14a50ba89dda52757adad1db81c31d9ba0987a
22 +DIST miniupnpc-2.1.20190625.tar.gz 94461 BLAKE2B 26c881c2ef99640e99a5c9cb138cc88dc29a25cd57fffaeaffcf521ded11402fd34ad1001639cd0659fdef9debd247dded5c1903b69f36b74b059c1e282bcdfb SHA512 d55a959bb2fce2c1747fa95da53d9993220403d2c511b12f489b80a7941b28238561f90a1cd60be9fa2bd62777fbfd3cef370db694b9970f73ccbdf3ef49aa48
23
24 diff --git a/dev-python/miniupnpc/miniupnpc-2.1.20190625.ebuild b/dev-python/miniupnpc/miniupnpc-2.1.20190625.ebuild
25 new file mode 100644
26 index 00000000000..b29713da4bc
27 --- /dev/null
28 +++ b/dev-python/miniupnpc/miniupnpc-2.1.20190625.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy{,3} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Python bindings for UPnP client library"
40 +HOMEPAGE="http://miniupnp.free.fr/"
41 +SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
46 +IUSE=""
47 +
48 +RDEPEND=">=net-libs/miniupnpc-${PV}:0="
49 +DEPEND="${RDEPEND}
50 + dev-python/setuptools[${PYTHON_USEDEP}]"
51 +
52 +PATCHES=(
53 + "${FILESDIR}"/miniupnpc-2.0.20171102-shared-lib.patch
54 +)
55 +
56 +# DOCS are installed by net-libs/miniupnpc.
57 +DOCS=()
58 +
59 +# Example test command:
60 +# python -c 'import miniupnpc; u = miniupnpc.UPnP(); u.discover(); u.selectigd(); print(u.externalipaddress())'