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 =================================================================== --- PKGBUILD 2020-02-26 14:51:10 UTC (rev 582959) +++ PKGBUILD 2020-02-26 15:01:14 UTC (rev 582960) @@ -1,31 +1,40 @@ -# Maintainer: David Runge <[email protected]> +# Maintainer: David Runge <[email protected]> # Contributor: Eric Bélanger <[email protected]> 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 <[email protected]> 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 \
