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

2020-10-16 Thread Maxime Gauduin via arch-commits
Date: Friday, October 16, 2020 @ 06:53:26
  Author: alucryd
Revision: 398428

upgpkg: soundtouch 2.2-1

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-16 06:43:30 UTC (rev 398427)
+++ PKGBUILD2020-10-16 06:53:26 UTC (rev 398428)
@@ -2,16 +2,24 @@
 # Contributor: Eric Bélanger 
 
 pkgname=soundtouch
-pkgver=2.1.2
-pkgrel=2
+pkgver=2.2
+pkgrel=1
 pkgdesc='An audio processing library'
 arch=(x86_64)
-url='https://www.surina.net/soundtouch/'
+url=https://www.surina.net/soundtouch/
 license=(LGPL)
+depends=(gcc-libs)
 makedepends=(git)
-source=(git+https://gitlab.com/soundtouch/soundtouch.git#tag=${pkgver})
+_tag=762f56024b7ade81f6565903161dffec0ad4741e
+source=(git+https://gitlab.com/soundtouch/soundtouch.git#tag=${_tag})
 sha256sums=(SKIP)
 
+pkgver() {
+  cd soundtouch
+
+  git describe --tags
+}
+
 prepare() {
   cd soundtouch
 
@@ -22,13 +30,13 @@
   cd soundtouch
 
   ./configure \
---prefix='/usr' \
+--prefix=/usr \
 --enable-shared
   make
 }
 
 package() {
-  make DESTDIR="${pkgdir}" pkgdocdir='/usr/share/doc/soundtouch' -C soundtouch 
install
+  make DESTDIR="${pkgdir}" pkgdocdir=/usr/share/doc/soundtouch -C soundtouch 
install
 }
 
 # vim: ts=2 sw=2 et:


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

2020-05-19 Thread Felix Yan via arch-commits
Date: Tuesday, May 19, 2020 @ 08:24:00
  Author: felixonmars
Revision: 386279

upgpkg: soundtouch 2.1.2-2: reproducibility rebuild

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 08:23:56 UTC (rev 386278)
+++ PKGBUILD2020-05-19 08:24:00 UTC (rev 386279)
@@ -3,7 +3,7 @@
 
 pkgname=soundtouch
 pkgver=2.1.2
-pkgrel=1
+pkgrel=2
 pkgdesc='An audio processing library'
 arch=(x86_64)
 url='https://www.surina.net/soundtouch/'


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

2018-12-03 Thread Maxime Gauduin via arch-commits
Date: Monday, December 3, 2018 @ 12:34:06
  Author: alucryd
Revision: 340971

upgpkg: soundtouch 2.1.2-1

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-12-03 11:05:48 UTC (rev 340970)
+++ PKGBUILD2018-12-03 12:34:06 UTC (rev 340971)
@@ -1,7 +1,8 @@
-# Maintainer: Eric Bélanger 
+# Maintainer: Maxime Gauduin 
+# Contributor: Eric Bélanger 
 
 pkgname=soundtouch
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 pkgdesc='An audio processing library'
 arch=(x86_64)


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

2018-11-24 Thread Maxime Gauduin via arch-commits
Date: Saturday, November 24, 2018 @ 12:22:31
  Author: alucryd
Revision: 340375

upgpkg: soundtouch 2.1.1-1

Modified:
  soundtouch/trunk/PKGBUILD

--+
 PKGBUILD |   34 +++---
 1 file changed, 19 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-24 12:10:45 UTC (rev 340374)
+++ PKGBUILD2018-11-24 12:22:31 UTC (rev 340375)
@@ -1,29 +1,33 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=soundtouch
-pkgver=2.1.0
+pkgver=2.1.1
 pkgrel=1
-pkgdesc="An audio processing library"
-arch=('x86_64')
-url="http://www.surina.net/soundtouch/;
-license=('LGPL')
-depends=('gcc-libs')
-source=(https://gitlab.com/soundtouch/soundtouch/-/archive/$pkgver/$pkgname-$pkgver.tar.gz)
-sha256sums=('454712b08bf758f6a4c0df8821350c323e5b274443a20e21d193d17c5dc3d0d5')
+pkgdesc='An audio processing library'
+arch=(x86_64)
+url='http://www.surina.net/soundtouch/'
+license=(LGPL)
+makedepends=(git)
+source=(git+https://gitlab.com/soundtouch/soundtouch.git#tag=${pkgver})
+sha256sums=(SKIP)
 
 prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
+  cd soundtouch
+
+  ./bootstrap
 }
 
 build() {
-  cd $pkgname-$pkgver
-  ./bootstrap
-  ./configure --prefix=/usr --enable-shared ${CONFIGFLAG}
+  cd soundtouch
+
+  ./configure \
+--prefix='/usr' \
+--enable-shared
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" pkgdocdir=/usr/share/doc/soundtouch install
+  make DESTDIR="${pkgdir}" pkgdocdir='/usr/share/doc/soundtouch' -C soundtouch 
install
 }
+
+# vim: ts=2 sw=2 et:


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

2018-09-28 Thread Antonio Rojas via arch-commits
Date: Friday, September 28, 2018 @ 10:58:29
  Author: arojas
Revision: 335505

Update to 2.1.0

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-09-28 10:27:04 UTC (rev 335504)
+++ PKGBUILD2018-09-28 10:58:29 UTC (rev 335505)
@@ -1,7 +1,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=soundtouch
-pkgver=2.0.0
+pkgver=2.1.0
 pkgrel=1
 pkgdesc="An audio processing library"
 arch=('x86_64')
@@ -8,17 +8,16 @@
 url="http://www.surina.net/soundtouch/;
 license=('LGPL')
 depends=('gcc-libs')
-source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('a6829c6b00b8ea684a4998929b1ad05adac449f7')
+source=(https://gitlab.com/soundtouch/soundtouch/-/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('454712b08bf758f6a4c0df8821350c323e5b274443a20e21d193d17c5dc3d0d5')
 
 prepare() {
-  cd ${pkgname}
+  cd $pkgname-$pkgver
   sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
 }
 
 build() {
-  cd ${pkgname}
-  [ "${CARCH}" = "x86_64" ] && CONFIGFLAG="--with-pic"
+  cd $pkgname-$pkgver
   ./bootstrap
   ./configure --prefix=/usr --enable-shared ${CONFIGFLAG}
   make
@@ -25,6 +24,6 @@
 }
 
 package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" pkgdocdir=/usr/share/doc/soundtouch install
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" pkgdocdir=/usr/share/doc/soundtouch install
 }


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

2017-08-19 Thread Antonio Rojas
Date: Saturday, August 19, 2017 @ 20:42:00
  Author: arojas
Revision: 302908

Update to 2.0.0

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-19 20:38:57 UTC (rev 302907)
+++ PKGBUILD2017-08-19 20:42:00 UTC (rev 302908)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=soundtouch
-pkgver=1.9.2
+pkgver=2.0.0
 pkgrel=1
 pkgdesc="An audio processing library"
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('LGPL')
 depends=('gcc-libs')
 source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('847be1bc987e410cc7349fdd83f353f4372534d1')
+sha1sums=('a6829c6b00b8ea684a4998929b1ad05adac449f7')
 
 prepare() {
   cd ${pkgname}


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

2016-04-16 Thread Maxime Gauduin
Date: Saturday, April 16, 2016 @ 18:37:51
  Author: alucryd
Revision: 265051

upgpkg: soundtouch 1.9.2-1

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-16 15:31:31 UTC (rev 265050)
+++ PKGBUILD2016-04-16 16:37:51 UTC (rev 265051)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger 
 
 pkgname=soundtouch
-pkgver=1.9.0
-pkgrel=3
+pkgver=1.9.2
+pkgrel=1
 pkgdesc="An audio processing library"
 arch=('i686' 'x86_64')
 url="http://www.surina.net/soundtouch/;
@@ -10,7 +10,7 @@
 license=('LGPL')
 depends=('gcc-libs')
 source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('25c6103b7116a53570a3f7d5b291621442173906')
+sha1sums=('847be1bc987e410cc7349fdd83f353f4372534d1')
 
 prepare() {
   cd ${pkgname}


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

2015-12-05 Thread Felix Yan
Date: Saturday, December 5, 2015 @ 16:30:56
  Author: fyan
Revision: 252424

C++11 ABI rebuild

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-05 15:30:02 UTC (rev 252423)
+++ PKGBUILD2015-12-05 15:30:56 UTC (rev 252424)
@@ -3,7 +3,7 @@
 
 pkgname=soundtouch
 pkgver=1.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc="An audio processing library"
 arch=('i686' 'x86_64')
 url="http://www.surina.net/soundtouch/;


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

2015-12-05 Thread Bartłomiej Piotrowski
Date: Saturday, December 5, 2015 @ 16:41:25
  Author: bpiotrowski
Revision: 252442

C++11 ABI rebuild

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-12-05 15:39:41 UTC (rev 252441)
+++ PKGBUILD2015-12-05 15:41:25 UTC (rev 252442)
@@ -3,7 +3,7 @@
 
 pkgname=soundtouch
 pkgver=1.9.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An audio processing library"
 arch=('i686' 'x86_64')
 url="http://www.surina.net/soundtouch/;


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

2015-07-14 Thread Eric Bélanger
Date: Wednesday, July 15, 2015 @ 01:38:29
  Author: eric
Revision: 242231

upgpkg: soundtouch 1.9.0-1

Upstream update

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-07-14 23:01:04 UTC (rev 242230)
+++ PKGBUILD2015-07-14 23:38:29 UTC (rev 242231)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=soundtouch
-pkgver=1.8.0
+pkgver=1.9.0
 pkgrel=1
 pkgdesc=An audio processing library
 arch=('i686' 'x86_64')
@@ -10,7 +10,7 @@
 license=('LGPL')
 depends=('gcc-libs')
 source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('2cee2c63194227b4a58da01a7cd92b8632f139cd')
+sha1sums=('25c6103b7116a53570a3f7d5b291621442173906')
 
 prepare() {
   cd ${pkgname}


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

2014-03-17 Thread Eric Bélanger
Date: Tuesday, March 18, 2014 @ 05:35:27
  Author: eric
Revision: 208128

upgpkg: soundtouch 1.8.0-1

Upstream update

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-03-18 04:27:17 UTC (rev 208127)
+++ PKGBUILD2014-03-18 04:35:27 UTC (rev 208128)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=soundtouch
-pkgver=1.7.1
+pkgver=1.8.0
 pkgrel=1
 pkgdesc=An audio processing library
 arch=('i686' 'x86_64')
@@ -10,12 +10,16 @@
 license=('LGPL')
 depends=('gcc-libs')
 source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('8b1a461754853f9c7328571449b7f9b8bd578a89')
+sha1sums=('2cee2c63194227b4a58da01a7cd92b8632f139cd')
 
+prepare() {
+  cd ${pkgname}
+  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
+}
+
 build() {
-  cd ${srcdir}/${pkgname}
+  cd ${pkgname}
   [ ${CARCH} = x86_64 ]  CONFIGFLAG=--with-pic
-  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
   ./bootstrap
   ./configure --prefix=/usr --enable-shared ${CONFIGFLAG}
   make
@@ -22,6 +26,6 @@
 }
 
 package() {
-  cd ${srcdir}/${pkgname}
+  cd ${pkgname}
   make DESTDIR=${pkgdir} pkgdocdir=/usr/share/doc/soundtouch install
 }



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

2009-11-17 Thread Giovanni Scafora
Date: Tuesday, November 17, 2009 @ 16:41:04
  Author: giovanni
Revision: 58943

upgpkg: soundtouch 1.4.0-2
Upstream changed pkgconfig filename

Modified:
  soundtouch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2009-11-17 21:26:43 UTC (rev 58942)
+++ PKGBUILD2009-11-17 21:41:04 UTC (rev 58943)
@@ -5,7 +5,7 @@
 
 pkgname=soundtouch
 pkgver=1.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=An audio processing library
 arch=('i686' 'x86_64')
 url=http://www.surina.net/soundtouch/;
@@ -30,4 +30,6 @@
   fi
   make || return 1
   make DESTDIR=${pkgdir} pkgdocdir=/usr/share/doc/soundtouch install || 
return 1
+  # Upstream changed pkgconfig filename
+  ln -sf soundtouch-1.4.pc ${pkgdir}/usr/lib/pkgconfig/soundtouch-1.0.pc || 
return 1
 }