diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-01-27 21:06:13 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-01-27 21:09:54 +0100 |
commit | b833d50fad6606104faa6c97ada52e5ac84b186d (patch) | |
tree | 62259fcb3452865df4d16338a1b86f9306127c84 /dev-python/spotipy | |
parent | dev-python/shiboken6: Remove old (diff) | |
download | gentoo-b833d50fad6606104faa6c97ada52e5ac84b186d.tar.gz gentoo-b833d50fad6606104faa6c97ada52e5ac84b186d.tar.bz2 gentoo-b833d50fad6606104faa6c97ada52e5ac84b186d.zip |
dev-python/spotipy: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/spotipy')
-rw-r--r-- | dev-python/spotipy/Manifest | 2 | ||||
-rw-r--r-- | dev-python/spotipy/spotipy-2.21.0.ebuild | 49 | ||||
-rw-r--r-- | dev-python/spotipy/spotipy-2.22.0.ebuild | 43 |
3 files changed, 0 insertions, 94 deletions
diff --git a/dev-python/spotipy/Manifest b/dev-python/spotipy/Manifest index 3f8b5c41142f..6264f1545b46 100644 --- a/dev-python/spotipy/Manifest +++ b/dev-python/spotipy/Manifest @@ -1,3 +1 @@ -DIST spotipy-2.21.0.tar.gz 105500 BLAKE2B fa49c31da93efdac23fd5cbaa31b513f48e3a90c56dee8708bf695a20c1f6040c68a22a04d6589b3a890f503d54e7c0fb017f2911ae28abe54a9e7f5bff3b540 SHA512 8783261e43962b3e98cb9b680f908d38feecf784ff404352ba16d6bb3d2e4bf1d2308b60f1437c56402e1c2a993a5bba876103f968bb8bdd81be1aef1fe6d058 -DIST spotipy-2.22.0.gh.tar.gz 109714 BLAKE2B 178a05252bc875630cee97628d228d9bd7d929d54fcb7ee30e92b685996fc9074063eae25b0b71089c3b51fcb29611c101acf0f606dc14a508f37e46c5522041 SHA512 272f05b1cb92dbd9842dcac58a5ca322fae703eea58488b968812c12b6c26fb748aabbf5fde7100e9662191231fe12f5353b9ba12f02bd2e4982e0aff1c732f6 DIST spotipy-2.22.1.gh.tar.gz 111228 BLAKE2B df75cce406d59c9de3e4c836309262d61f7f1249761d3172be13033512944e69a56ca67f16b55e4736f760b74d3ebd8f384225ce9309a5fc1bd8c93be4099069 SHA512 d8c5871dd606e3335656fb55fa042d8c91c72a4c7d62a584bd407a7546184996694c67d499f908fc7049e406c548269286de6cba17064f0385adba3661b34c3b diff --git a/dev-python/spotipy/spotipy-2.21.0.ebuild b/dev-python/spotipy/spotipy-2.21.0.ebuild deleted file mode 100644 index 56659024211a..000000000000 --- a/dev-python/spotipy/spotipy-2.21.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="A light weight Python library for the Spotify Web API" -HOMEPAGE="https://spotipy.readthedocs.io" -SRC_URI="https://github.com/plamere/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -KEYWORDS="~amd64 ~x86" -SLOT="0" -IUSE="examples" - -RDEPEND=" - dev-python/redis-py[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/urllib3[${PYTHON_USEDEP}] -" -BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -python_prepare_all() { - # Requires user credentials - rm tests/integration/test_user_endpoints.py || die - - # Requires a spotify client ID - rm tests/integration/test_non_user_endpoints.py || die - - # Needs internet access - sed -i -e 's:test_spotify_client_credentials_get_access_token:_&:' \ - tests/unit/test_oauth.py || die - - distutils-r1_python_prepare_all -} - -python_install_all() { - distutils-r1_python_install_all - - use examples && dodoc -r examples -} diff --git a/dev-python/spotipy/spotipy-2.22.0.ebuild b/dev-python/spotipy/spotipy-2.22.0.ebuild deleted file mode 100644 index 71b2059edb84..000000000000 --- a/dev-python/spotipy/spotipy-2.22.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 2022-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) - -inherit distutils-r1 - -DESCRIPTION="A light weight Python library for the Spotify Web API" -HOMEPAGE="https://spotipy.readthedocs.io" -SRC_URI="https://github.com/plamere/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="MIT" -KEYWORDS="~amd64 ~x86" -SLOT="0" -IUSE="examples" - -RDEPEND=" - dev-python/redis-py[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/urllib3[${PYTHON_USEDEP}] -" -BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -python_prepare_all() { - # Needs internet access - sed -i -e 's:test_spotify_client_credentials_get_access_token:_&:' \ - tests/unit/test_oauth.py || die - - distutils-r1_python_prepare_all -} - -python_install_all() { - distutils-r1_python_install_all - - use examples && dodoc -r examples -} |