Package Details: mopidy-spotify 4.1.1-2

Git Clone URL: https://aur.archlinux.org/mopidy-spotify.git (read-only, click to copy)
Package Base: mopidy-spotify
Description: Mopidy extension for playing music from Spotify
Upstream URL: http://www.mopidy.com
Licenses: Apache
Submitter: AlexandrePTJ
Maintainer: None
Last Packager: fmauNeko
Votes: 90
Popularity: 0.000000
First Submitted: 2013-10-28 13:24 (UTC)
Last Updated: 2021-12-13 15:51 (UTC)

Required by (2)

Sources (1)

Latest Comments

1 2 3 Next › Last »

MarsSeed commented on 2023-06-25 13:18 (UTC) (edited on 2023-06-25 13:20 (UTC) by MarsSeed)

Until the currently defunct mopidy-spotify delivers the next stable version, users of mopidy are advised to use mopidy-spotify-git, which implements a new interface relying on gstreamer to access and play Spotify.

kmacleod commented on 2021-12-14 14:10 (UTC)

Thanks @fmauNeko. Note: I had to manually rebuild python-pyspotify this morning after the mopidy packages updated. That seems to be the last outlier.

fmauNeko commented on 2021-12-13 15:51 (UTC)

@kmacleod should be good

kmacleod commented on 2021-12-13 15:41 (UTC)

Looks like python 3.10 just came out and we need to force another rebuild.

djmattyg007 commented on 2020-12-02 22:25 (UTC)

Thanks! Now I've just gotta wait for a bunch of other mopidy package maintainers to do the same :(

fmauNeko commented on 2020-12-02 12:53 (UTC)

@djmattyg007: Done! ;)

djmattyg007 commented on 2020-12-02 12:48 (UTC)

Could you please bump the pkgrel to force a rebuild for python3.9?

MarcinWieczorek commented on 2019-12-30 18:52 (UTC)

I've tweaked @languitar's PKGBUILD. Seems to be working on mopidy 3.

diff --git a/PKGBUILD b/PKGBUILD
index b9649ea..2a65b30 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,26 +1,19 @@
 # Maintainer: Alexandre Petitjean <alpetitjean at gmail dot com>

 pkgname=mopidy-spotify
-pkgver=3.1.0
+pkgver=4.0.0
 pkgrel=1
 pkgdesc="Mopidy extension for playing music from Spotify"
 arch=('any')
 url="http://www.mopidy.com"
 license=('APACHE')
-depends=(
-    'mopidy>=2'
-    'python2-pykka>=1.1'
-    'python2-pyspotify>=2'
-    'python2-setuptools'
-    'python2-requests>=2')
-makedepends=('python2')
-provides=('mopidy-spotify')
-source=("https://github.com/mopidy/${pkgname}/archive/v${pkgver}.tar.gz")
-md5sums=('2fa4827b72c627b9d10ee10a5e5d7961')
+depends=('mopidy>=3' python-pykka python-pyspotify python-setuptools python-requests)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/mopidy/$pkgname/archive/v$pkgver.tar.gz")
+md5sums=('2c71e65fbaf6a23a0e506da25095ba7e')

 package() {
   cd "$srcdir/$pkgname-$pkgver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
+  python3 setup.py install --root="$pkgdir/" --optimize=1
 }

 # vim:set ts=2 sw=2 et:

languitar commented on 2019-12-23 13:29 (UTC)

Here is an updated PKGBUILD which I am using myself right now: https://gist.github.com/languitar/59dd55ca7454ca88c11ade8a5a47ca0b

languitar commented on 2019-12-23 13:03 (UTC)

Any chance to get this updated to 4.0 to get mopidy 3.0 support?