[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2020-12-22 Thread Bruno Pagani via arch-commits
Date: Tuesday, December 22, 2020 @ 18:42:19
  Author: archange
Revision: 782767

Also build exfalso as a split package

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |  138 ++---
 1 file changed, 97 insertions(+), 41 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 18:36:28 UTC (rev 782766)
+++ PKGBUILD2020-12-22 18:42:19 UTC (rev 782767)
@@ -1,52 +1,37 @@
 # Maintainer: David Runge 
+# Maintainer: Bruno Pagani 
 # Contributor: Eric Bélanger 
 
-pkgname=quodlibet
+pkgbase=quodlibet
+pkgname=(quodlibet exfalso)
 pkgver=4.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Music player and music library manager"
-arch=('any')
-license=('GPL2')
-url="https://github.com/quodlibet/quodlibet;
-depends=('gst-plugins-base' 'gtk3' 'python-cairo'  'python-feedparser'
-'python-gobject' 'python-mutagen' 'python-senf' 'xine-lib')
-makedepends=('gst-plugins-bad' 'gst-plugins-good' 'gst-plugins-ugly'
-'python-pycodestyle' 'python-sphinx_rtd_theme')
-checkdepends=('python-pytest' 'python-xvfbwrapper')
-optdepends=('gst-libav: for WMA support'
-'gst-plugins-bad: for mp3, mp4 and opus support and acoustid 
plugin'
-'gst-plugins-good: for flac, jack and pulseaudio support and 
replaygain plugin'
-'gst-plugins-ugly: for mp3 support'
-'gtksourceview3: for undo and redo support in multiline text 
fields'
-'kakasi: Kana Kanji Simple Inverter plugin'
-'libappindicator-gtk3: for tray icon plugin'
-'libkeybinder3: Multimedia keys support'
-'libmodplug: for MOD support'
-'notification-daemon: for notification plugin'
-'python-dbus: for DBus interface, multimedia key support and 
several plugins'
-'python-musicbrainzngs: for musicrainz plugin'
-'python-pyinotify: for auto library update plugin'
-'rygel: for uPnP media server'
-'webkit2gtk: for lyrics window plugin')
-source=("https://github.com/${pkgname}/${pkgname}/releases/download/release-${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
-sha512sums=('054a31206935ad6bf44420e4d03a4ed7e75523985a944ccf85a0169d2824fd9e44e1c86db75ddef572cf25d73dd5efb588a4cad15bf345cfb6d6d81c3572a10a'
-'SKIP')
-validpgpkeys=('0EBF782C5D53F7E5FB02A66746BD761F7A49B0EC') # Christoph Reiter 

+arch=(any)
+url="https://quodlibet.readthedocs.io/;
+license=(GPL2)
+depends=(gtk3 python-mutagen python-gobject python-cairo python-feedparser)
+makedepends=(gst-plugins-base gst-plugins-bad gst-plugins-good gst-plugins-ugly
+ python-pycodestyle python-sphinx_rtd_theme xine-lib)
+# python-raven python-senf are currently vendored
+checkdepends=(python-pytest python-xvfbwrapper)
+source=("https://github.com/${pkgbase}/${pkgbase}/releases/download/release-${pkgver}/${pkgbase}-${pkgver}.tar.gz"{,.sig})
+sha256sums=(a2e5c027a69f138364c57e4adf72f5c08c235bc09a4bcd8f668e2847d76427e0 
SKIP)
+validpgpkeys=(0EBF782C5D53F7E5FB02A66746BD761F7A49B0EC) # Christoph Reiter 

 
 prepare() {
-  cd "${pkgname}-${pkgver}"
+  cd ${pkgbase}-${pkgver}
   # Fix zsh completions dir
-  sed -e 's|vendor-completions|site-functions|' \
-  -i gdist/zsh_completions.py
+  sed -e 's|vendor-completions|site-functions|' -i gdist/zsh_completions.py
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd ${pkgbase}-${pkgver}
   python setup.py build
 }
 
 check() {
-  cd "${pkgname}-${pkgver}"
+  cd ${pkgbase}-${pkgver}
   export PYTHONPATH="build:${PYTHONPATH}"
   # not running useless linter checks
   # skipping test_potfile_format because of a gettext 0.21 warning
@@ -54,11 +39,82 @@
 --deselect tests/test_po.py::test_potfile_format
 }
 
-package() {
-  cd "${pkgname}-${pkgver}"
-  python setup.py install --skip-build \
---optimize=1 \
---prefix=/usr \
---root="${pkgdir}"
-  install -vDm 644 {README,NEWS} -t "${pkgdir}/usr/share/doc/${pkgname}"
+package_quodlibet() {
+  depends+=(gst-plugins-base xine-lib)
+# python-raven python-senf are currently vendored
+  optdepends=('gst-libav: WMA support'
+  'gst-plugins-bad: mp3, mp4 and opus support and acoustid plugin'
+  'gst-plugins-good: flac, jack and pulseaudio support and 
replaygain plugin'
+  'gst-plugins-ugly: alternative mp3 support'
+  'gtksourceview3: undo and redo support in multiline text fields'
+  'kakasi: Kana Kanji Simple Inverter plugin'
+  'libappindicator-gtk3: tray icon plugin'
+  'libkeybinder3: Multimedia keys support'
+  'libmodplug: MOD support'
+  'notification-daemon: notification plugin'
+  'python-dbus: DBus interface, multimedia key support and several 
plugins'
+  'python-musicbrainzngs: musicbrainz plugin'
+  'python-pyinotify: auto library update plugin'
+  'rygel: uPnP media server'

[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2020-11-15 Thread Felix Yan via arch-commits
Date: Sunday, November 15, 2020 @ 12:31:41
  Author: felixonmars
Revision: 754437

upgpkg: quodlibet 4.3.0-3: Python 3.9 rebuild

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-15 12:29:43 UTC (rev 754436)
+++ PKGBUILD2020-11-15 12:31:41 UTC (rev 754437)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=4.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Music player and music library manager"
 arch=('any')
 license=('GPL2')


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2020-11-15 Thread Evangelos Foutras via arch-commits
Date: Sunday, November 15, 2020 @ 12:28:31
  Author: foutrelis
Revision: 754433

Skip test failing with gettext 0.21

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-15 12:28:15 UTC (rev 754432)
+++ PKGBUILD2020-11-15 12:28:31 UTC (rev 754433)
@@ -49,7 +49,9 @@
   cd "${pkgname}-${pkgver}"
   export PYTHONPATH="build:${PYTHONPATH}"
   # not running useless linter checks
-  pytest -v -k 'not TPEP8 and not TPyFlakes'
+  # skipping test_potfile_format because of a gettext 0.21 warning
+  pytest -v -k 'not TPEP8 and not TPyFlakes' \
+--deselect tests/test_po.py::test_potfile_format
 }
 
 package() {


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2020-02-27 Thread David Runge via arch-commits
Date: Thursday, February 27, 2020 @ 09:13:19
  Author: dvzrv
Revision: 583705

upgpkg: quodlibet 4.3.0-2: Moving gst-plugins-base back to depends, after 
accidentally moving it to makedepends and adding gst-plugins-bad in its place 
(FS#65631).

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-27 09:12:50 UTC (rev 583704)
+++ PKGBUILD2020-02-27 09:13:19 UTC (rev 583705)
@@ -3,14 +3,14 @@
 
 pkgname=quodlibet
 pkgver=4.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Music player and music library manager"
 arch=('any')
 license=('GPL2')
 url="https://github.com/quodlibet/quodlibet;
-depends=('gtk3' 'python-cairo'  'python-feedparser' 'python-gobject'
-'python-mutagen' 'python-senf' 'xine-lib')
-makedepends=('gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly'
+depends=('gst-plugins-base' 'gtk3' 'python-cairo'  'python-feedparser'
+'python-gobject' 'python-mutagen' 'python-senf' 'xine-lib')
+makedepends=('gst-plugins-bad' 'gst-plugins-good' 'gst-plugins-ugly'
 'python-pycodestyle' 'python-sphinx_rtd_theme')
 checkdepends=('python-pytest' 'python-xvfbwrapper')
 optdepends=('gst-libav: for WMA support'


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2020-02-26 Thread David Runge via arch-commits
Date: Wednesday, February 26, 2020 @ 15:01:14
  Author: dvzrv
Revision: 582960

upgpkg: quodlibet 4.3.0-1: Upgrading to 4.3.0. Updating maintainer info. Moving 
gst-plugin-* to makedepends/optdepends. Demoting python-dbus from depends to 
optdepends. Adding python-senf and xine-lib to depends. Adding gtksourceview3, 
libappindicator-gtk3, libmodplug, notification-daemon, rygel and webkit2gtk to 
optdepends. Verifying tarball with upstream PGP key 
0EBF782C5D53F7E5FB02A66746BD761F7A49B0EC. Minor cleanups.

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   51 ++-
 1 file changed, 30 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-26 14:51:10 UTC (rev 582959)
+++ PKGBUILD2020-02-26 15:01:14 UTC (rev 582960)
@@ -1,31 +1,40 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
 # Contributor: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=4.2.1
-pkgrel=4
-pkgdesc="An audio library tagger, manager and player"
+pkgver=4.3.0
+pkgrel=1
+pkgdesc="Music player and music library manager"
 arch=('any')
 license=('GPL2')
 url="https://github.com/quodlibet/quodlibet;
-depends=('gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 'gtk3'
-'python-cairo' 'python-dbus' 'python-feedparser' 'python-gobject'
-'python-mutagen')
-makedepends=('python-pycodestyle' 'python-sphinx_rtd_theme')
+depends=('gtk3' 'python-cairo'  'python-feedparser' 'python-gobject'
+'python-mutagen' 'python-senf' 'xine-lib')
+makedepends=('gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly'
+'python-pycodestyle' 'python-sphinx_rtd_theme')
 checkdepends=('python-pytest' 'python-xvfbwrapper')
-optdepends=('gst-libav: ffmpeg (ASF/WMA) support'
-'gst-plugins-bad: Musepack support'
-'gst-plugins-bad: Audio Pitch/Speed plugin'
+optdepends=('gst-libav: for WMA support'
+'gst-plugins-bad: for mp3, mp4 and opus support and acoustid 
plugin'
+'gst-plugins-good: for flac, jack and pulseaudio support and 
replaygain plugin'
+'gst-plugins-ugly: for mp3 support'
+'gtksourceview3: for undo and redo support in multiline text 
fields'
 'kakasi: Kana Kanji Simple Inverter plugin'
+'libappindicator-gtk3: for tray icon plugin'
 'libkeybinder3: Multimedia keys support'
-'python-musicbrainzngs: MusicBrainz Lookup plugin'
-'python-pyinotify: Automatic library update plugin')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/release-${pkgver}.tar.gz;)
-sha512sums=('3817611c887b7c1878ccf852311020ded0a813feec1067f861d1157de6331760166c34992a6e4fe225552ae6ed4472000585fe58a3397faf277ae250f6f3c138')
+'libmodplug: for MOD support'
+'notification-daemon: for notification plugin'
+'python-dbus: for DBus interface, multimedia key support and 
several plugins'
+'python-musicbrainzngs: for musicrainz plugin'
+'python-pyinotify: for auto library update plugin'
+'rygel: for uPnP media server'
+'webkit2gtk: for lyrics window plugin')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/release-${pkgver}/${pkgname}-${pkgver}.tar.gz"{,.sig})
+sha512sums=('054a31206935ad6bf44420e4d03a4ed7e75523985a944ccf85a0169d2824fd9e44e1c86db75ddef572cf25d73dd5efb588a4cad15bf345cfb6d6d81c3572a10a'
+'SKIP')
+validpgpkeys=('0EBF782C5D53F7E5FB02A66746BD761F7A49B0EC') # Christoph Reiter 

 
 prepare() {
-  mv -v "${pkgname}-release-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}/${pkgname}"
+  cd "${pkgname}-${pkgver}"
   # Fix zsh completions dir
   sed -e 's|vendor-completions|site-functions|' \
   -i gdist/zsh_completions.py
@@ -32,19 +41,19 @@
 }
 
 build() {
-  cd "${pkgname}-${pkgver}"/${pkgname}
+  cd "${pkgname}-${pkgver}"
   python setup.py build
 }
 
 check() {
-  cd "${pkgname}-${pkgver}/${pkgname}"
+  cd "${pkgname}-${pkgver}"
   export PYTHONPATH="build:${PYTHONPATH}"
   # not running useless linter checks
-  py.test -k 'not TPEP8 and not TPyFlakes'
+  pytest -v -k 'not TPEP8 and not TPyFlakes'
 }
 
 package() {
-  cd "${pkgname}-${pkgver}/${pkgname}"
+  cd "${pkgname}-${pkgver}"
   python setup.py install --skip-build \
 --optimize=1 \
 --prefix=/usr \


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2019-11-04 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 14:17:21
  Author: felixonmars
Revision: 524071

Python 3.8 rebuild

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 14:16:08 UTC (rev 524070)
+++ PKGBUILD2019-11-04 14:17:21 UTC (rev 524071)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=4.2.1
-pkgrel=3
+pkgrel=4
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2019-11-04 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 10:43:20
  Author: felixonmars
Revision: 524028

Python 3.8 rebuild

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 10:39:42 UTC (rev 524027)
+++ PKGBUILD2019-11-04 10:43:20 UTC (rev 524028)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=4.2.1
-pkgrel=2
+pkgrel=3
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2019-02-19 Thread David Runge via arch-commits
Date: Tuesday, February 19, 2019 @ 18:14:51
  Author: dvzrv
Revision: 434576

upgpkg: quodlibet 4.2.1-2

Adding current maintainer. Adding (relevant) tests. Skipping build during 
install and optimizing. Adding docs.

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   55 ---
 1 file changed, 36 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-19 17:54:23 UTC (rev 434575)
+++ PKGBUILD2019-02-19 18:14:51 UTC (rev 434576)
@@ -1,36 +1,53 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: David Runge 
+# Contributor: Eric Bélanger 
 
 pkgname=quodlibet
 pkgver=4.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
 url="https://github.com/quodlibet/quodlibet;
-depends=('gtk3' 'python-gobject' 'python-dbus' 'python-cairo' 'python-mutagen' 
'dbus-glib'
- 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
'python-feedparser')
-optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
-'gst-plugins-bad: for Musepack support'
-'libkeybinder3: for the multimedia keys support'
-'python-musicbrainzngs: for "MusicBrainz Lookup" plugin'
-'python-pyinotify: for "Automatic library update" plugin'
-   'kakasi: for "Kana/Kanji Simple Inverter" plugin'
-'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('ff69e8a670cfd6db8121a4395928bc2812a03698')
+depends=('gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 'gtk3'
+'python-cairo' 'python-dbus' 'python-feedparser' 'python-gobject'
+'python-mutagen')
+makedepends=('python-pycodestyle' 'python-sphinx_rtd_theme')
+checkdepends=('python-pytest' 'python-xvfbwrapper')
+optdepends=('gst-libav: ffmpeg (ASF/WMA) support'
+'gst-plugins-bad: Musepack support'
+'gst-plugins-bad: Audio Pitch/Speed plugin'
+'kakasi: Kana Kanji Simple Inverter plugin'
+'libkeybinder3: Multimedia keys support'
+'python-musicbrainzngs: MusicBrainz Lookup plugin'
+'python-pyinotify: Automatic library update plugin')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/release-${pkgver}.tar.gz;)
+sha512sums=('3817611c887b7c1878ccf852311020ded0a813feec1067f861d1157de6331760166c34992a6e4fe225552ae6ed4472000585fe58a3397faf277ae250f6f3c138')
 
 prepare() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
-# Fix zsh completions dir
-  sed -e 's|vendor-completions|site-functions|' -i gdist/zsh_completions.py
+  mv -v "${pkgname}-release-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  # Fix zsh completions dir
+  sed -e 's|vendor-completions|site-functions|' \
+  -i gdist/zsh_completions.py
 }
 
 build() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
+  cd "${pkgname}-${pkgver}"/${pkgname}
   python setup.py build
 }
 
+check() {
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  export PYTHONPATH="build:${PYTHONPATH}"
+  # not running useless linter checks
+  py.test -k 'not TPEP8 and not TPyFlakes'
+}
+
 package() {
-  cd ${pkgname}-release-${pkgver}/quodlibet
-  python setup.py install --root="${pkgdir}"
+  cd "${pkgname}-${pkgver}/${pkgname}"
+  python setup.py install --skip-build \
+--optimize=1 \
+--prefix=/usr \
+--root="${pkgdir}"
+  install -vDm 644 {README,NEWS} -t "${pkgdir}/usr/share/doc/${pkgname}"
 }


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-12-27 Thread Antonio Rojas via arch-commits
Date: Thursday, December 27, 2018 @ 13:49:48
  Author: arojas
Revision: 342756

Update to 4.2.1

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-27 13:22:26 UTC (rev 342755)
+++ PKGBUILD2018-12-27 13:49:48 UTC (rev 342756)
@@ -1,7 +1,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=4.2.0
+pkgver=4.2.1
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -17,7 +17,7 @@
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
 'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('4e4a154bda58307e0caac9254e1c0c3da970ed68')
+sha1sums=('ff69e8a670cfd6db8121a4395928bc2812a03698')
 
 prepare() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-11-02 Thread Antonio Rojas via arch-commits
Date: Friday, November 2, 2018 @ 18:53:27
  Author: arojas
Revision: 337742

Update to 4.2.0

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-02 18:40:09 UTC (rev 337741)
+++ PKGBUILD2018-11-02 18:53:27 UTC (rev 337742)
@@ -1,8 +1,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=4.1.0
-pkgrel=2
+pkgver=4.2.0
+pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
@@ -9,7 +9,6 @@
 url="https://github.com/quodlibet/quodlibet;
 depends=('gtk3' 'python-gobject' 'python-dbus' 'python-cairo' 'python-mutagen' 
'dbus-glib'
  'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
'python-feedparser')
-makedepends=('intltool')
 optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
 'gst-plugins-bad: for Musepack support'
 'libkeybinder3: for the multimedia keys support'
@@ -18,7 +17,7 @@
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
 'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('0def2aba89affa54b9f72a20109648e7af2981cd')
+sha1sums=('4e4a154bda58307e0caac9254e1c0c3da970ed68')
 
 prepare() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-07-23 Thread Evangelos Foutras via arch-commits
Date: Monday, July 23, 2018 @ 15:24:53
  Author: foutrelis
Revision: 329423

Python 3.7 rebuild

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-23 15:12:09 UTC (rev 329422)
+++ PKGBUILD2018-07-23 15:24:53 UTC (rev 329423)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=4.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-06-04 Thread Antonio Rojas via arch-commits
Date: Monday, June 4, 2018 @ 18:27:55
  Author: arojas
Revision: 325856

Update to 4.1.0

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-04 15:24:39 UTC (rev 325855)
+++ PKGBUILD2018-06-04 18:27:55 UTC (rev 325856)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=4.0.2
+pkgver=4.1.0
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -19,7 +19,7 @@
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
 'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('3a9208abc785a8e6e39f091efb5317ad2c5ef7ee')
+sha1sums=('0def2aba89affa54b9f72a20109648e7af2981cd')
 
 prepare() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-01-18 Thread Antonio Rojas via arch-commits
Date: Thursday, January 18, 2018 @ 17:22:51
  Author: arojas
Revision: 315091

Update to 4.0.2

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-18 16:30:07 UTC (rev 315090)
+++ PKGBUILD2018-01-18 17:22:51 UTC (rev 315091)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=4.0.1
+pkgver=4.0.2
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -19,7 +19,7 @@
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
 'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('4ab1bfc6ae7dc79d5af875f691d8692208b04f04')
+sha1sums=('3a9208abc785a8e6e39f091efb5317ad2c5ef7ee')
 
 prepare() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-01-14 Thread Antonio Rojas via arch-commits
Date: Sunday, January 14, 2018 @ 10:17:43
  Author: arojas
Revision: 314766

Update to 4.0.1

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-14 10:12:12 UTC (rev 314765)
+++ PKGBUILD2018-01-14 10:17:43 UTC (rev 314766)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=4.0.0
-pkgrel=2
+pkgver=4.0.1
+pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
@@ -19,7 +19,7 @@
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
 'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('c04ecd0581c3004048ecb51f4c34013269cad8d7')
+sha1sums=('4ab1bfc6ae7dc79d5af875f691d8692208b04f04')
 
 prepare() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-01-10 Thread Antonio Rojas via arch-commits
Date: Wednesday, January 10, 2018 @ 23:04:59
  Author: arojas
Revision: 314335

Add dbus-glib dependency (FS#57038)

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-10 20:55:21 UTC (rev 314334)
+++ PKGBUILD2018-01-10 23:04:59 UTC (rev 314335)
@@ -3,12 +3,12 @@
 
 pkgname=quodlibet
 pkgver=4.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
 url="https://github.com/quodlibet/quodlibet;
-depends=('gtk3' 'python-gobject' 'python-dbus' 'python-cairo' 'python-mutagen' 
+depends=('gtk3' 'python-gobject' 'python-dbus' 'python-cairo' 'python-mutagen' 
'dbus-glib'
  'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
'python-feedparser')
 makedepends=('intltool')
 optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2018-01-02 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 2, 2018 @ 23:49:38
  Author: arojas
Revision: 313934

Update to 4.0.0

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   22 --
 1 file changed, 8 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-02 23:43:47 UTC (rev 313933)
+++ PKGBUILD2018-01-02 23:49:38 UTC (rev 313934)
@@ -2,30 +2,24 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.9.1
+pkgver=4.0.0
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
 url="https://github.com/quodlibet/quodlibet;
-depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen' 
- 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
-'python2-futures' 'python2-feedparser' 'python2-faulthandler')
+depends=('gtk3' 'python-gobject' 'python-dbus' 'python-cairo' 'python-mutagen' 
+ 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
'python-feedparser')
 makedepends=('intltool')
 optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
 'gst-plugins-bad: for Musepack support'
 'libkeybinder3: for the multimedia keys support'
-'media-player-info: for media devices support'
-'python2-musicbrainzngs: for "MusicBrainz Lookup" plugin'
-'python2-pyinotify: for "Automatic library update" plugin'
+'python-musicbrainzngs: for "MusicBrainz Lookup" plugin'
+'python-pyinotify: for "Automatic library update" plugin'
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
 'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
-provides=('quodlibet-plugins')
-conflicts=('quodlibet-plugins')
-replaces=('quodlibet-plugins')
-options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('e6c5b3b25d682d6846642fe797bf66d3463b3a33')
+sha1sums=('c04ecd0581c3004048ecb51f4c34013269cad8d7')
 
 prepare() {
   cd ${pkgname}-release-${pkgver}/quodlibet
@@ -35,10 +29,10 @@
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet
-  python2 setup.py build
+  python setup.py build
 }
 
 package() {
   cd ${pkgname}-release-${pkgver}/quodlibet
-  python2 setup.py install --root="${pkgdir}"
+  python setup.py install --root="${pkgdir}"
 }


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2017-06-18 Thread Antonio Rojas
Date: Sunday, June 18, 2017 @ 09:01:40
  Author: arojas
Revision: 298946

Update to 3.9.1

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-18 03:28:16 UTC (rev 298945)
+++ PKGBUILD2017-06-18 09:01:40 UTC (rev 298946)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.9.0
-pkgrel=2
+pkgver=3.9.1
+pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
@@ -25,7 +25,7 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('2e943c7f40a4b0e3347b910ae0df504d451d5ab5')
+sha1sums=('e6c5b3b25d682d6846642fe797bf66d3463b3a33')
 
 prepare() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2017-06-03 Thread Antonio Rojas
Date: Saturday, June 3, 2017 @ 18:03:24
  Author: arojas
Revision: 297756

Fix FS#54148

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-03 15:28:39 UTC (rev 297755)
+++ PKGBUILD2017-06-03 18:03:24 UTC (rev 297756)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=3.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
@@ -27,6 +27,12 @@
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
 sha1sums=('2e943c7f40a4b0e3347b910ae0df504d451d5ab5')
 
+prepare() {
+  cd ${pkgname}-release-${pkgver}/quodlibet
+# Fix zsh completions dir
+  sed -e 's|vendor-completions|site-functions|' -i gdist/zsh_completions.py
+}
+
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet
   python2 setup.py build


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2017-05-25 Thread Antonio Rojas
Date: Thursday, May 25, 2017 @ 21:38:38
  Author: arojas
Revision: 296608

Update to 3.9.0

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-25 21:15:14 UTC (rev 296607)
+++ PKGBUILD2017-05-25 21:38:38 UTC (rev 296608)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.8.1
+pkgver=3.9.0
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -10,17 +10,15 @@
 url="https://github.com/quodlibet/quodlibet;
 depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen' 
  'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
-'python2-futures')
+'python2-futures' 'python2-feedparser' 'python2-faulthandler')
 makedepends=('intltool')
 optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
 'gst-plugins-bad: for Musepack support'
-'python2-feedparser: for audio feeds (podcast) support'
 'libkeybinder3: for the multimedia keys support'
 'media-player-info: for media devices support'
 'python2-musicbrainzngs: for "MusicBrainz Lookup" plugin'
 'python2-pyinotify: for "Automatic library update" plugin'
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
-   'zeitgeist: for "Event Logging" plugin'
 'gst-plugins-bad: for "Audio Pitch/Speed" plugin')
 provides=('quodlibet-plugins')
 conflicts=('quodlibet-plugins')
@@ -27,7 +25,7 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('3523ca3f4cf2e687da5d7d33875835c0065b4b5b')
+sha1sums=('2e943c7f40a4b0e3347b910ae0df504d451d5ab5')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2017-01-29 Thread Antonio Rojas
Date: Sunday, January 29, 2017 @ 16:49:22
  Author: arojas
Revision: 287713

Update to 3.8.1

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-29 16:46:48 UTC (rev 287712)
+++ PKGBUILD2017-01-29 16:49:22 UTC (rev 287713)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.8.0
+pkgver=3.8.1
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -27,7 +27,7 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('040dc2340e730387bde3c838a31313a325aa09bf')
+sha1sums=('3523ca3f4cf2e687da5d7d33875835c0065b4b5b')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 23:25:55
  Author: arojas
Revision: 285183

Update to 3.8.0

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 23:21:06 UTC (rev 285182)
+++ PKGBUILD2017-01-01 23:25:55 UTC (rev 285183)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.7.1
+pkgver=3.8.0
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -10,15 +10,13 @@
 url="https://github.com/quodlibet/quodlibet;
 depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen' 
  'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
-'desktop-file-utils')
+'python2-futures')
 makedepends=('intltool')
 optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
 'gst-plugins-bad: for Musepack support'
-'libgpod: for ipod support'
 'python2-feedparser: for audio feeds (podcast) support'
 'libkeybinder3: for the multimedia keys support'
 'media-player-info: for media devices support'
-'cddb-py: for "CDDB Lookup" plugin'
 'python2-musicbrainzngs: for "MusicBrainz Lookup" plugin'
 'python2-pyinotify: for "Automatic library update" plugin'
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
@@ -29,7 +27,7 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('911e892848666467c4f46939f5336e51d19b5b84')
+sha1sums=('040dc2340e730387bde3c838a31313a325aa09bf')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2016-09-29 Thread Antonio Rojas
Date: Thursday, September 29, 2016 @ 20:53:00
  Author: arojas
Revision: 277300

Update to 3.7.1

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-29 20:20:16 UTC (rev 277299)
+++ PKGBUILD2016-09-29 20:53:00 UTC (rev 277300)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.7.0
+pkgver=3.7.1
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -29,7 +29,7 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('17704c026afaf3dd4c289e64a6b96df9b36f7874')
+sha1sums=('911e892848666467c4f46939f5336e51d19b5b84')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2016-09-02 Thread Antonio Rojas
Date: Friday, September 2, 2016 @ 21:46:15
  Author: arojas
Revision: 275697

Update to 3.7.0

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-02 21:44:35 UTC (rev 275696)
+++ PKGBUILD2016-09-02 21:46:15 UTC (rev 275697)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.6.2
+pkgver=3.7.0
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -29,7 +29,7 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('81db38c583cc213eb7389e22d0f54f9d8371b89c')
+sha1sums=('17704c026afaf3dd4c289e64a6b96df9b36f7874')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2016-06-27 Thread Antonio Rojas
Date: Monday, June 27, 2016 @ 19:26:47
  Author: arojas
Revision: 270716

Update to 3.6.2

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-27 19:25:11 UTC (rev 270715)
+++ PKGBUILD2016-06-27 19:26:47 UTC (rev 270716)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.6.1
-pkgrel=2
+pkgver=3.6.2
+pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
@@ -29,7 +29,7 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('1fd18321043c65113fc0fee0100f9841eba2ff01')
+sha1sums=('81db38c583cc213eb7389e22d0f54f9d8371b89c')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2016-05-13 Thread Antonio Rojas
Date: Friday, May 13, 2016 @ 18:56:26
  Author: arojas
Revision: 267926

Update musicbrainzngs optdepend (FS#49321)

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-13 16:02:31 UTC (rev 267925)
+++ PKGBUILD2016-05-13 16:56:26 UTC (rev 267926)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=3.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
 license=('GPL2')
@@ -19,7 +19,7 @@
 'libkeybinder3: for the multimedia keys support'
 'media-player-info: for media devices support'
 'cddb-py: for "CDDB Lookup" plugin'
-'python2-musicbrainz2: for "MusicBrainz Lookup" plugin'
+'python2-musicbrainzngs: for "MusicBrainz Lookup" plugin'
 'python2-pyinotify: for "Automatic library update" plugin'
'kakasi: for "Kana/Kanji Simple Inverter" plugin'
'zeitgeist: for "Event Logging" plugin'


[arch-commits] Commit in quodlibet/trunk (PKGBUILD quodlibet.install)

2016-05-06 Thread Antonio Rojas
Date: Friday, May 6, 2016 @ 20:46:47
  Author: arojas
Revision: 267039

Update to 3.6.1, remove install file

Modified:
  quodlibet/trunk/PKGBUILD
Deleted:
  quodlibet/trunk/quodlibet.install

---+
 PKGBUILD  |5 ++---
 quodlibet.install |   12 
 2 files changed, 2 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-06 18:42:31 UTC (rev 267038)
+++ PKGBUILD2016-05-06 18:46:47 UTC (rev 267039)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.5.1
+pkgver=3.6.1
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -28,9 +28,8 @@
 conflicts=('quodlibet-plugins')
 replaces=('quodlibet-plugins')
 options=('!makeflags')
-install=quodlibet.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('d67c5af74a53fe43610c67acf4885fb6a51eb579')
+sha1sums=('1fd18321043c65113fc0fee0100f9841eba2ff01')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet

Deleted: quodlibet.install
===
--- quodlibet.install   2016-05-06 18:42:31 UTC (rev 267038)
+++ quodlibet.install   2016-05-06 18:46:47 UTC (rev 267039)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2015-10-21 Thread Eric Bélanger
Date: Thursday, October 22, 2015 @ 03:40:07
  Author: eric
Revision: 249636

upgpkg: quodlibet 3.5.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-22 01:25:59 UTC (rev 249635)
+++ PKGBUILD2015-10-22 01:40:07 UTC (rev 249636)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=quodlibet
-pkgver=3.4.1
+pkgver=3.5.1
 pkgrel=1
 pkgdesc="An audio library tagger, manager and player"
 arch=('any')
@@ -30,7 +30,7 @@
 options=('!makeflags')
 install=quodlibet.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('263c4dc4ba80d2464c8b37788ae2b70eb768abc7')
+sha1sums=('d67c5af74a53fe43610c67acf4885fb6a51eb579')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2015-05-31 Thread Eric Bélanger
Date: Monday, June 1, 2015 @ 03:42:41
  Author: eric
Revision: 239976

upgpkg: quodlibet 3.4.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-01 01:21:19 UTC (rev 239975)
+++ PKGBUILD2015-06-01 01:42:41 UTC (rev 239976)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=3.4.0
-pkgrel=2
+pkgver=3.4.1
+pkgrel=1
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
 license=('GPL2')
@@ -30,7 +30,7 @@
 options=('!makeflags')
 install=quodlibet.install
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
-sha1sums=('64a8478d91eb9a7ce50b730b9e4a53909419a749')
+sha1sums=('263c4dc4ba80d2464c8b37788ae2b70eb768abc7')
 
 build() {
   cd ${pkgname}-release-${pkgver}/quodlibet


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2015-05-28 Thread Jan de Groot
Date: Thursday, May 28, 2015 @ 14:53:07
  Author: jgc
Revision: 239848

upgpkg: quodlibet 3.4.0-2

Drop gnome-icon-theme (FS#45016)

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-28 12:49:42 UTC (rev 239847)
+++ PKGBUILD2015-05-28 12:53:07 UTC (rev 239848)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=3.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
 license=('GPL2')
@@ -10,7 +10,7 @@
 url=https://github.com/quodlibet/quodlibet;
 depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen' 
  'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
-'gnome-icon-theme' 'desktop-file-utils')
+'desktop-file-utils')
 makedepends=('intltool')
 optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
 'gst-plugins-bad: for Musepack support'


[arch-commits] Commit in quodlibet/trunk (PKGBUILD quodlibet.install)

2015-04-12 Thread Eric Bélanger
Date: Monday, April 13, 2015 @ 01:20:28
  Author: eric
Revision: 236322

upgpkg: quodlibet 3.4.0-1

Upstream update, Update url, Add desktop-file-utils depends

Modified:
  quodlibet/trunk/PKGBUILD
  quodlibet/trunk/quodlibet.install

---+
 PKGBUILD  |   19 +++
 quodlibet.install |1 +
 2 files changed, 8 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-12 20:49:44 UTC (rev 236321)
+++ PKGBUILD2015-04-12 23:20:28 UTC (rev 236322)
@@ -2,15 +2,15 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=3.3.1
+pkgver=3.4.0
 pkgrel=1
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
 license=('GPL2')
-url=http://code.google.com/p/quodlibet/;
+url=https://github.com/quodlibet/quodlibet;
 depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen' 
  'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
-'gnome-icon-theme')
+'gnome-icon-theme' 'desktop-file-utils')
 makedepends=('intltool')
 optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
 'gst-plugins-bad: for Musepack support'
@@ -29,20 +29,15 @@
 replaces=('quodlibet-plugins')
 options=('!makeflags')
 install=quodlibet.install
-source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('817bbcfb37ab5e2b032da8e9e5923e890f8bfec5')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/quodlibet/quodlibet/archive/release-${pkgver}.tar.gz)
+sha1sums=('64a8478d91eb9a7ce50b730b9e4a53909419a749')
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i 's/env python/env python2/' quodlibet/ext/songsmenu/replaygain.py
-}
-
 build() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-release-${pkgver}/quodlibet
   python2 setup.py build
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd ${pkgname}-release-${pkgver}/quodlibet
   python2 setup.py install --root=${pkgdir}
 }

Modified: quodlibet.install
===
--- quodlibet.install   2015-04-12 20:49:44 UTC (rev 236321)
+++ quodlibet.install   2015-04-12 23:20:28 UTC (rev 236322)
@@ -1,5 +1,6 @@
 post_install() {
   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-desktop-database -q
 }
 
 post_upgrade() {


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2015-02-02 Thread Eric Bélanger
Date: Tuesday, February 3, 2015 @ 06:05:21
  Author: eric
Revision: 230380

upgpkg: quodlibet 3.3.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-02 18:34:51 UTC (rev 230379)
+++ PKGBUILD2015-02-03 05:05:21 UTC (rev 230380)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=3.3.0
+pkgver=3.3.1
 pkgrel=1
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
@@ -30,7 +30,7 @@
 options=('!makeflags')
 install=quodlibet.install
 
source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('04308706486eac06f9e029baba35b4e8801db315')
+sha1sums=('817bbcfb37ab5e2b032da8e9e5923e890f8bfec5')
 
 prepare() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2015-01-06 Thread Eric Bélanger
Date: Wednesday, January 7, 2015 @ 02:36:36
  Author: eric
Revision: 228724

upgpkg: quodlibet 3.3.0-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-07 00:46:59 UTC (rev 228723)
+++ PKGBUILD2015-01-07 01:36:36 UTC (rev 228724)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=3.2.2
-pkgrel=2
+pkgver=3.3.0
+pkgrel=1
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
 license=('GPL2')
@@ -30,7 +30,7 @@
 options=('!makeflags')
 install=quodlibet.install
 
source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('bad265479b39aefdbb2f52376808502ba8d11eec')
+sha1sums=('04308706486eac06f9e029baba35b4e8801db315')
 
 prepare() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2014-12-18 Thread Eric Bélanger
Date: Friday, December 19, 2014 @ 03:14:45
  Author: eric
Revision: 227768

upgpkg: quodlibet 3.2.2-2

Add python2-cairo depends (close FS#42946)

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-12-19 01:10:26 UTC (rev 227767)
+++ PKGBUILD2014-12-19 02:14:45 UTC (rev 227768)
@@ -3,12 +3,12 @@
 
 pkgname=quodlibet
 pkgver=3.2.2
-pkgrel=1
+pkgrel=2
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
-depends=('gtk3' 'python2-gobject' 'python2-dbus' 'mutagen' 
+depends=('gtk3' 'python2-gobject' 'python2-dbus' 'python2-cairo' 'mutagen' 
  'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
 'gnome-icon-theme')
 makedepends=('intltool')


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2014-10-06 Thread Eric Bélanger
Date: Monday, October 6, 2014 @ 22:35:32
  Author: eric
Revision: 223936

upgpkg: quodlibet 3.2.2-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-06 19:38:39 UTC (rev 223935)
+++ PKGBUILD2014-10-06 20:35:32 UTC (rev 223936)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=3.2.1
+pkgver=3.2.2
 pkgrel=1
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
@@ -30,7 +30,7 @@
 options=('!makeflags')
 install=quodlibet.install
 
source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('dc62270e6795f30bcd44261fbf98666992dc')
+sha1sums=('bad265479b39aefdbb2f52376808502ba8d11eec')
 
 prepare() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2014-08-22 Thread Eric Bélanger
Date: Saturday, August 23, 2014 @ 02:18:18
  Author: eric
Revision: 220572

upgpkg: quodlibet 3.2.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-22 23:52:34 UTC (rev 220571)
+++ PKGBUILD2014-08-23 00:18:18 UTC (rev 220572)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=3.2
+pkgver=3.2.1
 pkgrel=1
 pkgdesc=An audio library tagger, manager and player
 arch=('any')
@@ -30,7 +30,7 @@
 options=('!makeflags')
 install=quodlibet.install
 
source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('c0208048debde50cc9d077100d51c889da039c14')
+sha1sums=('dc62270e6795f30bcd44261fbf98666992dc')
 
 prepare() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2014-08-03 Thread Eric Bélanger
Date: Monday, August 4, 2014 @ 07:09:47
  Author: eric
Revision: 219268

upgpkg: quodlibet 3.2-1

Upstream update, Merge quodlibet-plugins package (upstream change)

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   74 +
 1 file changed, 31 insertions(+), 43 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-04 02:57:32 UTC (rev 219267)
+++ PKGBUILD2014-08-04 05:09:47 UTC (rev 219268)
@@ -1,60 +1,48 @@
 # $Id$
 # Maintainer: Eric Bélanger e...@archlinux.org
 
-pkgbase=quodlibet
-pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.1.2
+pkgname=quodlibet
+pkgver=3.2
 pkgrel=1
+pkgdesc=An audio library tagger, manager and player
 arch=('any')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
-makedepends=('python2' 'intltool')
+depends=('gtk3' 'python2-gobject' 'python2-dbus' 'mutagen' 
+ 'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
+'gnome-icon-theme')
+makedepends=('intltool')
+optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
+'gst-plugins-bad: for Musepack support'
+'libgpod: for ipod support'
+'python2-feedparser: for audio feeds (podcast) support'
+'libkeybinder3: for the multimedia keys support'
+'media-player-info: for media devices support'
+'cddb-py: for CDDB Lookup plugin'
+'python2-musicbrainz2: for MusicBrainz Lookup plugin'
+'python2-pyinotify: for Automatic library update plugin'
+   'kakasi: for Kana/Kanji Simple Inverter plugin'
+   'zeitgeist: for Event Logging plugin'
+'gst-plugins-bad: for Audio Pitch/Speed plugin')
+provides=('quodlibet-plugins')
+conflicts=('quodlibet-plugins')
+replaces=('quodlibet-plugins')
 options=('!makeflags')
-source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-$pkgver.tar.gz
-
https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('6e7553c37f96b314c16b520ed74a005bf69905b4'
-  '2239213ba6f8cfc962f8442da3960869bf18a92f')
+install=quodlibet.install
+source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/${pkgname}-${pkgver}.tar.gz)
+sha1sums=('c0208048debde50cc9d077100d51c889da039c14')
 
 prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
-../${pkgbase}-plugins-${pkgver}/songsmenu/replaygain.py
-  sed -i 's|/usr/bin/python|/usr/bin/python2|' operon.py 
+  cd ${pkgname}-${pkgver}
+  sed -i 's/env python/env python2/' quodlibet/ext/songsmenu/replaygain.py
 }
 
 build() {
-  cd ${pkgbase}-${pkgver}
+  cd ${pkgname}-${pkgver}
   python2 setup.py build
 }
 
-package_quodlibet() {
-  pkgdesc=An audio library tagger, manager and player
-  depends=('gtk3' 'python2-gobject' 'python2-dbus' 'mutagen' 
-   'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
-  'gnome-icon-theme')
-  optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
-  'gst-plugins-bad: for Musepack support'
-  'libgpod: for ipod support'
-  'python2-feedparser: for audio feeds (podcast) support'
-  'libkeybinder3: for the multimedia keys support'
-  'media-player-info: for media devices support')
-  install=quodlibet.install
-
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py install --prefix=${pkgdir}/usr
+package() {
+  cd ${pkgname}-${pkgver}
+  python2 setup.py install --root=${pkgdir}
 }
-
-package_quodlibet-plugins() {
-  pkgdesc=Various plugins for QuodLibet
-  depends=('quodlibet')
-  optdepends=('cddb-py: for CDDB Lookup plugin'
-  'python2-musicbrainz2: for MusicBrainz Lookup plugin'
-  'python2-pyinotify: for Automatic library update plugin'
- 'kakasi: for Kana/Kanji Simple Inverter plugin'
- 'zeitgeist: for Event Logging plugin'
-  'gst-plugins-bad: for Audio Pitch/Speed plugin')
-
-  cd ${pkgbase}-plugins-${pkgver}
-  install -d ${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
-  cp -r editing events gstreamer playorder songsmenu 
${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
-}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2014-07-06 Thread Eric Bélanger
Date: Sunday, July 6, 2014 @ 22:58:47
  Author: eric
Revision: 216583

upgpkg: quodlibet 3.1.2-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-06 19:41:27 UTC (rev 216582)
+++ PKGBUILD2014-07-06 20:58:47 UTC (rev 216583)
@@ -3,7 +3,7 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.1.1
+pkgver=3.1.2
 pkgrel=1
 arch=('any')
 license=('GPL2')
@@ -12,8 +12,8 @@
 options=('!makeflags')
 
source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-$pkgver.tar.gz
 
https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('4246a569405ec292b8fb7183363db0a7989e9ac3'
-  'f7cb567729e17555a445db5371b823038f356e3d')
+sha1sums=('6e7553c37f96b314c16b520ed74a005bf69905b4'
+  '2239213ba6f8cfc962f8442da3960869bf18a92f')
 
 prepare() {
   cd ${pkgbase}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 00:51:13
  Author: eric
Revision: 212212

upgpkg: quodlibet 3.1.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 21:42:35 UTC (rev 212211)
+++ PKGBUILD2014-05-10 22:51:13 UTC (rev 212212)
@@ -3,7 +3,7 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.1.0
+pkgver=3.1.1
 pkgrel=1
 arch=('any')
 license=('GPL2')
@@ -12,8 +12,8 @@
 options=('!makeflags')
 
source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-$pkgver.tar.gz
 
https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('2a2ff36cbab472aa61ead2bd9803cc6396ac310c'
-  '0b79004728fafe6ac9bb1352cbb04c9b76ca4f55')
+sha1sums=('4246a569405ec292b8fb7183363db0a7989e9ac3'
+  'f7cb567729e17555a445db5371b823038f356e3d')
 
 prepare() {
   cd ${pkgbase}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2014-04-13 Thread Eric Bélanger
Date: Monday, April 14, 2014 @ 06:33:56
  Author: eric
Revision: 210300

upgpkg: quodlibet 3.1.0-1

Upstream update, Update source url

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-04-14 04:00:38 UTC (rev 210299)
+++ PKGBUILD2014-04-14 04:33:56 UTC (rev 210300)
@@ -3,7 +3,7 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.0.2
+pkgver=3.1.0
 pkgrel=1
 arch=('any')
 license=('GPL2')
@@ -10,10 +10,10 @@
 url=http://code.google.com/p/quodlibet/;
 makedepends=('python2' 'intltool')
 options=('!makeflags')
-source=(https://quodlibet.googlecode.com/files/$pkgbase-$pkgver.tar.gz
-https://quodlibet.googlecode.com/files/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('d86fcd5ae461398891ad08b23d4497c3cfe0587d'
-  '8126fc4c69fd7db556a1ff38d9b41f27d6ad7264')
+source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-$pkgver.tar.gz
+
https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-plugins-$pkgver.tar.gz)
+sha1sums=('2a2ff36cbab472aa61ead2bd9803cc6396ac310c'
+  '0b79004728fafe6ac9bb1352cbb04c9b76ca4f55')
 
 prepare() {
   cd ${pkgbase}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2013-07-23 Thread Eric Bélanger
Date: Wednesday, July 24, 2013 @ 01:38:22
  Author: eric
Revision: 191358

upgpkg: quodlibet 3.0.2-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-23 21:01:37 UTC (rev 191357)
+++ PKGBUILD2013-07-23 23:38:22 UTC (rev 191358)
@@ -3,7 +3,7 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.0.1
+pkgver=3.0.2
 pkgrel=1
 arch=('any')
 license=('GPL2')
@@ -12,8 +12,8 @@
 options=('!makeflags')
 source=(https://quodlibet.googlecode.com/files/$pkgbase-$pkgver.tar.gz
 https://quodlibet.googlecode.com/files/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('2bd0299663cc78b42c0721447f180c7c1a17047a'
-  '36d8882b12a687270d52ddb5ff256bec0b51eced')
+sha1sums=('d86fcd5ae461398891ad08b23d4497c3cfe0587d'
+  '8126fc4c69fd7db556a1ff38d9b41f27d6ad7264')
 
 prepare() {
   cd ${pkgbase}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2013-07-08 Thread Eric Bélanger
Date: Monday, July 8, 2013 @ 21:11:25
  Author: eric
Revision: 189825

upgpkg: quodlibet 3.0.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-08 16:53:47 UTC (rev 189824)
+++ PKGBUILD2013-07-08 19:11:25 UTC (rev 189825)
@@ -3,7 +3,7 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.0.0
+pkgver=3.0.1
 pkgrel=1
 arch=('any')
 license=('GPL2')
@@ -12,8 +12,8 @@
 options=('!makeflags')
 source=(https://quodlibet.googlecode.com/files/$pkgbase-$pkgver.tar.gz
 https://quodlibet.googlecode.com/files/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('4fc3e33d3c0bf09ef464415e30f50a7ec33ca5c4'
-  '220487004357a4a70b9fcdfd08c6315319b59554')
+sha1sums=('2bd0299663cc78b42c0721447f180c7c1a17047a'
+  '36d8882b12a687270d52ddb5ff256bec0b51eced')
 
 prepare() {
   cd ${pkgbase}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2013-06-16 Thread Eric Bélanger
Date: Monday, June 17, 2013 @ 01:42:49
  Author: eric
Revision: 188606

upgpkg: quodlibet 3.0.0-1

Upstream update, Update depends, makedepends and optdepends

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   33 ++---
 1 file changed, 14 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-06-16 22:22:21 UTC (rev 188605)
+++ PKGBUILD2013-06-16 23:42:49 UTC (rev 188606)
@@ -3,24 +3,23 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=2.5.1
-pkgrel=2
+pkgver=3.0.0
+pkgrel=1
 arch=('any')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
-makedepends=('intltool' 'python2-gobject2' 'gtk-update-icon-cache'
- 'hicolor-icon-theme')
+makedepends=('python2' 'intltool')
 options=('!makeflags')
 source=(https://quodlibet.googlecode.com/files/$pkgbase-$pkgver.tar.gz
 https://quodlibet.googlecode.com/files/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('3897109ca47a0d59dc3c18a176b10feeccc21afe'
-  'e23206be3322a9b79cd0a70448fafeeb0e02a58a')
+sha1sums=('4fc3e33d3c0bf09ef464415e30f50a7ec33ca5c4'
+  '220487004357a4a70b9fcdfd08c6315319b59554')
 
 prepare() {
   cd ${pkgbase}-${pkgver}
   sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
 ../${pkgbase}-plugins-${pkgver}/songsmenu/replaygain.py
-  sed -i '/MimeType=inode\/directory;/d' exfalso.desktop.in
+  sed -i 's|/usr/bin/python|/usr/bin/python2|' operon.py 
 }
 
 build() {
@@ -30,16 +29,14 @@
 
 package_quodlibet() {
   pkgdesc=An audio library tagger, manager and player
-  depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins'
-   'gstreamer0.10-ugly-plugins' 'mutagen' 'pygtk' 'hicolor-icon-theme')
-  optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support'
-  'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack 
support'
-  'python2-dbus: for dbus support'
-  'notification-daemon: for notification support'
+  depends=('gtk3' 'python2-gobject' 'python2-dbus' 'mutagen' 
+   'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
+  'gnome-icon-theme')
+  optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
+  'gst-plugins-bad: for Musepack support'
   'libgpod: for ipod support'
   'python2-feedparser: for audio feeds (podcast) support'
-  'python2-keybinder2: for the multimedia keys support'
-  'udisks: for media devices support'
+  'libkeybinder3: for the multimedia keys support'
   'media-player-info: for media devices support')
   install=quodlibet.install
 
@@ -50,14 +47,12 @@
 package_quodlibet-plugins() {
   pkgdesc=Various plugins for QuodLibet
   depends=('quodlibet')
-  optdepends=('python2-gnomevfs: for Automatic Masking plugin'
-  'python2-dbus: for Gajim Status Message plugin'
-  'cddb-py: for CDDB Lookup plugin'
+  optdepends=('cddb-py: for CDDB Lookup plugin'
   'python2-musicbrainz2: for MusicBrainz Lookup plugin'
   'python2-pyinotify: for Automatic library update plugin'
  'kakasi: for Kana/Kanji Simple Inverter plugin'
  'zeitgeist: for Event Logging plugin'
-  'gstreamer0.10-bad-plugins: for Audio Pitch/Speed plugin')
+  'gst-plugins-bad: for Audio Pitch/Speed plugin')
 
   cd ${pkgbase}-plugins-${pkgver}
   install -d ${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins



[arch-commits] Commit in quodlibet/trunk (PKGBUILD quodlibet.install)

2013-05-21 Thread Eric Bélanger
Date: Tuesday, May 21, 2013 @ 18:11:46
  Author: eric
Revision: 186169

upgpkg: quodlibet 2.5.1-2

Remove MimeType from exfalso's desktop file (close FS#35375)

Modified:
  quodlibet/trunk/PKGBUILD
  quodlibet/trunk/quodlibet.install

---+
 PKGBUILD  |   26 +++---
 quodlibet.install |1 -
 2 files changed, 15 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-21 15:09:21 UTC (rev 186168)
+++ PKGBUILD2013-05-21 16:11:46 UTC (rev 186169)
@@ -4,30 +4,34 @@
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
 pkgver=2.5.1
-_pkgver=2.5.1
-pkgrel=1
+pkgrel=2
 arch=('any')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
 makedepends=('intltool' 'python2-gobject2' 'gtk-update-icon-cache'
- 'hicolor-icon-theme' 'desktop-file-utils')
+ 'hicolor-icon-theme')
 options=('!makeflags')
-source=(https://quodlibet.googlecode.com/files/$pkgbase-$_pkgver.tar.gz
-
https://quodlibet.googlecode.com/files/$pkgbase-plugins-$_pkgver.tar.gz)
+source=(https://quodlibet.googlecode.com/files/$pkgbase-$pkgver.tar.gz
+https://quodlibet.googlecode.com/files/$pkgbase-plugins-$pkgver.tar.gz)
 sha1sums=('3897109ca47a0d59dc3c18a176b10feeccc21afe'
   'e23206be3322a9b79cd0a70448fafeeb0e02a58a')
 
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
+../${pkgbase}-plugins-${pkgver}/songsmenu/replaygain.py
+  sed -i '/MimeType=inode\/directory;/d' exfalso.desktop.in
+}
+
 build() {
-  cd ${srcdir}/${pkgbase}-${_pkgver}
-  sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
-../${pkgbase}-plugins-${_pkgver}/songsmenu/replaygain.py
+  cd ${pkgbase}-${pkgver}
   python2 setup.py build
 }
 
 package_quodlibet() {
   pkgdesc=An audio library tagger, manager and player
   depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins'
-   'gstreamer0.10-ugly-plugins' 'mutagen' 'pygtk' 'hicolor-icon-theme' 
'desktop-file-utils')
+   'gstreamer0.10-ugly-plugins' 'mutagen' 'pygtk' 'hicolor-icon-theme')
   optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support'
   'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack 
support'
   'python2-dbus: for dbus support'
@@ -39,7 +43,7 @@
   'media-player-info: for media devices support')
   install=quodlibet.install
 
-  cd ${srcdir}/${pkgbase}-${_pkgver}
+  cd ${pkgbase}-${pkgver}
   python2 setup.py install --prefix=${pkgdir}/usr
 }
 
@@ -55,7 +59,7 @@
  'zeitgeist: for Event Logging plugin'
   'gstreamer0.10-bad-plugins: for Audio Pitch/Speed plugin')
 
-  cd ${srcdir}/${pkgbase}-plugins-${_pkgver}
+  cd ${pkgbase}-plugins-${pkgver}
   install -d ${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
   cp -r editing events gstreamer playorder songsmenu 
${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
 }

Modified: quodlibet.install
===
--- quodlibet.install   2013-05-21 15:09:21 UTC (rev 186168)
+++ quodlibet.install   2013-05-21 16:11:46 UTC (rev 186169)
@@ -1,5 +1,4 @@
 post_install() {
-  update-desktop-database -q
   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2013-05-02 Thread Eric Bélanger
Date: Thursday, May 2, 2013 @ 22:46:43
  Author: eric
Revision: 184151

upgpkg: quodlibet 2.5.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-02 19:39:51 UTC (rev 184150)
+++ PKGBUILD2013-05-02 20:46:43 UTC (rev 184151)
@@ -3,9 +3,9 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=2.5.0
-_pkgver=2.5
-pkgrel=2
+pkgver=2.5.1
+_pkgver=2.5.1
+pkgrel=1
 arch=('any')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
@@ -14,8 +14,8 @@
 options=('!makeflags')
 source=(https://quodlibet.googlecode.com/files/$pkgbase-$_pkgver.tar.gz
 
https://quodlibet.googlecode.com/files/$pkgbase-plugins-$_pkgver.tar.gz)
-sha1sums=('ed33624d51e943839c27f47aa962d8de7f21c1d4'
-  '008b8f49e4a98632fb35b7c434969385d386e8f1')
+sha1sums=('3897109ca47a0d59dc3c18a176b10feeccc21afe'
+  'e23206be3322a9b79cd0a70448fafeeb0e02a58a')
 
 build() {
   cd ${srcdir}/${pkgbase}-${_pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2013-04-13 Thread Eric Bélanger
Date: Sunday, April 14, 2013 @ 06:48:16
  Author: eric
Revision: 182747

Update optdepends (close FS#34773)

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-14 04:37:34 UTC (rev 182746)
+++ PKGBUILD2013-04-14 04:48:16 UTC (rev 182747)
@@ -46,8 +46,8 @@
 package_quodlibet-plugins() {
   pkgdesc=Various plugins for QuodLibet
   depends=('quodlibet')
-  optdepends=('gnome-python: for Automatic Masking and View in Nautilus 
plugins'
-  'python2-dbus: for Gajim Status Message and Notify plugins'
+  optdepends=('python2-gnomevfs: for Automatic Masking plugin'
+  'python2-dbus: for Gajim Status Message plugin'
   'cddb-py: for CDDB Lookup plugin'
   'python2-musicbrainz2: for MusicBrainz Lookup plugin'
   'python2-pyinotify: for Automatic library update plugin'



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2013-03-09 Thread Eric Bélanger
Date: Sunday, March 10, 2013 @ 03:20:43
  Author: eric
Revision: 179827

Add gstreamer0.10-bad-plugins optdepends (close FS#33752)

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-10 01:57:26 UTC (rev 179826)
+++ PKGBUILD2013-03-10 02:20:43 UTC (rev 179827)
@@ -52,7 +52,8 @@
   'python2-musicbrainz2: for MusicBrainz Lookup plugin'
   'python2-pyinotify: for Automatic library update plugin'
  'kakasi: for Kana/Kanji Simple Inverter plugin'
- 'zeitgeist: for Event Logging plugin')
+ 'zeitgeist: for Event Logging plugin'
+  'gstreamer0.10-bad-plugins: for Audio Pitch/Speed plugin')
 
   cd ${srcdir}/${pkgbase}-plugins-${_pkgver}
   install -d ${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2013-01-03 Thread Eric Bélanger
Date: Thursday, January 3, 2013 @ 17:05:15
  Author: eric
Revision: 174283

upgpkg: quodlibet 2.5.0-2

Add python2-keybinder2 optdepends (close FS#33176), Change PKGBUILD to use 
source from googlecode

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   37 +++--
 1 file changed, 19 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-03 21:25:25 UTC (rev 174282)
+++ PKGBUILD2013-01-03 22:05:15 UTC (rev 174283)
@@ -4,41 +4,42 @@
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
 pkgver=2.5.0
-pkgrel=1
+_pkgver=2.5
+pkgrel=2
 arch=('any')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
 makedepends=('intltool' 'python2-gobject2' 'gtk-update-icon-cache'
  'hicolor-icon-theme' 'desktop-file-utils')
 options=('!makeflags')
-#TODO: modify to use source from googlecode
-#source=(https://quodlibet.googlecode.com/files/quodlibet-2.5.tar.gz
-#https://quodlibet.googlecode.com/files/quodlibet-plugins-2.5.tar.gz)
-source=(ftp://ftp.archlinux.org/other/quodlibet/quodlibet-2.5.0.zip)
-sha1sums=('e78289d2edb07e73dbe0ea7a2cc22f18be83d68d')
+source=(https://quodlibet.googlecode.com/files/$pkgbase-$_pkgver.tar.gz
+
https://quodlibet.googlecode.com/files/$pkgbase-plugins-$_pkgver.tar.gz)
+sha1sums=('ed33624d51e943839c27f47aa962d8de7f21c1d4'
+  '008b8f49e4a98632fb35b7c434969385d386e8f1')
 
 build() {
-  cd ${srcdir}/${pkgname}-*/${pkgname}
+  cd ${srcdir}/${pkgbase}-${_pkgver}
   sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
-../plugins/songsmenu/replaygain.py
+../${pkgbase}-plugins-${_pkgver}/songsmenu/replaygain.py
   python2 setup.py build
 }
 
 package_quodlibet() {
   pkgdesc=An audio library tagger, manager and player
-  depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins' 
+  depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins'
'gstreamer0.10-ugly-plugins' 'mutagen' 'pygtk' 'hicolor-icon-theme' 
'desktop-file-utils')
-  optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support ' 
-  'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack 
support' 
-  'python2-dbus: for dbus support' 
-  'notification-daemon: for notification support' 
-  'libgpod: for ipod support' 
-  'python2-feedparser: for audio feeds (podcast) support' 
-  'udisks: for media devices support' 
+  optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support'
+  'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack 
support'
+  'python2-dbus: for dbus support'
+  'notification-daemon: for notification support'
+  'libgpod: for ipod support'
+  'python2-feedparser: for audio feeds (podcast) support'
+  'python2-keybinder2: for the multimedia keys support'
+  'udisks: for media devices support'
   'media-player-info: for media devices support')
   install=quodlibet.install
 
-  cd ${srcdir}/quodlibet-*/quodlibet
+  cd ${srcdir}/${pkgbase}-${_pkgver}
   python2 setup.py install --prefix=${pkgdir}/usr
 }
 
@@ -53,7 +54,7 @@
  'kakasi: for Kana/Kanji Simple Inverter plugin'
  'zeitgeist: for Event Logging plugin')
 
-  cd ${srcdir}/quodlibet-*/plugins
+  cd ${srcdir}/${pkgbase}-plugins-${_pkgver}
   install -d ${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
   cp -r editing events gstreamer playorder songsmenu 
${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
 }



[arch-commits] Commit in quodlibet/trunk (PKGBUILD quodlibet.install)

2012-12-20 Thread Eric Bélanger
Date: Thursday, December 20, 2012 @ 18:00:42
  Author: eric
Revision: 173680

upgpkg: quodlibet 2.5.0-1

Upstream update, Switch to 'any' arch, Improve description, Update source url, 
Implement split package for quodlibet-plugins, Update python2-dbus optdepends, 
Remove lastfmsubmitd optdepends, Add kakasi and zeitgeist optdepends

Added:
  quodlibet/trunk/quodlibet.install
Modified:
  quodlibet/trunk/PKGBUILD

---+
 PKGBUILD  |   70 
 quodlibet.install |   12 
 2 files changed, 56 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-12-20 20:15:31 UTC (rev 173679)
+++ PKGBUILD2012-12-20 23:00:42 UTC (rev 173680)
@@ -1,38 +1,56 @@
 # $Id$
 # Maintainer: Eric Bélanger e...@archlinux.org
 
-pkgname=quodlibet
-pkgver=2.4.1
+pkgbase=quodlibet
+pkgname=('quodlibet' 'quodlibet-plugins')
+pkgver=2.5.0
 pkgrel=1
-pkgdesc=An audio player written in pygtk
-arch=('i686' 'x86_64')
+arch=('any')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
-depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins' 
- 'gstreamer0.10-ugly-plugins' 'mutagen' 'pygtk')
-makedepends=('intltool')
-optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support ' 
-'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack support' 
-'python2-dbus: for dbus support' 
-'notification-daemon: for notification support' 
-'libgpod: for ipod support' 
-'python2-feedparser: for audio feeds (podcast) support' 
-'udisks: for media devices support' 
-'media-player-info: for media devices support')
+makedepends=('intltool' 'python2-gobject2' 'gtk-update-icon-cache'
+ 'hicolor-icon-theme' 'desktop-file-utils')
 options=('!makeflags')
-source=(http://quodlibet.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('4db812f0b447805a27ae8f25517623205712b75e')
+source=(http://quodlibet.googlecode.com/archive/${pkgname}-${pkgver}.zip)
+sha1sums=('e78289d2edb07e73dbe0ea7a2cc22f18be83d68d')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's#env python#env python2#' *.py quodlibet/util/fmps.py
-  sed -i 's#libudev.so.0#libudev.so.1#' quodlibet/devices/__init__.py
-  ./setup.py build
+  cd ${srcdir}/${pkgname}-*/${pkgname}
+  sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
+../plugins/songsmenu/replaygain.py
+  python2 setup.py build
 }
 
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./setup.py install --prefix=${pkgdir}/usr
-  install -D -m644 quodlibet/images/hicolor/64x64/apps/exfalso.png 
${pkgdir}/usr/share/pixmaps/exfalso.png
-  install -D -m644 quodlibet/images/hicolor/64x64/apps/quodlibet.png 
${pkgdir}/usr/share/pixmaps/quodlibet.png
+package_quodlibet() {
+  pkgdesc=An audio library tagger, manager and player
+  depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins' 
+   'gstreamer0.10-ugly-plugins' 'mutagen' 'pygtk' 'hicolor-icon-theme' 
'desktop-file-utils')
+  optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support ' 
+  'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack 
support' 
+  'python2-dbus: for dbus support' 
+  'notification-daemon: for notification support' 
+  'libgpod: for ipod support' 
+  'python2-feedparser: for audio feeds (podcast) support' 
+  'udisks: for media devices support' 
+  'media-player-info: for media devices support')
+  install=quodlibet.install
+
+  cd ${srcdir}/quodlibet-*/quodlibet
+  python2 setup.py install --prefix=${pkgdir}/usr
 }
+
+package_quodlibet-plugins() {
+  pkgdesc=Various plugins for QuodLibet
+  depends=('quodlibet')
+  optdepends=('gnome-python: for Automatic Masking and View in Nautilus 
plugins'
+  'python2-dbus: for Gajim Status Message and Notify plugins'
+  'cddb-py: for CDDB Lookup plugin'
+  'python2-musicbrainz2: for MusicBrainz Lookup plugin'
+  'python2-pyinotify: for Automatic library update plugin'
+ 'kakasi: for Kana/Kanji Simple Inverter plugin'
+ 'zeitgeist: for Event Logging plugin')
+
+  cd ${srcdir}/quodlibet-*/plugins
+  install -d ${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
+  cp -r editing events gstreamer playorder songsmenu 
${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
+}

Added: quodlibet.install
===
--- quodlibet.install   (rev 0)
+++ quodlibet.install   2012-12-20 23:00:42 UTC (rev 173680)
@@ -0,0 +1,12 @@
+post_install() {
+  update-desktop-database -q
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  

[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2012-12-20 Thread Eric Bélanger
Date: Friday, December 21, 2012 @ 01:21:02
  Author: eric
Revision: 173694

Fix source url

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-12-21 04:10:26 UTC (rev 173693)
+++ PKGBUILD2012-12-21 06:21:02 UTC (rev 173694)
@@ -11,7 +11,10 @@
 makedepends=('intltool' 'python2-gobject2' 'gtk-update-icon-cache'
  'hicolor-icon-theme' 'desktop-file-utils')
 options=('!makeflags')
-source=(http://quodlibet.googlecode.com/archive/${pkgname}-${pkgver}.zip)
+#TODO: modify to use source from googlecode
+#source=(https://quodlibet.googlecode.com/files/quodlibet-2.5.tar.gz
+#https://quodlibet.googlecode.com/files/quodlibet-plugins-2.5.tar.gz)
+source=(ftp://ftp.archlinux.org/other/quodlibet/quodlibet-2.5.0.zip)
 sha1sums=('e78289d2edb07e73dbe0ea7a2cc22f18be83d68d')
 
 build() {



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2012-08-06 Thread Eric Bélanger
Date: Monday, August 6, 2012 @ 17:35:15
  Author: eric
Revision: 164823

upgpkg: quodlibet 2.4.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-08-06 20:34:31 UTC (rev 164822)
+++ PKGBUILD2012-08-06 21:35:15 UTC (rev 164823)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=2.4
-pkgrel=2
+pkgver=2.4.1
+pkgrel=1
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -21,7 +21,7 @@
 'media-player-info: for media devices support')
 options=('!makeflags')
 source=(http://quodlibet.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('7e11cda2827bb0d04b7d2b7854b8a2854ed074c8')
+sha1sums=('4db812f0b447805a27ae8f25517623205712b75e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2012-06-06 Thread Eric Bélanger
Date: Wednesday, June 6, 2012 @ 22:13:52
  Author: eric
Revision: 160924

upgpkg: quodlibet 2.4-2

Add udev fix, Update optdepends

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-06-07 02:06:49 UTC (rev 160923)
+++ PKGBUILD2012-06-07 02:13:52 UTC (rev 160924)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=2.4
-pkgrel=1
+pkgrel=2
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -13,10 +13,10 @@
 makedepends=('intltool')
 optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support ' 
 'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack support' 
-'dbus-python: for dbus support' 
+'python2-dbus: for dbus support' 
 'notification-daemon: for notification support' 
 'libgpod: for ipod support' 
-'python-feedparser: for audio feeds (podcast) support' 
+'python2-feedparser: for audio feeds (podcast) support' 
 'udisks: for media devices support' 
 'media-player-info: for media devices support')
 options=('!makeflags')
@@ -26,6 +26,7 @@
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   sed -i 's#env python#env python2#' *.py quodlibet/util/fmps.py
+  sed -i 's#libudev.so.0#libudev.so.1#' quodlibet/devices/__init__.py
   ./setup.py build
 }
 



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2012-03-20 Thread Eric Bélanger
Date: Tuesday, March 20, 2012 @ 02:20:38
  Author: eric
Revision: 153858

upgpkg: quodlibet 2.4-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-20 05:18:53 UTC (rev 153857)
+++ PKGBUILD2012-03-20 06:20:38 UTC (rev 153858)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=2.3.2
+pkgver=2.4
 pkgrel=1
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
@@ -21,7 +21,7 @@
 'media-player-info: for media devices support')
 options=('!makeflags')
 source=(http://quodlibet.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('21bc5fb988ca6c09959fc7212c05272a126a5be5')
+sha1sums=('7e11cda2827bb0d04b7d2b7854b8a2854ed074c8')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -32,6 +32,6 @@
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./setup.py install --prefix=${pkgdir}/usr
-  install -D -m644 quodlibet/images/exfalso.png 
${pkgdir}/usr/share/pixmaps/exfalso.png
-  install -D -m644 quodlibet/images/quodlibet.png 
${pkgdir}/usr/share/pixmaps/quodlibet.png
+  install -D -m644 quodlibet/images/hicolor/64x64/apps/exfalso.png 
${pkgdir}/usr/share/pixmaps/exfalso.png
+  install -D -m644 quodlibet/images/hicolor/64x64/apps/quodlibet.png 
${pkgdir}/usr/share/pixmaps/quodlibet.png
 }



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2011-10-20 Thread Eric Bélanger
Date: Thursday, October 20, 2011 @ 18:43:59
  Author: eric
Revision: 140989

upgpkg: quodlibet 2.3.2-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-10-20 20:52:10 UTC (rev 140988)
+++ PKGBUILD2011-10-20 22:43:59 UTC (rev 140989)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=2.3.1
+pkgver=2.3.2
 pkgrel=1
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
@@ -21,8 +21,7 @@
 'media-player-info: for media devices support')
 options=('!makeflags')
 source=(http://quodlibet.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
-md5sums=('354b411bd68b3ae4a687c35f265b')
-sha1sums=('2521011633d0195084e5937eeeb01c0efefa69b1')
+sha1sums=('21bc5fb988ca6c09959fc7212c05272a126a5be5')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2011-08-02 Thread Jan de Groot
Date: Tuesday, August 2, 2011 @ 10:00:06
  Author: jgc
Revision: 134198

upgpkg: quodlibet 2.3-2
Change hal optdepend to udisks

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-02 13:38:56 UTC (rev 134197)
+++ PKGBUILD2011-08-02 14:00:06 UTC (rev 134198)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=2.3
-pkgrel=1
+pkgrel=2
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -17,7 +17,7 @@
 'notification-daemon: for notification support' 
 'libgpod: for ipod support' 
 'python-feedparser: for audio feeds (podcast) support' 
-'hal: for media devices support' 
+'udisks: for media devices support' 
 'media-player-info: for media devices support')
 options=('!makeflags')
 source=(http://quodlibet.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2011-08-02 Thread Jan de Groot
Date: Tuesday, August 2, 2011 @ 10:09:29
  Author: jgc
Revision: 134201

upgpkg: quodlibet 2.3-2
Fix call to python

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-02 14:00:24 UTC (rev 134200)
+++ PKGBUILD2011-08-02 14:09:29 UTC (rev 134201)
@@ -26,7 +26,7 @@
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's#env python#env python2#' *.py
+  sed -i 's#env python#env python2#' *.py quodlibet/util/fmps.py
   ./setup.py build
 }
 



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2011-08-02 Thread Eric Bélanger
Date: Tuesday, August 2, 2011 @ 17:13:14
  Author: eric
Revision: 134307

upgpkg: quodlibet 2.3.1-1
Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-02 20:34:52 UTC (rev 134306)
+++ PKGBUILD2011-08-02 21:13:14 UTC (rev 134307)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=2.3
-pkgrel=2
+pkgver=2.3.1
+pkgrel=1
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -21,8 +21,8 @@
 'media-player-info: for media devices support')
 options=('!makeflags')
 source=(http://quodlibet.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
-md5sums=('e6bdb97decba40c33bd57e039d82c217')
-sha1sums=('dae756e8224139989f6b253ef2afe18eca55ef9f')
+md5sums=('354b411bd68b3ae4a687c35f265b')
+sha1sums=('2521011633d0195084e5937eeeb01c0efefa69b1')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2011-08-02 Thread Eric Bélanger
Date: Tuesday, August 2, 2011 @ 17:15:25
  Author: eric
Revision: 134315

Add space to Id tag

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-08-02 21:14:15 UTC (rev 134314)
+++ PKGBUILD2011-08-02 21:15:25 UTC (rev 134315)
@@ -1,4 +1,4 @@
-#$Id$
+# $Id$
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2011-04-02 Thread Eric Bélanger
Date: Saturday, April 2, 2011 @ 19:31:59
  Author: eric
Revision: 117459

upgpkg: quodlibet 2.3-1
Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |   27 ++-
 1 file changed, 14 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-02 11:10:01 UTC (rev 117458)
+++ PKGBUILD2011-04-02 23:31:59 UTC (rev 117459)
@@ -1,34 +1,35 @@
 #$Id$
-# Maintainer: Eric Belanger e...@archlinux.org
+# Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=quodlibet
-pkgver=2.2.1
-pkgrel=3
+pkgver=2.3
+pkgrel=1
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
 license=('GPL2')
 url=http://code.google.com/p/quodlibet/;
-depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins' \
+depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 
'gstreamer0.10-good-plugins' 
  'gstreamer0.10-ugly-plugins' 'mutagen' 'pygtk')
 makedepends=('intltool')
-optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support ' \
-'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack support' 
\
-'dbus-python: for dbus support' \
-'notification-daemon: for notification support' \
-'libgpod: for ipod support' \
-'python-feedparser: for audio feeds (podcast) support' \
-'hal: for media devices support' \
+optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support ' 
+'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack support' 
+'dbus-python: for dbus support' 
+'notification-daemon: for notification support' 
+'libgpod: for ipod support' 
+'python-feedparser: for audio feeds (podcast) support' 
+'hal: for media devices support' 
 'media-player-info: for media devices support')
 options=('!makeflags')
 source=(http://quodlibet.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
-md5sums=('8e2bf197afbfca98975d0f2103629d2d')
-sha1sums=('f6ae9a000f98a0a0d5928aa63b7124416121')
+md5sums=('e6bdb97decba40c33bd57e039d82c217')
+sha1sums=('dae756e8224139989f6b253ef2afe18eca55ef9f')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   sed -i 's#env python#env python2#' *.py
   ./setup.py build
 }
+
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./setup.py install --prefix=${pkgdir}/usr



[arch-commits] Commit in quodlibet/trunk (PKGBUILD)

2010-09-03 Thread Rémy Oudompheng
Date: Saturday, September 4, 2010 @ 01:50:16
  Author: remy
Revision: 89798

upgpkg: quodlibet 2.2.1-2
Rebuild for python2.

Modified:
  quodlibet/trunk/PKGBUILD

--+
 PKGBUILD |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-04 05:50:07 UTC (rev 89797)
+++ PKGBUILD2010-09-04 05:50:16 UTC (rev 89798)
@@ -3,7 +3,7 @@
 
 pkgname=quodlibet
 pkgver=2.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=An audio player written in pygtk
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -18,7 +18,11 @@
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./setup.py build || return 1
+  sed -i 's#env python#env python2#' *.py
+  ./setup.py build
+}
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
   ./setup.py install --prefix=${pkgdir}/usr || return 1
   install -D -m644 quodlibet/images/exfalso.png 
${pkgdir}/usr/share/pixmaps/exfalso.png || return 1
   install -D -m644 quodlibet/images/quodlibet.png 
${pkgdir}/usr/share/pixmaps/quodlibet.png || return 1