Package Details: spotify_dl 8.3.0-1

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: None
Last Packager: FantasqueX
Votes: 1
Popularity: 0.000614
First Submitted: 2019-05-18 20:01 (UTC)
Last Updated: 2022-04-20 03:52 (UTC)

Latest Comments

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() {