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

2020-06-18 Thread David Runge via arch-commits
Date: Thursday, June 18, 2020 @ 21:00:07
  Author: dvzrv
Revision: 647574

upgpkg: qastools 0.23.0-1: Upgrading to 0.23.0.

Adding all available sodeps in package() and moving respective packages to 
makedepends.
Applying latest cmake packaging guidelines.

Modified:
  qastools/trunk/PKGBUILD

--+
 PKGBUILD |   31 ++-
 1 file changed, 14 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-18 20:38:12 UTC (rev 647573)
+++ PKGBUILD2020-06-18 21:00:07 UTC (rev 647574)
@@ -1,8 +1,8 @@
-# Maintainer: David Runge 
+# Maintainer: David Runge 
 # Contributor: Esclapion 
 
 pkgname=qastools
-pkgver=0.22.0
+pkgver=0.23.0
 pkgrel=1
 pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
 arch=('x86_64')
@@ -9,33 +9,30 @@
 url="https://gitlab.com/sebholt/qastools;
 license=('GPL3')
 groups=('pro-audio')
-depends=('alsa-lib' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libudev.so'
-'qt5-base' 'qt5-svg')
-makedepends=('cmake' 'qt5-tools')
+depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'qt5-base'
+'qt5-svg')
+makedepends=('alsa-lib' 'cmake' 'qt5-tools' 'systemd-libs')
 
source=("https://gitlab.com/sebholt/${pkgname}/-/archive/v${pkgver}/qastools-v${pkgver}.tar.gz;)
-sha512sums=('9656960095520a1bee58efa3985dda30fae1b6be666dfd65b50cb582be21a40d273a1c06b69e870bc2b467f5d644b22ea30c2fd73eee9057b50de5e85864d712')
+sha512sums=('79042a41a0ad37097d297175b899af73052953b7ae14058a1878e3145769db839b8bd4350bd36646d8436a3e8b37b64da7b3004bee3c7c7780d46a942af1d3b9')
 
 prepare() {
   mv -v "${pkgname}-v${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  mkdir -vp build
 }
 
 build() {
   cd "${pkgname}-${pkgver}"
-  (
-cd build
-cmake -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DUSE_QT5=ON \
-  ..
-  )
-  make -C build
+  cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE='None'\
+-Wno-dev \
+-B build \
+-S .
+  make VERBOSE=1 -C build
 }
 
 package() {
+  depends+=('libasound.so' 'libudev.so')
   cd "${pkgname}-${pkgver}"
-  make -C build DESTDIR="${pkgdir}/" install
+  make -C build VERBOSE=1 DESTDIR="${pkgdir}/" install
   install -vDm 644 {CHANGELOG,README.md,TODO} \
 -t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2019-10-03 Thread David Runge via arch-commits
Date: Thursday, October 3, 2019 @ 13:35:43
  Author: dvzrv
Revision: 512501

upgpkg: qastools 0.22.0-1

Upgrading to 0.22.0. Switching to new upstream on gitlab. Minor cleanup.

Modified:
  qastools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-03 13:07:51 UTC (rev 512500)
+++ PKGBUILD2019-10-03 13:35:43 UTC (rev 512501)
@@ -2,35 +2,41 @@
 # Contributor: Esclapion 
 
 pkgname=qastools
-pkgver=0.21.0
-pkgrel=4
+pkgver=0.22.0
+pkgrel=1
 pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
 arch=('x86_64')
-url="https://xwmw.org/qastools/;
+url="https://gitlab.com/sebholt/qastools;
 license=('GPL3')
 groups=('pro-audio')
-depends=('alsa-lib' 'hicolor-icon-theme' 'qt5-svg')
+depends=('alsa-lib' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libudev.so'
+'qt5-base' 'qt5-svg')
 makedepends=('cmake' 'qt5-tools')
-replaces=('qastools-qt5')
-source=("https://sourceforge.net/projects/${pkgname}/files/${pkgver}/${pkgname}_${pkgver}.tar.bz2;)
-sha512sums=('f1410129ead6a779a0ef517ce437b2d7c09e8d386fc81edeb1f99718820b6ef7edd562477058a2e935bae703a3c621912b1f7e18416f43d20263fa4f8d4b61dc')
+source=("https://gitlab.com/sebholt/${pkgname}/-/archive/v${pkgver}/qastools-v${pkgver}.tar.gz;)
+sha512sums=('9656960095520a1bee58efa3985dda30fae1b6be666dfd65b50cb582be21a40d273a1c06b69e870bc2b467f5d644b22ea30c2fd73eee9057b50de5e85864d712')
 
 prepare() {
-  cd "${pkgname}_${pkgver}"
-  mkdir -p build
+  mv -v "${pkgname}-v${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  mkdir -vp build
 }
 
 build() {
-  cd "${pkgname}_${pkgver}/build"
-  cmake .. -DUSE_QT5=ON \
--DCMAKE_INSTALL_PREFIX='/usr' \
--DCMAKE_BUILD_TYPE=Release
+  cd "${pkgname}-${pkgver}"
+  (
+cd build
+cmake -DCMAKE_INSTALL_PREFIX='/usr' \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DUSE_QT5=ON \
+  ..
+  )
+  make -C build
 }
 
 package() {
-  cd "${pkgname}_${pkgver}/build"
-  make DESTDIR="${pkgdir}/" install
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm 644 ../{CHANGELOG,README,TODO}
+  cd "${pkgname}-${pkgver}"
+  make -C build DESTDIR="${pkgdir}/" install
+  install -vDm 644 {CHANGELOG,README.md,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }
 


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

2019-02-06 Thread David Runge via arch-commits
Date: Wednesday, February 6, 2019 @ 20:47:23
  Author: dvzrv
Revision: 429756

Switching to https for url.

Modified:
  qastools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-02-06 20:45:51 UTC (rev 429755)
+++ PKGBUILD2019-02-06 20:47:23 UTC (rev 429756)
@@ -6,7 +6,7 @@
 pkgrel=4
 pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
 arch=('x86_64')
-url="http://xwmw.org/qastools/;
+url="https://xwmw.org/qastools/;
 license=('GPL3')
 groups=('pro-audio')
 depends=('alsa-lib' 'hicolor-icon-theme' 'qt5-svg')


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

2018-06-04 Thread David Runge via arch-commits
Date: Monday, June 4, 2018 @ 16:47:25
  Author: dvzrv
Revision: 340407

upgpkg: qastools 0.21.0-4

Adding to pro-audio group.

Modified:
  qastools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-06-04 15:40:58 UTC (rev 340406)
+++ PKGBUILD2018-06-04 16:47:25 UTC (rev 340407)
@@ -3,11 +3,12 @@
 
 pkgname=qastools
 pkgver=0.21.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
 arch=('x86_64')
 url="http://xwmw.org/qastools/;
 license=('GPL3')
+groups=('pro-audio')
 depends=('alsa-lib' 'hicolor-icon-theme' 'qt5-svg')
 makedepends=('cmake' 'qt5-tools')
 replaces=('qastools-qt5')
@@ -30,6 +31,6 @@
   cd "${pkgname}_${pkgver}/build"
   make DESTDIR="${pkgdir}/" install
   install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm644 ../{CHANGELOG,README,TODO}
+-vDm 644 ../{CHANGELOG,README,TODO}
 }
 


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

2018-02-07 Thread David Runge via arch-commits
Date: Wednesday, February 7, 2018 @ 14:08:12
  Author: dvzrv
Revision: 289997

upgpkg: qastools 0.21.0-3

Rebuild for community. Adding docs.

Modified:
  qastools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-07 14:07:48 UTC (rev 289996)
+++ PKGBUILD2018-02-07 14:08:12 UTC (rev 289997)
@@ -3,7 +3,7 @@
 
 pkgname=qastools
 pkgver=0.21.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
 arch=('x86_64')
 url="http://xwmw.org/qastools/;
@@ -29,5 +29,7 @@
 package() {
   cd "${pkgname}_${pkgver}/build"
   make DESTDIR="${pkgdir}/" install
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 ../{CHANGELOG,README,TODO}
 }
 


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

2018-01-31 Thread David Runge via arch-commits
Date: Wednesday, January 31, 2018 @ 13:59:14
  Author: dvzrv
Revision: 288403

upgpkg: qastools 0.21.0-2

Adding CMAKE_BUILD_TYPE=Release.

Modified:
  qastools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-31 13:39:21 UTC (rev 288402)
+++ PKGBUILD2018-01-31 13:59:14 UTC (rev 288403)
@@ -3,7 +3,7 @@
 
 pkgname=qastools
 pkgver=0.21.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A collection of desktop applications for the Linux sound system ALSA."
 arch=('x86_64')
 url="http://xwmw.org/qastools/;
@@ -22,7 +22,8 @@
 build() {
   cd "${pkgname}_${pkgver}/build"
   cmake .. -DUSE_QT5=ON \
--DCMAKE_INSTALL_PREFIX=/usr
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DCMAKE_BUILD_TYPE=Release
 }
 
 package() {