Package Details: spotify_dl 8.9.0-2

Git Clone URL: https://aur.archlinux.org/spotify_dl.git (read-only, click to copy)
Package Base: spotify_dl
Description: Downloads songs from your Spotify Playlist
Upstream URL: https://github.com/SathyaBhat/spotify-dl
Licenses: MIT
Submitter: 9bcfbc1ca230857b
Maintainer: dpawensza
Last Packager: dpawensza
Votes: 4
Popularity: 0.57
First Submitted: 2019-05-18 20:01 (UTC)
Last Updated: 2024-02-17 16:55 (UTC)

Latest Comments

dpawensza commented on 2024-02-17 17:06 (UTC)

@patlefort the issue should be resolved. try updating the package

patlefort commented on 2024-02-11 18:38 (UTC)

It's missing python-setuptools in makedepends. Also it has 2 depends= lines, the second one will override the first.

sylphio commented on 2020-10-18 12:34 (UTC)

The PKGBUILD is not up to date with requirements.txt. Here are the changes I have had to make:

diff --git a/PKGBUILD b/PKGBUILD
index 7b016de..57ab32c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@ pkgdesc="Downloads songs from your Spotify Playlist"
 arch=('any')
 url="https://github.com/SathyaBhat/spotify-dl"
 license=('MIT')
-depends=('python-spotipy' 'python-google-api-python-client' 'youtube-dl')
+depends=('python-spotipy' 'python-google-api-python-client' 'youtube-dl' 'python-sentry_sdk' 'python-peewee' 'python-wheel' 'python-lxml')
 source=("git+https://github.com/SathyaBhat/spotify-dl/")
 md5sums=('SKIP')

@@ -21,6 +21,9 @@ prepare() {
   cd "$srcdir/$_reponame"
   sed 's/^google-api-python-client==1.6.2$/google-api-python-client>=1.6.2/' -i requirements.txt
   sed 's/^spotipy==2.3.8$/spotipy>=2.3.8/' -i requirements.txt
+  sed 's/^wheel==/wheel>=/' -i requirements.txt
+  sed 's/^click==/click>=/' -i requirements.txt
+  sed 's/^sentry-sdk==/sentry-sdk>=/' -i requirements.txt
   }

 build() {