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

David Runge dvzrv at archlinux.org
Sat Apr 11 13:19:40 UTC 2020


    Date: Saturday, April 11, 2020 @ 13:19:40
  Author: dvzrv
Revision: 613339

upgpkg: geonkick 1.10.0-2: Rebuilding to fail hard on lv2lint.

The call to lv2lint with LV2_PATH set or using the -I switch behave differently.
The former fails on X11UI, while the latter does not.

Modified:
  geonkick/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-04-11 12:51:37 UTC (rev 613338)
+++ PKGBUILD	2020-04-11 13:19:40 UTC (rev 613339)
@@ -2,7 +2,7 @@
 
 pkgname=geonkick
 pkgver=1.10.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A free software percussion synthesizer"
 arch=('x86_64')
 url="https://gitlab.com/iurie/geonkick"
@@ -10,7 +10,7 @@
 groups=('pro-audio')
 depends=('cairo' 'gcc-libs' 'glibc' 'hicolor-icon-theme' 'libx11')
 makedepends=('cmake' 'jack' 'libsndfile' 'lv2' 'rapidjson' 'redkite')
-checkdepends=('lv2lint' 'sord')
+checkdepends=('lv2lint')
 optdepends=('jack: for standalone application')
 source=("https://gitlab.com/iurie/geonkick/-/archive/v${pkgver}/$pkgname-v$pkgver.tar.gz")
 sha512sums=('acf9141bfaaf58b7817ccfe6a0ba4cbe1cbdc6d324b49330475cfd353221d18e7a775a7e8051af383fd2cf196079feacc70f3e2570bb37cb9c1b632e5edf6254')
@@ -30,7 +30,11 @@
 
 check() {
   cd "$pkgname-$pkgver"
-  LV2_PATH="${PWD}/plugin/lv2" lv2lint "http://geontime.com/geonkick" || echo "Known to fail: https://gitlab.com/geontime/geonkick/issues/144"
+  cp -av build/plugin/lv2/*.so plugin/lv2/${pkgname}.lv2/
+  lv2lint -I "${PWD}/plugin/lv2/${pkgname}.lv2/" \
+          "http://geontime.com/geonkick" \
+          || echo "Known to fail: https://gitlab.com/geontime/geonkick/issues/144"
+  rm -v plugin/lv2/${pkgname}.lv2/*.so
 }
 
 package() {



More information about the arch-commits mailing list