Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/paho-mqtt/
Date: Fri, 01 Nov 2019 19:59:22
Message-Id: 1572638349.3f1c99dbbb920187db8f0d66ce6cf7c019c2f901.mattst88@gentoo
1 commit: 3f1c99dbbb920187db8f0d66ce6cf7c019c2f901
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 1 19:57:52 2019 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 1 19:59:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f1c99db
7
8 dev-python/paho-mqtt: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-python/paho-mqtt/Manifest | 2 --
13 dev-python/paho-mqtt/paho-mqtt-1.1.ebuild | 16 -------------
14 dev-python/paho-mqtt/paho-mqtt-1.3.1.ebuild | 37 -----------------------------
15 3 files changed, 55 deletions(-)
16
17 diff --git a/dev-python/paho-mqtt/Manifest b/dev-python/paho-mqtt/Manifest
18 index e99383d9cbf..221aa29a562 100644
19 --- a/dev-python/paho-mqtt/Manifest
20 +++ b/dev-python/paho-mqtt/Manifest
21 @@ -1,3 +1 @@
22 -DIST paho-mqtt-1.1.zip 159529 BLAKE2B ca3a39628c9cab8c4f3606587a5c853e79535b37a92991ecc32903967952cc00f6a9b967af0d343c4619f3e46ace1330baebc7c2e9dc231673f51775e4e1de25 SHA512 ef6d1a29480671413dbb655bd8f668b99f8587c14589d2180a37142b368e0ce058f8ed967dbfaa82f239c86e295338bc35c9f28a3ea39d21a6034cd8787a63ce
23 -DIST paho-mqtt-1.3.1.tar.gz 102133 BLAKE2B 905a51824d487cb125e06114bcba6b1ba862de4ab816db16aadb6ff761145fd4724dc6523a0c6837b8a16ced6730c5558612deb138bd95721f15054f5d6851a4 SHA512 95adeeaffbbd4b39d19fbd46feb39ec4a2ac923addd3c754a474b7a91d620bfca1678645c1a09c925e38a33995575944b873e3b2300d7bc2f3c5be3005c74d4c
24 DIST paho-mqtt-1.4.0.tar.gz 108278 BLAKE2B 0569f3cb5d262b3b7f6ae68261fe138d839afcc6fe91f880e29de24d5cf8e2491af81a30eb82c27fe63eee90114326eb75b06a32e05ec2fffed27b92d9601902 SHA512 2e49f0f146207ab4fbc8c346b10d3e2b50869b2d9db7c999b6645f7213fb635b64cff01c5405e7833a8b25334d24685ce6ed734a6e4b6b0660b48f65cf4a941c
25
26 diff --git a/dev-python/paho-mqtt/paho-mqtt-1.1.ebuild b/dev-python/paho-mqtt/paho-mqtt-1.1.ebuild
27 deleted file mode 100644
28 index 6ebebfea970..00000000000
29 --- a/dev-python/paho-mqtt/paho-mqtt-1.1.ebuild
30 +++ /dev/null
31 @@ -1,16 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="6"
36 -PYTHON_COMPAT=( python{2_7,3_5} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="A client class with support for both MQTT v3.1 and v3.1.1 on Python 2.7 or 3.x."
41 -HOMEPAGE="https://www.eclipse.org/paho/clients/python/"
42 -SRC_URI="https://github.com/eclipse/paho.mqtt.python/archive/${PV}.zip -> ${P}.zip"
43 -LICENSE="EPL-1.0"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -
47 -S="${WORKDIR}/paho.mqtt.python-${PV}"
48
49 diff --git a/dev-python/paho-mqtt/paho-mqtt-1.3.1.ebuild b/dev-python/paho-mqtt/paho-mqtt-1.3.1.ebuild
50 deleted file mode 100644
51 index 2f64e09df75..00000000000
52 --- a/dev-python/paho-mqtt/paho-mqtt-1.3.1.ebuild
53 +++ /dev/null
54 @@ -1,37 +0,0 @@
55 -# Copyright 1999-2019 Gentoo Authors
56 -# Distributed under the terms of the GNU General Public License v2
57 -
58 -EAPI=6
59 -PYTHON_COMPAT=( python{2_7,3_{5,6}} )
60 -
61 -inherit distutils-r1
62 -
63 -DESCRIPTION="A client class with support for both MQTT v3.1 and v3.1.1"
64 -HOMEPAGE="https://www.eclipse.org/paho/clients/python/"
65 -SRC_URI="https://github.com/eclipse/paho.mqtt.python/archive/v${PV}.tar.gz -> ${P}.tar.gz"
66 -
67 -LICENSE="EPL-1.0"
68 -SLOT="0"
69 -KEYWORDS="amd64 x86"
70 -IUSE="test"
71 -
72 -RDEPEND=""
73 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
74 - test? (
75 - dev-python/mock[${PYTHON_USEDEP}]
76 - dev-python/pytest[${PYTHON_USEDEP}]
77 - dev-python/pytest-runner[${PYTHON_USEDEP}]
78 - ) "
79 -
80 -S="${WORKDIR}/paho.mqtt.python-${PV}"
81 -
82 -RESTRICT="test" #659106
83 -
84 -src_prepare() {
85 - eapply "${FILESDIR}/${P}-strip-test-dependency.patch"
86 - default
87 -}
88 -
89 -python_test() {
90 - esetup.py test
91 -}