summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-10-17 11:35:32 +0200
committerMichał Górny <mgorny@gentoo.org>2021-10-17 11:35:32 +0200
commitea80bbb28978f7e6eea0089804972f22b5984cfd (patch)
tree120f1bfdddbd584b27a27351b74382853319a26c /dev-python
parentdev-python/svgwrite: Remove old (diff)
downloadgentoo-ea80bbb28978f7e6eea0089804972f22b5984cfd.tar.gz
gentoo-ea80bbb28978f7e6eea0089804972f22b5984cfd.tar.bz2
gentoo-ea80bbb28978f7e6eea0089804972f22b5984cfd.zip
dev-python/tekore: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/tekore/Manifest1
-rw-r--r--dev-python/tekore/tekore-3.7.1.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-python/tekore/Manifest b/dev-python/tekore/Manifest
index d12017d7dc63..639b6617afec 100644
--- a/dev-python/tekore/Manifest
+++ b/dev-python/tekore/Manifest
@@ -1,2 +1 @@
-DIST tekore-3.7.1.tar.gz 258235 BLAKE2B e04edfab294ac3dac1fb086f296bf3fcc463cdad981d435fdd19ec812f1bb2ff79cacaa94d5105dc1070dd56602cc9a502537c68020cb27b2eb5b3c93788f193 SHA512 ed315a0b5b071265d2ba12d996bedafdea87286fd1beecc14d247176f2bdd2245e0220fb186ce4bd6eec2bc13a764f74b067ce1e546d8c30e618a4bdc3bf02e0
DIST tekore-4.0.0.tar.gz 259755 BLAKE2B 5c4c990c14187c20ef3566d1bc0cf32e50fe108d90b59126e2d56105b6fe053ca02c98e7ad7a4fa09345792106e956873a0f42b8492420bd74898557c6d97f23 SHA512 7e5cf6044a6a7045257b9b9830fe4bdb6fb175240b295da3f93cb0557150536655ddf44ab551b52182815fc517b8e43ee704b1061db1284426574e741f7d9a56
diff --git a/dev-python/tekore/tekore-3.7.1.ebuild b/dev-python/tekore/tekore-3.7.1.ebuild
deleted file mode 100644
index dff9f1b6b404..000000000000
--- a/dev-python/tekore/tekore-3.7.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Spotify Web API client"
-HOMEPAGE="
- https://tekore.readthedocs.io
- https://github.com/felix-hilden/tekore
-"
-SRC_URI="https://github.com/felix-hilden/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64"
-SLOT="0"
-
-RDEPEND="
- >=dev-python/httpx-0.11[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
- test? (
- >=dev-python/pytest-asyncio-0.11[${PYTHON_USEDEP}]
- )
-"
-
-DOCS="readme.rst"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs/src \
- dev-python/sphinx_rtd_theme \
- dev-python/sphinx-autodoc-typehints
-
-python_prepare_all() {
- # requires network
- sed -i -e 's:test_bad_arguments_raises_error:_&:' \
- tests/auth/expiring.py || die
- # unpin
- sed -i -e '/httpx/s:,<0[.]18::' setup.py || die
-
- distutils-r1_python_prepare_all
-}