From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/spotipy/
Date: Tue, 5 Apr 2022 13:16:01 +0000 (UTC) [thread overview]
Message-ID: <1649164518.378a88319032bd5ab2413a4c9f565f2291331ad2.xgqt@gentoo> (raw)
commit: 378a88319032bd5ab2413a4c9f565f2291331ad2
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 5 13:15:14 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Tue Apr 5 13:15:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=378a8831
dev-python/spotipy: move to ::gentoo
Bug: https://github.com/deepjyoti30/ytmdl/issues/222
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
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(-)
diff --git a/dev-python/spotipy/Manifest b/dev-python/spotipy/Manifest
deleted file mode 100644
index 67f3e6da3..000000000
--- 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 a0a60d714..000000000
--- a/dev-python/spotipy/metadata.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-
-<pkgmetadata>
- <!-- maintainer-needed -->
-</pkgmetadata>
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 bebfe0000..000000000
--- 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 a941f3883..000000000
--- 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
-}
next reply other threads:[~2022-04-05 13:16 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-05 13:16 Maciej Barć [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-02-07 9:52 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/spotipy/ Nicola Smaniotto
2021-05-24 11:06 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-05-24 10:01 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-02-28 17:35 Andrew Ammerlaan
2020-11-04 9:57 Andrew Ammerlaan
2020-09-16 20:30 Andrew Ammerlaan
2020-09-08 10:30 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-09-08 10:30 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-08-29 14:14 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-08-29 14:14 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-08-14 18:20 Andrew Ammerlaan
2020-06-26 8:23 Andrew Ammerlaan
2020-06-09 16:27 Andrew Ammerlaan
2020-04-27 7:10 Andrew Ammerlaan
2020-04-20 9:48 Andrew Ammerlaan
2020-04-11 20:34 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-11 19:23 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-03-19 8:10 Andrew Ammerlaan
2020-02-15 21:19 Andrew Ammerlaan
2020-02-13 10:21 Andrew Ammerlaan
2020-02-10 14:19 Andrew Ammerlaan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1649164518.378a88319032bd5ab2413a4c9f565f2291331ad2.xgqt@gentoo \
--to=xgqt@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox