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/, dev-python/miniupnpc/files/
Date: Sun, 05 Nov 2017 12:20:16
Message-Id: 1509884376.fb9b9a5f715baa12afce456b6609880e53c5ff70.mgorny@gentoo
1 commit: fb9b9a5f715baa12afce456b6609880e53c5ff70
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 5 08:19:36 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 5 12:19:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb9b9a5f
7
8 dev-python/miniupnpc: Bump to 2.0.20171102
9
10 dev-python/miniupnpc/Manifest | 1 +
11 .../files/miniupnpc-2.0.20171102-shared-lib.patch | 41 ++++++++++++++++++++++
12 dev-python/miniupnpc/miniupnpc-2.0.20171102.ebuild | 31 ++++++++++++++++
13 3 files changed, 73 insertions(+)
14
15 diff --git a/dev-python/miniupnpc/Manifest b/dev-python/miniupnpc/Manifest
16 index fb97ff414a4..b4a2b1139ec 100644
17 --- a/dev-python/miniupnpc/Manifest
18 +++ b/dev-python/miniupnpc/Manifest
19 @@ -2,3 +2,4 @@ DIST miniupnpc-1.8.tar.gz 70624 SHA256 bc5f73c7b0056252c1888a80e6075787a1e1e9112
20 DIST miniupnpc-1.9.20151008.tar.gz 83538 SHA256 e444ac3b587ce82709c4d0cfca1fe71f44f9fc433e9f946b12b9e1bfe667a633 SHA512 b13e6044184f47d0f9e78c4c97d2887ab763121b2b21c86652bf3ea1b05335cfbcfd91eecb8d1dcfb5530f2528e6cf3e9c49c742d5e771dba68a774d2c2ad4ca WHIRLPOOL 839b531eb6cae7ada0bbaa0c4230a1f6889f6a288a114262bf6e27aa27638800636127fea3066427fb030e8f449794681d2bffeb8e2d30876d8ef9e4a3ade3cc
21 DIST miniupnpc-2.0.20161216.tar.gz 85780 SHA256 01e14408d6fc628de9afabc4417b84adeaba4c0ec517e7b8e278cb2993dafd3e SHA512 ed1413fa6cd8eeb0d01e595e5470b255b1119a9bcf28da17765a4a3f0eb2b514409a9bfe9cd041274761b61441389c290754055ff07d599bb653a4efe47e920f WHIRLPOOL fde2dc16f5cfd6e7d066ec49646ac79b6d262988afe928d80aaf47f6b7f868a272ac46d3136c56ed8373e800d1538fe4dd6c34255080e2bd01cc0cb8b56e37fc
22 DIST miniupnpc-2.0.20170509.tar.gz 86055 SHA256 d3c368627f5cdfb66d3ebd64ca39ba54d6ff14a61966dbecb8dd296b7039f16a SHA512 71ec052ef6c8ad0d529e467ddae6eae19a93b9816174eeac753aa90e036cc2f00cf7e8d1cdb188ef8280849a988fe2995e37b63f8e2a361e021c1d1b306bff6f WHIRLPOOL 86c1a7a1d8800dbc0d1eccad66a5cb61a59af38989ca79c3b8df926ed12d9c7760d0b5d0e59d5d3190b45c7801a76c3e209f156836277992131c587b97c1a48c
23 +DIST miniupnpc-2.0.20171102.tar.gz 86363 SHA256 148517020581260c8a2fa532224870bc53e59004777affcaf27ef636a72825d4 SHA512 5af68a58bef587ea5cc405155b1aca4438de3b56d5fb7e11945edd79e5cbdbf44c708b7f1ad3c3fde6bf4710de69782acf30cfcce327c5a906f4eb8f76a6ba37 WHIRLPOOL 80a9d0e487ddb2ac69af8e738144e74985c5b5acf8c4b7736121e58dbd04eaa38d90853e375334d7f05011b6134536e776757737f549410a6291941b0e47bf1e
24
25 diff --git a/dev-python/miniupnpc/files/miniupnpc-2.0.20171102-shared-lib.patch b/dev-python/miniupnpc/files/miniupnpc-2.0.20171102-shared-lib.patch
26 new file mode 100644
27 index 00000000000..f3245cb4b35
28 --- /dev/null
29 +++ b/dev-python/miniupnpc/files/miniupnpc-2.0.20171102-shared-lib.patch
30 @@ -0,0 +1,41 @@
31 +From 7a61313dda299b16c4af3260ae5c11ce5945ed97 Mon Sep 17 00:00:00 2001
32 +From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@g.o>
33 +Date: Sun, 5 Nov 2017 09:24:00 +0100
34 +Subject: [PATCH] Link against the shared library
35 +
36 +---
37 + setup.py | 10 +---------
38 + 1 file changed, 1 insertion(+), 9 deletions(-)
39 +
40 +diff --git a/setup.py b/setup.py
41 +index b84146f..73b05b7 100644
42 +--- a/setup.py
43 ++++ b/setup.py
44 +@@ -13,13 +13,6 @@ from setuptools.command import build_ext
45 + import subprocess
46 + import os
47 +
48 +-EXT = ['libminiupnpc.a']
49 +-
50 +-class make_then_build_ext(build_ext.build_ext):
51 +- def run(self):
52 +- subprocess.check_call([os.environ.get('MAKE', 'make')] + EXT)
53 +- build_ext.build_ext.run(self)
54 +-
55 + setup(name="miniupnpc",
56 + version=open('VERSION').read().strip(),
57 + author='Thomas BERNARD',
58 +@@ -27,9 +20,8 @@ setup(name="miniupnpc",
59 + license=open('LICENSE').read(),
60 + url='http://miniupnp.free.fr/',
61 + description='miniUPnP client',
62 +- cmdclass={'build_ext': make_then_build_ext},
63 + ext_modules=[
64 + Extension(name="miniupnpc", sources=["miniupnpcmodule.c"],
65 +- extra_objects=EXT)
66 ++ libraries=['miniupnpc'])
67 + ])
68 +
69 +--
70 +2.15.0.rc2
71 +
72
73 diff --git a/dev-python/miniupnpc/miniupnpc-2.0.20171102.ebuild b/dev-python/miniupnpc/miniupnpc-2.0.20171102.ebuild
74 new file mode 100644
75 index 00000000000..c3659faf80f
76 --- /dev/null
77 +++ b/dev-python/miniupnpc/miniupnpc-2.0.20171102.ebuild
78 @@ -0,0 +1,31 @@
79 +# Copyright 1999-2017 Gentoo Foundation
80 +# Distributed under the terms of the GNU General Public License v2
81 +
82 +EAPI=6
83 +
84 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
85 +
86 +inherit distutils-r1
87 +
88 +DESCRIPTION="Python bindings for UPnP client library"
89 +HOMEPAGE="http://miniupnp.free.fr/"
90 +SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz"
91 +
92 +LICENSE="BSD"
93 +SLOT="0"
94 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
95 +IUSE=""
96 +
97 +RDEPEND=">=net-libs/miniupnpc-${PV}:0="
98 +DEPEND="${RDEPEND}
99 + dev-python/setuptools[${PYTHON_USEDEP}]"
100 +
101 +PATCHES=(
102 + "${FILESDIR}"/miniupnpc-2.0.20171102-shared-lib.patch
103 +)
104 +
105 +# DOCS are installed by net-libs/miniupnpc.
106 +DOCS=()
107 +
108 +# Example test command:
109 +# python -c 'import miniupnpc; u = miniupnpc.UPnP(); u.discover(); u.selectigd(); print(u.externalipaddress())'