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/python-twitter/
Date: Sat, 28 Mar 2020 21:11:59
Message-Id: 1585429880.fa8c0d410bcb7fb9144cae7146468cc207e9c15a.mgorny@gentoo
1 commit: fa8c0d410bcb7fb9144cae7146468cc207e9c15a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 21:04:14 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 21:11:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa8c0d41
7
8 dev-python/python-twitter: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-twitter/Manifest | 1 -
13 .../python-twitter/python-twitter-3.3.ebuild | 37 ----------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/python-twitter/Manifest b/dev-python/python-twitter/Manifest
17 index 035d9eb01d1..e2af08ff08b 100644
18 --- a/dev-python/python-twitter/Manifest
19 +++ b/dev-python/python-twitter/Manifest
20 @@ -1,2 +1 @@
21 -DIST python-twitter-3.3.tar.gz 84696 BLAKE2B aad833904e0127fca4043bf66187e7ff5a4175c7c86cf9b053c7d0bc6c9f25d2bc102a631d479ebd4ce81b515aea0f058473993a1b7f5a03751dd83f39e9a3c3 SHA512 72e4133abddf86a19b8701f846df7eb99b426b8835e457455935a656f38c266fb2930d8a145d5d280ef2e0f0096511b29dcdf98b94bd53b6a661ea575cfb3265
22 DIST python-twitter-3.4.2.tar.gz 5145121 BLAKE2B 2ac45ae8fde3cfccb794d8496efdb0066c887101b6a6ac55ad6fd0f9fda8f50db1245284236c5fa0fd8eb7419c11eb253777d78092ea138d2f0a5115db861a89 SHA512 23d009e006864bb9dbf9c10223531a0e2aeefd4ca59852849f49f41e36b6db29e820a58c8a43f23c7bda0c68b6eb19a5557ef649bae2cbb1f1e406f78a918f92
23
24 diff --git a/dev-python/python-twitter/python-twitter-3.3.ebuild b/dev-python/python-twitter/python-twitter-3.3.ebuild
25 deleted file mode 100644
26 index a317ab9ac6c..00000000000
27 --- a/dev-python/python-twitter/python-twitter-3.3.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python wrapper around the Twitter API"
40 -HOMEPAGE="https://github.com/bear/python-twitter"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86 ~x86-macos"
46 -IUSE="examples"
47 -
48 -RDEPEND="
49 - dev-python/oauth2[${PYTHON_USEDEP}]
50 - dev-python/simplejson[${PYTHON_USEDEP}]
51 - dev-python/requests[${PYTHON_USEDEP}]
52 - dev-python/requests-oauthlib[${PYTHON_USEDEP}]"
53 -
54 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
55 -
56 -# Testsuite is still not convincing in its completeness
57 -RESTRICT="test"
58 -
59 -src_prepare() {
60 - distutils-r1_src_prepare
61 -}
62 -
63 -# https://code.google.com/p/python-twitter/issues/detail?id=259&thanks=259&ts=1400334214
64 -python_test() {
65 - esetup.py test
66 -}