Gentoo Archives: gentoo-commits

From: Nicola Smaniotto <smaniotto.nicola@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/spotify_dl/
Date: Sun, 06 Feb 2022 20:56:41
Message-Id: 1644180996.8ace9e4aa43a2e712f6bea8dd87a9729cdd4d18f.smaniotto.nicola@gentoo
1 commit: 8ace9e4aa43a2e712f6bea8dd87a9729cdd4d18f
2 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 6 20:55:54 2022 +0000
4 Commit: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com>
5 CommitDate: Sun Feb 6 20:56:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8ace9e4a
7
8 media-sound/spotify_dl: bump to 8.1.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com>
12
13 media-sound/spotify_dl/Manifest | 1 +
14 media-sound/spotify_dl/spotify_dl-8.1.0.ebuild | 38 ++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/media-sound/spotify_dl/Manifest b/media-sound/spotify_dl/Manifest
18 index 22d0f0182..24a07b1d5 100644
19 --- a/media-sound/spotify_dl/Manifest
20 +++ b/media-sound/spotify_dl/Manifest
21 @@ -1,2 +1,3 @@
22 DIST spotify_dl-7.6.0.tar.gz 319723 BLAKE2B 9b0bb4c4839226b83ce6b7f0e030c5136de47f84e4c5f069b9fe573755746a12e0b32a8ad488704aae4a5355920289d9f2e7e955a950b3e9d7c7d78f24f26928 SHA512 21f8111f679c028b71371aa3d8bd822c0e72474fb768834a5f3c84fd3491e74e56bbf7acf0c23a132cdb60ac99dbcb65d4ca60f388ee48cbaeb1b66528bd06a5
23 DIST spotify_dl-8.0.0.tar.gz 320100 BLAKE2B a0ad0f732f244b8140f6278ca99c1a392d73455750fec1a97226fc607d3b7a1d226c2629ea3674173f8f9d0ef059c910c7e549f42b68fdbdc03efa4b07435818 SHA512 7c8d385b6777c89a4a75a7b1fc63bfcf20552a1c23e48a80d0688af0d51285085ebfb418ec5b94becd84870a07fc347ade31b6d2da511c000161489cccba23ed
24 +DIST spotify_dl-8.1.0.tar.gz 319957 BLAKE2B 667f57e74e9d725d26f94239dcd2d6d88d0b33c8d7fb73ea0554f3ce65477905fbd19e9e1fd36f0954dd690f6c0c45bd14af10b18ca8932d2d26bd6aa97023c5 SHA512 f906deac7396b2e1482582294cb81bee54582ccdc97f562cc6eba5d9352a52ac67a86f179a0a52a4e51bd3e59394952e1aa856ef0564123cb37d70ba82b4255c
25
26 diff --git a/media-sound/spotify_dl/spotify_dl-8.1.0.ebuild b/media-sound/spotify_dl/spotify_dl-8.1.0.ebuild
27 new file mode 100644
28 index 000000000..ae10bd0a0
29 --- /dev/null
30 +++ b/media-sound/spotify_dl/spotify_dl-8.1.0.ebuild
31 @@ -0,0 +1,38 @@
32 +# Copyright 2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( python3_{8..9} )
38 +# NOTE: python3.10 is supported, but not by the spotipy version in ::guru
39 +
40 +inherit distutils-r1
41 +
42 +MY_PN="${PN/_/-}"
43 +
44 +DESCRIPTION="Downloads songs from a Spotify Playlist/Track/Album that you provide"
45 +HOMEPAGE="https://github.com/SathyaBhat/spotify-dl/"
46 +SRC_URI="https://github.com/SathyaBhat/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64"
51 +
52 +PROPERTIES="test_network"
53 +RESTRICT="test"
54 +
55 +S="${WORKDIR}/${MY_PN}-${PV}"
56 +
57 +RDEPEND="
58 + >=dev-python/sentry-sdk-1.5[${PYTHON_USEDEP}]
59 + <dev-python/sentry-sdk-2[${PYTHON_USEDEP}]
60 + >=net-misc/yt-dlp-2022.1.21[${PYTHON_USEDEP}]
61 + >=dev-python/spotipy-2.16[${PYTHON_USEDEP}]
62 + <dev-python/spotipy-3[${PYTHON_USEDEP}]
63 + >=media-libs/mutagen-1.45[${PYTHON_USEDEP}]
64 + <media-libs/mutagen-2[${PYTHON_USEDEP}]
65 + >=dev-python/rich-11.0[${PYTHON_USEDEP}]
66 + <dev-python/rich-12[${PYTHON_USEDEP}]
67 +"
68 +
69 +distutils_enable_tests pytest