Package Details: mopidy-qsaver-git latest-1

Git Clone URL: https://aur.archlinux.org/mopidy-qsaver-git.git (read-only, click to copy)
Package Base: mopidy-qsaver-git
Description: Mopidy extension that maintains your current tracklist when the server restarts
Upstream URL: https://github.com/seifferth/mopidy-qsaver
Licenses: Apache
Submitter: mathieu.clabaut
Maintainer: None
Last Packager: seifferth
Votes: 3
Popularity: 0.000000
First Submitted: 2015-08-11 14:04 (UTC)
Last Updated: 2021-02-02 21:43 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

seifferth commented on 2021-02-02 21:42 (UTC)

@Nanoseb: I totally forgot about that. Thanks for the reminder.

Nanoseb commented on 2021-01-14 16:34 (UTC)

@seifferth: you fork is working quite well, thanks for this. Though, now that you are maintainer, could you do the switch between upstream and your fork?

seifferth commented on 2020-08-19 20:24 (UTC)

OK, done, thanks. Will update it this weekend.

mathieu.clabaut commented on 2020-08-18 13:44 (UTC)

Ok, I just disown the packages so you can adopt it. Thanks a lot.

seifferth commented on 2020-08-17 15:50 (UTC)

Sure. Feel free to add me as a co-maintainer, if you like, and I'll just push what I would otherwise suggest ;)

mathieu.clabaut commented on 2020-08-17 11:05 (UTC)

Would you like to adopt the package as I do not actively use it anymore ?

seifferth commented on 2020-08-16 15:01 (UTC) (edited on 2020-08-16 15:05 (UTC) by seifferth)

I just noticed that the repo is read only by now, so I wasn't able to push my fixes there. The archived version is incompatible with the current mopidy core.api calls, unfortunately. Maybe you would like to set the origin of this package to one of the two forks that are still active (one is mine, of course): https://github.com/HeadspringLabs/mopidy-qsaver/network/members.

diff --git a/.SRCINFO b/.SRCINFO
index d8849a0..7601e6a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
 pkgbase = mopidy-qsaver-git
    pkgdesc = Mopidy extension that maintains your current tracklist when the server restarts
    pkgver = 17
-   pkgrel = 2
-   url = https://github.com/HeadspringLabs/mopidy-qsaver
+   pkgrel = 3
+   url = https://github.com/seifferth/mopidy-qsaver
    arch = any
    license = APACHE
    makedepends = python3
diff --git a/PKGBUILD b/PKGBUILD
index c03fd37..f12ea1f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,11 +2,11 @@
 # Contributor: flu
 pkgname=mopidy-qsaver-git
 pkgver=17
-pkgrel=2
+pkgrel=3
 pkgdesc="Mopidy extension that maintains your current tracklist when the
 server restarts"
 arch=('any')
-url="https://github.com/HeadspringLabs/mopidy-qsaver"
+url="https://github.com/seifferth/mopidy-qsaver"
 license=('APACHE')
 depends=('mopidy>=1.0.5' )
 makedepends=('python3')

Edit: Include diff.

mathieu.clabaut commented on 2020-08-16 11:29 (UTC)

Updated. Thanks a lot !

seifferth commented on 2020-08-16 10:22 (UTC)

It is amazing how long these -git packages can live without needing modification. But maybe it's time to use python3 rather than python2 for building by now:

diff --git a/.SRCINFO b/.SRCINFO
index aaee869..5979878 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -5,7 +5,7 @@ pkgbase = mopidy-qsaver-git
    url = https://github.com/HeadspringLabs/mopidy-qsaver
    arch = any
    license = APACHE
-   makedepends = python2
+   makedepends = python3
    depends = mopidy>=1.0.5
    source = git+https://github.com/HeadspringLabs/mopidy-qsaver.git
    sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index f42ba3d..7fdb3cc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@ arch=('any')
 url="https://github.com/HeadspringLabs/mopidy-qsaver"
 license=('APACHE')
 depends=('mopidy>=1.0.5' )
-makedepends=('python2')
+makedepends=('python3')
 source=("git+https://github.com/HeadspringLabs/mopidy-qsaver.git")
 sha256sums=('SKIP')

@@ -19,5 +19,5 @@ pkgver() {
 }
 package() {
   cd "$srcdir/mopidy-qsaver"
-  python2 setup.py install --root="$pkgdir/" --optimize=1
+  python3 setup.py install --root="$pkgdir/" --optimize=1
 }