From 378a88319032bd5ab2413a4c9f565f2291331ad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Tue, 5 Apr 2022 15:15:14 +0200 Subject: [PATCH 1/2] dev-python/spotipy: move to ::gentoo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: https://github.com/deepjyoti30/ytmdl/issues/222 Signed-off-by: Maciej Barć --- dev-python/spotipy/Manifest | 2 - dev-python/spotipy/metadata.xml | 6 --- dev-python/spotipy/spotipy-2.17.1.ebuild | 54 ------------------------ dev-python/spotipy/spotipy-2.19.0.ebuild | 50 ---------------------- 4 files changed, 112 deletions(-) delete mode 100644 dev-python/spotipy/Manifest delete mode 100644 dev-python/spotipy/metadata.xml delete mode 100644 dev-python/spotipy/spotipy-2.17.1.ebuild delete mode 100644 dev-python/spotipy/spotipy-2.19.0.ebuild diff --git a/dev-python/spotipy/Manifest b/dev-python/spotipy/Manifest deleted file mode 100644 index 67f3e6da32..0000000000 --- a/dev-python/spotipy/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST spotipy-2.17.1.tar.gz 100524 BLAKE2B 3c020276f245b03a5a2052b49e353ead6aca69c510ddaeef732aa0ecd835abccf49fde58ac26bd5c64f9ea7afa9b6772a36abbc3d48a076559c6fb96e465ce7d SHA512 39dbd089fe98896387f805e6cb487c38543c0777aaf73cacc805d5f6f074c07ee5a5dd7adfe7925cdc717e46b5fee0e9151265fd4f792b901040e107cb8c515c -DIST spotipy-2.19.0.tar.gz 102703 BLAKE2B bc132edb972236b43097c0bbc9d86932a3305d8bd3807e44e20767b123455950b8e01060efd83c87b3a162e329f5c48614205f131686af7f9312a44894a7f1e7 SHA512 fbaecd1a2cab3ef458d30de46cb89462021dfc3cfc85516d8bfe509af016a0b19af2f8de4f5cae36188b1ce1f5718c75edff0e71af2a87f4d720ee99d4541a6a diff --git a/dev-python/spotipy/metadata.xml b/dev-python/spotipy/metadata.xml deleted file mode 100644 index a0a60d7147..0000000000 --- a/dev-python/spotipy/metadata.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/dev-python/spotipy/spotipy-2.17.1.ebuild b/dev-python/spotipy/spotipy-2.17.1.ebuild deleted file mode 100644 index bebfe00000..0000000000 --- a/dev-python/spotipy/spotipy-2.17.1.ebuild +++ /dev/null @@ -1,54 +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="A light weight Python library for the Spotify Web API" -HOMEPAGE="https://spotipy.readthedocs.io - https://github.com/plamere/spotipy" -SRC_URI="https://github.com/plamere/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -IUSE="examples" - -LICENSE="MIT" -KEYWORDS="~amd64 ~x86 " -SLOT="0" - -RDEPEND=" - 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() { - # this test requires user credentials - rm tests/integration/test_user_endpoints.py || die - - # this test requires a spotify client ID - rm tests/integration/test_non_user_endpoints.py || die - - # need 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_test() { - pytest -vv tests || die "Tests fail with ${EPYTHON}" -} - -python_install_all() { - use examples && dodoc -r examples - - distutils-r1_python_install_all -} diff --git a/dev-python/spotipy/spotipy-2.19.0.ebuild b/dev-python/spotipy/spotipy-2.19.0.ebuild deleted file mode 100644 index a941f38831..0000000000 --- a/dev-python/spotipy/spotipy-2.19.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="A light weight Python library for the Spotify Web API" -HOMEPAGE="https://spotipy.readthedocs.io - https://github.com/plamere/spotipy" -SRC_URI="https://github.com/plamere/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -IUSE="examples" - -LICENSE="MIT" -KEYWORDS="~amd64" -SLOT="0" - -RDEPEND=" - 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() { - # this test requires user credentials - rm tests/integration/test_user_endpoints.py || die - - # this test requires a spotify client ID - rm tests/integration/test_non_user_endpoints.py || die - - # need 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() { - use examples && dodoc -r examples - - distutils-r1_python_install_all -} From d175d22c03fe687490ca88c2557e78f8a9ac4886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Tue, 5 Apr 2022 15:15:31 +0200 Subject: [PATCH 2/2] dev-python/ffmpeg-python: move to ::gentoo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: https://github.com/deepjyoti30/ytmdl/issues/222 Signed-off-by: Maciej Barć --- dev-python/ffmpeg-python/Manifest | 1 - .../ffmpeg-python/ffmpeg-python-0.2.0.ebuild | 28 ------------------- dev-python/ffmpeg-python/metadata.xml | 8 ------ 3 files changed, 37 deletions(-) delete mode 100644 dev-python/ffmpeg-python/Manifest delete mode 100644 dev-python/ffmpeg-python/ffmpeg-python-0.2.0.ebuild delete mode 100644 dev-python/ffmpeg-python/metadata.xml diff --git a/dev-python/ffmpeg-python/Manifest b/dev-python/ffmpeg-python/Manifest deleted file mode 100644 index 3efba39965..0000000000 --- a/dev-python/ffmpeg-python/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ffmpeg-python-0.2.0.tar.gz 21543 BLAKE2B ba16c57dfd8764f541ffbadf5fd62805877b5fbce230c9bcde230074c9b95b6d504587b5d98dc67f27b0d08deeddca4639506a2e97174924d130bb297d9d5f83 SHA512 9484a580d3f215fd8a26fa901b9487d80cb02717233d8932f5ecfab401af12e1d119f5ff991db8823aab7aaae54f21709d4d091ecb08c2f993ba1e0708ed88fa diff --git a/dev-python/ffmpeg-python/ffmpeg-python-0.2.0.ebuild b/dev-python/ffmpeg-python/ffmpeg-python-0.2.0.ebuild deleted file mode 100644 index c41179abea..0000000000 --- a/dev-python/ffmpeg-python/ffmpeg-python-0.2.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..9} ) - -inherit distutils-r1 - -DESCRIPTION="Python bindings for FFmpeg - with complex filtering support" -HOMEPAGE="https://github.com/kkroening/ffmpeg-python" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND=" - media-video/ffmpeg -" -RDEPEND=" - ${DEPEND} -" - -python_prepare_all() { - sed -e '/\/d' -i setup.py - distutils-r1_python_prepare_all -} diff --git a/dev-python/ffmpeg-python/metadata.xml b/dev-python/ffmpeg-python/metadata.xml deleted file mode 100644 index cbe3c6a539..0000000000 --- a/dev-python/ffmpeg-python/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - smaniotto.nicola@gmail.com - Nicola Smaniotto - -