summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-08-26 10:18:23 +0200
committerMichał Górny <mgorny@gentoo.org>2021-08-26 10:18:23 +0200
commit56333f3e1badd0a7eb88889daea472225ab3115b (patch)
tree5a78add38b22d8b725b5559c028aaf3a62da1613 /dev-python/twython
parentdev-python/qrcode: Remove old (diff)
downloadgentoo-56333f3e1badd0a7eb88889daea472225ab3115b.tar.gz
gentoo-56333f3e1badd0a7eb88889daea472225ab3115b.tar.bz2
gentoo-56333f3e1badd0a7eb88889daea472225ab3115b.zip
dev-python/twython: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/twython')
-rw-r--r--dev-python/twython/Manifest1
-rw-r--r--dev-python/twython/twython-3.7.0.ebuild33
2 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/twython/Manifest b/dev-python/twython/Manifest
index ba0c33608822..a3173f87e9ca 100644
--- a/dev-python/twython/Manifest
+++ b/dev-python/twython/Manifest
@@ -1,2 +1 @@
-DIST twython-3.7.0.gh.tar.gz 373183 BLAKE2B a84e10c1d61736af3e93f265d92104dac15d5f7a43d7fbdce4e8c58b641f671a1c4c10f44c5b6d6ce9f0646860d35c14414b17e84daeb74f6e2c8871207b6fd4 SHA512 33eb35ea811ec1964fcd51fad54ba53d60e6caf3b5b7d11ae138f7228be9fb1eca7a02b1c6699a62cc2f6c39e035cb5a28f53ef67a98d019cdf91c9874867871
DIST twython-3.9.1.gh.tar.gz 372933 BLAKE2B 3db7f37e284ec83546e4f93a23e34c21ce9853e6206b62353e36b738ba591acadc55fd3dbbdf8cf7d74e63ab9966b9cdc7f49c5caa06e165bb7107b350509835 SHA512 e64d623dfa7ba2e81e09f9d8e784851b44201493d128ec576c4b5a9abc88debf1ca78f8a12933e0cd0a6b495012fa951bb62ea5d92db11186b37747b8576174f
diff --git a/dev-python/twython/twython-3.7.0.ebuild b/dev-python/twython/twython-3.7.0.ebuild
deleted file mode 100644
index 8850d99906b5..000000000000
--- a/dev-python/twython/twython-3.7.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="An easy way to access Twitter data with Python"
-HOMEPAGE="https://github.com/ryanmcgrath/twython"
-SRC_URI="https://github.com/ryanmcgrath/twython/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- >=dev-python/requests-2.1.0[${PYTHON_USEDEP}]
- >=dev-python/requests-oauthlib-0.4.0[${PYTHON_USEDEP}]"
-BDEPEND="test? ( dev-python/responses[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests unittest
-
-src_prepare() {
- # tests are largely broken/outdated
- sed -e 's:test_get_lastfunction_header_should_return_header:_&:' \
- -e 's:test_request_should_handle_4:_&:' \
- -e 's:test_request_should_handle_rate_limit:_&:' \
- -i tests/test_core.py || die
-
- distutils-r1_src_prepare
-}