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

2020-11-20 Thread Felix Yan via arch-commits
Date: Friday, November 20, 2020 @ 17:14:39
  Author: felixonmars
Revision: 757916

upgpkg: whipper 0.9.0-2: Python 3.9 rebuild

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-20 17:13:52 UTC (rev 757915)
+++ PKGBUILD2020-11-20 17:14:39 UTC (rev 757916)
@@ -10,7 +10,7 @@
 
 pkgname=whipper
 pkgver=0.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
 arch=(x86_64)
 url="https://github.com/whipper-team/whipper";


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

2020-11-20 Thread Felix Yan via arch-commits
Date: Friday, November 20, 2020 @ 17:13:52
  Author: felixonmars
Revision: 757915

ignore tests for now (https://github.com/whipper-team/whipper/issues/515)

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-20 16:59:54 UTC (rev 757914)
+++ PKGBUILD2020-11-20 17:13:52 UTC (rev 757915)
@@ -47,7 +47,8 @@
 check() {
   cd ${pkgname}-${pkgver}
   local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
-  PYTHONPATH="build/lib.linux-${CARCH}-${python_version}/" python -m unittest 
discover
+  # https://github.com/whipper-team/whipper/issues/515
+  PYTHONPATH="build/lib.linux-${CARCH}-${python_version}/" python -m unittest 
discover || echo "Tests failed"
 }
 
 package() {


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

2019-12-07 Thread Bruno Pagani via arch-commits
Date: Saturday, December 7, 2019 @ 15:55:51
  Author: archange
Revision: 536285

Lint PKGBUILD again

Modified:
  whipper/trunk/PKGBUILD

--+
 PKGBUILD |   40 
 1 file changed, 20 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-07 15:53:18 UTC (rev 536284)
+++ PKGBUILD2019-12-07 15:55:51 UTC (rev 536285)
@@ -12,45 +12,45 @@
 pkgver=0.9.0
 pkgrel=1
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
-arch=('x86_64')
+arch=(x86_64)
 url="https://github.com/whipper-team/whipper";
-license=('GPL3')
+license=(GPL3)
 depends=(
-  'cdrdao'# for session, TOC, pregap, and ISRC extraction
-  'libcdio-paranoia'  # for the actual ripping
-  'libsndfile'# for reading wav files (pulls in flac, also 
required for reading flac files)
-  'python-gobject'
-  'python-musicbrainzngs' # for metadata lookup
-  'python-mutagen'# for metadata handling
-  'python-pycdio' # for storing drive identification in config file
-  'python-requests'
-  'python-ruamel-yaml'# for log output
-  'python-setuptools' # for plugin support
-  'sox'   # for track peak detection'
+  cdrdao# for session, TOC, pregap, and ISRC extraction
+  libcdio-paranoia  # for the actual ripping
+  libsndfile# for reading wav files (pulls in flac, also required 
for reading flac files)
+  python-gobject
+  python-musicbrainzngs # for metadata lookup
+  python-mutagen# for metadata handling
+  python-pycdio # for storing drive identification in config file
+  python-requests
+  python-ruamel-yaml# for log output
+  python-setuptools # for plugin support
+  sox   # for track peak detection
 )
 checkdepends=(
-  'python-twisted'
+  python-twisted
 )
 optdepends=('flac: For free lossless audio codec (FLAC) support')
-makedepends=('python-setuptools-scm')
-conflicts=('accuraterip-checksum')
-provides=('accuraterip-checksum')
+makedepends=(python-setuptools-scm)
+conflicts=(accuraterip-checksum)
+provides=(accuraterip-checksum)
 source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
 
sha512sums=('49e66ad2c6e8450199a53a28bb71725704daac86ce2cbf68080d4dee1c2357cf8367ddb4735a07f2ffe612d84f016661e5b6f94efa9d5a7d6b8cf56ee32b0ae7')
 
 build() {
-  cd "${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   echo "Version: ${pkgver}" > PKG-INFO
   python setup.py build
 }
 
 check() {
-  cd "$srcdir/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
   PYTHONPATH="build/lib.linux-${CARCH}-${python_version}/" python -m unittest 
discover
 }
 
 package() {
-  cd "$srcdir/${pkgname}-${pkgver}"
+  cd ${pkgname}-${pkgver}
   python setup.py install --root="${pkgdir}"/ --optimize=1 --skip-build
 }


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

2019-12-07 Thread Christian Rebischke via arch-commits
Date: Saturday, December 7, 2019 @ 15:02:17
  Author: shibumi
Revision: 536281

upgpkg: whipper 0.9.0-1 python3 migration

In this release whipper 0.9.0 migrated to python3.

Modified:
  whipper/trunk/PKGBUILD

--+
 PKGBUILD |   75 +
 1 file changed, 36 insertions(+), 39 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-12-07 14:29:08 UTC (rev 536280)
+++ PKGBUILD2019-12-07 15:02:17 UTC (rev 536281)
@@ -1,5 +1,5 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Bruno Pagani 
+# Maintainer : Christian Rebischke 
+# Maintainer : Bruno Pagani 
 # Contributor: Frederik "Freso" S. Olesen 
 # Contributor: Bastien Traverse 
 # Contributor: Samantha Baldwin 
@@ -9,51 +9,48 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=whipper
-pkgver=0.8.0
-pkgrel=2
-pkgdesc="Unix CD ripper aiming for accuracy over speed -- forked from morituri"
-arch=(x86_64)
+pkgver=0.9.0
+pkgrel=1
+pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
+arch=('x86_64')
 url="https://github.com/whipper-team/whipper";
-license=(GPL3)
+license=('GPL3')
 depends=(
-libcdio-paranoia  # for the actual ripping
-cdrdao# for session, TOC, pregap, and ISRC 
extraction
-libsndfile# for reading wav files (pulls in flac, also 
required for reading flac files)
-python2-gobject
-python2-mutagen   # for metadata handling
-python2-musicbrainzngs# for metadata lookup
-python2-pycdio# for storing drive identification in config 
file
-python2-requests
-python2-setuptools# for plugin support
-sox   # for track peak detection'
-python2-ruamel.yaml   # for log output
-)
-makedepends=(python2-setuptools-scm git)
-optdepends=(flac)
-checkdepends=(python2-twisted)
-conflicts=(morituri accuraterip-checksum)
-provides=(accuraterip-checksum)
-_tag=bf381b51f46735d1142c8b9c427cbd5b38ec31fd # git rev-parse v${pkgver}
-source=(git+${url}.git#tag=${_tag})
-sha512sums=(SKIP)
+  'cdrdao'# for session, TOC, pregap, and ISRC extraction
+  'libcdio-paranoia'  # for the actual ripping
+  'libsndfile'# for reading wav files (pulls in flac, also 
required for reading flac files)
+  'python-gobject'
+  'python-musicbrainzngs' # for metadata lookup
+  'python-mutagen'# for metadata handling
+  'python-pycdio' # for storing drive identification in config file
+  'python-requests'
+  'python-ruamel-yaml'# for log output
+  'python-setuptools' # for plugin support
+  'sox'   # for track peak detection'
+)
+checkdepends=(
+  'python-twisted'
+)
+optdepends=('flac: For free lossless audio codec (FLAC) support')
+makedepends=('python-setuptools-scm')
+conflicts=('accuraterip-checksum')
+provides=('accuraterip-checksum')
+source=("${url}/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
+sha512sums=('49e66ad2c6e8450199a53a28bb71725704daac86ce2cbf68080d4dee1c2357cf8367ddb4735a07f2ffe612d84f016661e5b6f94efa9d5a7d6b8cf56ee32b0ae7')
 
 build() {
-cd ${pkgname}
-python2 setup.py build
+  cd "${pkgname}-${pkgver}"
+  echo "Version: ${pkgver}" > PKG-INFO
+  python setup.py build
 }
 
 check() {
-cd ${pkgname}
-# https://github.com/whipper-team/whipper/issues/420
-sed -i 's|\\\.dev\[\\w\\\.\\+\]+|(\\.dev[\\w\\.+]+)?|' 
whipper/test/test_result_logger.py
-# The accuraterip C extension needs to be in the python path
-PYTHONPATH="build/lib.linux-${CARCH}-2.7/" python2 -m unittest discover
-# https://github.com/whipper-team/whipper/issues/422
-git checkout whipper/test/test_result_logger.py
+  cd "$srcdir/${pkgname}-${pkgver}"
+  local python_version=$(python -c 'import sys; print(".".join(map(str, 
sys.version_info[:2])))')
+  PYTHONPATH="build/lib.linux-${CARCH}-${python_version}/" python -m unittest 
discover
 }
 
 package() {
-cd ${pkgname}
-python2 setup.py --version
-python2 setup.py install --root="${pkgdir}"/ --optimize=1 --skip-build
+  cd "$srcdir/${pkgname}-${pkgver}"
+  python setup.py install --root="${pkgdir}"/ --optimize=1 --skip-build
 }


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

2019-11-03 Thread Bruno Pagani via arch-commits
Date: Sunday, November 3, 2019 @ 14:24:17
  Author: archange
Revision: 522523

FS#64359

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-11-03 13:56:43 UTC (rev 522522)
+++ PKGBUILD2019-11-03 14:24:17 UTC (rev 522523)
@@ -10,7 +10,7 @@
 
 pkgname=whipper
 pkgver=0.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Unix CD ripper aiming for accuracy over speed -- forked from morituri"
 arch=(x86_64)
 url="https://github.com/whipper-team/whipper";
@@ -33,7 +33,6 @@
 checkdepends=(python2-twisted)
 conflicts=(morituri accuraterip-checksum)
 provides=(accuraterip-checksum)
-replaces=(accuraterip-checksum)
 _tag=bf381b51f46735d1142c8b9c427cbd5b38ec31fd # git rev-parse v${pkgver}
 source=(git+${url}.git#tag=${_tag})
 sha512sums=(SKIP)


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

2019-10-31 Thread Bruno Pagani via arch-commits
Date: Thursday, October 31, 2019 @ 18:17:59
  Author: archange
Revision: 521634

upgpkg: whipper 0.8.0-1

Modified:
  whipper/trunk/PKGBUILD

--+
 PKGBUILD |   67 +
 1 file changed, 41 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-31 18:17:24 UTC (rev 521633)
+++ PKGBUILD2019-10-31 18:17:59 UTC (rev 521634)
@@ -1,4 +1,5 @@
-# Maintainer : Christian Rebischke 
+# Maintainer: Christian Rebischke 
+# Maintainer: Bruno Pagani 
 # Contributor: Frederik "Freso" S. Olesen 
 # Contributor: Bastien Traverse 
 # Contributor: Samantha Baldwin 
@@ -8,38 +9,52 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=whipper
-pkgver=0.7.3
+pkgver=0.8.0
 pkgrel=1
-pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
-arch=('any')
+pkgdesc="Unix CD ripper aiming for accuracy over speed -- forked from morituri"
+arch=(x86_64)
 url="https://github.com/whipper-team/whipper";
-license=('GPL3')
+license=(GPL3)
 depends=(
-'accuraterip-checksum'  # for accuraterip-checksum calculation
-'libcdio-paranoia'  # for the actual ripping
-'cdrdao'# for session, TOC, pregap, and ISRC 
extraction
-'libsndfile'# for reading wav files (pulls in flac, 
also required for reading flac files)
-'python2-mutagen'   # for metadata handling
-'python2-musicbrainzngs'# for metadata lookup
-'python2-pycdio'# for storing drive identification in 
config file
-'python2-setuptools'# for plugin support
-'sox'   # for track peak detection'
-'python2-gobject2'  # Bugfix FS#54074
-'python2-requests'
+libcdio-paranoia  # for the actual ripping
+cdrdao# for session, TOC, pregap, and ISRC 
extraction
+libsndfile# for reading wav files (pulls in flac, also 
required for reading flac files)
+python2-gobject
+python2-mutagen   # for metadata handling
+python2-musicbrainzngs# for metadata lookup
+python2-pycdio# for storing drive identification in config 
file
+python2-requests
+python2-setuptools# for plugin support
+sox   # for track peak detection'
+python2-ruamel.yaml   # for log output
 )
-checkdepends=(
-'python2-twisted'
-)
-conflicts=('morituri')
-source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha512sums=('ac96393471a6b4c40f5870f6e3183b65d43229314e2a1eacbf065c51ac61cbc772f2de3bde9f20ee1f7ffec427cd03c31f27df60eb6c621a699927646080c0ab')
+makedepends=(python2-setuptools-scm git)
+optdepends=(flac)
+checkdepends=(python2-twisted)
+conflicts=(morituri accuraterip-checksum)
+provides=(accuraterip-checksum)
+replaces=(accuraterip-checksum)
+_tag=bf381b51f46735d1142c8b9c427cbd5b38ec31fd # git rev-parse v${pkgver}
+source=(git+${url}.git#tag=${_tag})
+sha512sums=(SKIP)
 
+build() {
+cd ${pkgname}
+python2 setup.py build
+}
+
 check() {
-cd "$srcdir/${pkgname}-${pkgver}"
-python2 -m unittest discover
+cd ${pkgname}
+# https://github.com/whipper-team/whipper/issues/420
+sed -i 's|\\\.dev\[\\w\\\.\\+\]+|(\\.dev[\\w\\.+]+)?|' 
whipper/test/test_result_logger.py
+# The accuraterip C extension needs to be in the python path
+PYTHONPATH="build/lib.linux-${CARCH}-2.7/" python2 -m unittest discover
+# https://github.com/whipper-team/whipper/issues/422
+git checkout whipper/test/test_result_logger.py
 }
 
 package() {
-cd "$srcdir/${pkgname}-${pkgver}"
-python2 setup.py install --root="${pkgdir}"/ --optimize=1
+cd ${pkgname}
+python2 setup.py --version
+python2 setup.py install --root="${pkgdir}"/ --optimize=1 --skip-build
 }


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

2019-02-16 Thread Antonio Rojas via arch-commits
Date: Saturday, February 16, 2019 @ 10:01:47
  Author: arojas
Revision: 433103

Update mutagen dependency

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-16 10:01:38 UTC (rev 433102)
+++ PKGBUILD2019-02-16 10:01:47 UTC (rev 433103)
@@ -19,7 +19,7 @@
 'libcdio-paranoia'  # for the actual ripping
 'cdrdao'# for session, TOC, pregap, and ISRC 
extraction
 'libsndfile'# for reading wav files (pulls in flac, 
also required for reading flac files)
-'mutagen'   # for metadata handling
+'python2-mutagen'   # for metadata handling
 'python2-musicbrainzngs'# for metadata lookup
 'python2-pycdio'# for storing drive identification in 
config file
 'python2-setuptools'# for plugin support


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

2018-12-19 Thread Christian Rebischke via arch-commits
Date: Wednesday, December 19, 2018 @ 10:04:12
  Author: shibumi
Revision: 416756

upgpkg: whipper 0.7.3-1

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-19 08:54:50 UTC (rev 416755)
+++ PKGBUILD2018-12-19 10:04:12 UTC (rev 416756)
@@ -8,7 +8,7 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=whipper
-pkgver=0.7.2
+pkgver=0.7.3
 pkgrel=1
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
 arch=('any')
@@ -32,7 +32,7 @@
 )
 conflicts=('morituri')
 source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha512sums=('8be3c02e00d1a00878862d7e2bbd35e56b815cc30861f9cff980b14fea77f208680f1f76ecc135ccce0c3649b30ef88a383042ef377ca9e62993ace276be4365')
+sha512sums=('ac96393471a6b4c40f5870f6e3183b65d43229314e2a1eacbf065c51ac61cbc772f2de3bde9f20ee1f7ffec427cd03c31f27df60eb6c621a699927646080c0ab')
 
 check() {
 cd "$srcdir/${pkgname}-${pkgver}"


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

2018-11-01 Thread Christian Rebischke via arch-commits
Date: Thursday, November 1, 2018 @ 21:30:38
  Author: shibumi
Revision: 401156

upgpkg: whipper 0.7.2-1

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-01 20:53:42 UTC (rev 401155)
+++ PKGBUILD2018-11-01 21:30:38 UTC (rev 401156)
@@ -8,7 +8,7 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=whipper
-pkgver=0.7.1
+pkgver=0.7.2
 pkgrel=1
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
 arch=('any')
@@ -32,7 +32,7 @@
 )
 conflicts=('morituri')
 source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha512sums=('75a6e4dc4f482f7a370e269efb9541fb0870b59c50c485ebe4585479450322ace63d829523e864ddf15187b868b99ebf8bfa4ca6cbfdbe925d6cb09ed9be80c4')
+sha512sums=('8be3c02e00d1a00878862d7e2bbd35e56b815cc30861f9cff980b14fea77f208680f1f76ecc135ccce0c3649b30ef88a383042ef377ca9e62993ace276be4365')
 
 check() {
 cd "$srcdir/${pkgname}-${pkgver}"


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

2018-10-23 Thread Christian Rebischke via arch-commits
Date: Tuesday, October 23, 2018 @ 23:37:05
  Author: shibumi
Revision: 398738

upgpkg: whipper 0.7.1-1

new project url and removed cddbpy dependency

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-23 22:59:36 UTC (rev 398737)
+++ PKGBUILD2018-10-23 23:37:05 UTC (rev 398738)
@@ -8,15 +8,14 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=whipper
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
 arch=('any')
-url="https://github.com/JoeLametta/whipper";
+url="https://github.com/whipper-team/whipper";
 license=('GPL3')
 depends=(
 'accuraterip-checksum'  # for accuraterip-checksum calculation
-'cddb-py'   # for showing but not using disc info if 
not in MusicBrainz (issue #28)
 'libcdio-paranoia'  # for the actual ripping
 'cdrdao'# for session, TOC, pregap, and ISRC 
extraction
 'libsndfile'# for reading wav files (pulls in flac, 
also required for reading flac files)
@@ -33,7 +32,7 @@
 )
 conflicts=('morituri')
 source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha512sums=('b4bf4ca64521d8600288addecec6cbd8e43d1ff9a6b9a60872eff1bd5a2b6966af036d6467ba09273ac78aa01d8cac3be29a0e2c4e6600829b9988a74ef8cd88')
+sha512sums=('75a6e4dc4f482f7a370e269efb9541fb0870b59c50c485ebe4585479450322ace63d829523e864ddf15187b868b99ebf8bfa4ca6cbfdbe925d6cb09ed9be80c4')
 
 check() {
 cd "$srcdir/${pkgname}-${pkgver}"


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

2018-04-12 Thread Christian Rebischke via arch-commits
Date: Thursday, April 12, 2018 @ 14:33:07
  Author: shibumi
Revision: 316069

upgpkg: whipper 0.7.0-1

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-04-12 13:19:21 UTC (rev 316068)
+++ PKGBUILD2018-04-12 14:33:07 UTC (rev 316069)
@@ -8,7 +8,7 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=whipper
-pkgver=0.6.0
+pkgver=0.7.0
 pkgrel=1
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
 arch=('any')
@@ -33,13 +33,12 @@
 )
 conflicts=('morituri')
 source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha512sums=('50f1c4c31a62aadbabbb14a40b4336dc0191bcd82780ee65e3c054c1e0aec0d3a5970675a4076f18f284821ddb939e584bf8c3d392220b189103c6b6a692691f')
+sha512sums=('b4bf4ca64521d8600288addecec6cbd8e43d1ff9a6b9a60872eff1bd5a2b6966af036d6467ba09273ac78aa01d8cac3be29a0e2c4e6600829b9988a74ef8cd88')
 
-# currently disabled because of failing tests, reported upstream
-#check() {
-#cd "$srcdir/${pkgname}-${pkgver}"
-#python2 -m unittest discover
-#}
+check() {
+cd "$srcdir/${pkgname}-${pkgver}"
+python2 -m unittest discover
+}
 
 package() {
 cd "$srcdir/${pkgname}-${pkgver}"


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

2018-02-04 Thread Christian Rebischke via arch-commits
Date: Sunday, February 4, 2018 @ 18:54:02
  Author: shibumi
Revision: 289021

upgpkg: whipper 0.6.0-1

Changelog:
-
New Dependencies:
cdparanoia -> libcdio-paranoia
python2-requests

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-04 18:50:24 UTC (rev 289020)
+++ PKGBUILD2018-02-04 18:54:02 UTC (rev 289021)
@@ -8,8 +8,8 @@
 # Contributor: Mantas Mikulėnas 
 
 pkgname=whipper
-pkgver=0.5.1
-pkgrel=4
+pkgver=0.6.0
+pkgrel=1
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
 arch=('any')
 url="https://github.com/JoeLametta/whipper";
@@ -17,7 +17,7 @@
 depends=(
 'accuraterip-checksum'  # for accuraterip-checksum calculation
 'cddb-py'   # for showing but not using disc info if 
not in MusicBrainz (issue #28)
-'cdparanoia'# for the actual ripping
+'libcdio-paranoia'  # for the actual ripping
 'cdrdao'# for session, TOC, pregap, and ISRC 
extraction
 'libsndfile'# for reading wav files (pulls in flac, 
also required for reading flac files)
 'mutagen'   # for metadata handling
@@ -26,6 +26,7 @@
 'python2-setuptools'# for plugin support
 'sox'   # for track peak detection'
 'python2-gobject2'  # Bugfix FS#54074
+'python2-requests'
 )
 checkdepends=(
 'python2-twisted'
@@ -32,7 +33,7 @@
 )
 conflicts=('morituri')
 source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
-sha512sums=('0df0cd9934c344617a15c12f21e333d7b5d270c904d70df9930b24188c5657aed8bedd202acda59990143fafe9c27b2ee880939d034be52259cc143423d04348')
+sha512sums=('50f1c4c31a62aadbabbb14a40b4336dc0191bcd82780ee65e3c054c1e0aec0d3a5970675a4076f18f284821ddb939e584bf8c3d392220b189103c6b6a692691f')
 
 # currently disabled because of failing tests, reported upstream
 #check() {


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

2017-05-19 Thread Christian Rebischke
Date: Friday, May 19, 2017 @ 09:06:53
  Author: shibumi
Revision: 228518

upgpkg: whipper 0.5.1-4

Modified:
  whipper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-19 08:39:44 UTC (rev 228517)
+++ PKGBUILD2017-05-19 09:06:53 UTC (rev 228518)
@@ -9,7 +9,7 @@
 
 pkgname=whipper
 pkgver=0.5.1
-pkgrel=3
+pkgrel=4
 pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from 
morituri"
 arch=('any')
 url="https://github.com/JoeLametta/whipper";
@@ -25,10 +25,8 @@
 'python2-pycdio'# for storing drive identification in 
config file
 'python2-setuptools'# for plugin support
 'sox'   # for track peak detection'
+'python2-gobject2'  # Bugfix FS#54074
 )
-makedepends=(
-'python2-gobject2'
-)
 checkdepends=(
 'python2-twisted'
 )