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