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

David Runge dvzrv at archlinux.org
Thu Jul 26 07:07:30 UTC 2018


    Date: Thursday, July 26, 2018 @ 07:07:30
  Author: dvzrv
Revision: 363468

upgpkg: lilv 0.24.4-1

Upgrading to 0.24.4. Switching to python2 for waf scripts.

Modified:
  lilv/trunk/PKGBUILD

----------+
 PKGBUILD |   22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2018-07-26 06:59:07 UTC (rev 363467)
+++ PKGBUILD	2018-07-26 07:07:30 UTC (rev 363468)
@@ -1,20 +1,20 @@
 # $Id$
-# Maintainer: Ray Rashif <schiv at archlinux.org>
 # Maintainer: David Runge <dave at sleepmap.de>
+# Contributor: Ray Rashif <schiv at archlinux.org>
 # Contributor: speps <speps at aur dot archlinux dot org>
 
 pkgname=lilv
-pkgver=0.24.2
-pkgrel=2
+pkgver=0.24.4
+pkgrel=1
 pkgdesc="A C library interface to the LV2 plug-in standard"
 arch=('x86_64')
 url="https://drobilla.net/software/lilv/"
 license=('custom:ISC')
 depends=('sratom' 'jack')
-makedepends=('swig' 'python')
+makedepends=('swig' 'python2')
 optdepends=('bash-completion: completion for bash')
 source=("https://download.drobilla.net/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('b5d04b6bb1fb4d3a9a58d93b233db502dc2ded75672766a31d252abca657cbf2d170fa590c0c56159b2bac68c7af95d8787a512e318e3a0f30855504bb034659'
+sha512sums=('cb909c83dbac36b51a206fe508aec51e52ddf068f9a159d053888594402def8d140aae0d9e1e1866e722396f7ec8dea4b86d4c1b958f56eb3193b78307918a89'
             'SKIP')
 validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3')
 
@@ -26,26 +26,26 @@
 
 build() {
   cd "${pkgname}-${pkgver}"
-  python waf configure --prefix=/usr \
+  python2 waf configure --prefix=/usr \
                        --no-bash-completion \
                        --dyn-manifest \
                        --test
-  python waf build
+  python2 waf build
 }
 
 check() {
   cd "${pkgname}-${pkgver}"
-  python waf test
+  python2 waf test
 }
 
 package() {
   cd "${pkgname}-${pkgver}"
-  python waf install --destdir="${pkgdir}"
+  python2 waf install --destdir="${pkgdir}"
   # license
-  install -vDm644 COPYING \
+  install -vDm 644 COPYING \
     "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
   # bash completion
-  install -vDm644 utils/lilv.bash_completion\
+  install -vDm 644 utils/lilv.bash_completion\
     "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
 }
 



More information about the arch-commits mailing list