[arch-commits] Commit in lv2/repos/community-x86_64 (PKGBUILD PKGBUILD)

David Runge dvzrv at archlinux.org
Sun Apr 26 15:58:12 UTC 2020


    Date: Sunday, April 26, 2020 @ 15:58:11
  Author: dvzrv
Revision: 621629

archrelease: copy trunk to community-x86_64

Added:
  lv2/repos/community-x86_64/PKGBUILD
    (from rev 621628, lv2/trunk/PKGBUILD)
Deleted:
  lv2/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  131 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 69 insertions(+), 62 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-04-26 15:57:32 UTC (rev 621628)
+++ PKGBUILD	2020-04-26 15:58:11 UTC (rev 621629)
@@ -1,62 +0,0 @@
-# Maintainer: David Runge <dvzrv at archlinux.org>
-# Contributor: Ray Rashif <schiv at archlinux.org>
-
-pkgname=lv2
-pkgver=1.16.0
-pkgrel=4
-pkgdesc="Plugin standard for audio systems"
-url="http://lv2plug.in/"
-license=('ISC')
-arch=('x86_64')
-makedepends=('asciidoc' 'doxygen' 'gtk2' 'libsndfile' 'pygmentize'
-'python-pygments' 'python-rdflib' 'waf')
-optdepends=('sord: for lv2_validate'
-            'libsndfile: for eg-sampler.lv2'
-            'gtk2: for eg-scope.lv2'
-            'python-pygments: for lv2specgen.py'
-            'python-rdflib: for lv2specgen.py')
-source=("https://lv2plug.in/spec/${pkgname}-${pkgver}.tar.bz2"{,.sig})
-sha512sums=('ead6d590cded5dd7a548d6ffe0f2f9f8efadfa7bb9e8b4fa0aea6664ccdfbb3ca697514bddebe695a9442fba5b62714b5cd45c1bf7d0aaef12ffe50972c2d88c'
-            'SKIP')
-validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard <d at drobilla.net>
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # let wscript(s) find the custom waf scripts
-  mkdir -pv tools
-  touch __init__.py
-  cp -v waflib/extras/{autowaf,lv2}.py tools/
-  mkdir -pv plugins/tools/
-  cp -v waflib/extras/{autowaf,lv2}.py plugins/tools/
-  rm -rv waflib
-  sed -e 's/waflib.extras/tools/g' \
-      -e "s/load('autowaf'/load('autowaf', tooldir='tools'/g" \
-      -e "s/load('lv2'/load('lv2', tooldir='tools'/g" \
-      -i {,plugins/,plugins/*/}wscript
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  # --docs is currently broken: https://gitlab.com/lv2/lv2/issues/28
-  waf -vv configure --prefix=/usr \
-                --libdir=/usr/lib \
-                --test
-  waf -vv build $MAKEFLAGS
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  waf test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  waf install --destdir="${pkgdir}"
-  # license
-  install -vDm 644 COPYING \
-    -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-  # docs
-  install -vDm 644 {NEWS,README.md} \
-    -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-# vim:set ts=2 sw=2 et:

Copied: lv2/repos/community-x86_64/PKGBUILD (from rev 621628, lv2/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-04-26 15:58:11 UTC (rev 621629)
@@ -0,0 +1,69 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Ray Rashif <schiv at archlinux.org>
+
+pkgname=lv2
+pkgver=1.18.0
+pkgrel=1
+pkgdesc="Plugin standard for audio systems"
+url="http://lv2plug.in/"
+license=('ISC')
+arch=('x86_64')
+makedepends=('asciidoc' 'doxygen' 'gtk2' 'libsndfile' 'pygmentize'
+'python-markdown' 'python-pygments' 'python-rdflib' 'waf')
+optdepends=('sord: for lv2_validate'
+            'libsndfile: for eg-sampler.lv2'
+            'atk: for eg-sampler.lv2 and eg-scope.lv2'
+            'cairo: for eg-sampler.lv2 and eg-scope.lv2'
+            'fontconfig: for eg-sampler.lv2 and eg-scope.lv2'
+            'freetype2: for eg-sampler.lv2 and eg-scope.lv2'
+            'glib2: for eg-sampler.lv2 and eg-scope.lv2'
+            'gtk2: for eg-sampler.lv2 and eg-scope.lv2'
+            'harfbuzz: for eg-sampler.lv2 and eg-scope.lv2'
+            'pango: for eg-sampler.lv2 and eg-scope.lv2'
+            'python-pygments: for lv2specgen.py'
+            'python-rdflib: for lv2specgen.py')
+source=("https://lv2plug.in/spec/${pkgname}-${pkgver}.tar.bz2"{,.sig})
+sha512sums=('9e8dd9c1f30371260d21efc105b1d4d4ad03d9e332d4d3877d873f20b9527bcd0e917ff23fc6e0a9cc4337bda85882c742f225f7cf4fbc8a8a0964565c91f9d9'
+            'SKIP')
+validpgpkeys=('907D226E7E13FA337F014A083672782A9BF368F3') # David Robillard <d at drobilla.net>
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # let wscript(s) find the custom waf scripts
+  mkdir -pv tools
+  touch __init__.py
+  cp -v waflib/extras/{autowaf,lv2}.py tools/
+  mkdir -pv plugins/tools/
+  cp -v waflib/extras/{autowaf,lv2}.py plugins/tools/
+  rm -rv waflib
+  sed -e 's/waflib.extras/tools/g' \
+      -e "s/load('autowaf'/load('autowaf', tooldir='tools'/g" \
+      -e "s/load('lv2'/load('lv2', tooldir='tools'/g" \
+      -i {,plugins/,plugins/*/}wscript
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  waf configure --prefix=/usr \
+                --libdir=/usr/lib \
+                --docs \
+                --test
+  waf -v build $MAKEFLAGS
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  waf test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  waf install --destdir="${pkgdir}"
+  # license
+  install -vDm 644 COPYING \
+    -t "${pkgdir}/usr/share/licenses/${pkgname}/"
+  # docs
+  install -vDm 644 {NEWS,README.md} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list