David Runge pushed to branch main at Arch Linux / Packaging / Packages / 
zita-lrx


Commits:
dc3b52a2 by David Runge at 2026-01-12T21:16:37+01:00
Update maintainer info

Signed-off-by: David Runge <[email protected]>

- - - - -
3d8a2710 by David Runge at 2026-01-12T21:22:46+01:00
Remove unnecessary quotes and curly braces

Signed-off-by: David Runge <[email protected]>

- - - - -
4a1982b9 by David Runge at 2026-01-12T21:23:54+01:00
Switch to correct SPDX license identifier

Signed-off-by: David Runge <[email protected]>

- - - - -
02406da6 by David Runge at 2026-01-12T21:26:46+01:00
Consolidate direct dependencies

Signed-off-by: David Runge <[email protected]>

- - - - -
2e872ae5 by David Runge at 2026-01-12T21:27:20+01:00
Add nvchecker integration

Signed-off-by: David Runge <[email protected]>

- - - - -
eff5a338 by David Runge at 2026-01-12T21:29:39+01:00
upgpkg: 0.1.2-4

Rebuild to fix various issues (license identifier, direct dependencies, etc.)

- - - - -


3 changed files:

- .SRCINFO
- + .nvchecker.toml
- PKGBUILD


Changes:

=====================================
.SRCINFO
=====================================
@@ -1,14 +1,17 @@
 pkgbase = zita-lrx
        pkgdesc = Command line JACK application providing 2, 3, or 4-band, 4th 
order crossover filters
        pkgver = 0.1.2
-       pkgrel = 3
+       pkgrel = 4
        url = https://kokkinizita.linuxaudio.org/linuxaudio/
        arch = x86_64
        groups = pro-audio
-       license = GPL3
+       license = GPL-3.0-or-later
        depends = clthreads
+       depends = gcc-libs
+       depends = glibc
        depends = jack
        source = 
https://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-lrx-0.1.2.tar.bz2
        sha512sums = 
a3f74f788e2bb9d1ad13aa454552a61e08ca7b56fd286ee070aa746c40f9bc351ce8142dcd384a11b870b2379d531959c896a058e5601020ad82ac8a4cd92f09
+       b2sums = 
8f7babd3e58aa60996b8b4a9fb8fceca56b58f9e1dbf4065b19deba2589d7db89bfb392f66ae18a00f35573ba0c489a4f99b3d6cb69e95562532866b42f31ddb
 
 pkgname = zita-lrx


=====================================
.nvchecker.toml
=====================================
@@ -0,0 +1,4 @@
+[zita-lrx]
+source = "regex"
+regex = 'zita-lrx-([\d.]+)\.tar\..*?'
+url = "https://kokkinizita.linuxaudio.org/linuxaudio/downloads/index.html";


=====================================
PKGBUILD
=====================================
@@ -1,34 +1,36 @@
-# Maintainer: David Runge <[email protected]>
+# Maintainer: David Runge <[email protected]>
+
 pkgname=zita-lrx
 pkgver=0.1.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Command line JACK application providing 2, 3, or 4-band, 4th order 
crossover filters"
-arch=('x86_64')
+arch=(x86_64)
 url="https://kokkinizita.linuxaudio.org/linuxaudio/";
-license=('GPL3')
-groups=('pro-audio')
-depends=('clthreads' 'jack')
-source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2";)
+license=(GPL-3.0-or-later)
+groups=(pro-audio)
+depends=(
+  clthreads
+  gcc-libs
+  glibc
+  jack
+)
+source=(https://kokkinizita.linuxaudio.org/linuxaudio/downloads/$pkgname-$pkgver.tar.bz2)
 
sha512sums=('a3f74f788e2bb9d1ad13aa454552a61e08ca7b56fd286ee070aa746c40f9bc351ce8142dcd384a11b870b2379d531959c896a058e5601020ad82ac8a4cd92f09')
+b2sums=('8f7babd3e58aa60996b8b4a9fb8fceca56b58f9e1dbf4065b19deba2589d7db89bfb392f66ae18a00f35573ba0c489a4f99b3d6cb69e95562532866b42f31ddb')
 
 prepare() {
-  cd "${pkgname}-${pkgver}/source"
   # remove optimization
-  sed -e '/native/d' -i Makefile
+  sed -e '/native/d' -i $pkgname-$pkgver/source/Makefile
 }
 
 build() {
-  cd "${pkgname}-${pkgver}/source"
-  make
+  make -C $pkgname-$pkgver/source
 }
 
 package() {
-  cd "${pkgname}-${pkgver}/source"
-  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  make PREFIX=/usr DESTDIR="$pkgdir/" install -C $pkgname-$pkgver/source
   # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
-    -vDm 644 ../{AUTHORS,README*}
+  install -vDm 644 $pkgname-$pkgver/{AUTHORS,README*} -t 
"$pkgdir/usr/share/doc/$pkgname/"
   # examples
-  install -t "${pkgdir}/usr/share/${pkgname}/examples" \
-    -vDm 644 ../examples/*
+  install -vDm 644 $pkgname-$pkgver/examples/* -t 
"$pkgdir/usr/share/$pkgname/examples/" 
 }



View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zita-lrx/-/compare/f314d30e8b93f185cf31a89e2b78464c9246c8e0...eff5a338b4216646883440a56ad298778bc04350

-- 
View it on GitLab: 
https://gitlab.archlinux.org/archlinux/packaging/packages/zita-lrx/-/compare/f314d30e8b93f185cf31a89e2b78464c9246c8e0...eff5a338b4216646883440a56ad298778bc04350
You're receiving this email because of your account on gitlab.archlinux.org.


Reply via email to