From: Mikle Kolyada Date: Thu, 9 Apr 2020 08:15:45 +0000 (+0300) Subject: dev-python/tweepy: remove last-rited pkg X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=20b53dd4789970571cd6d0726ecb843396e4dce6;p=gentoo.git dev-python/tweepy: remove last-rited pkg Closes: https://bugs.gentoo.org/711934 Signed-off-by: Mikle Kolyada --- diff --git a/dev-python/tweepy/Manifest b/dev-python/tweepy/Manifest deleted file mode 100644 index 2ecd1b2ab647..000000000000 --- a/dev-python/tweepy/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tweepy-3.5.0.tar.gz 24348 BLAKE2B ea9d96abe4f364e1f77a97ce28fcd4fca3224ab307698e59a834c20becfa53ab68851e638946085431ef2edc1a4e3bf4f42a113c2ac41561930b7f4638e5d6c4 SHA512 cf87f0b7dea0ca444c17a3fdb9c2ebef814683c110511876c1997630b3202393276d3dd2de3b37fc21eb7a15382d22cc886109bda5a11b3d06a08081704c8c2a diff --git a/dev-python/tweepy/metadata.xml b/dev-python/tweepy/metadata.xml deleted file mode 100644 index 0ee41d2f84f8..000000000000 --- a/dev-python/tweepy/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - python@gentoo.org - Python - - - tweepy/tweepy - tweepy - - diff --git a/dev-python/tweepy/tweepy-3.5.0.ebuild b/dev-python/tweepy/tweepy-3.5.0.ebuild deleted file mode 100644 index f5c8f65b38de..000000000000 --- a/dev-python/tweepy/tweepy-3.5.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python3_6 ) -PYTHON_REQ_USE="ssl(+)" - -inherit distutils-r1 - -DESCRIPTION="A Python library for accessing the Twitter API " -HOMEPAGE="https://www.tweepy.org/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples test" - -RESTRICT="test" #missing in tarball - -DEPEND=" - dev-python/pip[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] ) - " -RDEPEND=" - >=dev-python/requests-2.4.3[${PYTHON_USEDEP}] - >=dev-python/requests-oauthlib-0.4.1[${PYTHON_USEDEP}] - >=dev-python/six-1.7.3[${PYTHON_USEDEP}] -" -python_prepare_all() { - # Required to avoid file collisions at install - sed \ - -e "/find_packages/s:]:,'tests.*','examples']:g" \ - -i setup.py || die - distutils-r1_python_prepare_all -} - -python_test() { - nosetests -v -c tests/travis-tests.cfg || die -} - -python_compile_all() { - use doc && emake -C docs html -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - if use examples; then - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -}