[arch-commits] Commit in cups/repos (12 files)

2019-04-15 Thread Andreas Radke via arch-commits
Date: Tuesday, April 16, 2019 @ 05:27:33
  Author: andyrtr
Revision: 350800

archrelease: copy trunk to testing-x86_64

Added:
  cups/repos/testing-x86_64/
  cups/repos/testing-x86_64/PKGBUILD
(from rev 350799, cups/trunk/PKGBUILD)
  cups/repos/testing-x86_64/cups-1.6.2-statedir.patch
(from rev 350799, cups/trunk/cups-1.6.2-statedir.patch)
  cups/repos/testing-x86_64/cups-no-export-ssllibs.patch
(from rev 350799, cups/trunk/cups-no-export-ssllibs.patch)
  cups/repos/testing-x86_64/cups-no-gzip-man.patch
(from rev 350799, cups/trunk/cups-no-gzip-man.patch)
  cups/repos/testing-x86_64/cups-systemd-socket.patch
(from rev 350799, cups/trunk/cups-systemd-socket.patch)
  cups/repos/testing-x86_64/cups.install
(from rev 350799, cups/trunk/cups.install)
  cups/repos/testing-x86_64/cups.logrotate
(from rev 350799, cups/trunk/cups.logrotate)
  cups/repos/testing-x86_64/cups.pam
(from rev 350799, cups/trunk/cups.pam)
  cups/repos/testing-x86_64/cups.sysusers
(from rev 350799, cups/trunk/cups.sysusers)
  cups/repos/testing-x86_64/guid.patch
(from rev 350799, cups/trunk/guid.patch)
  cups/repos/testing-x86_64/samsung-printer-workaround.patch
(from rev 350799, cups/trunk/samsung-printer-workaround.patch)

--+
 PKGBUILD |  182 +
 cups-1.6.2-statedir.patch|   12 ++
 cups-no-export-ssllibs.patch |   12 ++
 cups-no-gzip-man.patch   |   18 +++
 cups-systemd-socket.patch|   49 +
 cups.install |   20 
 cups.logrotate   |5 +
 cups.pam |3 
 cups.sysusers|2 
 guid.patch   |   42 
 samsung-printer-workaround.patch |   30 ++
 11 files changed, 375 insertions(+)

Copied: cups/repos/testing-x86_64/PKGBUILD (from rev 350799, 
cups/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-16 05:27:33 UTC (rev 350800)
@@ -0,0 +1,182 @@
+# Maintainer: Andreas Radke 
+
+pkgbase="cups"
+pkgname=('libcups' 'cups')
+pkgver=2.2.11
+pkgrel=2
+arch=('x86_64')
+license=('GPL')
+url="https://www.cups.org/;
+makedepends=('libtiff' 'libpng' 'acl' 'pam' 'xdg-utils' 'krb5' 'gnutls'
+ 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 
'dbus'
+ 'avahi'  'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 
'valgrind')
+source=(https://github.com/apple/cups/releases/download/v${pkgver}/cups-${pkgver}-source.tar.gz{,.sig}
+cups.logrotate
+cups.pam
+cups.sysusers
+# improve build and linking
+cups-no-export-ssllibs.patch
+cups-no-gzip-man.patch
+cups-1.6.2-statedir.patch
+# bugfixes
+cups-systemd-socket.patch
+guid.patch
+   samsung-printer-workaround.patch)
+sha256sums=('f58010813fd6903f690cdb0c0b91e4d1bc9e5b9570c28734229ba3ed2908b76c'
+'SKIP'
+'d87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9'
+'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
+'06173dfaea37bdd9b39b3e09aba98c34ae7112a2f521db45a688907d8848caa2'
+'ff3eb0782af0405f5dafe89e04b1b4ea7a49afc5496860d724343bd04f375832'
+'b8fc2e3bc603495f0278410350ea8f0161d9d83719feb64f573b63430cb4800b'
+'23349c96f2f7aeb7d48e3bcd35a969f5d5ac8f55a032b0cfaa0a03d7e37ea9af'
+'f909719e2595e016c320afa421cad74ccda285ac59b11749ddac58e707d4330a'
+'d4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d'
+'ae3e154b8382f3412c73d863f4db095e722eb5255e15f0684b2bb9e02e5438af')
+validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org 
PGP key) 
+validpgpkeys+=('45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org 
"
+validpgpkeys+=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
+
+prepare() {
+
+  cd ${pkgbase}-${pkgver}
+
+  # improve build and linking
+  # Do not export SSL libs in cups-config
+  patch -Np1 -i ${srcdir}/cups-no-export-ssllibs.patch
+  # don't zip man pages in make install, let makepkg do that / Fedora
+  patch -Np1 -i ${srcdir}/cups-no-gzip-man.patch
+  # move /var/run -> /run for pid file
+  patch -Np1 -i ${srcdir}/cups-1.6.2-statedir.patch
+
+  # bug fixes
+  # make sure network is up when starting and notify systemd - FC
+  patch -Np1 -i ${srcdir}/cups-systemd-socket.patch
+
+  # FS#56818 - https://github.com/apple/cups/issues/5236
+  patch -Np1 -i ${srcdir}/guid.patch
+
+  # FS#62360 / https://github.com/apple/cups/issues/5562
+  patch -Np1 -i  ${srcdir}/samsung-printer-workaround.patch
+
+  # set MaxLogSize to 0 to prevent using cups internal log rotation
+  sed -i -e '5i\ ' conf/cupsd.conf.in
+  sed -i -e '6i# Disable cups internal logging - use 

[arch-commits] Commit in cups/trunk (PKGBUILD samsung-printer-workaround.patch)

2019-04-15 Thread Andreas Radke via arch-commits
Date: Tuesday, April 16, 2019 @ 05:27:16
  Author: andyrtr
Revision: 350799

upgpkg: cups 2.2.11-2

apply upstream fix to make samsung printer working again FS#62360

Added:
  cups/trunk/samsung-printer-workaround.patch
Modified:
  cups/trunk/PKGBUILD

--+
 PKGBUILD |   11 ---
 samsung-printer-workaround.patch |   30 ++
 2 files changed, 38 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 04:53:52 UTC (rev 350798)
+++ PKGBUILD2019-04-16 05:27:16 UTC (rev 350799)
@@ -3,7 +3,7 @@
 pkgbase="cups"
 pkgname=('libcups' 'cups')
 pkgver=2.2.11
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 license=('GPL')
 url="https://www.cups.org/;
@@ -20,7 +20,8 @@
 cups-1.6.2-statedir.patch
 # bugfixes
 cups-systemd-socket.patch
-guid.patch)
+guid.patch
+   samsung-printer-workaround.patch)
 sha256sums=('f58010813fd6903f690cdb0c0b91e4d1bc9e5b9570c28734229ba3ed2908b76c'
 'SKIP'
 'd87fa0f0b5ec677aae34668f260333db17ce303aa1a752cba5f8e72623d9acf9'
@@ -30,7 +31,8 @@
 'b8fc2e3bc603495f0278410350ea8f0161d9d83719feb64f573b63430cb4800b'
 '23349c96f2f7aeb7d48e3bcd35a969f5d5ac8f55a032b0cfaa0a03d7e37ea9af'
 'f909719e2595e016c320afa421cad74ccda285ac59b11749ddac58e707d4330a'
-'d4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d')
+'d4537526c1e075866ae22ad263da000fc2a592d36c26b79a459a1cfdade2bb2d'
+'ae3e154b8382f3412c73d863f4db095e722eb5255e15f0684b2bb9e02e5438af')
 validpgpkeys=('3737FD0D0E63B30172440D2DDBA3A7AB08D76223') # CUPS.org (CUPS.org 
PGP key) 
 validpgpkeys+=('45D083946E3035282B3CCA9AF434104235DA97EB') # "CUPS.org 
"
 validpgpkeys+=('845464660B686AAB36540B6F999559A027815955') # "Michael R Sweet 
"
@@ -54,6 +56,9 @@
   # FS#56818 - https://github.com/apple/cups/issues/5236
   patch -Np1 -i ${srcdir}/guid.patch
 
+  # FS#62360 / https://github.com/apple/cups/issues/5562
+  patch -Np1 -i  ${srcdir}/samsung-printer-workaround.patch
+
   # set MaxLogSize to 0 to prevent using cups internal log rotation
   sed -i -e '5i\ ' conf/cupsd.conf.in
   sed -i -e '6i# Disable cups internal logging - use logrotate instead' 
conf/cupsd.conf.in

Added: samsung-printer-workaround.patch
===
--- samsung-printer-workaround.patch(rev 0)
+++ samsung-printer-workaround.patch2019-04-16 05:27:16 UTC (rev 350799)
@@ -0,0 +1,30 @@
+diff --git a/cups/ppd.c b/cups/ppd.c
+index 435b992f4..29456d97a 100644
+--- a/cups/ppd.c
 b/cups/ppd.c
+@@ -1182,6 +1182,24 @@ _ppdOpen(
+   else if (!strcmp(string, "Plus90"))
+ ppd->landscape = 90;
+ }
++else if (!strcmp(keyword, "Emulators") && string && ppd->num_emulations 
== 0)
++{
++ /*
++  * Issue #5562: Samsung printer drivers incorrectly use Emulators keyword
++  *  to configure themselves
++  *
++  * The Emulators keyword was loaded but never used by anything in CUPS,
++  * and has no valid purpose in CUPS.  The old code was removed due to a
++  * memory leak (Issue #5475), so the following (new) code supports a 
single
++  * name for the Emulators keyword, allowing these drivers to work until 
we
++  * remove PPD and driver support entirely in a future version of CUPS.
++  */
++
++  ppd->num_emulations = 1;
++  ppd->emulations = calloc(1, sizeof(ppd_emul_t));
++
++  strlcpy(ppd->emulations[0].name, string, 
sizeof(ppd->emulations[0].name));
++}
+ else if (!strcmp(keyword, "JobPatchFile"))
+ {
+  /*
+


[arch-commits] Commit in iana-etc/repos (3 files)

2019-04-15 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, April 16, 2019 @ 04:53:52
  Author: bisson
Revision: 350798

archrelease: copy trunk to testing-any

Added:
  iana-etc/repos/testing-any/
  iana-etc/repos/testing-any/LICENSE
(from rev 350797, iana-etc/trunk/LICENSE)
  iana-etc/repos/testing-any/PKGBUILD
(from rev 350797, iana-etc/trunk/PKGBUILD)

--+
 LICENSE  |1 +
 PKGBUILD |   54 ++
 2 files changed, 55 insertions(+)

Copied: iana-etc/repos/testing-any/LICENSE (from rev 350797, 
iana-etc/trunk/LICENSE)
===
--- testing-any/LICENSE (rev 0)
+++ testing-any/LICENSE 2019-04-16 04:53:52 UTC (rev 350798)
@@ -0,0 +1 @@
+The contents of this package are inelligible for copyright protection.

Copied: iana-etc/repos/testing-any/PKGBUILD (from rev 350797, 
iana-etc/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2019-04-16 04:53:52 UTC (rev 350798)
@@ -0,0 +1,54 @@
+# Contributor: Thomas Bächler 
+# Maintainer: Gaetan Bisson 
+
+pkgname=iana-etc
+pkgver=20190415
+pkgrel=1
+pkgdesc='/etc/protocols and /etc/services provided by IANA'
+url='https://www.iana.org/protocols'
+arch=('any')
+license=('custom:none')
+backup=('etc/'{protocols,services})
+source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
+
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
+'LICENSE')
+sha256sums=('73c39d518cf24b2adebeaad5b93102c5778e7d1478eae99f095fc9837f4d3580'
+'4992fbc5453d0feb48492e6abda96bf9285ff4d2516f6924a0f92f773dc4cea2'
+'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
+
+# Please note that upstream silently updates those files in place every so
+# often, which causes checksum mismatch. Report this by flagging the package as
+# out-of-date. Cheers.
+
+pkgver() {
+   cd "${srcdir}"
+   awk -F"[<>]" '/updated/{print$3;nextfile}' * |
+   sort -n | tail -n 1 | tr -d -
+}
+
+package() {
+   cd "${srcdir}"
+   install -d "${pkgdir}/etc"
+   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/iana-etc/LICENSE"
+   install -Dm644 protocol-numbers.xml 
"${pkgdir}/usr/share/iana-etc/protocol-numbers.iana"
+   install -Dm644 service-names-port-numbers.xml 
"${pkgdir}/usr/share/iana-etc/port-numbers.iana"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/protocol-numbers.iana\n" }
+(/ "${pkgdir}/etc/protocols"
+
+   gawk -F"[<>]" '
+BEGIN { print "# Full data: /usr/share/iana-etc/port-numbers.iana\n" }
+(/ "${pkgdir}/etc/services"
+
+}


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

2019-04-15 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, April 16, 2019 @ 04:53:32
  Author: bisson
Revision: 350797

upstream update

Modified:
  iana-etc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 20:58:49 UTC (rev 350796)
+++ PKGBUILD2019-04-16 04:53:32 UTC (rev 350797)
@@ -2,7 +2,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=iana-etc
-pkgver=20190329
+pkgver=20190415
 pkgrel=1
 pkgdesc='/etc/protocols and /etc/services provided by IANA'
 url='https://www.iana.org/protocols'
@@ -12,7 +12,7 @@
 
source=('https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml'
 
'https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml'
 'LICENSE')
-sha256sums=('225069e4d78ede4231819287df4fad03bb9e1df7083608a0f092901d4a2b604b'
+sha256sums=('73c39d518cf24b2adebeaad5b93102c5778e7d1478eae99f095fc9837f4d3580'
 '4992fbc5453d0feb48492e6abda96bf9285ff4d2516f6924a0f92f773dc4cea2'
 'dd37e92942d5a4024f1c77df49d61ca77fc6284691814903a741785df61f78cb')
 


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

2019-04-15 Thread Jan Steffens via arch-commits
Date: Tuesday, April 16, 2019 @ 03:22:18
  Author: heftig
Revision: 451750

archrelease: copy trunk to community-x86_64

Added:
  gnome-software/repos/community-x86_64/PKGBUILD
(from rev 451749, gnome-software/trunk/PKGBUILD)
Deleted:
  gnome-software/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  136 ++---
 1 file changed, 68 insertions(+), 68 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-16 03:22:06 UTC (rev 451749)
+++ PKGBUILD2019-04-16 03:22:18 UTC (rev 451750)
@@ -1,68 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Yosef Or Boczko 
-
-pkgbase=gnome-software
-pkgname=(gnome-software gnome-software-packagekit-plugin)
-pkgver=3.32.0
-pkgrel=2
-pkgdesc="GNOME Software Tools"
-url="https://wiki.gnome.org/Apps/Software/;
-arch=(x86_64)
-license=(GPL2)
-makedepends=(appstream-glib gnome-desktop libpackagekit-glib flatpak fwupd 
ostree
- docbook-xsl git gobject-introspection gspell gtk-doc meson 
valgrind
- gnome-online-accounts libxmlb)
-_commit=bed994cc6e3c41a92efd6b2847ef978d5b2cd3a3  # tags/3.32.0^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-}
-
-build() {
-  arch-meson $pkgbase build
-  ninja -C build
-}
-
-check() {
-  # build container troubles
-  meson test -C build --print-errorlogs || :
-}
-
-_pick() {
-  local p="$1" f d; shift
-  for f; do
-d="$srcdir/$p/${f#$pkgdir/}"
-mkdir -p "$(dirname "$d")"
-mv "$f" "$d"
-rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
-  done
-}
-
-package_gnome-software() {
-  groups=('gnome')
-  depends=(libxmlb gnome-desktop gsettings-desktop-schemas gspell 
libpackagekit-glib
-   gnome-online-accounts appstream-glib)
-  optdepends=('flatpak: Flatpak support plugin'
-  'fwupd: fwupd support plugin'
-  'ostree: OSTree support plugin')
-
-  DESTDIR="$pkgdir" meson install -C build
-
-### Split gnome-software-packagekit-plugin
-  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_packagekit*.so
-  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_systemd-updates.so
-}
-
-package_gnome-software-packagekit-plugin() {
-  pkgdesc="PackageKit support plugin for GNOME Software"
-  depends=(archlinux-appstream-data gnome-software packagekit)
-  mv packagekit-plugin/* "$pkgdir"
-}

Copied: gnome-software/repos/community-x86_64/PKGBUILD (from rev 451749, 
gnome-software/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-16 03:22:18 UTC (rev 451750)
@@ -0,0 +1,68 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Yosef Or Boczko 
+
+pkgbase=gnome-software
+pkgname=(gnome-software gnome-software-packagekit-plugin)
+pkgver=3.32.1
+pkgrel=1
+pkgdesc="GNOME Software Tools"
+url="https://wiki.gnome.org/Apps/Software/;
+arch=(x86_64)
+license=(GPL2)
+makedepends=(appstream-glib gnome-desktop libpackagekit-glib flatpak fwupd 
ostree
+ docbook-xsl git gobject-introspection gspell gtk-doc meson 
valgrind
+ gnome-online-accounts libxmlb)
+_commit=c913ecb2d8964589d9c6ea02812dcaa45827640f  # tags/3.32.1^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/^GNOME_SOFTWARE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+}
+
+build() {
+  arch-meson $pkgbase build
+  ninja -C build
+}
+
+check() {
+  # build container troubles
+  meson test -C build --print-errorlogs || :
+}
+
+_pick() {
+  local p="$1" f d; shift
+  for f; do
+d="$srcdir/$p/${f#$pkgdir/}"
+mkdir -p "$(dirname "$d")"
+mv "$f" "$d"
+rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
+  done
+}
+
+package_gnome-software() {
+  groups=('gnome')
+  depends=(libxmlb gnome-desktop gsettings-desktop-schemas gspell 
libpackagekit-glib
+   gnome-online-accounts appstream-glib)
+  optdepends=('flatpak: Flatpak support plugin'
+  'fwupd: fwupd support plugin'
+  'ostree: OSTree support plugin')
+
+  DESTDIR="$pkgdir" meson install -C build
+
+### Split gnome-software-packagekit-plugin
+  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_packagekit*.so
+  _pick packagekit-plugin 
"$pkgdir"/usr/lib/gs-plugins-*/libgs_plugin_systemd-updates.so
+}
+
+package_gnome-software-packagekit-plugin() {
+  pkgdesc="PackageKit support plugin for GNOME Software"
+  depends=(archlinux-appstream-data gnome-software packagekit)
+  mv packagekit-plugin/* "$pkgdir"
+}


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

2019-04-15 Thread Jan Steffens via arch-commits
Date: Tuesday, April 16, 2019 @ 03:22:06
  Author: heftig
Revision: 451749

3.32.1-1

Modified:
  gnome-software/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 01:59:17 UTC (rev 451748)
+++ PKGBUILD2019-04-16 03:22:06 UTC (rev 451749)
@@ -4,8 +4,8 @@
 
 pkgbase=gnome-software
 pkgname=(gnome-software gnome-software-packagekit-plugin)
-pkgver=3.32.0
-pkgrel=2
+pkgver=3.32.1
+pkgrel=1
 pkgdesc="GNOME Software Tools"
 url="https://wiki.gnome.org/Apps/Software/;
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(appstream-glib gnome-desktop libpackagekit-glib flatpak fwupd 
ostree
  docbook-xsl git gobject-introspection gspell gtk-doc meson 
valgrind
  gnome-online-accounts libxmlb)
-_commit=bed994cc6e3c41a92efd6b2847ef978d5b2cd3a3  # tags/3.32.0^0
+_commit=c913ecb2d8964589d9c6ea02812dcaa45827640f  # tags/3.32.1^0
 
source=("git+https://gitlab.gnome.org/GNOME/gnome-software.git#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2019-04-15 Thread Eli Schwartz via arch-commits
Date: Tuesday, April 16, 2019 @ 01:58:52
  Author: eschwartz
Revision: 451747

upgpkg: musl 1.1.22-2

Actually don't use syslibdir, binaries are supposed to contain an interpreter
tag for /lib

Modified:
  musl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 00:55:15 UTC (rev 451746)
+++ PKGBUILD2019-04-16 01:58:52 UTC (rev 451747)
@@ -3,7 +3,7 @@
 
 pkgname=musl
 pkgver=1.1.22
-pkgrel=1
+pkgrel=2
 pkgdesc='Lightweight implementation of C standard library'
 arch=('x86_64')
 url='https://www.musl-libc.org/'
@@ -18,7 +18,6 @@
   cd $pkgname-$pkgver
   ./configure --prefix=/usr/lib/musl \
 --exec-prefix=/usr \
---syslibdir=/usr/lib \
 --enable-wrapper=all
   make
 }
@@ -27,6 +26,10 @@
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
 
+  # configure syslibdir with /lib for PT_INTERP compat, but install to /usr/lib
+  mv "$pkgdir"/lib/ld-musl*.so* "$pkgdir"/usr/lib/
+  rmdir "$pkgdir"/lib
+
   install -Dm0644 README "$pkgdir"/usr/share/doc/musl/README
   install -Dm0644 COPYRIGHT "$pkgdir"/usr/share/licenses/musl/COPYRIGHT
 }


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

2019-04-15 Thread Eli Schwartz via arch-commits
Date: Tuesday, April 16, 2019 @ 01:59:17
  Author: eschwartz
Revision: 451748

archrelease: copy trunk to community-x86_64

Added:
  musl/repos/community-x86_64/PKGBUILD
(from rev 451747, musl/trunk/PKGBUILD)
Deleted:
  musl/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   67 +++--
 1 file changed, 35 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-16 01:58:52 UTC (rev 451747)
+++ PKGBUILD2019-04-16 01:59:17 UTC (rev 451748)
@@ -1,32 +0,0 @@
-# Maintainer:  Sergej Pupykin 
-# Contributor: TJ Vanderpoel 
-
-pkgname=musl
-pkgver=1.1.22
-pkgrel=1
-pkgdesc='Lightweight implementation of C standard library'
-arch=('x86_64')
-url='https://www.musl-libc.org/'
-license=('MIT')
-options=('staticlibs' '!buildflags')
-validpgpkeys=('836489290BB6B70F99FFDA0556BCDB593020450F')
-source=(https://www.musl-libc.org/releases/musl-$pkgver.tar.gz{,.asc})
-sha256sums=('8b0941a48d2f980fd7036cfbd24aa1d414f03d9a0652ecbd5ec5c7ff1bee29e3'
-'SKIP')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr/lib/musl \
---exec-prefix=/usr \
---syslibdir=/usr/lib \
---enable-wrapper=all
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -Dm0644 README "$pkgdir"/usr/share/doc/musl/README
-  install -Dm0644 COPYRIGHT "$pkgdir"/usr/share/licenses/musl/COPYRIGHT
-}

Copied: musl/repos/community-x86_64/PKGBUILD (from rev 451747, 
musl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-16 01:59:17 UTC (rev 451748)
@@ -0,0 +1,35 @@
+# Maintainer:  Sergej Pupykin 
+# Contributor: TJ Vanderpoel 
+
+pkgname=musl
+pkgver=1.1.22
+pkgrel=2
+pkgdesc='Lightweight implementation of C standard library'
+arch=('x86_64')
+url='https://www.musl-libc.org/'
+license=('MIT')
+options=('staticlibs' '!buildflags')
+validpgpkeys=('836489290BB6B70F99FFDA0556BCDB593020450F')
+source=(https://www.musl-libc.org/releases/musl-$pkgver.tar.gz{,.asc})
+sha256sums=('8b0941a48d2f980fd7036cfbd24aa1d414f03d9a0652ecbd5ec5c7ff1bee29e3'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr/lib/musl \
+--exec-prefix=/usr \
+--enable-wrapper=all
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  # configure syslibdir with /lib for PT_INTERP compat, but install to /usr/lib
+  mv "$pkgdir"/lib/ld-musl*.so* "$pkgdir"/usr/lib/
+  rmdir "$pkgdir"/lib
+
+  install -Dm0644 README "$pkgdir"/usr/share/doc/musl/README
+  install -Dm0644 COPYRIGHT "$pkgdir"/usr/share/licenses/musl/COPYRIGHT
+}


[arch-commits] Commit in busybox/repos/community-x86_64 (4 files)

2019-04-15 Thread Eli Schwartz via arch-commits
Date: Tuesday, April 16, 2019 @ 00:55:15
  Author: eschwartz
Revision: 451746

archrelease: copy trunk to community-x86_64

Added:
  busybox/repos/community-x86_64/PKGBUILD
(from rev 451745, busybox/trunk/PKGBUILD)
  busybox/repos/community-x86_64/config
(from rev 451745, busybox/trunk/config)
Deleted:
  busybox/repos/community-x86_64/PKGBUILD
  busybox/repos/community-x86_64/config

--+
 PKGBUILD |   78 +-
 config   | 2370 ++---
 2 files changed, 1224 insertions(+), 1224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-16 00:54:51 UTC (rev 451745)
+++ PKGBUILD2019-04-16 00:55:15 UTC (rev 451746)
@@ -1,39 +0,0 @@
-# Maintainer: Sergej Pupykin 
-# Maintainer: Eli Schwartz 
-# Contributor: Jens Pranaitis 
-
-pkgname=busybox
-pkgver=1.30.1
-pkgrel=1
-pkgdesc="Utilities for rescue and embedded systems"
-arch=("x86_64")
-url="https://www.busybox.net;
-license=('GPL')
-makedepends=("ncurses" "musl" "kernel-headers-musl")
-validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B')
-source=("$url/downloads/$pkgname-$pkgver.tar.bz2"{,.sig}
-"config")
-sha256sums=('3d1d04a4dbd34048f4794815a5c48ebb9eb53c5277e09c060323b95dfbdc'
-'SKIP'
-'8061ac8abf822356a865646931fd8ca527688a9b94233925a619e4d81a44b1a1')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  cp "$srcdir"/config .config
-  # reproducible build
-  export KCONFIG_NOTIMESTAMP=1
-  make CC=musl-gcc
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  install -Dm0755 busybox "$pkgdir"/usr/bin/busybox
-
-  # docs
-  install -Dm644 docs/busybox.1 "$pkgdir"/usr/share/man/man1/busybox.1
-  for doc in BusyBox.html BusyBox.txt; do
-install -Dm644 docs/$doc "$pkgdir"/usr/share/doc/$pkgname/$doc
-  done
-}

Copied: busybox/repos/community-x86_64/PKGBUILD (from rev 451745, 
busybox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-16 00:55:15 UTC (rev 451746)
@@ -0,0 +1,39 @@
+# Maintainer: Sergej Pupykin 
+# Maintainer: Eli Schwartz 
+# Contributor: Jens Pranaitis 
+
+pkgname=busybox
+pkgver=1.30.1
+pkgrel=2
+pkgdesc="Utilities for rescue and embedded systems"
+arch=("x86_64")
+url="https://www.busybox.net;
+license=('GPL')
+makedepends=("ncurses" "musl" "kernel-headers-musl")
+validpgpkeys=('C9E9416F76E610DBD09D040F47B70C55ACC9965B')
+source=("$url/downloads/$pkgname-$pkgver.tar.bz2"{,.sig}
+"config")
+sha256sums=('3d1d04a4dbd34048f4794815a5c48ebb9eb53c5277e09c060323b95dfbdc'
+'SKIP'
+'8061ac8abf822356a865646931fd8ca527688a9b94233925a619e4d81a44b1a1')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  cp "$srcdir"/config .config
+  # reproducible build
+  export KCONFIG_NOTIMESTAMP=1
+  make CC=musl-gcc
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -Dm0755 busybox "$pkgdir"/usr/bin/busybox
+
+  # docs
+  install -Dm644 docs/busybox.1 "$pkgdir"/usr/share/man/man1/busybox.1
+  for doc in BusyBox.html BusyBox.txt; do
+install -Dm644 docs/$doc "$pkgdir"/usr/share/doc/$pkgname/$doc
+  done
+}

Deleted: config
===
--- config  2019-04-16 00:54:51 UTC (rev 451745)
+++ config  2019-04-16 00:55:15 UTC (rev 451746)
@@ -1,1185 +0,0 @@
-#
-# Automatically generated make config: don't edit
-# Busybox version: 1.30.1
-# Fri Mar  1 13:15:30 2019
-#
-CONFIG_HAVE_DOT_CONFIG=y
-
-#
-# Settings
-#
-CONFIG_DESKTOP=y
-# CONFIG_EXTRA_COMPAT is not set
-# CONFIG_FEDORA_COMPAT is not set
-CONFIG_INCLUDE_SUSv2=y
-CONFIG_LONG_OPTS=y
-CONFIG_SHOW_USAGE=y
-CONFIG_FEATURE_VERBOSE_USAGE=y
-CONFIG_FEATURE_COMPRESS_USAGE=y
-CONFIG_LFS=y
-# CONFIG_PAM is not set
-CONFIG_FEATURE_DEVPTS=y
-# CONFIG_FEATURE_UTMP is not set
-# CONFIG_FEATURE_WTMP is not set
-CONFIG_FEATURE_PIDFILE=y
-CONFIG_PID_FILE_PATH="/run"
-CONFIG_BUSYBOX=y
-# CONFIG_FEATURE_SHOW_SCRIPT is not set
-CONFIG_FEATURE_INSTALLER=y
-# CONFIG_INSTALL_NO_USR is not set
-CONFIG_FEATURE_SUID=y
-CONFIG_FEATURE_SUID_CONFIG=y
-CONFIG_FEATURE_SUID_CONFIG_QUIET=y
-CONFIG_FEATURE_PREFER_APPLETS=y
-CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
-# CONFIG_SELINUX is not set
-# CONFIG_FEATURE_CLEAN_UP is not set
-CONFIG_FEATURE_SYSLOG=y
-CONFIG_PLATFORM_LINUX=y
-
-#
-# Build Options
-#
-CONFIG_STATIC=y
-# CONFIG_PIE is not set
-# CONFIG_NOMMU is not set
-# CONFIG_BUILD_LIBBUSYBOX is not set
-# CONFIG_FEATURE_LIBBUSYBOX_STATIC is not set
-# CONFIG_FEATURE_INDIVIDUAL is not set
-# CONFIG_FEATURE_SHARED_BUSYBOX is not set
-CONFIG_CROSS_COMPILER_PREFIX=""
-CONFIG_SYSROOT=""
-CONFIG_EXTRA_CFLAGS=""
-CONFIG_EXTRA_LDFLAGS=""
-CONFIG_EXTRA_LDLIBS=""
-# CONFIG_USE_PORTABLE_CODE is not set
-CONFIG_STACK_OPTIMIZATION_386=y
-
-#
-# Installation Options ("make install" behavior)
-#
-# CONFIG_INSTALL_APPLET_SYMLINKS is not set
-# 

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

2019-04-15 Thread Eli Schwartz via arch-commits
Date: Tuesday, April 16, 2019 @ 00:54:51
  Author: eschwartz
Revision: 451745

upgpkg: busybox 1.30.1-2

musl staticlibs rebuild

Modified:
  busybox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 00:54:01 UTC (rev 451744)
+++ PKGBUILD2019-04-16 00:54:51 UTC (rev 451745)
@@ -4,7 +4,7 @@
 
 pkgname=busybox
 pkgver=1.30.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Utilities for rescue and embedded systems"
 arch=("x86_64")
 url="https://www.busybox.net;


[arch-commits] Commit in musl/repos/community-x86_64 (3 files)

2019-04-15 Thread Eli Schwartz via arch-commits
Date: Tuesday, April 16, 2019 @ 00:54:01
  Author: eschwartz
Revision: 451744

archrelease: copy trunk to community-x86_64

Added:
  musl/repos/community-x86_64/PKGBUILD
(from rev 451743, musl/trunk/PKGBUILD)
Deleted:
  musl/repos/community-x86_64/PKGBUILD
  musl/repos/community-x86_64/fix-musl-gcc-wrapper-with-default-pie-gcc.patch

-+
 PKGBUILD|   74 +-
 fix-musl-gcc-wrapper-with-default-pie-gcc.patch |   37 ---
 2 files changed, 32 insertions(+), 79 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-16 00:53:34 UTC (rev 451743)
+++ PKGBUILD2019-04-16 00:54:01 UTC (rev 451744)
@@ -1,42 +0,0 @@
-# Maintainer:  Sergej Pupykin 
-# Contributor: TJ Vanderpoel 
-
-pkgname=musl
-pkgver=1.1.21
-pkgrel=1
-pkgdesc='Lightweight implementation of C standard library'
-arch=('x86_64')
-url='http://www.musl-libc.org/'
-license=('MIT')
-options=('staticlibs' '!buildflags')
-validpgpkeys=('836489290BB6B70F99FFDA0556BCDB593020450F')
-source=(https://www.musl-libc.org/releases/musl-$pkgver.tar.gz{,.asc}
-fix-musl-gcc-wrapper-with-default-pie-gcc.patch)
-sha256sums=('c742b66f6f49c9e5f52f64d8b79fecb5a0f6e0203fca176c70ca20f6be285f44'
-'SKIP'
-'bd5d147ecebb694f0fd3bbe8d282006d978c8c3c0848f3243b0d754b6c08dc60')
-
-prepare() {
-  cd $pkgname-$pkgver
-#  patch -Np1 -i ../fix-musl-gcc-wrapper-with-default-pie-gcc.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr/lib/musl \
---exec-prefix=/usr \
---enable-wrapper=all
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -dm755 "$pkgdir"/usr/lib/
-  mv "$pkgdir"/lib/ld-musl*.so* "$pkgdir"/usr/lib/
-  rmdir "$pkgdir"/lib
-
-  install -Dm0644 README "$pkgdir"/usr/share/doc/musl/README
-  install -Dm0644 COPYRIGHT "$pkgdir"/usr/share/licenses/musl/COPYRIGHT
-}

Copied: musl/repos/community-x86_64/PKGBUILD (from rev 451743, 
musl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-16 00:54:01 UTC (rev 451744)
@@ -0,0 +1,32 @@
+# Maintainer:  Sergej Pupykin 
+# Contributor: TJ Vanderpoel 
+
+pkgname=musl
+pkgver=1.1.22
+pkgrel=1
+pkgdesc='Lightweight implementation of C standard library'
+arch=('x86_64')
+url='https://www.musl-libc.org/'
+license=('MIT')
+options=('staticlibs' '!buildflags')
+validpgpkeys=('836489290BB6B70F99FFDA0556BCDB593020450F')
+source=(https://www.musl-libc.org/releases/musl-$pkgver.tar.gz{,.asc})
+sha256sums=('8b0941a48d2f980fd7036cfbd24aa1d414f03d9a0652ecbd5ec5c7ff1bee29e3'
+'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr/lib/musl \
+--exec-prefix=/usr \
+--syslibdir=/usr/lib \
+--enable-wrapper=all
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  install -Dm0644 README "$pkgdir"/usr/share/doc/musl/README
+  install -Dm0644 COPYRIGHT "$pkgdir"/usr/share/licenses/musl/COPYRIGHT
+}

Deleted: fix-musl-gcc-wrapper-with-default-pie-gcc.patch
===
--- fix-musl-gcc-wrapper-with-default-pie-gcc.patch 2019-04-16 00:53:34 UTC 
(rev 451743)
+++ fix-musl-gcc-wrapper-with-default-pie-gcc.patch 2019-04-16 00:54:01 UTC 
(rev 451744)
@@ -1,37 +0,0 @@
-From 7dad9c212587267818de919dd9c5886f18f99779 Mon Sep 17 00:00:00 2001
-From: Rich Felker 
-Date: Thu, 2 Aug 2018 19:15:48 -0400
-Subject: fix musl-gcc wrapper to be compatible with default-pie gcc toolchains
-
-the specfile for the wrapper was written assuming output is pie only
-if -pie appears on the command line. recent (and older patched)
-versions of gcc can be configured to produce pie output by default,
-adn when used with such a toolchain, the wrapper linked the wrong
-startfiles (crt*) containing pic-incompatible code.
-
-rather than trying to figure out gcc's default, simply always use the
-pic-compatible start files.

- tools/musl-gcc.specs.sh | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/tools/musl-gcc.specs.sh b/tools/musl-gcc.specs.sh
-index 294e24f7..30492574 100644
 a/tools/musl-gcc.specs.sh
-+++ b/tools/musl-gcc.specs.sh
-@@ -17,10 +17,10 @@ cat <

[arch-commits] Commit in musl/trunk (2 files)

2019-04-15 Thread Eli Schwartz via arch-commits
Date: Tuesday, April 16, 2019 @ 00:53:34
  Author: eschwartz
Revision: 451743

upgpkg: musl 1.1.22-1

upstream release

Modified:
  musl/trunk/PKGBUILD
Deleted:
  musl/trunk/fix-musl-gcc-wrapper-with-default-pie-gcc.patch

-+
 PKGBUILD|   20 ++-
 fix-musl-gcc-wrapper-with-default-pie-gcc.patch |   37 --
 2 files changed, 5 insertions(+), 52 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-16 00:05:15 UTC (rev 451742)
+++ PKGBUILD2019-04-16 00:53:34 UTC (rev 451743)
@@ -2,7 +2,7 @@
 # Contributor: TJ Vanderpoel 
 
 pkgname=musl
-pkgver=1.1.21
+pkgver=1.1.22
 pkgrel=1
 pkgdesc='Lightweight implementation of C standard library'
 arch=('x86_64')
@@ -10,21 +10,15 @@
 license=('MIT')
 options=('staticlibs' '!buildflags')
 validpgpkeys=('836489290BB6B70F99FFDA0556BCDB593020450F')
-source=(https://www.musl-libc.org/releases/musl-$pkgver.tar.gz{,.asc}
-fix-musl-gcc-wrapper-with-default-pie-gcc.patch)
-sha256sums=('c742b66f6f49c9e5f52f64d8b79fecb5a0f6e0203fca176c70ca20f6be285f44'
-'SKIP'
-'bd5d147ecebb694f0fd3bbe8d282006d978c8c3c0848f3243b0d754b6c08dc60')
+source=(https://www.musl-libc.org/releases/musl-$pkgver.tar.gz{,.asc})
+sha256sums=('8b0941a48d2f980fd7036cfbd24aa1d414f03d9a0652ecbd5ec5c7ff1bee29e3'
+'SKIP')
 
-prepare() {
-  cd $pkgname-$pkgver
-#  patch -Np1 -i ../fix-musl-gcc-wrapper-with-default-pie-gcc.patch
-}
-
 build() {
   cd $pkgname-$pkgver
   ./configure --prefix=/usr/lib/musl \
 --exec-prefix=/usr \
+--syslibdir=/usr/lib \
 --enable-wrapper=all
   make
 }
@@ -33,10 +27,6 @@
   cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
 
-  install -dm755 "$pkgdir"/usr/lib/
-  mv "$pkgdir"/lib/ld-musl*.so* "$pkgdir"/usr/lib/
-  rmdir "$pkgdir"/lib
-
   install -Dm0644 README "$pkgdir"/usr/share/doc/musl/README
   install -Dm0644 COPYRIGHT "$pkgdir"/usr/share/licenses/musl/COPYRIGHT
 }

Deleted: fix-musl-gcc-wrapper-with-default-pie-gcc.patch
===
--- fix-musl-gcc-wrapper-with-default-pie-gcc.patch 2019-04-16 00:05:15 UTC 
(rev 451742)
+++ fix-musl-gcc-wrapper-with-default-pie-gcc.patch 2019-04-16 00:53:34 UTC 
(rev 451743)
@@ -1,37 +0,0 @@
-From 7dad9c212587267818de919dd9c5886f18f99779 Mon Sep 17 00:00:00 2001
-From: Rich Felker 
-Date: Thu, 2 Aug 2018 19:15:48 -0400
-Subject: fix musl-gcc wrapper to be compatible with default-pie gcc toolchains
-
-the specfile for the wrapper was written assuming output is pie only
-if -pie appears on the command line. recent (and older patched)
-versions of gcc can be configured to produce pie output by default,
-adn when used with such a toolchain, the wrapper linked the wrong
-startfiles (crt*) containing pic-incompatible code.
-
-rather than trying to figure out gcc's default, simply always use the
-pic-compatible start files.

- tools/musl-gcc.specs.sh | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/tools/musl-gcc.specs.sh b/tools/musl-gcc.specs.sh
-index 294e24f7..30492574 100644
 a/tools/musl-gcc.specs.sh
-+++ b/tools/musl-gcc.specs.sh
-@@ -17,10 +17,10 @@ cat <

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

2019-04-15 Thread David Runge via arch-commits
Date: Tuesday, April 16, 2019 @ 00:05:15
  Author: dvzrv
Revision: 451742

archrelease: copy trunk to community-x86_64

Added:
  calf/repos/community-x86_64/PKGBUILD
(from rev 451741, calf/trunk/PKGBUILD)
Deleted:
  calf/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   80 -
 1 file changed, 37 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-16 00:01:24 UTC (rev 451741)
+++ PKGBUILD2019-04-16 00:05:15 UTC (rev 451742)
@@ -1,43 +0,0 @@
-# Maintainer: Alexander F. Rødseth 
-# Contributor: David Runge 
-# Contributor: Ray Rashif 
-
-pkgname=calf
-pkgver=0.90.1
-pkgrel=4
-pkgdesc='LV2/DSSI/LADSPA plug-in suite and standalone Jack host'
-arch=('x86_64')
-url='https://calf-studio-gear.org/'
-groups=('lv2-plugins' 'pro-audio')
-license=('LGPL')
-depends=('fftw' 'fluidsynth' 'gtk2')
-makedepends=('lv2')
-source=("https://calf-studio-gear.org/files/$pkgname-$pkgver.tar.gz;
-
"${pkgname}-fluidsynth2.patch::https://github.com/calf-studio-gear/${pkgname}/pull/203/commits/bba03b6080dc198f3513b5c29fe1ba4ff9e4aa59.patch;)
-sha256sums=('eb3ac2e48952cf68b2d87151ce4cf58ea1fcd4433629ff0628b6e4165fe9dc7e'
-'adc6169efcb42cbdb67c117c81a88ec8a4314a8ef7744414b6bd5ea5f3fbf004')
-
-prepare(){
-  cd "$pkgname-$pkgver"
-  # fluidsynth2 patch: https://github.com/calf-studio-gear/calf/issues/202
-  patch -Np1 -i ../${pkgname}-fluidsynth2.patch
-  # replace check for lv2core: 
https://github.com/calf-studio-gear/calf/issues/220
-  sed -e 's/lv2core >= 6/lv2 >= 1.14/g' -i configure.ac
-  autoreconf -vfi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr \
-  --with-lv2 \
-  --enable-experimental \
-  --enable-sse
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: calf/repos/community-x86_64/PKGBUILD (from rev 451741, 
calf/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-16 00:05:15 UTC (rev 451742)
@@ -0,0 +1,37 @@
+# Maintainer: Alexander F. Rødseth 
+# Contributor: David Runge 
+# Contributor: Ray Rashif 
+
+pkgname=calf
+pkgver=0.90.2
+pkgrel=1
+pkgdesc='LV2 plug-in suite and standalone Jack host'
+arch=('x86_64')
+url="https://calf-studio-gear.org;
+groups=('lv2-plugins' 'pro-audio')
+license=('LGPL')
+depends=('fftw' 'fluidsynth' 'gtk2')
+makedepends=('lv2')
+source=("https://calf-studio-gear.org/files/$pkgname-$pkgver.tar.gz;)
+sha256sums=('f0e9d36990ece7ae6334166ced5a2e02bbd8bcd2aa2ecad0efce0b4e6790c42e')
+
+prepare(){
+  cd "$pkgname-$pkgver"
+  autoreconf -vfi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  ./configure --prefix=/usr \
+  --with-lv2 \
+  --enable-experimental \
+  --enable-sse
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-04-15 Thread David Runge via arch-commits
Date: Tuesday, April 16, 2019 @ 00:01:24
  Author: dvzrv
Revision: 451741

upgpkg: calf 0.90.2-1

Upgrading to 0.90.2. Dropping all unneeded patches and fixes for fluidsynth and 
lv2.

Modified:
  calf/trunk/PKGBUILD

--+
 PKGBUILD |   18 ++
 1 file changed, 6 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 23:14:35 UTC (rev 451740)
+++ PKGBUILD2019-04-16 00:01:24 UTC (rev 451741)
@@ -3,26 +3,20 @@
 # Contributor: Ray Rashif 
 
 pkgname=calf
-pkgver=0.90.1
-pkgrel=4
-pkgdesc='LV2/DSSI/LADSPA plug-in suite and standalone Jack host'
+pkgver=0.90.2
+pkgrel=1
+pkgdesc='LV2 plug-in suite and standalone Jack host'
 arch=('x86_64')
-url='https://calf-studio-gear.org/'
+url="https://calf-studio-gear.org;
 groups=('lv2-plugins' 'pro-audio')
 license=('LGPL')
 depends=('fftw' 'fluidsynth' 'gtk2')
 makedepends=('lv2')
-source=("https://calf-studio-gear.org/files/$pkgname-$pkgver.tar.gz;
-
"${pkgname}-fluidsynth2.patch::https://github.com/calf-studio-gear/${pkgname}/pull/203/commits/bba03b6080dc198f3513b5c29fe1ba4ff9e4aa59.patch;)
-sha256sums=('eb3ac2e48952cf68b2d87151ce4cf58ea1fcd4433629ff0628b6e4165fe9dc7e'
-'adc6169efcb42cbdb67c117c81a88ec8a4314a8ef7744414b6bd5ea5f3fbf004')
+source=("https://calf-studio-gear.org/files/$pkgname-$pkgver.tar.gz;)
+sha256sums=('f0e9d36990ece7ae6334166ced5a2e02bbd8bcd2aa2ecad0efce0b4e6790c42e')
 
 prepare(){
   cd "$pkgname-$pkgver"
-  # fluidsynth2 patch: https://github.com/calf-studio-gear/calf/issues/202
-  patch -Np1 -i ../${pkgname}-fluidsynth2.patch
-  # replace check for lv2core: 
https://github.com/calf-studio-gear/calf/issues/220
-  sed -e 's/lv2core >= 6/lv2 >= 1.14/g' -i configure.ac
   autoreconf -vfi
 }
 


[arch-commits] Commit in steam/repos/multilib-x86_64 (8 files)

2019-04-15 Thread Giancarlo Razzolini via arch-commits
Date: Monday, April 15, 2019 @ 22:40:17
  Author: grazzolini
Revision: 451739

archrelease: copy trunk to multilib-x86_64

Added:
  steam/repos/multilib-x86_64/PKGBUILD
(from rev 451738, steam/trunk/PKGBUILD)
  steam/repos/multilib-x86_64/alsa_sdl_audiodriver.patch
(from rev 451738, steam/trunk/alsa_sdl_audiodriver.patch)
  steam/repos/multilib-x86_64/steam-native.sh
(from rev 451738, steam/trunk/steam-native.sh)
  steam/repos/multilib-x86_64/steam-runtime.sh
(from rev 451738, steam/trunk/steam-runtime.sh)
Deleted:
  steam/repos/multilib-x86_64/PKGBUILD
  steam/repos/multilib-x86_64/alsa_sdl_audiodriver.patch
  steam/repos/multilib-x86_64/steam-native.sh
  steam/repos/multilib-x86_64/steam-runtime.sh

+
 PKGBUILD   |  126 +--
 alsa_sdl_audiodriver.patch |   28 -
 steam-native.sh|   16 ++---
 steam-runtime.sh   |6 --
 4 files changed, 87 insertions(+), 89 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 22:39:17 UTC (rev 451738)
+++ PKGBUILD2019-04-15 22:40:17 UTC (rev 451739)
@@ -1,63 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Daniel Wallace 
-# Contributor: K900 
-
-pkgname=steam
-pkgver=1.0.0.59
-pkgrel=1
-pkgdesc="Valve's digital software delivery system"
-url='http://steampowered.com/'
-arch=('x86_64')
-license=('custom')
-depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus' 
'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity')
-depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 'lib32-libxss' 
'lib32-alsa-plugins')
-optdepends=('steam-native-runtime: steam native runtime support')
-source=(http://repo.steampowered.com/${pkgname}/pool/${pkgname}/s/${pkgname}/${pkgname}_${pkgver}.tar.gz
-steam-runtime.sh
-steam-native.sh
-alsa_sdl_audiodriver.patch)
-sha512sums=('c5cbe0849b93076bf375de86c78c351af5841163825f2581d54ef98d2501f002d35b18c93b95dba1a7c65444a137bdd5e30f63ca0e72ae6ad526b11a50018276'
-
'da40f8e814f547f6a14901d753a2ffed1a4cf83df9200ee86e83a470b57b3103c3fbfb7cc77166ff1db646cbb306d6a41e79450cc1ea113d68a2defc55168ee2'
-
'32a12cb011eff4d9d4caf54a5c04f622b6301977258e86597be9c4622f87b0ea329bb31e963ecb56ce738ccc2e4d1068fb2b65bdd5ac1758bcd25296d4dab6d6'
-
'5c6117d86cb95071246434851bae3bf7d1c2174b0c8744e33e9c98ccc22efae0c956e1d7e3969c572aa96259b1b8164992d265541bce49a24daa12555d825fd5')
-prepare() {
-  cd ${pkgname}
-  patch -Np1 < "${srcdir}/alsa_sdl_audiodriver.patch"
-
-  # apply roundups for udev rules
-  sed -r 's|("0666")|"0660", TAG+="uaccess"|g' -i 
lib/udev/rules.d/60-steam-input.rules
-  sed -r 's|("misc")|\1, OPTIONS+="static_node=uinput"|g' -i 
lib/udev/rules.d/60-steam-input.rules
-  sed -r 's|(, TAG\+="uaccess")|, MODE="0660"\1|g' -i 
lib/udev/rules.d/60-steam-vr.rules
-
-  # separated runtime/native desktop files
-  cp steam{,-native}.desktop
-  sed -r 's|(Name=Steam)|\1 (Runtime)|' -i steam.desktop
-  sed -r 's|(/usr/bin/steam)|\1-runtime|' -i steam.desktop
-  sed -r 's|(Name=Steam)|\1 (Native)|' -i steam-native.desktop
-  sed -r 's|(/usr/bin/steam)|\1-native|' -i steam-native.desktop
-}
-
-package() {
-  cd ${pkgname}
-  make DESTDIR="${pkgdir}" install
-
-  install -Dm 755 "${srcdir}/steam-runtime.sh" 
"${pkgdir}/usr/bin/steam-runtime"
-  install -Dm 755 "${srcdir}/steam-native.sh" "${pkgdir}/usr/bin/steam-native"
-  install -d "${pkgdir}/usr/lib/steam"
-  mv "${pkgdir}/usr/bin/steam" "${pkgdir}/usr/lib/steam/steam"
-  ln -sf /usr/bin/steam-runtime "${pkgdir}/usr/bin/steam"
-
-  install -Dm 644 steam-native.desktop -t "${pkgdir}/usr/share/applications"
-  install -Dm 644 COPYING steam_subscriber_agreement.txt -t 
"${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm 644 debian/changelog -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  # blank steamdeps because apt-get
-  ln -sf /usr/bin/true "${pkgdir}/usr/bin/steamdeps"
-
-  install -Dm 644 lib/udev/rules.d/60-steam-input.rules \
-"${pkgdir}/usr/lib/udev/rules.d/70-steam-input.rules"
-  install -Dm 644 lib/udev/rules.d/60-steam-vr.rules \
-"${pkgdir}/usr/lib/udev/rules.d/70-steam-vr.rules"
-}
-
-# vim: ts=2 sw=2 et:

Copied: steam/repos/multilib-x86_64/PKGBUILD (from rev 451738, 
steam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 22:40:17 UTC (rev 451739)
@@ -0,0 +1,63 @@
+# Maintainer: Levente Polyak 
+# Contributor: Daniel Wallace 
+# Contributor: K900 
+
+pkgname=steam
+pkgver=1.0.0.59
+pkgrel=2
+pkgdesc="Valve's digital software delivery system"
+url='http://steampowered.com/'
+arch=('x86_64')
+license=('custom')
+depends=('bash' 'desktop-file-utils' 'hicolor-icon-theme' 'curl' 'dbus' 
'freetype2' 'gdk-pixbuf2' 'ttf-font' 'zenity')
+depends_x86_64=('lib32-libgl' 'lib32-gcc-libs' 'lib32-libx11' 

[arch-commits] Commit in steam/trunk (PKGBUILD steam-runtime.sh)

2019-04-15 Thread Giancarlo Razzolini via arch-commits
Date: Monday, April 15, 2019 @ 22:39:17
  Author: grazzolini
Revision: 451738

upgpkg: steam 1.0.0.59-2

* As per Valve request, we have removed all pre-loading from the steam-runtime 
script.

Modified:
  steam/trunk/PKGBUILD
  steam/trunk/steam-runtime.sh

--+
 PKGBUILD |4 ++--
 steam-runtime.sh |2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 21:45:52 UTC (rev 451737)
+++ PKGBUILD2019-04-15 22:39:17 UTC (rev 451738)
@@ -4,7 +4,7 @@
 
 pkgname=steam
 pkgver=1.0.0.59
-pkgrel=1
+pkgrel=2
 pkgdesc="Valve's digital software delivery system"
 url='http://steampowered.com/'
 arch=('x86_64')
@@ -17,7 +17,7 @@
 steam-native.sh
 alsa_sdl_audiodriver.patch)
 
sha512sums=('c5cbe0849b93076bf375de86c78c351af5841163825f2581d54ef98d2501f002d35b18c93b95dba1a7c65444a137bdd5e30f63ca0e72ae6ad526b11a50018276'
-
'da40f8e814f547f6a14901d753a2ffed1a4cf83df9200ee86e83a470b57b3103c3fbfb7cc77166ff1db646cbb306d6a41e79450cc1ea113d68a2defc55168ee2'
+
'5e75c019e9fe8c67d686c4e3343dac1180a69a4bdb7d39b333415c63201eef9b98da5619dbf6fd8daa6884e65bc7f8afc9e52778682425e5a75987d527eae6f0'
 
'32a12cb011eff4d9d4caf54a5c04f622b6301977258e86597be9c4622f87b0ea329bb31e963ecb56ce738ccc2e4d1068fb2b65bdd5ac1758bcd25296d4dab6d6'
 
'5c6117d86cb95071246434851bae3bf7d1c2174b0c8744e33e9c98ccc22efae0c956e1d7e3969c572aa96259b1b8164992d265541bce49a24daa12555d825fd5')
 prepare() {

Modified: steam-runtime.sh
===
--- steam-runtime.sh2019-04-15 21:45:52 UTC (rev 451737)
+++ steam-runtime.sh2019-04-15 22:39:17 UTC (rev 451738)
@@ -1,4 +1,2 @@
 #!/bin/sh
-# Override some libraries to avoid incompatibillity
-export LD_PRELOAD='/usr/$LIB/libstdc++.so.6 /usr/$LIB/libgcc_s.so.1 
/usr/$LIB/libxcb.so.1 /usr/$LIB/libgpg-error.so'
 exec /usr/lib/steam/steam "$@"


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 21:45:46
  Author: dvzrv
Revision: 451736

upgpkg: infamousplugins 0.3.0-1

Upgrading to 0.3.0.

Modified:
  infamousplugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 21:34:19 UTC (rev 451735)
+++ PKGBUILD2019-04-15 21:45:46 UTC (rev 451736)
@@ -1,8 +1,8 @@
 # Maintainer: David Runge 
 _name=infamousPlugins
 pkgname=infamousplugins
-pkgver=0.2.04
-pkgrel=3
+pkgver=0.3.0
+pkgrel=1
 pkgdesc="A collection of open-source LV2 plugins"
 arch=('x86_64')
 url="https://ssj71.github.io/infamousPlugins/;
@@ -11,7 +11,7 @@
 depends=('fftw' 'ntk' 'zita-resampler')
 makedepends=('cmake' 'lv2')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/ssj71/${_name}/archive/v${pkgver}.tar.gz;)
-sha512sums=('340de9a58f454c3998c71f8c0f004e541253b96ee4c5ac870d6ff0fe07c46764534467dca55046e2a160cfc40c4a252912788bd4140c58efcbe4234730305570')
+sha512sums=('54a691bd5a1e0d5274c74d3de3c1dc77c6998bd588a315b6b39de67a78651c6fcb412c527b7a6083666b2ba8aad39e3b32b6efbd6bb12c96653ddbe76524dbbb')
 
 prepare() {
   mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 21:45:52
  Author: dvzrv
Revision: 451737

archrelease: copy trunk to community-x86_64

Added:
  infamousplugins/repos/community-x86_64/PKGBUILD
(from rev 451736, infamousplugins/trunk/PKGBUILD)
Deleted:
  infamousplugins/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 21:45:46 UTC (rev 451736)
+++ PKGBUILD2019-04-15 21:45:52 UTC (rev 451737)
@@ -1,35 +0,0 @@
-# Maintainer: David Runge 
-_name=infamousPlugins
-pkgname=infamousplugins
-pkgver=0.2.04
-pkgrel=3
-pkgdesc="A collection of open-source LV2 plugins"
-arch=('x86_64')
-url="https://ssj71.github.io/infamousPlugins/;
-license=('GPL2')
-groups=('lv2-plugins' 'pro-audio')
-depends=('fftw' 'ntk' 'zita-resampler')
-makedepends=('cmake' 'lv2')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/ssj71/${_name}/archive/v${pkgver}.tar.gz;)
-sha512sums=('340de9a58f454c3998c71f8c0f004e541253b96ee4c5ac870d6ff0fe07c46764534467dca55046e2a160cfc40c4a252912788bd4140c58efcbe4234730305570')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
-  cd "${pkgname}-${pkgver}"
-  mkdir -v build
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
-..
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  install -vDm 644 ../{CHANGELOG,README} \
--t "${pkgdir}/usr/share/doc/${pkgname}/"
-}

Copied: infamousplugins/repos/community-x86_64/PKGBUILD (from rev 451736, 
infamousplugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 21:45:52 UTC (rev 451737)
@@ -0,0 +1,35 @@
+# Maintainer: David Runge 
+_name=infamousPlugins
+pkgname=infamousplugins
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="A collection of open-source LV2 plugins"
+arch=('x86_64')
+url="https://ssj71.github.io/infamousPlugins/;
+license=('GPL2')
+groups=('lv2-plugins' 'pro-audio')
+depends=('fftw' 'ntk' 'zita-resampler')
+makedepends=('cmake' 'lv2')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/ssj71/${_name}/archive/v${pkgver}.tar.gz;)
+sha512sums=('54a691bd5a1e0d5274c74d3de3c1dc77c6998bd588a315b6b39de67a78651c6fcb412c527b7a6083666b2ba8aad39e3b32b6efbd6bb12c96653ddbe76524dbbb')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "${pkgname}-${pkgver}"
+  cd "${pkgname}-${pkgver}"
+  mkdir -v build
+}
+
+build() {
+  cd "$pkgname-$pkgver/build"
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+..
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver/build"
+  make DESTDIR="$pkgdir/" install
+  install -vDm 644 ../{CHANGELOG,README} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+}


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 21:34:13
  Author: dvzrv
Revision: 451734

upgpkg: luppp 1.2.1-1

Upgrading to 1.2.1. Minor cleanups.

Modified:
  luppp/trunk/PKGBUILD

--+
 PKGBUILD |   21 +
 1 file changed, 9 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 21:26:36 UTC (rev 451733)
+++ PKGBUILD2019-04-15 21:34:13 UTC (rev 451734)
@@ -1,6 +1,6 @@
 # Maintainer: David Runge 
 pkgname=luppp
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc="A music creation tool, intended for live use"
 arch=('x86_64')
@@ -7,10 +7,10 @@
 url="http://openavproductions.com/luppp/;
 license=('GPL2')
 groups=('pro-audio')
-depends=('jack' 'liblo' 'libsamplerate' 'ntk')
+depends=('jack' 'liblo' 'ntk')
 makedepends=('meson')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz;)
-sha512sums=('1ff842aea7404e268168265454af12d7d3f3961d0f85228e70e5177ff623f00e2c197ec3b11af3b3a5c5a4040c94b678bbe35e3bbea9008a36c1b96b11c8070e')
+sha512sums=('8a0dc5688f7bc1868aca02205408cf31d380c0e230d8eae703e23c4f888f4a2738ba48540aec3940112ece576da59882036f3057fb04793af72add2ce04fb01f')
 
 prepare() {
   mv -v "openAV-Luppp-release-${pkgver}" "$pkgname-$pkgver"
@@ -17,23 +17,20 @@
 }
 
 build() {
-  arch-meson "$pkgname-$pkgver" build
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
   ninja -C build
 }
 
 package() {
-  install -vDm 755 build/${pkgname} -t ${pkgdir}/usr/bin
   cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
   #docs
   install -vDm 644 {CHANGELOG,README.md} \
 -t "${pkgdir}/usr/share/doc/${pkgname}"
-  # XDG integration
-  install -vDm 644 "resources/metadata/${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  install -vDm 644 "resources/metadata/${pkgname}.appdata.xml" \
--t "${pkgdir}/usr/share/appdata/"
-  install -vDm 644 "resources/icons/${pkgname}.png" \
--t "${pkgdir}/usr/share/pixmaps/"
   # controllers
   install -vDm 644 "resources/controllers/"*.ctlr \
 -t "${pkgdir}/usr/share/${pkgname}/"


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 21:34:19
  Author: dvzrv
Revision: 451735

archrelease: copy trunk to community-x86_64

Added:
  luppp/repos/community-x86_64/PKGBUILD
(from rev 451734, luppp/trunk/PKGBUILD)
Deleted:
  luppp/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   78 -
 1 file changed, 37 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 21:34:13 UTC (rev 451734)
+++ PKGBUILD2019-04-15 21:34:19 UTC (rev 451735)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: David Runge 
-pkgname=luppp
-pkgver=1.2.0
-pkgrel=1
-pkgdesc="A music creation tool, intended for live use"
-arch=('x86_64')
-url="http://openavproductions.com/luppp/;
-license=('GPL2')
-groups=('pro-audio')
-depends=('jack' 'liblo' 'libsamplerate' 'ntk')
-makedepends=('meson')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz;)
-sha512sums=('1ff842aea7404e268168265454af12d7d3f3961d0f85228e70e5177ff623f00e2c197ec3b11af3b3a5c5a4040c94b678bbe35e3bbea9008a36c1b96b11c8070e')
-
-prepare() {
-  mv -v "openAV-Luppp-release-${pkgver}" "$pkgname-$pkgver"
-}
-
-build() {
-  arch-meson "$pkgname-$pkgver" build
-  ninja -C build
-}
-
-package() {
-  install -vDm 755 build/${pkgname} -t ${pkgdir}/usr/bin
-  cd "$pkgname-$pkgver"
-  #docs
-  install -vDm 644 {CHANGELOG,README.md} \
--t "${pkgdir}/usr/share/doc/${pkgname}"
-  # XDG integration
-  install -vDm 644 "resources/metadata/${pkgname}.desktop" \
--t "${pkgdir}/usr/share/applications/"
-  install -vDm 644 "resources/metadata/${pkgname}.appdata.xml" \
--t "${pkgdir}/usr/share/appdata/"
-  install -vDm 644 "resources/icons/${pkgname}.png" \
--t "${pkgdir}/usr/share/pixmaps/"
-  # controllers
-  install -vDm 644 "resources/controllers/"*.ctlr \
--t "${pkgdir}/usr/share/${pkgname}/"
-}

Copied: luppp/repos/community-x86_64/PKGBUILD (from rev 451734, 
luppp/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 21:34:19 UTC (rev 451735)
@@ -0,0 +1,37 @@
+# Maintainer: David Runge 
+pkgname=luppp
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="A music creation tool, intended for live use"
+arch=('x86_64')
+url="http://openavproductions.com/luppp/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('jack' 'liblo' 'ntk')
+makedepends=('meson')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/openAVproductions/openAV-${pkgname}/archive/release-${pkgver}.tar.gz;)
+sha512sums=('8a0dc5688f7bc1868aca02205408cf31d380c0e230d8eae703e23c4f888f4a2738ba48540aec3940112ece576da59882036f3057fb04793af72add2ce04fb01f')
+
+prepare() {
+  mv -v "openAV-Luppp-release-${pkgver}" "$pkgname-$pkgver"
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  #docs
+  install -vDm 644 {CHANGELOG,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+  # controllers
+  install -vDm 644 "resources/controllers/"*.ctlr \
+-t "${pkgdir}/usr/share/${pkgname}/"
+}


[arch-commits] Commit in browserpass-firefox/repos/community-any (PKGBUILD PKGBUILD)

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 21:26:36
  Author: maximbaz
Revision: 451733

archrelease: copy trunk to community-any

Added:
  browserpass-firefox/repos/community-any/PKGBUILD
(from rev 451732, browserpass-firefox/trunk/PKGBUILD)
Deleted:
  browserpass-firefox/repos/community-any/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 21:26:30 UTC (rev 451732)
+++ PKGBUILD2019-04-15 21:26:36 UTC (rev 451733)
@@ -1,39 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=browserp...@maximbaz.com
-_name=browserpass-extension
-pkgname=browserpass-firefox
-pkgver=3.0.11
-pkgrel=1
-pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name};
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
-
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
-noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('150b1b46927f8a2ba69af0f18860a21642feeccf39249618936679186b98f75c'
-'SKIP'
-'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-mkdir -p "${pkgname}-${pkgver}"
-bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
-}
-
-package() {
-
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
-install -dm755 "${_dest}"
-cp -a "${pkgname}-${pkgver}"/* "${_dest}"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-firefox/repos/community-any/PKGBUILD (from rev 451732, 
browserpass-firefox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 21:26:36 UTC (rev 451733)
@@ -0,0 +1,39 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=browserp...@maximbaz.com
+_name=browserpass-extension
+pkgname=browserpass-firefox
+pkgver=3.0.12
+pkgrel=1
+pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name};
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
+
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
+noextract=("${pkgname}-${pkgver}.zip")
+sha256sums=('5b69795996b631fb9c2ce37a5e630e95e887b86ff05ec667098dac17c29cd7a9'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+mkdir -p "${pkgname}-${pkgver}"
+bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
+}
+
+package() {
+
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
+install -dm755 "${_dest}"
+cp -a "${pkgname}-${pkgver}"/* "${_dest}"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 21:26:30
  Author: maximbaz
Revision: 451732

upgpkg: browserpass-firefox 3.0.12-1

Modified:
  browserpass-firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 21:24:36 UTC (rev 451731)
+++ PKGBUILD2019-04-15 21:26:30 UTC (rev 451732)
@@ -3,7 +3,7 @@
 _id=browserp...@maximbaz.com
 _name=browserpass-extension
 pkgname=browserpass-firefox
-pkgver=3.0.11
+pkgver=3.0.12
 pkgrel=1
 pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
 arch=('any')
@@ -14,9 +14,9 @@
 
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
 noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('150b1b46927f8a2ba69af0f18860a21642feeccf39249618936679186b98f75c'
+sha256sums=('5b69795996b631fb9c2ce37a5e630e95e887b86ff05ec667098dac17c29cd7a9'
 'SKIP'
-'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
 
 prepare() {


[arch-commits] Commit in browserpass-chromium/repos/community-any (PKGBUILD PKGBUILD)

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 21:24:36
  Author: maximbaz
Revision: 451731

archrelease: copy trunk to community-any

Added:
  browserpass-chromium/repos/community-any/PKGBUILD
(from rev 451730, browserpass-chromium/trunk/PKGBUILD)
Deleted:
  browserpass-chromium/repos/community-any/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 21:24:13 UTC (rev 451730)
+++ PKGBUILD2019-04-15 21:24:36 UTC (rev 451731)
@@ -1,43 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
-_name=browserpass-extension
-pkgname=browserpass-chromium
-pkgver=3.0.12
-pkgrel=1
-pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name};
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
-
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
-noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('9f30c929c1245d8abb8b83021a8ef7cf2363da3fd91a78ec0f6a7bcb7af8441f'
-'SKIP'
-'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-# Create extension json
-cat << EOF > "${_id}".json
-{
-"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
-"external_version": "${pkgver}"
-}
-EOF
-}
-
-package() {
-install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
-install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-chromium/repos/community-any/PKGBUILD (from rev 451730, 
browserpass-chromium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 21:24:36 UTC (rev 451731)
@@ -0,0 +1,43 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
+_name=browserpass-extension
+pkgname=browserpass-chromium
+pkgver=3.0.12
+pkgrel=1
+pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name};
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
+
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
+noextract=("${pkgname}-${pkgver}.crx")
+sha256sums=('9f30c929c1245d8abb8b83021a8ef7cf2363da3fd91a78ec0f6a7bcb7af8441f'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+# Create extension json
+cat << EOF > "${_id}".json
+{
+"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
+"external_version": "${pkgver}"
+}
+EOF
+}
+
+package() {
+install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
+install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 21:24:08
  Author: maximbaz
Revision: 451729

upgpkg: browserpass-chromium 3.0.12-1

Modified:
  browserpass-chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 20:07:27 UTC (rev 451728)
+++ PKGBUILD2019-04-15 21:24:08 UTC (rev 451729)
@@ -3,7 +3,7 @@
 _id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
 _name=browserpass-extension
 pkgname=browserpass-chromium
-pkgver=3.0.11
+pkgver=3.0.12
 pkgrel=1
 pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
 arch=('any')
@@ -14,9 +14,9 @@
 
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
 noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('1b53ce4eb8285f0c130211167a7a6a0801795f8131bca7cb6e68877a755f9932'
+sha256sums=('9f30c929c1245d8abb8b83021a8ef7cf2363da3fd91a78ec0f6a7bcb7af8441f'
 'SKIP'
-'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
 
 prepare() {


[arch-commits] Commit in browserpass-chromium/repos/community-any (PKGBUILD PKGBUILD)

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 21:24:13
  Author: maximbaz
Revision: 451730

archrelease: copy trunk to community-any

Added:
  browserpass-chromium/repos/community-any/PKGBUILD
(from rev 451729, browserpass-chromium/trunk/PKGBUILD)
Deleted:
  browserpass-chromium/repos/community-any/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 21:24:08 UTC (rev 451729)
+++ PKGBUILD2019-04-15 21:24:13 UTC (rev 451730)
@@ -1,43 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
-_name=browserpass-extension
-pkgname=browserpass-chromium
-pkgver=3.0.11
-pkgrel=1
-pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name};
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
-
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
-noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('1b53ce4eb8285f0c130211167a7a6a0801795f8131bca7cb6e68877a755f9932'
-'SKIP'
-'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-# Create extension json
-cat << EOF > "${_id}".json
-{
-"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
-"external_version": "${pkgver}"
-}
-EOF
-}
-
-package() {
-install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
-install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-chromium/repos/community-any/PKGBUILD (from rev 451729, 
browserpass-chromium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 21:24:13 UTC (rev 451730)
@@ -0,0 +1,43 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
+_name=browserpass-extension
+pkgname=browserpass-chromium
+pkgver=3.0.12
+pkgrel=1
+pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name};
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
+
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
+noextract=("${pkgname}-${pkgver}.crx")
+sha256sums=('9f30c929c1245d8abb8b83021a8ef7cf2363da3fd91a78ec0f6a7bcb7af8441f'
+'SKIP'
+'f9fc49e2b3977f857bf3cbfbeb193bab8b2e17545978c162409d5270e6e0405a')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+# Create extension json
+cat << EOF > "${_id}".json
+{
+"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
+"external_version": "${pkgver}"
+}
+EOF
+}
+
+package() {
+install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
+install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


[arch-commits] Commit in digikam/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-04-15 Thread Antonio Rojas via arch-commits
Date: Monday, April 15, 2019 @ 20:58:49
  Author: arojas
Revision: 350796

archrelease: copy trunk to extra-x86_64

Added:
  digikam/repos/extra-x86_64/PKGBUILD
(from rev 350795, digikam/trunk/PKGBUILD)
Deleted:
  digikam/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   97 ++---
 1 file changed, 49 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 20:57:04 UTC (rev 350795)
+++ PKGBUILD2019-04-15 20:58:49 UTC (rev 350796)
@@ -1,48 +0,0 @@
-# $Id: PKGBUILD 320127 2018-03-24 09:48:28Z arojas $
-# Maintainer: Ronald van Haren 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-# Contributor: Tobias Powalowski 
-
-pkgname=digikam
-_pkgver=6.0.0
-pkgver=${_pkgver//-/_} # for beta versions
-pkgrel=2
-pkgdesc="An advanced digital photo management application"
-arch=(x86_64)
-license=(GPL)
-url="https://www.digikam.org/;
-depends=(liblqr lensfun opencv akonadi-contacts knotifyconfig libksane 
kfilemetadata qtav marble-common threadweaver kcalcore
- qt5-xmlpatterns libkvkontakte libmediawiki)
-makedepends=(extra-cmake-modules doxygen eigen boost kdoctools)
-optdepends=('hugin: panorama tool' 'qt5-imageformats: support for additional 
image formats (WEBP, TIFF)')
-source=("https://download.kde.org/stable/$pkgname/$_pkgver/$pkgname-$_pkgver.tar.xz"{,.sig})
-sha256sums=('6e4f0ee52772ea2baef38fc9b96f18ca10f165f0c5bda71d8161a4eded26fb47'
-'SKIP')
-validpgpkeys=(D1CF2444A7858C5F2FB095B74A77747BC2386E50) # digiKam.org (digiKam 
project) 
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$_pkgver \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_TESTING=OFF \
--DENABLE_KFILEMETADATASUPPORT=ON \
--DENABLE_MEDIAPLAYER=ON \
--DENABLE_AKONADICONTACTSUPPORT=ON \
--DENABLE_MYSQLSUPPORT=ON \
--DENABLE_APPSTYLES=ON \
--DENABLE_QWEBENGINE=ON \
--DOpenGL_GL_PREFERENCE=GLVND
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: digikam/repos/extra-x86_64/PKGBUILD (from rev 350795, 
digikam/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 20:58:49 UTC (rev 350796)
@@ -0,0 +1,49 @@
+# $Id: PKGBUILD 320127 2018-03-24 09:48:28Z arojas $
+# Maintainer: Ronald van Haren 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+# Contributor: Tobias Powalowski 
+
+pkgname=digikam
+_pkgver=6.1.0
+pkgver=${_pkgver//-/_} # for beta versions
+pkgrel=1
+pkgdesc="An advanced digital photo management application"
+arch=(x86_64)
+license=(GPL)
+url="https://www.digikam.org/;
+depends=(lensfun opencv akonadi-contacts knotifyconfig libksane kfilemetadata 
qtav marble-common threadweaver kcalcore
+ qt5-xmlpatterns libmagick)
+makedepends=(extra-cmake-modules doxygen eigen boost kdoctools libkvkontakte)
+optdepends=('hugin: panorama tool' 'qt5-imageformats: support for additional 
image formats (WEBP, TIFF)'
+'libkvkontakte: VKontakte plugin')
+source=("https://download.kde.org/stable/$pkgname/$_pkgver/$pkgname-$_pkgver.tar.xz"{,.sig})
+sha256sums=('c487be4047d73f179cddff26355b6f3b270f407f73009d14b37f2c12039fffe7'
+'SKIP')
+validpgpkeys=(D1CF2444A7858C5F2FB095B74A77747BC2386E50) # digiKam.org (digiKam 
project) 
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$_pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_TESTING=OFF \
+-DENABLE_KFILEMETADATASUPPORT=ON \
+-DENABLE_MEDIAPLAYER=ON \
+-DENABLE_AKONADICONTACTSUPPORT=ON \
+-DENABLE_MYSQLSUPPORT=ON \
+-DENABLE_APPSTYLES=ON \
+-DENABLE_QWEBENGINE=ON \
+-DOpenGL_GL_PREFERENCE=GLVND
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-04-15 Thread Antonio Rojas via arch-commits
Date: Monday, April 15, 2019 @ 20:57:04
  Author: arojas
Revision: 350795

Update to 6.1.0

Modified:
  digikam/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 19:47:20 UTC (rev 350794)
+++ PKGBUILD2019-04-15 20:57:04 UTC (rev 350795)
@@ -5,19 +5,20 @@
 # Contributor: Tobias Powalowski 
 
 pkgname=digikam
-_pkgver=6.0.0
+_pkgver=6.1.0
 pkgver=${_pkgver//-/_} # for beta versions
-pkgrel=2
+pkgrel=1
 pkgdesc="An advanced digital photo management application"
 arch=(x86_64)
 license=(GPL)
 url="https://www.digikam.org/;
-depends=(liblqr lensfun opencv akonadi-contacts knotifyconfig libksane 
kfilemetadata qtav marble-common threadweaver kcalcore
- qt5-xmlpatterns libkvkontakte libmediawiki)
-makedepends=(extra-cmake-modules doxygen eigen boost kdoctools)
-optdepends=('hugin: panorama tool' 'qt5-imageformats: support for additional 
image formats (WEBP, TIFF)')
+depends=(lensfun opencv akonadi-contacts knotifyconfig libksane kfilemetadata 
qtav marble-common threadweaver kcalcore
+ qt5-xmlpatterns libmagick)
+makedepends=(extra-cmake-modules doxygen eigen boost kdoctools libkvkontakte)
+optdepends=('hugin: panorama tool' 'qt5-imageformats: support for additional 
image formats (WEBP, TIFF)'
+'libkvkontakte: VKontakte plugin')
 
source=("https://download.kde.org/stable/$pkgname/$_pkgver/$pkgname-$_pkgver.tar.xz"{,.sig})
-sha256sums=('6e4f0ee52772ea2baef38fc9b96f18ca10f165f0c5bda71d8161a4eded26fb47'
+sha256sums=('c487be4047d73f179cddff26355b6f3b270f407f73009d14b37f2c12039fffe7'
 'SKIP')
 validpgpkeys=(D1CF2444A7858C5F2FB095B74A77747BC2386E50) # digiKam.org (digiKam 
project) 
 


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

2019-04-15 Thread Antonio Rojas via arch-commits
Date: Monday, April 15, 2019 @ 20:07:27
  Author: arojas
Revision: 451728

archrelease: copy trunk to community-x86_64

Added:
  kstars/repos/community-x86_64/PKGBUILD
(from rev 451727, kstars/trunk/PKGBUILD)
Deleted:
  kstars/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 20:05:14 UTC (rev 451727)
+++ PKGBUILD2019-04-15 20:07:27 UTC (rev 451728)
@@ -1,39 +0,0 @@
-# Maintainer: Felix Yan 
-# Maintainer: Antonio Rojas 
-# Contributor: Andrea Scarpino 
-
-pkgname=kstars
-pkgver=3.1.1
-pkgrel=1
-epoch=1
-pkgdesc="Desktop Planetarium"
-url="https://kde.org/applications/education/kstars/;
-arch=(x86_64)
-license=(GPL LGPL FDL)
-depends=(wcslib libraw kplotting knewstuff knotifyconfig qt5-datavis3d libindi 
qt5-quickcontrols qt5-websockets qtkeychain
- breeze-icons hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools eigen)
-optdepends=('xplanet: XPlanet support')
-source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('60867ce1488e2a47757666d86765abed4950360c33e8ba28acd7aa6137cab491'
-'SKIP')
-validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DBUILD_TESTING=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DOpenGL_GL_PREFERENCE=GLVND
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: kstars/repos/community-x86_64/PKGBUILD (from rev 451727, 
kstars/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 20:07:27 UTC (rev 451728)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan 
+# Maintainer: Antonio Rojas 
+# Contributor: Andrea Scarpino 
+
+pkgname=kstars
+pkgver=3.2.0
+pkgrel=1
+epoch=1
+pkgdesc="Desktop Planetarium"
+url="https://kde.org/applications/education/kstars/;
+arch=(x86_64)
+license=(GPL LGPL FDL)
+depends=(wcslib libraw kplotting knewstuff knotifyconfig qt5-datavis3d libindi 
qt5-quickcontrols qt5-websockets qtkeychain
+ breeze-icons hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools eigen)
+optdepends=('xplanet: XPlanet support')
+source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('44054691d2686db2069525b97bb9a075f1bf93d85f230493577002c8dce3c854'
+'SKIP')
+validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq 

+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DBUILD_TESTING=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DOpenGL_GL_PREFERENCE=GLVND
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2019-04-15 Thread Antonio Rojas via arch-commits
Date: Monday, April 15, 2019 @ 20:05:14
  Author: arojas
Revision: 451727

Update to 3.2.0

Modified:
  kstars/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 19:30:10 UTC (rev 451726)
+++ PKGBUILD2019-04-15 20:05:14 UTC (rev 451727)
@@ -3,7 +3,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgname=kstars
-pkgver=3.1.1
+pkgver=3.2.0
 pkgrel=1
 epoch=1
 pkgdesc="Desktop Planetarium"
@@ -15,7 +15,7 @@
 makedepends=(extra-cmake-modules kdoctools eigen)
 optdepends=('xplanet: XPlanet support')
 
source=("https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('60867ce1488e2a47757666d86765abed4950360c33e8ba28acd7aa6137cab491'
+sha256sums=('44054691d2686db2069525b97bb9a075f1bf93d85f230493577002c8dce3c854'
 'SKIP')
 validpgpkeys=(259D9FCEE9175351965633696D9CE2AEE028C4F3) # Jasem Mutlaq 

 


[arch-commits] Commit in cheese/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2019-04-15 Thread Jan Steffens via arch-commits
Date: Monday, April 15, 2019 @ 19:47:20
  Author: heftig
Revision: 350794

archrelease: copy trunk to extra-x86_64

Added:
  cheese/repos/extra-x86_64/PKGBUILD
(from rev 350793, cheese/trunk/PKGBUILD)
Deleted:
  cheese/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   94 +
 1 file changed, 46 insertions(+), 48 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 19:47:09 UTC (rev 350793)
+++ PKGBUILD2019-04-15 19:47:20 UTC (rev 350794)
@@ -1,48 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-
-pkgname=cheese
-pkgver=3.32.1
-pkgrel=1
-pkgdesc="Take photos and videos with your webcam, with fun graphical effects"
-url="https://wiki.gnome.org/Apps/Cheese;
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 gstreamer gst-plugins-bad gst-plugins-base gst-plugins-good 
clutter-gst clutter-gtk
- libcanberra librsvg gnome-desktop libgudev dconf)
-makedepends=(intltool gobject-introspection itstool vala gnome-common git 
appstream-glib
- gnome-video-effects)
-optdepends=('gnome-video-effects: Camera effects')
-groups=(gnome)
-options=(!emptydirs)
-_commit=f968f45985a93a75ce20236615bf8ff5586174ce  # gnome-3-32
-source=("git+https://gitlab.gnome.org/GNOME/cheese.git#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  git tag -f 3.32.1 f968f45985a93a75ce20236615bf8ff5586174ce  # Fixup missing 
tag
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static --disable-schemas-compile --libexecdir=/usr/lib/cheese \
-  --enable-gtk-doc
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}

Copied: cheese/repos/extra-x86_64/PKGBUILD (from rev 350793, 
cheese/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 19:47:20 UTC (rev 350794)
@@ -0,0 +1,46 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=cheese
+pkgver=3.32.1
+pkgrel=2
+pkgdesc="Take photos and videos with your webcam, with fun graphical effects"
+url="https://wiki.gnome.org/Apps/Cheese;
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 gstreamer gst-plugins-bad gst-plugins-base gst-plugins-good 
clutter-gst clutter-gtk
+ libcanberra librsvg gnome-desktop libgudev dconf gnome-video-effects)
+makedepends=(intltool gobject-introspection itstool vala gnome-common git 
appstream-glib)
+groups=(gnome)
+options=(!emptydirs)
+_commit=f968f45985a93a75ce20236615bf8ff5586174ce  # gnome-3-32
+source=("git+https://gitlab.gnome.org/GNOME/cheese.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  git tag -f 3.32.1 f968f45985a93a75ce20236615bf8ff5586174ce  # Fixup missing 
tag
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-static --disable-schemas-compile --libexecdir=/usr/lib/cheese \
+  --enable-gtk-doc
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2019-04-15 Thread Jan Steffens via arch-commits
Date: Monday, April 15, 2019 @ 19:47:09
  Author: heftig
Revision: 350793

3.32.1-2

Modified:
  cheese/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 15:58:54 UTC (rev 350792)
+++ PKGBUILD2019-04-15 19:47:09 UTC (rev 350793)
@@ -3,16 +3,14 @@
 
 pkgname=cheese
 pkgver=3.32.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Take photos and videos with your webcam, with fun graphical effects"
 url="https://wiki.gnome.org/Apps/Cheese;
 arch=(x86_64)
 license=(GPL)
 depends=(gtk3 gstreamer gst-plugins-bad gst-plugins-base gst-plugins-good 
clutter-gst clutter-gtk
- libcanberra librsvg gnome-desktop libgudev dconf)
-makedepends=(intltool gobject-introspection itstool vala gnome-common git 
appstream-glib
- gnome-video-effects)
-optdepends=('gnome-video-effects: Camera effects')
+ libcanberra librsvg gnome-desktop libgudev dconf gnome-video-effects)
+makedepends=(intltool gobject-introspection itstool vala gnome-common git 
appstream-glib)
 groups=(gnome)
 options=(!emptydirs)
 _commit=f968f45985a93a75ce20236615bf8ff5586174ce  # gnome-3-32


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

2019-04-15 Thread Daniel Bermond via arch-commits
Date: Monday, April 15, 2019 @ 19:30:10
  Author: dbermond
Revision: 451726

archrelease: copy trunk to community-x86_64

Added:
  intel-gmmlib/repos/community-x86_64/PKGBUILD
(from rev 451725, intel-gmmlib/trunk/PKGBUILD)
Deleted:
  intel-gmmlib/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   79 ++---
 1 file changed, 40 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 19:29:37 UTC (rev 451725)
+++ PKGBUILD2019-04-15 19:30:10 UTC (rev 451726)
@@ -1,39 +0,0 @@
-# Maintainer: Bruno Pagani 
-# Contributor: Daniel Bermond < yahoo-com: danielbermond >
-
-pkgname=intel-gmmlib
-pkgver=19.1.1
-pkgrel=1
-pkgdesc="Intel Graphics Memory Management Library"
-arch=('x86_64')
-url="https://github.com/intel/gmmlib/;
-license=('MIT')
-depends=('gcc-libs')
-makedepends=('cmake')
-provides=('gmmlib')
-conflicts=('gmmlib')
-replaces=('gmmlib')
-options=('!emptydirs')
-source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('aab4241bde754225a84d71a459f5734c311a6437305ca7e99cd5cbeaab5ff6d5')
-
-prepare() {
-mkdir -p build
-}
-
-build() {
-cd build
-cmake ../${pkgname#*-}-${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE='None' \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DRUN_TEST_SUITE=ON \
--Wno-dev
-make
-}
-
-package() {
-cd build
-make DESTDIR="${pkgdir}" install
-install -Dm644 ../${pkgname#*-}-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
-}

Copied: intel-gmmlib/repos/community-x86_64/PKGBUILD (from rev 451725, 
intel-gmmlib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 19:30:10 UTC (rev 451726)
@@ -0,0 +1,40 @@
+# Maintainer: Bruno Pagani 
+# Maintainer: Daniel Bermond 
+
+pkgname=intel-gmmlib
+pkgver=19.1.2
+pkgrel=1
+pkgdesc="Intel Graphics Memory Management Library"
+arch=('x86_64')
+url="https://github.com/intel/gmmlib/;
+license=('MIT')
+depends=('gcc-libs')
+makedepends=('cmake')
+provides=('gmmlib')
+conflicts=('gmmlib')
+replaces=('gmmlib')
+options=('!emptydirs')
+source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('2e83e013c78ade7b5051209044a4d9b80b4b6303eb81cb5366e53470fc3c18ec')
+
+prepare() {
+mkdir -p build
+}
+
+build() {
+cd build
+cmake ../${pkgname#*-}-${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE='None' \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DRUN_TEST_SUITE=ON \
+-DGMMLIB_API_PATCH_VERSION=0 \
+-Wno-dev
+make
+}
+
+package() {
+cd build
+make DESTDIR="${pkgdir}" install
+install -Dm644 ../${pkgname#*-}-${pkgname}-${pkgver}/LICENSE.md -t 
"${pkgdir}"/usr/share/licenses/${pkgname}/
+}


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

2019-04-15 Thread Daniel Bermond via arch-commits
Date: Monday, April 15, 2019 @ 19:29:37
  Author: dbermond
Revision: 451725

upgpkg: intel-gmmlib 19.1.2-1

Updated to version 19.1.2

Modified:
  intel-gmmlib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 18:47:34 UTC (rev 451724)
+++ PKGBUILD2019-04-15 19:29:37 UTC (rev 451725)
@@ -1,8 +1,8 @@
 # Maintainer: Bruno Pagani 
-# Contributor: Daniel Bermond < yahoo-com: danielbermond >
+# Maintainer: Daniel Bermond 
 
 pkgname=intel-gmmlib
-pkgver=19.1.1
+pkgver=19.1.2
 pkgrel=1
 pkgdesc="Intel Graphics Memory Management Library"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 replaces=('gmmlib')
 options=('!emptydirs')
 
source=("https://github.com/${pkgname/-//}/archive/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('aab4241bde754225a84d71a459f5734c311a6437305ca7e99cd5cbeaab5ff6d5')
+sha256sums=('2e83e013c78ade7b5051209044a4d9b80b4b6303eb81cb5366e53470fc3c18ec')
 
 prepare() {
 mkdir -p build
@@ -28,6 +28,7 @@
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_INSTALL_LIBDIR=lib \
 -DRUN_TEST_SUITE=ON \
+-DGMMLIB_API_PATCH_VERSION=0 \
 -Wno-dev
 make
 }


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

2019-04-15 Thread Christian Rebischke via arch-commits
Date: Monday, April 15, 2019 @ 18:47:34
  Author: shibumi
Revision: 451724

archrelease: copy trunk to community-x86_64

Added:
  xsecurelock/repos/community-x86_64/PKGBUILD
(from rev 451723, xsecurelock/trunk/PKGBUILD)
Deleted:
  xsecurelock/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 18:47:26 UTC (rev 451723)
+++ PKGBUILD2019-04-15 18:47:34 UTC (rev 451724)
@@ -1,41 +0,0 @@
-# Maintainer: Christian Rebischke 
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-# Contributor: Johannes Wienke 
-pkgname=xsecurelock
-pkgver=1.2
-pkgrel=6
-pkgdesc="X11 screen lock utility with security in mind"
-arch=('x86_64')
-url="https://github.com/google/xsecurelock;
-license=('APACHE')
-depends=('pam' 'libxcomposite' 'libxmu' 'libxft' 'libxrandr' 'libxss')
-optdepends=('mplayer: for the saver_mplayer module'\
-'mpv: for the saver_mpv module'\
-'imagemagick: for the auth_pamtester module'\
-'pamtester: for the auth_pamtester module'\
-'xorg-xset: for the saver_blank module'\
-'xscreensaver: for the saver_xscreensaver module')
-source=("https://github.com/google/xsecurelock/archive/v${pkgver}.tar.gz;)
-sha512sums=('0bf338bca2d49b89882cb280470e66cd3b0afa4c1671ba1a7aeef7e71deff3bd6edca2eac1b213ce61028a7fadbe8ba981cbd78db18815fce35bb7558bc359ac')
-
-prepare() {
-cd "${pkgname}-${pkgver}"
-# TODO remove with the next release 
(https://github.com/google/xsecurelock/issues/59)
-echo 'const char *const git_version = "1.2";' > version.c
-}
-
-build() {
-cd "${pkgname}-${pkgver}"
-sh autogen.sh
-./configure --prefix=/usr \
---libexecdir=/usr/lib \
---with-pam-service-name=system-auth
-make
-}
-
-package() {
-cd "${pkgname}-${pkgver}"
-make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=4 sw=4 et:

Copied: xsecurelock/repos/community-x86_64/PKGBUILD (from rev 451723, 
xsecurelock/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 18:47:34 UTC (rev 451724)
@@ -0,0 +1,41 @@
+# Maintainer: Christian Rebischke 
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+# Contributor: Johannes Wienke 
+pkgname=xsecurelock
+pkgver=1.3
+pkgrel=1
+pkgdesc="X11 screen lock utility with security in mind"
+arch=('x86_64')
+url="https://github.com/google/xsecurelock;
+license=('APACHE')
+depends=('pam' 'libxcomposite' 'libxmu' 'libxft' 'libxrandr' 'libxss')
+optdepends=('mplayer: for the saver_mplayer module'\
+'mpv: for the saver_mpv module'\
+'imagemagick: for the auth_pamtester module'\
+'pamtester: for the auth_pamtester module'\
+'xorg-xset: for the saver_blank module'\
+'xscreensaver: for the saver_xscreensaver module')
+source=("https://github.com/google/xsecurelock/archive/v${pkgver}.tar.gz;)
+sha512sums=('a38d3cbc0c4144371fe92a9831818f4281ddbf0886352d4924b8e378f98d160adf75b48cf165b96a991f89b03a6dcaeb5d81647c77747599aac8799cb8da323e')
+
+prepare() {
+cd "${pkgname}-${pkgver}"
+# TODO remove with the next release 
(https://github.com/google/xsecurelock/issues/59)
+echo 'const char *const git_version = "1.3";' > version.c
+}
+
+build() {
+cd "${pkgname}-${pkgver}"
+sh autogen.sh
+./configure --prefix=/usr \
+--libexecdir=/usr/lib \
+--with-pam-service-name=system-auth
+make
+}
+
+package() {
+cd "${pkgname}-${pkgver}"
+make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-04-15 Thread Christian Rebischke via arch-commits
Date: Monday, April 15, 2019 @ 18:47:26
  Author: shibumi
Revision: 451723

upgpkg: xsecurelock 1.3-1

Modified:
  xsecurelock/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 18:44:00 UTC (rev 451722)
+++ PKGBUILD2019-04-15 18:47:26 UTC (rev 451723)
@@ -2,8 +2,8 @@
 # Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
 # Contributor: Johannes Wienke 
 pkgname=xsecurelock
-pkgver=1.2
-pkgrel=6
+pkgver=1.3
+pkgrel=1
 pkgdesc="X11 screen lock utility with security in mind"
 arch=('x86_64')
 url="https://github.com/google/xsecurelock;
@@ -16,12 +16,12 @@
 'xorg-xset: for the saver_blank module'\
 'xscreensaver: for the saver_xscreensaver module')
 source=("https://github.com/google/xsecurelock/archive/v${pkgver}.tar.gz;)
-sha512sums=('0bf338bca2d49b89882cb280470e66cd3b0afa4c1671ba1a7aeef7e71deff3bd6edca2eac1b213ce61028a7fadbe8ba981cbd78db18815fce35bb7558bc359ac')
+sha512sums=('a38d3cbc0c4144371fe92a9831818f4281ddbf0886352d4924b8e378f98d160adf75b48cf165b96a991f89b03a6dcaeb5d81647c77747599aac8799cb8da323e')
 
 prepare() {
 cd "${pkgname}-${pkgver}"
 # TODO remove with the next release 
(https://github.com/google/xsecurelock/issues/59)
-echo 'const char *const git_version = "1.2";' > version.c
+echo 'const char *const git_version = "1.3";' > version.c
 }
 
 build() {


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 18:44:00
  Author: dvzrv
Revision: 451722

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 18:43:54 UTC (rev 451721)
+++ PKGBUILD2019-04-15 18:44:00 UTC (rev 451722)
@@ -1,36 +0,0 @@
-# Maintainer: David Runge 
-pkgname=vm.lv2
-pkgver=0.4.0
-pkgrel=4
-pkgdesc="A virtual machine LV2 plugin bundle"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/vm/#;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('libgl')
-makedepends=('cmake' 'lv2')
-source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-md5sums=('01614eb27309f4fbd0dde02dc74991c0')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  # hotfixing undeclared variable:
-  # https://gitlab.com/OpenMusicKontrollers/vm.lv2/issues/1
-  sed -e 's/HUGE/HUGE_VAL/g' -i vm_ui.c
-  mkdir -v build
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}

Copied: vm.lv2/repos/community-x86_64/PKGBUILD (from rev 451721, 
vm.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 18:44:00 UTC (rev 451722)
@@ -0,0 +1,36 @@
+# Maintainer: David Runge 
+pkgname=vm.lv2
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="A virtual machine LV2 plugin bundle"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/vm/#;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('libgl')
+makedepends=('lv2' 'meson' 'sord')
+source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
+md5sums=('7313588b1e5b9794fc70c1b7acb31134')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in vm.lv2/trunk (PKGBUILD)

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 18:43:54
  Author: dvzrv
Revision: 451721

upgpkg: vm.lv2 0.6.0-1

Upgrading to 0.6.0.

Modified:
  vm.lv2/trunk/PKGBUILD

--+
 PKGBUILD |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 18:35:59 UTC (rev 451720)
+++ PKGBUILD2019-04-15 18:43:54 UTC (rev 451721)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=vm.lv2
-pkgver=0.4.0
-pkgrel=4
+pkgver=0.6.0
+pkgrel=1
 pkgdesc="A virtual machine LV2 plugin bundle"
 arch=('x86_64')
 url="https://open-music-kontrollers.ch/lv2/vm/#;
@@ -8,29 +8,29 @@
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
 depends=('libgl')
-makedepends=('cmake' 'lv2')
+makedepends=('lv2' 'meson' 'sord')
 
source=("https://git.open-music-kontrollers.ch/lv2//$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-md5sums=('01614eb27309f4fbd0dde02dc74991c0')
+md5sums=('7313588b1e5b9794fc70c1b7acb31134')
 
-prepare() {
+build() {
   cd "$pkgname-$pkgver"
-  # hotfixing undeclared variable:
-  # https://gitlab.com/OpenMusicKontrollers/vm.lv2/issues/1
-  sed -e 's/HUGE/HUGE_VAL/g' -i vm_ui.c
-  mkdir -v build
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
 }
 
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
 
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
   # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


[arch-commits] Commit in sherlock.lv2/trunk (PKGBUILD)

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 18:35:52
  Author: dvzrv
Revision: 451719

upgpkg: sherlock.lv2 0.18.0-1

Upgrading to 0.18.0.

Modified:
  sherlock.lv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 18:24:41 UTC (rev 451718)
+++ PKGBUILD2019-04-15 18:35:52 UTC (rev 451719)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=sherlock.lv2
-pkgver=0.14.0
-pkgrel=4
+pkgver=0.18.0
+pkgrel=1
 pkgdesc="An investigative plugin bundle"
 arch=('x86_64')
 url="https://open-music-kontrollers.ch/lv2/sherlock/;
@@ -8,26 +8,23 @@
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
 depends=('libgl' 'sratom')
-makedepends=('cmake' 'flex' 'lv2')
+makedepends=('flex' 'lv2' 'meson' 'sord')
 
source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-sha512sums=('fff8aad4bf1570d3919320d0adc2dcbc984d90e0b133f7062d492c1a14540c41cbe02601e490c40c715aa629688d81e39ec2f73906c52c5d4a581a6871783c10')
+sha512sums=('3f0fa46fb14568b727ca727d03b1b9bc2cf1e85f7deaaa1d607ec4ebe4f28ac3ef0a6cb6487b3f6fbd0cc3dfe99c315d456813ede2df4487f4147d06b9213496')
 
-prepare() {
+build() {
   cd "$pkgname-$pkgver"
-  mkdir -v build
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
 }
 
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
-
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
   # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 18:35:59
  Author: dvzrv
Revision: 451720

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   63 +
 1 file changed, 30 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 18:35:52 UTC (rev 451719)
+++ PKGBUILD2019-04-15 18:35:59 UTC (rev 451720)
@@ -1,33 +0,0 @@
-# Maintainer: David Runge 
-pkgname=sherlock.lv2
-pkgver=0.14.0
-pkgrel=4
-pkgdesc="An investigative plugin bundle"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/sherlock/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('libgl' 'sratom')
-makedepends=('cmake' 'flex' 'lv2')
-source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
-sha512sums=('fff8aad4bf1570d3919320d0adc2dcbc984d90e0b133f7062d492c1a14540c41cbe02601e490c40c715aa629688d81e39ec2f73906c52c5d4a581a6871783c10')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -v build
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}

Copied: sherlock.lv2/repos/community-x86_64/PKGBUILD (from rev 451719, 
sherlock.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 18:35:59 UTC (rev 451720)
@@ -0,0 +1,30 @@
+# Maintainer: David Runge 
+pkgname=sherlock.lv2
+pkgver=0.18.0
+pkgrel=1
+pkgdesc="An investigative plugin bundle"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/sherlock/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('libgl' 'sratom')
+makedepends=('flex' 'lv2' 'meson' 'sord')
+source=("https://git.open-music-kontrollers.ch/lv2/$pkgname/snapshot/$pkgname-$pkgver.tar.xz;)
+sha512sums=('3f0fa46fb14568b727ca727d03b1b9bc2cf1e85f7deaaa1d607ec4ebe4f28ac3ef0a6cb6487b3f6fbd0cc3dfe99c315d456813ede2df4487f4147d06b9213496')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 18:23:48
  Author: dvzrv
Revision: 451717

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   69 +++--
 1 file changed, 36 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 18:23:39 UTC (rev 451716)
+++ PKGBUILD2019-04-15 18:23:48 UTC (rev 451717)
@@ -1,33 +0,0 @@
-# Maintainer: David Runge 
-pkgname=eteroj.lv2
-pkgver=0.4.0
-pkgrel=4
-pkgdesc="Open Sound Control for LV2"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/eteroj/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('libuv')
-makedepends=('cmake' 'lv2')
-source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('93288eaf6ff1df439f8af920f535f46d2dcdf792b0d737c2c316efe005928e6447dccdbb057594c548943089b2f7883de18ad9f652c4a15f6cad2f5f5de7c5bb')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -v build
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}

Copied: eteroj.lv2/repos/community-x86_64/PKGBUILD (from rev 451716, 
eteroj.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 18:23:48 UTC (rev 451717)
@@ -0,0 +1,36 @@
+# Maintainer: David Runge 
+pkgname=eteroj.lv2
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="Open Sound Control for LV2"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/eteroj/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('glibc')
+makedepends=('lv2' 'meson' 'sord')
+source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('9c28789b5b69129e6c57dce40cd167bd226afe4209aeca5edf3ae205f9525d25334483c540da24314c02f11476679c7988eed9e1acbc6f2d8722d6c0abe7')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in eteroj.lv2/trunk (PKGBUILD)

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 18:23:39
  Author: dvzrv
Revision: 451716

upgpkg: eteroj.lv2 0.6.0-1

Upgrading to 0.6.0.

Modified:
  eteroj.lv2/trunk/PKGBUILD

--+
 PKGBUILD |   37 -
 1 file changed, 20 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 18:04:55 UTC (rev 451715)
+++ PKGBUILD2019-04-15 18:23:39 UTC (rev 451716)
@@ -1,33 +1,36 @@
 # Maintainer: David Runge 
 pkgname=eteroj.lv2
-pkgver=0.4.0
-pkgrel=4
+pkgver=0.6.0
+pkgrel=1
 pkgdesc="Open Sound Control for LV2"
 arch=('x86_64')
 url="https://open-music-kontrollers.ch/lv2/eteroj/;
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
-depends=('libuv')
-makedepends=('cmake' 'lv2')
+depends=('glibc')
+makedepends=('lv2' 'meson' 'sord')
 
source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('93288eaf6ff1df439f8af920f535f46d2dcdf792b0d737c2c316efe005928e6447dccdbb057594c548943089b2f7883de18ad9f652c4a15f6cad2f5f5de7c5bb')
+sha512sums=('9c28789b5b69129e6c57dce40cd167bd226afe4209aeca5edf3ae205f9525d25334483c540da24314c02f11476679c7988eed9e1acbc6f2d8722d6c0abe7')
 
-prepare() {
+build() {
   cd "$pkgname-$pkgver"
-  mkdir -v build
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
 }
 
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
 
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
   # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


[arch-commits] Commit in python-pytorch/repos/community-testing-x86_64 (2 files)

2019-04-15 Thread Konstantin Gizdov via arch-commits
Date: Monday, April 15, 2019 @ 18:04:55
  Author: kgizdov
Revision: 451715

archrelease: copy trunk to community-testing-x86_64

Added:
  python-pytorch/repos/community-testing-x86_64/PKGBUILD
(from rev 451714, python-pytorch/trunk/PKGBUILD)
Deleted:
  python-pytorch/repos/community-testing-x86_64/PKGBUILD

--+
 PKGBUILD |  264 ++---
 1 file changed, 149 insertions(+), 115 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 18:04:04 UTC (rev 451714)
+++ PKGBUILD2019-04-15 18:04:55 UTC (rev 451715)
@@ -1,115 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Stephen Zhang 
-
-pkgbase="python-pytorch"
-pkgname=("python-pytorch" "python-pytorch-cuda")
-_pkgname="pytorch"
-pkgver=1.0.1
-pkgrel=7
-pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
-arch=('x86_64')
-url="https://pytorch.org;
-license=('BSD')
-depends=('python' 'python-yaml' 'python-numpy' 'opencv' 'nccl')
-makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda' 'cudnn' 'git')
-source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;)
-sha256sums=('SKIP')
-
-get_pyver () {
-python -c 'import sys; print(str(sys.version_info[0]) + "." + 
str(sys.version_info[1]))'
-}
-
-prepare() {
-  cd "${_pkgname}-${pkgver}"
-
-  # This is the lazy way since pytorch has sooo many submodules and they keep
-  # changing them around but we've run into more problems so far doing it the
-  # manual than the lazy way. This lazy way (not explicitly specifying all
-  # submodules) will make building inefficient but for now I'll take it.
-  # It will result in the same package, don't worry.
-  git submodule update --init --recursive
-
-  cd ..
-
-  cp -a "${_pkgname}-${pkgver}" "${_pkgname}-${pkgver}-cuda"
-}
-
-build() {
-  export CC=gcc
-  export CXX=g++
-  export PYTORCH_BUILD_VERSION=${pkgver}
-  export PYTORCH_BUILD_NUMBER=1
-
-  echo "Building without cuda"
-  export NO_CUDA=1
-  export WITH_CUDNN=0
-  export USE_OPENCV=1
-  export BUILD_BINARY=1
-
-  cd "$srcdir/${_pkgname}-${pkgver}"
-  python setup.py build
-
-  echo "Building with cuda"
-  export NO_CUDA=0
-  export WITH_CUDNN=1
-  export CUDAHOSTCXX=g++
-  export CUDA_HOME=/opt/cuda
-  export CUDNN_LIB_DIR=/usr/lib
-  export CUDNN_INCLUDE_DIR=/usr/include
-  export TORCH_NVCC_FLAGS="-Xfatbin -compress-all"
-  export 
TORCH_CUDA_ARCH_LIST="3.0;3.2;3.5;3.7;5.0;5.2;5.3;6.0;6.1;6.2;7.0;7.2;7.5"
-
-  cd "$srcdir/${_pkgname}-${pkgver}-cuda"
-  python setup.py build
-}
-
-package_python-pytorch() {
-  cd "$srcdir/${_pkgname}-${pkgver}"
-  python setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-  # put CMake files in correct place
-  install -d "${pkgdir}/usr/lib/cmake"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/share/cmake"/* \
- "${pkgdir}/usr/lib/cmake/"
-  # put C++ API in correct place
-  install -d "${pkgdir}/usr/bin"
-  install -d "${pkgdir}/usr/include"
-  install -d "${pkgdir}/usr/lib"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/include"/* \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THCUNN.h" \
- "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THNN.h" \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/*.so \
- "${pkgdir}/usr/lib/"
-  mv 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/torch_shm_manager
 \
- "${pkgdir}/usr/bin/"
-}
-
-package_python-pytorch-cuda() {
-  depends+=('cuda' 'cudnn')
-  provides=('python-pytorch')
-  conflicts=('python-pytorch')
-  cd "$srcdir/${_pkgname}-${pkgver}-cuda"
-  python setup.py install --root="$pkgdir"/ --optimize=1 --skip-build
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
-  # put CMake files in correct place
-  install -d "${pkgdir}/usr/lib/cmake"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/share/cmake"/* \
- "${pkgdir}/usr/lib/cmake/"
-  # put C++ API in correct place
-  install -d "${pkgdir}/usr/bin"
-  install -d "${pkgdir}/usr/include"
-  install -d "${pkgdir}/usr/lib"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/include"/* \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THCUNN.h" \
- "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THNN.h" \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/*.so \
- "${pkgdir}/usr/lib/"
-  mv 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/torch_shm_manager
 \
- "${pkgdir}/usr/bin/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: 

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

2019-04-15 Thread Konstantin Gizdov via arch-commits
Date: Monday, April 15, 2019 @ 18:04:04
  Author: kgizdov
Revision: 451714

fix runtime path dependence

Modified:
  python-pytorch/trunk/PKGBUILD

--+
 PKGBUILD |   82 +++--
 1 file changed, 58 insertions(+), 24 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 17:58:54 UTC (rev 451713)
+++ PKGBUILD2019-04-15 18:04:04 UTC (rev 451714)
@@ -5,12 +5,12 @@
 pkgname=("python-pytorch" "python-pytorch-cuda")
 _pkgname="pytorch"
 pkgver=1.0.1
-pkgrel=7
+pkgrel=8
 pkgdesc="Tensors and Dynamic neural networks in Python with strong GPU 
acceleration"
 arch=('x86_64')
 url="https://pytorch.org;
 license=('BSD')
-depends=('python' 'python-yaml' 'python-numpy' 'opencv' 'nccl')
+depends=('opencv' 'openmp' 'nccl' 'pybind11' 'python' 'python-yaml' 
'python-numpy')
 makedepends=('python' 'python-setuptools' 'python-yaml' 'python-numpy' 'cmake' 
'cuda' 'cudnn' 'git')
 
source=("${_pkgname}-${pkgver}::git+https://github.com/pytorch/pytorch.git#tag=v$pkgver;)
 sha256sums=('SKIP')
@@ -69,21 +69,38 @@
   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
   # put CMake files in correct place
   install -d "${pkgdir}/usr/lib/cmake"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/share/cmake"/* \
+  pytorchpath="usr/lib/python$(get_pyver)/site-packages/torch"
+  mv "${pkgdir}/${pytorchpath}/share/cmake"/* \
  "${pkgdir}/usr/lib/cmake/"
   # put C++ API in correct place
   install -d "${pkgdir}/usr/bin"
   install -d "${pkgdir}/usr/include"
-  install -d "${pkgdir}/usr/lib"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/include"/* \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THCUNN.h" \
- "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THNN.h" \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/*.so \
- "${pkgdir}/usr/lib/"
-  mv 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/torch_shm_manager
 \
- "${pkgdir}/usr/bin/"
+  install -d "${pkgdir}/usr/lib/pytorch"
+  torchlibpath="${pytorchpath}/lib"
+  mv "${pkgdir}/${torchlibpath}/include"/* "${pkgdir}/usr/include/"
+  mv "${pkgdir}/${torchlibpath}/THCUNN.h" "${pkgdir}/usr/include/"
+  mv "${pkgdir}/${torchlibpath}/THNN.h" "${pkgdir}/usr/include/"
+  mv "${pkgdir}/${torchlibpath}"/*.so* "${pkgdir}/usr/lib/pytorch/"
+  mv "${pkgdir}/${torchlibpath}/torch_shm_manager" "${pkgdir}/usr/bin/"
+  # clean up duplicates
+  # TODO: move towards direct shared library dependecy of:
+  #   c10, caffe2, libcpuinfo, CUDA RT, gloo, GTest, Intel MKL,
+  #   NVRTC, ONNX, protobuf, libthreadpool, QNNPACK
+  rm -rf "${pkgdir}/${pytorchpath}/share/cmake"
+  rm -rf "${pkgdir}/${torchlibpath}/include"
+  rm -rf "${pkgdir}/usr/include/pybind11"
+  rm -rf "${pkgdir}/usr/lib/pytorch/libiomp5.so"  # remove openmp lib
+  # python module is hardcoded to look there at runtime
+  ln -s /usr/include/THCUNN.h "${pkgdir}/${torchlibpath}/"
+  ln -s /usr/include/THNN.h "${pkgdir}/${torchlibpath}/"
+  ln -s /usr/include "${pkgdir}/${torchlibpath}/include"
+  find "${pkgdir}"/usr/lib/pytorch -type f -name "*.so*" -print0 | while read 
-rd '' _lib; do
+ln -s ${_lib#"$pkgdir"} "${pkgdir}/${torchlibpath}/"
+  done
+  ln -s /usr/bin/torch_shm_manager 
"${pkgdir}/${torchlibpath}/torch_shm_manager"
+  # ldconfig
+  install -d "${pkgdir}/etc/ld.so.conf.d"
+  echo '/usr/lib/pytorch' > "${pkgdir}/etc/ld.so.conf.d/pytorch.conf"
 }
 
 package_python-pytorch-cuda() {
@@ -95,21 +112,38 @@
   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
   # put CMake files in correct place
   install -d "${pkgdir}/usr/lib/cmake"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/share/cmake"/* \
+  pytorchpath="usr/lib/python$(get_pyver)/site-packages/torch"
+  mv "${pkgdir}/${pytorchpath}/share/cmake"/* \
  "${pkgdir}/usr/lib/cmake/"
   # put C++ API in correct place
   install -d "${pkgdir}/usr/bin"
   install -d "${pkgdir}/usr/include"
-  install -d "${pkgdir}/usr/lib"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/include"/* \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THCUNN.h" \
- "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib/THNN.h" \
- "${pkgdir}/usr/include/"
-  mv "${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/*.so \
- "${pkgdir}/usr/lib/"
-  mv 
"${pkgdir}/usr/lib/python$(get_pyver)/site-packages/torch/lib"/torch_shm_manager
 \
- "${pkgdir}/usr/bin/"
+  install -d "${pkgdir}/usr/lib/pytorch"
+  torchlibpath="${pytorchpath}/lib"
+  mv "${pkgdir}/${torchlibpath}/include"/* "${pkgdir}/usr/include/"
+  mv "${pkgdir}/${torchlibpath}/THCUNN.h" "${pkgdir}/usr/include/"
+  mv "${pkgdir}/${torchlibpath}/THNN.h" 

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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 17:58:47
  Author: dvzrv
Revision: 451712

upgpkg: patchmatrix 0.14.0-1

Upgrading to 0.14.0.

Modified:
  patchmatrix/trunk/PKGBUILD

--+
 PKGBUILD |   35 +++
 1 file changed, 19 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 17:41:55 UTC (rev 451711)
+++ PKGBUILD2019-04-15 17:58:47 UTC (rev 451712)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=patchmatrix
-pkgver=0.12.0
-pkgrel=4
+pkgver=0.14.0
+pkgrel=1
 pkgdesc="A JACK patchbay in flow matrix style"
 arch=('x86_64')
 url="https://git.open-music-kontrollers.ch/lad/patchmatrix/about/;
@@ -8,26 +8,29 @@
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
 depends=('hicolor-icon-theme' 'jack' 'libgl')
-makedepends=('cmake' 'lv2')
+makedepends=('lv2' 'meson' 'sord')
 
source=("https://git.open-music-kontrollers.ch/lad/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('be8c1559aa5c3344a134af974290d5aec0b98e0aa4acb6d7fcfb1c6ee0143cd6863bc094f4037375af0db27bc5a2fb39aa3087ecd14d06143a4fc3ba4bebff20')
+sha512sums=('135cfd9342700f31a5f2e0c3c1d8615d520cb714bed0d14c0b42899d9cb6ab6c83ff93a4453b6ebf84c1c6bca713f53df4ae2c9cce5e174d5711e5c01a515a6e')
 
-prepare() {
+build() {
   cd "$pkgname-$pkgver"
-  mkdir -v build
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
 }
 
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
 
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
   # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 17:58:54
  Author: dvzrv
Revision: 451713

archrelease: copy trunk to community-x86_64

Added:
  patchmatrix/repos/community-x86_64/PKGBUILD
(from rev 451712, patchmatrix/trunk/PKGBUILD)
Deleted:
  patchmatrix/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   69 +++--
 1 file changed, 36 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 17:58:47 UTC (rev 451712)
+++ PKGBUILD2019-04-15 17:58:54 UTC (rev 451713)
@@ -1,33 +0,0 @@
-# Maintainer: David Runge 
-pkgname=patchmatrix
-pkgver=0.12.0
-pkgrel=4
-pkgdesc="A JACK patchbay in flow matrix style"
-arch=('x86_64')
-url="https://git.open-music-kontrollers.ch/lad/patchmatrix/about/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('hicolor-icon-theme' 'jack' 'libgl')
-makedepends=('cmake' 'lv2')
-source=("https://git.open-music-kontrollers.ch/lad/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('be8c1559aa5c3344a134af974290d5aec0b98e0aa4acb6d7fcfb1c6ee0143cd6863bc094f4037375af0db27bc5a2fb39aa3087ecd14d06143a4fc3ba4bebff20')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -v build
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}

Copied: patchmatrix/repos/community-x86_64/PKGBUILD (from rev 451712, 
patchmatrix/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 17:58:54 UTC (rev 451713)
@@ -0,0 +1,36 @@
+# Maintainer: David Runge 
+pkgname=patchmatrix
+pkgver=0.14.0
+pkgrel=1
+pkgdesc="A JACK patchbay in flow matrix style"
+arch=('x86_64')
+url="https://git.open-music-kontrollers.ch/lad/patchmatrix/about/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('hicolor-icon-theme' 'jack' 'libgl')
+makedepends=('lv2' 'meson' 'sord')
+source=("https://git.open-music-kontrollers.ch/lad/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('135cfd9342700f31a5f2e0c3c1d8615d520cb714bed0d14c0b42899d9cb6ab6c83ff93a4453b6ebf84c1c6bca713f53df4ae2c9cce5e174d5711e5c01a515a6e')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 17:41:55
  Author: dvzrv
Revision: 451711

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   74 +
 1 file changed, 36 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 17:41:48 UTC (rev 451710)
+++ PKGBUILD2019-04-15 17:41:55 UTC (rev 451711)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge 
-pkgname=moony.lv2
-pkgver=0.22.0
-pkgrel=2
-pkgdesc="Easily add realtime programmable logic glue in LV2 plugin graphs"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/moony/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('libgl')
-makedepends=('cmake' 'lv2')
-source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('a6bc08698a97c18ee5f349c5d64635822f8ecc6727f7118a2335856cc2a146a7309d6707710acd10462e0d4682070c48d364a52c2524780f57292df2e6fc2536')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -v build
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver/build"
-  ARGS='-VV' make test
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}

Copied: moony.lv2/repos/community-x86_64/PKGBUILD (from rev 451710, 
moony.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 17:41:55 UTC (rev 451711)
@@ -0,0 +1,36 @@
+# Maintainer: David Runge 
+pkgname=moony.lv2
+pkgver=0.26.0
+pkgrel=1
+pkgdesc="Easily add realtime programmable logic glue in LV2 plugin graphs"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/moony/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('libgl')
+makedepends=('lv2' 'meson' 'sord')
+source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
+sha512sums=('4825fc90a04660a34266bf4dddb51b6c19c173278a0e27653fd5b7c1b84b636891bf3d215bf8479a6fd9637c0a16aa2058c8ab1c3124dbd090fc82750d129d86')
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in moony.lv2/trunk (PKGBUILD)

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 17:41:48
  Author: dvzrv
Revision: 451710

upgpkg: moony.lv2 0.26.0-1

Upgrading to 0.26.0.

Modified:
  moony.lv2/trunk/PKGBUILD

--+
 PKGBUILD |   40 +++-
 1 file changed, 19 insertions(+), 21 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 16:42:56 UTC (rev 451709)
+++ PKGBUILD2019-04-15 17:41:48 UTC (rev 451710)
@@ -1,7 +1,7 @@
 # Maintainer: David Runge 
 pkgname=moony.lv2
-pkgver=0.22.0
-pkgrel=2
+pkgver=0.26.0
+pkgrel=1
 pkgdesc="Easily add realtime programmable logic glue in LV2 plugin graphs"
 arch=('x86_64')
 url="https://open-music-kontrollers.ch/lv2/moony/;
@@ -8,31 +8,29 @@
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
 depends=('libgl')
-makedepends=('cmake' 'lv2')
+makedepends=('lv2' 'meson' 'sord')
 
source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-sha512sums=('a6bc08698a97c18ee5f349c5d64635822f8ecc6727f7118a2335856cc2a146a7309d6707710acd10462e0d4682070c48d364a52c2524780f57292df2e6fc2536')
+sha512sums=('4825fc90a04660a34266bf4dddb51b6c19c173278a0e27653fd5b7c1b84b636891bf3d215bf8479a6fd9637c0a16aa2058c8ab1c3124dbd090fc82750d129d86')
 
-prepare() {
+build() {
   cd "$pkgname-$pkgver"
-  mkdir -v build
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
 }
 
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
 
-check() {
-  cd "$pkgname-$pkgver/build"
-  ARGS='-VV' make test
-}
-
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
   # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2019-04-15 Thread Andrew Crerar via arch-commits
Date: Monday, April 15, 2019 @ 16:42:56
  Author: andrewsc
Revision: 451709

archrelease: copy trunk to community-x86_64

Added:
  python-psycopg2/repos/community-x86_64/PKGBUILD
(from rev 451708, python-psycopg2/trunk/PKGBUILD)
Deleted:
  python-psycopg2/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 16:24:45 UTC (rev 451708)
+++ PKGBUILD2019-04-15 16:42:56 UTC (rev 451709)
@@ -1,40 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Maintainer: Morten Linderud 
-# Contributor: Sergej Pupykin 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Douglas Soares de Andrade 
-
-pkgbase=python-psycopg2
-pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.8.1
-pkgrel=1
-pkgdesc="A PostgreSQL database adapter for the Python programming language."
-arch=('x86_64')
-url="http://initd.org/psycopg/;
-license=('LGPL3')
-makedepends=('python2' 'python2-setuptools'
- 'python' 'python-setuptools' 'postgresql-libs')
-source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-8/psycopg2-$pkgver.tar.gz{,.asc})
-validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
-sha512sums=('07d7b6255d55fbf3feb72744c571ee0bd82fecd46c483208a30f35afcdc9789fcf7dd148b9ca936f1b69b4b5b10e366b3bfc905fe81e369ae1f13d0d12950390'
-'SKIP')
-build(){
-  cd "$srcdir/psycopg2-$pkgver"
-  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
-  python setup.py build
-  python2 setup.py build
-}
-
-package_python-psycopg2() {
-  depends=('python' 'postgresql-libs')
-
-  cd "$srcdir/psycopg2-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}
-
-package_python2-psycopg2() {
-  depends=('python2' 'postgresql-libs')
-
-  cd "$srcdir/psycopg2-$pkgver"
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-}

Copied: python-psycopg2/repos/community-x86_64/PKGBUILD (from rev 451708, 
python-psycopg2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 16:42:56 UTC (rev 451709)
@@ -0,0 +1,40 @@
+# Maintainer: Andrew Crerar 
+# Maintainer: Morten Linderud 
+# Contributor: Sergej Pupykin 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Douglas Soares de Andrade 
+
+pkgbase=python-psycopg2
+pkgname=('python-psycopg2' 'python2-psycopg2')
+pkgver=2.8.2
+pkgrel=1
+pkgdesc="A PostgreSQL database adapter for the Python programming language."
+arch=('x86_64')
+url="http://initd.org/psycopg/;
+license=('LGPL3')
+makedepends=('python2' 'python2-setuptools'
+ 'python' 'python-setuptools' 'postgresql-libs')
+source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-8/psycopg2-$pkgver.tar.gz{,.asc})
+validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
+sha512sums=('ee8c8af1e337cf176d14fddc69a0ced3331d14fb6e3166b0b3dfd3c6e754f8082534c1fac69f727fef129b3dd45a30825a4e943f9f991ef46b76b6ccc115ad60'
+'SKIP')
+build(){
+  cd "$srcdir/psycopg2-$pkgver"
+  sed -i 's/,PSYCOPG_DEBUG$//' setup.cfg
+  python setup.py build
+  python2 setup.py build
+}
+
+package_python-psycopg2() {
+  depends=('python' 'postgresql-libs')
+
+  cd "$srcdir/psycopg2-$pkgver"
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}
+
+package_python2-psycopg2() {
+  depends=('python2' 'postgresql-libs')
+
+  cd "$srcdir/psycopg2-$pkgver"
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+}


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

2019-04-15 Thread Andrew Crerar via arch-commits
Date: Monday, April 15, 2019 @ 16:24:45
  Author: andrewsc
Revision: 451708

upgpkg: python-psycopg2 2.8.2-1

python-psycopg2: Updating to 2.8.2

Modified:
  python-psycopg2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 16:13:11 UTC (rev 451707)
+++ PKGBUILD2019-04-15 16:24:45 UTC (rev 451708)
@@ -6,7 +6,7 @@
 
 pkgbase=python-psycopg2
 pkgname=('python-psycopg2' 'python2-psycopg2')
-pkgver=2.8.1
+pkgver=2.8.2
 pkgrel=1
 pkgdesc="A PostgreSQL database adapter for the Python programming language."
 arch=('x86_64')
@@ -16,7 +16,7 @@
  'python' 'python-setuptools' 'postgresql-libs')
 
source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-8/psycopg2-$pkgver.tar.gz{,.asc})
 validpgpkeys=('8AD609956CF1899418E19A856013BD3AFCF957DE')
-sha512sums=('07d7b6255d55fbf3feb72744c571ee0bd82fecd46c483208a30f35afcdc9789fcf7dd148b9ca936f1b69b4b5b10e366b3bfc905fe81e369ae1f13d0d12950390'
+sha512sums=('ee8c8af1e337cf176d14fddc69a0ced3331d14fb6e3166b0b3dfd3c6e754f8082534c1fac69f727fef129b3dd45a30825a4e943f9f991ef46b76b6ccc115ad60'
 'SKIP')
 build(){
   cd "$srcdir/psycopg2-$pkgver"


[arch-commits] Commit in midi_matrix.lv2/trunk (PKGBUILD)

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 16:13:03
  Author: dvzrv
Revision: 451706

upgpkg: midi_matrix.lv2 0.22.0-1

Upgrading to 0.22.0

Modified:
  midi_matrix.lv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 15:44:26 UTC (rev 451705)
+++ PKGBUILD2019-04-15 16:13:03 UTC (rev 451706)
@@ -1,16 +1,16 @@
 # Maintainer: David Runge 
 pkgname=midi_matrix.lv2
-pkgver=0.20.0
-pkgrel=2
-pkgdesc="A 3-in-1 filter plugin with a simple UI enabling you to easily 
accomplish MIDI channel filtering, multiplication and rerouting"
+pkgver=0.22.0
+pkgrel=1
+pkgdesc="A plugin for MIDI channel filtering, multiplication and rerouting"
 arch=('x86_64')
 url="https://open-music-kontrollers.ch/lv2/midi_matrix/;
 license=('Artistic2.0')
 groups=('lv2-plugins' 'pro-audio')
 depends=('libgl')
-makedepends=('cmake' 'lv2')
+makedepends=('lv2' 'meson' 'sord')
 
source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('96b74972b0ab0b0a1ab5629c234fe70f')
+md5sums=('2c1a8cd9f1cb429b9a1589de519c36e3')
 
 prepare() {
   cd "$pkgname-$pkgver"
@@ -18,16 +18,25 @@
 }
 
 build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
 }
 
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
+
+
 package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
   # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
 }


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

2019-04-15 Thread David Runge via arch-commits
Date: Monday, April 15, 2019 @ 16:13:11
  Author: dvzrv
Revision: 451707

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |   75 ++---
 1 file changed, 42 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 16:13:03 UTC (rev 451706)
+++ PKGBUILD2019-04-15 16:13:11 UTC (rev 451707)
@@ -1,33 +0,0 @@
-# Maintainer: David Runge 
-pkgname=midi_matrix.lv2
-pkgver=0.20.0
-pkgrel=2
-pkgdesc="A 3-in-1 filter plugin with a simple UI enabling you to easily 
accomplish MIDI channel filtering, multiplication and rerouting"
-arch=('x86_64')
-url="https://open-music-kontrollers.ch/lv2/midi_matrix/;
-license=('Artistic2.0')
-groups=('lv2-plugins' 'pro-audio')
-depends=('libgl')
-makedepends=('cmake' 'lv2')
-source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('96b74972b0ab0b0a1ab5629c234fe70f')
-
-prepare() {
-  cd "$pkgname-$pkgver"
-  mkdir -v build
-}
-
-build() {
-  cd "$pkgname-$pkgver/build"
-  cmake -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-..
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver/build"
-  make DESTDIR="$pkgdir/" install
-  # docs
-  install -vDm 644 ../README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-}

Copied: midi_matrix.lv2/repos/community-x86_64/PKGBUILD (from rev 451706, 
midi_matrix.lv2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 16:13:11 UTC (rev 451707)
@@ -0,0 +1,42 @@
+# Maintainer: David Runge 
+pkgname=midi_matrix.lv2
+pkgver=0.22.0
+pkgrel=1
+pkgdesc="A plugin for MIDI channel filtering, multiplication and rerouting"
+arch=('x86_64')
+url="https://open-music-kontrollers.ch/lv2/midi_matrix/;
+license=('Artistic2.0')
+groups=('lv2-plugins' 'pro-audio')
+depends=('libgl')
+makedepends=('lv2' 'meson' 'sord')
+source=("https://git.open-music-kontrollers.ch/lv2/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('2c1a8cd9f1cb429b9a1589de519c36e3')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  mkdir -v build
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+  arch-meson --prefix=/usr \
+ --libdir=lib \
+ --buildtype=release \
+ build
+  ninja -C build
+}
+
+# check fails due to currently broken lv2_validate in lv2
+# check() {
+#   cd "$pkgname-$pkgver"
+#   meson test -C build
+# }
+
+
+package() {
+  cd "$pkgname-$pkgver"
+  DESTDIR="${pkgdir}" meson install -C build
+  # docs
+  install -vDm 644 {ChangeLog,README.md} \
+-t "${pkgdir}/usr/share/doc/${pkgname}"
+}


[arch-commits] Commit in nano/trunk (2 files)

2019-04-15 Thread Andreas Radke via arch-commits
Date: Monday, April 15, 2019 @ 15:58:45
  Author: andyrtr
Revision: 350791

upgpkg: nano 4.1-1

upstream update 4.1

Modified:
  nano/trunk/PKGBUILD
Deleted:
  nano/trunk/0001-files-initialize-a-variable-before-referencing-it.patch

--+
 0001-files-initialize-a-variable-before-referencing-it.patch |   39 --
 PKGBUILD |   19 +---
 2 files changed, 5 insertions(+), 53 deletions(-)

Deleted: 0001-files-initialize-a-variable-before-referencing-it.patch
===
--- 0001-files-initialize-a-variable-before-referencing-it.patch
2019-04-15 14:43:22 UTC (rev 350790)
+++ 0001-files-initialize-a-variable-before-referencing-it.patch
2019-04-15 15:58:45 UTC (rev 350791)
@@ -1,39 +0,0 @@
-From 7ad232d71470cd8c4dc63aeb02f11c9e8df9ecdb Mon Sep 17 00:00:00 2001
-From: Devin Hussey 
-Date: Thu, 28 Mar 2019 17:28:47 -0400
-Subject: [PATCH] files: initialize a variable before referencing it
-
-The lack of initialization caused a nasty bug on some targets (such as
-ARMv7) which would make it so that ^S would just say "Cancelled".
-
-While x86 (both 64 and 32 bits) seems to initialize 'response' to zero or
-a positive number, ARM does not, and there is usually a negative value in
-its place, which triggers the 'if (response < 0)' check and, as a result,
-the code says "Cancelled".
-
-This fixes https://savannah.gnu.org/bugs/?56023.
-Reported-by: Devin Hussey 
-
-Bug existed since version 4.0, commit 0f9d60a3.
-
-Signed-off-by: Devin Hussey 

- src/files.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/files.c b/src/files.c
-index 84e3f684..fd54c168 100644
 a/src/files.c
-+++ b/src/files.c
-@@ -2101,7 +2101,7 @@ int do_writeout(bool exiting, bool withprompt)
- 
-   while (TRUE) {
-   const char *msg;
--  int response, choice;
-+  int response = 0, choice = 0;
-   functionptrtype func;
- #ifndef NANO_TINY
-   const char *formatstr, *backupstr;
--- 
-2.20.1
-

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 14:43:22 UTC (rev 350790)
+++ PKGBUILD2019-04-15 15:58:45 UTC (rev 350791)
@@ -2,8 +2,8 @@
 # Contributor: Judd 
 
 pkgname=nano
-pkgver=4.0
-pkgrel=2
+pkgver=4.1
+pkgrel=1
 pkgdesc="Pico editor clone with enhancements"
 arch=('x86_64')
 license=('GPL')
@@ -11,23 +11,14 @@
 groups=('base')
 depends=('ncurses' 'file' 'sh')
 backup=('etc/nanorc')
-source=(https://www.nano-editor.org/dist/v4/${pkgname}-${pkgver}.tar.xz{,.asc}
-0001-files-initialize-a-variable-before-referencing-it.patch)
-sha256sums=('1e2fcfea35784624a7d86785768b772d58bb3995d1aec9176a27a113b1e9bac3'
-'SKIP'
-'f1dce36d1932d925ae3491ab19d3032263fe7c675d0f9d69f30adece6441da96')
+source=(https://www.nano-editor.org/dist/v4/${pkgname}-${pkgver}.tar.xz{,.asc})
+sha256sums=('86bde596a038d6fde619b49d785c0ebf0b3eaa7001a39dbe9316bd5392d221d0'
+'SKIP')
 validpgpkeys=('8DA6FE7BFA7A418AB3CB2354BCB356DF91009FA7' # "Chris Allegretta 
"
   'A7F6A64A67DA09EF92782DD79DF4862AF1175C5B' # "Benno Schulenberg 
"
   'BFD009061E535052AD0DF2150D28D4D2A0ACE884' # "Benno Schulenberg 
"
 )
 
-prepare() {
-  cd ${pkgname}-${pkgver}
-  # correct a possible non-working ^S keystroke on some systems
-  # http://lists.gnu.org/archive/html/nano-devel/2019-04/msg0.html
-  patch -Np1 -i ../0001-files-initialize-a-variable-before-referencing-it.patch
-}
-
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \


[arch-commits] Commit in nano/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-04-15 Thread Andreas Radke via arch-commits
Date: Monday, April 15, 2019 @ 15:58:54
  Author: andyrtr
Revision: 350792

archrelease: copy trunk to testing-x86_64

Added:
  nano/repos/testing-x86_64/
  nano/repos/testing-x86_64/PKGBUILD
(from rev 350791, nano/trunk/PKGBUILD)

--+
 PKGBUILD |   36 
 1 file changed, 36 insertions(+)

Copied: nano/repos/testing-x86_64/PKGBUILD (from rev 350791, 
nano/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-15 15:58:54 UTC (rev 350792)
@@ -0,0 +1,36 @@
+# Maintainer: Andreas Radke 
+# Contributor: Judd 
+
+pkgname=nano
+pkgver=4.1
+pkgrel=1
+pkgdesc="Pico editor clone with enhancements"
+arch=('x86_64')
+license=('GPL')
+url="https://www.nano-editor.org;
+groups=('base')
+depends=('ncurses' 'file' 'sh')
+backup=('etc/nanorc')
+source=(https://www.nano-editor.org/dist/v4/${pkgname}-${pkgver}.tar.xz{,.asc})
+sha256sums=('86bde596a038d6fde619b49d785c0ebf0b3eaa7001a39dbe9316bd5392d221d0'
+'SKIP')
+validpgpkeys=('8DA6FE7BFA7A418AB3CB2354BCB356DF91009FA7' # "Chris Allegretta 
"
+  'A7F6A64A67DA09EF92782DD79DF4862AF1175C5B' # "Benno Schulenberg 
"
+  'BFD009061E535052AD0DF2150D28D4D2A0ACE884' # "Benno Schulenberg 
"
+)
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-color \
+--enable-nanorc \
+--enable-multibuffer
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -DTm644 ${srcdir}/${pkgname}-${pkgver}/doc/sample.nanorc 
${pkgdir}/etc/nanorc
+}


[arch-commits] Commit in sshfs/repos/community-x86_64 (6 files)

2019-04-15 Thread Giancarlo Razzolini via arch-commits
Date: Monday, April 15, 2019 @ 15:44:26
  Author: grazzolini
Revision: 451705

archrelease: copy trunk to community-x86_64

Added:
  sshfs/repos/community-x86_64/001-sshfs-3.3.0-meson.build.patch
(from rev 451704, sshfs/trunk/001-sshfs-3.3.0-meson.build.patch)
  sshfs/repos/community-x86_64/002-sshfs-3.3.0-sshfs.c.patch
(from rev 451704, sshfs/trunk/002-sshfs-3.3.0-sshfs.c.patch)
  sshfs/repos/community-x86_64/PKGBUILD
(from rev 451704, sshfs/trunk/PKGBUILD)
Deleted:
  sshfs/repos/community-x86_64/001-sshfs-3.3.0-meson.build.patch
  sshfs/repos/community-x86_64/002-sshfs-3.3.0-sshfs.c.patch
  sshfs/repos/community-x86_64/PKGBUILD

---+
 001-sshfs-3.3.0-meson.build.patch |   24 +--
 002-sshfs-3.3.0-sshfs.c.patch |   42 ++--
 PKGBUILD  |   74 ++--
 3 files changed, 70 insertions(+), 70 deletions(-)

Deleted: 001-sshfs-3.3.0-meson.build.patch
===
--- 001-sshfs-3.3.0-meson.build.patch   2019-04-15 15:43:41 UTC (rev 451704)
+++ 001-sshfs-3.3.0-meson.build.patch   2019-04-15 15:44:26 UTC (rev 451705)
@@ -1,12 +0,0 @@
-diff -ura sshfs-3.3.0.orig/meson.build sshfs-3.3.0.new/meson.build
 sshfs-3.3.0.orig/meson.build   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/meson.build2017-09-25 11:19:19.946623793 -0300
-@@ -58,7 +58,7 @@
- if rst2man.found()
- custom_target('manpages', input: [ 'sshfs.rst' ], output: [ 'sshfs.1' ],
-   command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true,
--  install_dir: join_paths(get_option('mandir'), '1'))
-+  install_dir: join_paths(get_option('mandir'), 'man1'))
- else
- message('rst2man not found, not building manual page.')
- endif

Copied: sshfs/repos/community-x86_64/001-sshfs-3.3.0-meson.build.patch (from 
rev 451704, sshfs/trunk/001-sshfs-3.3.0-meson.build.patch)
===
--- 001-sshfs-3.3.0-meson.build.patch   (rev 0)
+++ 001-sshfs-3.3.0-meson.build.patch   2019-04-15 15:44:26 UTC (rev 451705)
@@ -0,0 +1,12 @@
+diff -ura sshfs-3.3.0.orig/meson.build sshfs-3.3.0.new/meson.build
+--- sshfs-3.3.0.orig/meson.build   2017-09-20 14:08:27.0 -0300
 sshfs-3.3.0.new/meson.build2017-09-25 11:19:19.946623793 -0300
+@@ -58,7 +58,7 @@
+ if rst2man.found()
+ custom_target('manpages', input: [ 'sshfs.rst' ], output: [ 'sshfs.1' ],
+   command: [rst2man, '@INPUT@', '@OUTPUT@'], install: true,
+-  install_dir: join_paths(get_option('mandir'), '1'))
++  install_dir: join_paths(get_option('mandir'), 'man1'))
+ else
+ message('rst2man not found, not building manual page.')
+ endif

Deleted: 002-sshfs-3.3.0-sshfs.c.patch
===
--- 002-sshfs-3.3.0-sshfs.c.patch   2019-04-15 15:43:41 UTC (rev 451704)
+++ 002-sshfs-3.3.0-sshfs.c.patch   2019-04-15 15:44:26 UTC (rev 451705)
@@ -1,21 +0,0 @@
-diff -ura sshfs-3.3.0.orig/sshfs.c sshfs-3.3.0.new/sshfs.c
 sshfs-3.3.0.orig/sshfs.c   2017-09-20 14:08:27.0 -0300
-+++ sshfs-3.3.0.new/sshfs.c2017-10-01 23:04:23.048755162 -0300
-@@ -428,9 +428,15 @@
-   FUSE_OPT_KEY("writeback_cache=no", FUSE_OPT_KEY_DISCARD),
-   FUSE_OPT_KEY("unreliable_append", FUSE_OPT_KEY_DISCARD),
- 
--  
--  FUSE_OPT_END
-+  /* These may come in from /etc/fstab - we just ignore them */
-+  FUSE_OPT_KEY("auto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("noauto", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("user", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("nouser", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("users", FUSE_OPT_KEY_DISCARD),
-+  FUSE_OPT_KEY("_netdev", FUSE_OPT_KEY_DISCARD),
- 
-+  FUSE_OPT_END
- };
- 
- static struct fuse_opt workaround_opts[] = {

Copied: sshfs/repos/community-x86_64/002-sshfs-3.3.0-sshfs.c.patch (from rev 
451704, sshfs/trunk/002-sshfs-3.3.0-sshfs.c.patch)
===
--- 002-sshfs-3.3.0-sshfs.c.patch   (rev 0)
+++ 002-sshfs-3.3.0-sshfs.c.patch   2019-04-15 15:44:26 UTC (rev 451705)
@@ -0,0 +1,21 @@
+diff -ura sshfs-3.3.0.orig/sshfs.c sshfs-3.3.0.new/sshfs.c
+--- sshfs-3.3.0.orig/sshfs.c   2017-09-20 14:08:27.0 -0300
 sshfs-3.3.0.new/sshfs.c2017-10-01 23:04:23.048755162 -0300
+@@ -428,9 +428,15 @@
+   FUSE_OPT_KEY("writeback_cache=no", FUSE_OPT_KEY_DISCARD),
+   FUSE_OPT_KEY("unreliable_append", FUSE_OPT_KEY_DISCARD),
+ 
+-  
+-  FUSE_OPT_END
++  /* These may come in from /etc/fstab - we just ignore them */
++  FUSE_OPT_KEY("auto", FUSE_OPT_KEY_DISCARD),
++  FUSE_OPT_KEY("noauto", FUSE_OPT_KEY_DISCARD),
++  FUSE_OPT_KEY("user", FUSE_OPT_KEY_DISCARD),
++  

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

2019-04-15 Thread Giancarlo Razzolini via arch-commits
Date: Monday, April 15, 2019 @ 15:43:41
  Author: grazzolini
Revision: 451704

upgpkg: sshfs 3.5.2-1

Modified:
  sshfs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 14:49:18 UTC (rev 451703)
+++ PKGBUILD2019-04-15 15:43:41 UTC (rev 451704)
@@ -3,8 +3,8 @@
 # Contributor: Giovanni Scafora 
 
 pkgname=sshfs
-pkgver=3.5.1
-pkgrel=2
+pkgver=3.5.2
+pkgrel=1
 pkgdesc="FUSE client based on the SSH File Transfer Protocol"
 arch=('x86_64')
 url="https://github.com/libfuse/sshfs;
@@ -12,7 +12,7 @@
 depends=(fuse3 glib2 openssh)
 makedepends=('meson' 'python-docutils')
 
source=(https://github.com/libfuse/sshfs/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz{,.asc})
-sha256sums=('b505105980cd552481ab9f311bcf6fdb6134cdd200d5ac8aa828b31769d0b10b'
+sha256sums=('841be1594b6fb76b23e4b5700ce235e86a64324f2483d67130ce07c2330ff0b2'
 'SKIP')
 validpgpkeys=('ED31791B2C5C1613AF388B8AD113FCAC3C4E599F') # Nikolaus Rath 

 


[arch-commits] Commit in python-dkim/repos/community-any (PKGBUILD PKGBUILD)

2019-04-15 Thread Daniel M. Capella via arch-commits
Date: Monday, April 15, 2019 @ 14:49:18
  Author: polyzen
Revision: 451703

archrelease: copy trunk to community-any

Added:
  python-dkim/repos/community-any/PKGBUILD
(from rev 451702, python-dkim/trunk/PKGBUILD)
Deleted:
  python-dkim/repos/community-any/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 14:48:52 UTC (rev 451702)
+++ PKGBUILD2019-04-15 14:49:18 UTC (rev 451703)
@@ -1,33 +0,0 @@
-# Maintainer: Daniel M. Capella 
-
-pkgname=python-dkim
-pkgver=0.9.1
-_branch=${pkgver%.*}
-pkgrel=1
-pkgdesc='Python library that implements DKIM and ARC email signing and 
verification'
-arch=('any')
-url=https://launchpad.net/dkimpy
-license=('custom')
-depends=('python-authres' 'python-dnspython' 'python-pynacl' 
'python-setuptools')
-source=("https://files.pythonhosted.org/packages/source/d/dkimpy/dkimpy-$pkgver.tar.gz;
-
'LICENSE-dkimpy-0.9.0::https://git.launchpad.net/dkimpy/plain/LICENSE?id=0.9.0')
-sha512sums=('5667c5b7752081f5831c26eebdf5d05bec8ff6c82299506e6ca31603ba0d04aa37b908aa07e97877f298263aeb652fdc0b8d54330a263902033dc0647dc44c3f'
-
'20a36385eabb3f758fee79d66033db77601ee352ea6f28c16395b1a7798e7804e1e9c3bc6326d939ece8f30e047d4ac95df25755f00a69e95de5f7528c16d5dd')
-
-build() {
-  cd dkimpy-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd dkimpy-$pkgver
-  python -m unittest dkim.tests.test_suite
-}
-
-package() {
-  cd dkimpy-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 ../LICENSE-dkimpy-0.9.0 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-dkim/repos/community-any/PKGBUILD (from rev 451702, 
python-dkim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 14:49:18 UTC (rev 451703)
@@ -0,0 +1,33 @@
+# Maintainer: Daniel M. Capella 
+
+pkgname=python-dkim
+pkgver=0.9.2
+_branch=${pkgver%.*}
+pkgrel=1
+pkgdesc='Python library that implements DKIM and ARC email signing and 
verification'
+arch=('any')
+url=https://launchpad.net/dkimpy
+license=('ZLIB')
+depends=('python-authres' 'python-dnspython' 'python-pynacl' 
'python-setuptools')
+source=("https://files.pythonhosted.org/packages/source/d/dkimpy/dkimpy-$pkgver.tar.gz;
+
"LICENSE-dkimpy-$pkgver::https://git.launchpad.net/dkimpy/plain/LICENSE?id=$pkgver;)
+sha512sums=('a1e7ac778f8cf0897793f296061ef67a6945b136db1a7aee18498ce33111d1a0d485b0ce32f52c22c0866be644065e000de57131301000a83a1b55b6a875bfce'
+
'20a36385eabb3f758fee79d66033db77601ee352ea6f28c16395b1a7798e7804e1e9c3bc6326d939ece8f30e047d4ac95df25755f00a69e95de5f7528c16d5dd')
+
+build() {
+  cd dkimpy-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd dkimpy-$pkgver
+  python -m unittest dkim.tests.test_suite
+}
+
+package() {
+  cd dkimpy-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  install -Dm644 ../LICENSE-dkimpy-$pkgver 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2019-04-15 Thread Daniel M. Capella via arch-commits
Date: Monday, April 15, 2019 @ 14:48:52
  Author: polyzen
Revision: 451702

upgpkg: python-dkim 0.9.2-1

Modified:
  python-dkim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 14:31:41 UTC (rev 451701)
+++ PKGBUILD2019-04-15 14:48:52 UTC (rev 451702)
@@ -1,17 +1,17 @@
 # Maintainer: Daniel M. Capella 
 
 pkgname=python-dkim
-pkgver=0.9.1
+pkgver=0.9.2
 _branch=${pkgver%.*}
 pkgrel=1
 pkgdesc='Python library that implements DKIM and ARC email signing and 
verification'
 arch=('any')
 url=https://launchpad.net/dkimpy
-license=('custom')
+license=('ZLIB')
 depends=('python-authres' 'python-dnspython' 'python-pynacl' 
'python-setuptools')
 
source=("https://files.pythonhosted.org/packages/source/d/dkimpy/dkimpy-$pkgver.tar.gz;
-
'LICENSE-dkimpy-0.9.0::https://git.launchpad.net/dkimpy/plain/LICENSE?id=0.9.0')
-sha512sums=('5667c5b7752081f5831c26eebdf5d05bec8ff6c82299506e6ca31603ba0d04aa37b908aa07e97877f298263aeb652fdc0b8d54330a263902033dc0647dc44c3f'
+
"LICENSE-dkimpy-$pkgver::https://git.launchpad.net/dkimpy/plain/LICENSE?id=$pkgver;)
+sha512sums=('a1e7ac778f8cf0897793f296061ef67a6945b136db1a7aee18498ce33111d1a0d485b0ce32f52c22c0866be644065e000de57131301000a83a1b55b6a875bfce'
 
'20a36385eabb3f758fee79d66033db77601ee352ea6f28c16395b1a7798e7804e1e9c3bc6326d939ece8f30e047d4ac95df25755f00a69e95de5f7528c16d5dd')
 
 build() {
@@ -27,7 +27,7 @@
 package() {
   cd dkimpy-$pkgver
   python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-  install -Dm644 ../LICENSE-dkimpy-0.9.0 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 ../LICENSE-dkimpy-$pkgver 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:


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

2019-04-15 Thread Christian Hesse via arch-commits
Date: Monday, April 15, 2019 @ 14:43:16
  Author: eworm
Revision: 350789

upgpkg: libpng 1.6.37-1

new upstream release

Modified:
  libpng/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 13:26:07 UTC (rev 350788)
+++ PKGBUILD2019-04-15 14:43:16 UTC (rev 350789)
@@ -4,7 +4,7 @@
 # Contributor: Douglas Soares de Andrade 
 
 pkgname=libpng
-pkgver=1.6.36
+pkgver=1.6.37
 _apngver=1.6.36
 pkgrel=1
 pkgdesc="A collection of routines used to create PNG format graphics files"
@@ -15,7 +15,7 @@
 validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn 
Randers-Pehrson (mozilla) 
 
source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;
 
"https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz;)
-sha256sums=('eceb924c1fa6b79172fdfd008d335f0e59172a86a66481e09d4089df872aa319'
+sha256sums=('505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca'
 '8c1f33da739b29a77e35e5a1ebcdffaab63bfe184be8b5a97677cc80156fdc0f')
 
 prepare() {
@@ -29,21 +29,26 @@
 build() {
   cd $pkgname-$pkgver
 
-  ./configure --prefix=/usr --disable-static
+  ./configure \
+--prefix=/usr \
+--disable-static
   make
 }
 
 check() {
   cd $pkgname-$pkgver
+
   make check
 }
 
 package() {
   cd $pkgname-$pkgver
+
   make DESTDIR="$pkgdir" install
 
+  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
   cd contrib/pngminus
-  make PNGLIB="-L$pkgdir/usr/lib -lpng" -f makefile.std png2pnm pnm2png
-  install -m755 png2pnm pnm2png "$pkgdir/usr/bin/"
-  install -D -m644 ../../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  make PNGLIB_SHARED="-L$pkgdir/usr/lib -lpng" CFLAGS="$CFLAGS" 
LDFLAGS="$LDFLAGS" png2pnm pnm2png
+  install -m0755 png2pnm pnm2png "$pkgdir/usr/bin/"
 }


[arch-commits] Commit in libpng/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-04-15 Thread Christian Hesse via arch-commits
Date: Monday, April 15, 2019 @ 14:43:22
  Author: eworm
Revision: 350790

archrelease: copy trunk to testing-x86_64

Added:
  libpng/repos/testing-x86_64/
  libpng/repos/testing-x86_64/PKGBUILD
(from rev 350789, libpng/trunk/PKGBUILD)

--+
 PKGBUILD |   54 ++
 1 file changed, 54 insertions(+)

Copied: libpng/repos/testing-x86_64/PKGBUILD (from rev 350789, 
libpng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-15 14:43:22 UTC (rev 350790)
@@ -0,0 +1,54 @@
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+# Contributor: Travis Willard 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=libpng
+pkgver=1.6.37
+_apngver=1.6.36
+pkgrel=1
+pkgdesc="A collection of routines used to create PNG format graphics files"
+arch=('x86_64')
+url="http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib' 'sh')
+validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn 
Randers-Pehrson (mozilla) 
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;
+
"https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz;)
+sha256sums=('505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca'
+'8c1f33da739b29a77e35e5a1ebcdffaab63bfe184be8b5a97677cc80156fdc0f')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Add animated PNG (apng) support. Required by Firefox
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -Np1 -i ../libpng-$_apngver-apng.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd contrib/pngminus
+  make PNGLIB_SHARED="-L$pkgdir/usr/lib -lpng" CFLAGS="$CFLAGS" 
LDFLAGS="$LDFLAGS" png2pnm pnm2png
+  install -m0755 png2pnm pnm2png "$pkgdir/usr/bin/"
+}


[arch-commits] Commit in browserpass-firefox/repos/community-any (PKGBUILD PKGBUILD)

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 14:31:41
  Author: maximbaz
Revision: 451701

archrelease: copy trunk to community-any

Added:
  browserpass-firefox/repos/community-any/PKGBUILD
(from rev 451700, browserpass-firefox/trunk/PKGBUILD)
Deleted:
  browserpass-firefox/repos/community-any/PKGBUILD

--+
 PKGBUILD |   78 ++---
 1 file changed, 39 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 14:31:35 UTC (rev 451700)
+++ PKGBUILD2019-04-15 14:31:41 UTC (rev 451701)
@@ -1,39 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=browserp...@maximbaz.com
-_name=browserpass-extension
-pkgname=browserpass-firefox
-pkgver=3.0.10
-pkgrel=1
-pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name};
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
-
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
-noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('edee1e53c19eb2538efcb65ad74ccd558c07703cea3181efc5bfa7d6dcc7eb97'
-'SKIP'
-'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-mkdir -p "${pkgname}-${pkgver}"
-bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
-}
-
-package() {
-
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
-install -dm755 "${_dest}"
-cp -a "${pkgname}-${pkgver}"/* "${_dest}"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-firefox/repos/community-any/PKGBUILD (from rev 451700, 
browserpass-firefox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 14:31:41 UTC (rev 451701)
@@ -0,0 +1,39 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=browserp...@maximbaz.com
+_name=browserpass-extension
+pkgname=browserpass-firefox
+pkgver=3.0.11
+pkgrel=1
+pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name};
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.zip::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip"
+
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
+noextract=("${pkgname}-${pkgver}.zip")
+sha256sums=('150b1b46927f8a2ba69af0f18860a21642feeccf39249618936679186b98f75c'
+'SKIP'
+'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+mkdir -p "${pkgname}-${pkgver}"
+bsdtar -vxf "${pkgname}-${pkgver}.zip" -C "${pkgname}-${pkgver}"
+}
+
+package() {
+
_dest="${pkgdir}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${_id}"
+install -dm755 "${_dest}"
+cp -a "${pkgname}-${pkgver}"/* "${_dest}"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/firefox/com.github.browserpass.native.json" 
"${pkgdir}/usr/lib/mozilla/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 14:31:35
  Author: maximbaz
Revision: 451700

upgpkg: browserpass-firefox 3.0.11-1

Modified:
  browserpass-firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 14:30:54 UTC (rev 451699)
+++ PKGBUILD2019-04-15 14:31:35 UTC (rev 451700)
@@ -3,7 +3,7 @@
 _id=browserp...@maximbaz.com
 _name=browserpass-extension
 pkgname=browserpass-firefox
-pkgver=3.0.10
+pkgver=3.0.11
 pkgrel=1
 pkgdesc="Firefox extension for Browserpass, browser extension for zx2c4's pass 
(password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.zip.asc::${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.zip.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
 noextract=("${pkgname}-${pkgver}.zip")
-sha256sums=('edee1e53c19eb2538efcb65ad74ccd558c07703cea3181efc5bfa7d6dcc7eb97'
+sha256sums=('150b1b46927f8a2ba69af0f18860a21642feeccf39249618936679186b98f75c'
 'SKIP'
 'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


[arch-commits] Commit in lib32-libpng/repos (2 files)

2019-04-15 Thread Christian Hesse via arch-commits
Date: Monday, April 15, 2019 @ 14:30:54
  Author: eworm
Revision: 451699

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-libpng/repos/multilib-testing-x86_64/
  lib32-libpng/repos/multilib-testing-x86_64/PKGBUILD
(from rev 451698, lib32-libpng/trunk/PKGBUILD)

--+
 PKGBUILD |   59 +++
 1 file changed, 59 insertions(+)

Copied: lib32-libpng/repos/multilib-testing-x86_64/PKGBUILD (from rev 451698, 
lib32-libpng/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-04-15 14:30:54 UTC (rev 451699)
@@ -0,0 +1,59 @@
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+# Contributor: Travis Willard 
+# Contributor: Douglas Soares de Andrade 
+
+_pkgbasename=libpng
+pkgname=lib32-$_pkgbasename
+pkgver=1.6.37
+_apngver=1.6.36
+_libversion=16
+pkgrel=1
+pkgdesc="A collection of routines used to create PNG format graphics files 
(32-bit)"
+arch=('x86_64')
+url="http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('lib32-zlib' $_pkgbasename)
+makedepends=(gcc-multilib)
+source=("https://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz;
+
"https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
+sha256sums=('505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca'
+'8c1f33da739b29a77e35e5a1ebcdffaab63bfe184be8b5a97677cc80156fdc0f')
+
+prepare() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch"
+
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--program-suffix=-32 \
+--disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  rm -rf "${pkgdir}"/usr/{include,share}
+
+  rm "$pkgdir/usr/bin/libpng-config"
+  ln -s "libpng${_libversion}-config-32" "$pkgdir/usr/bin/libpng-config-32"
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2019-04-15 Thread Christian Hesse via arch-commits
Date: Monday, April 15, 2019 @ 14:30:51
  Author: eworm
Revision: 451698

upgpkg: lib32-libpng 1.6.37-1

new upstream release

Modified:
  lib32-libpng/trunk/PKGBUILD

--+
 PKGBUILD |   26 --
 1 file changed, 16 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 14:30:12 UTC (rev 451697)
+++ PKGBUILD2019-04-15 14:30:51 UTC (rev 451698)
@@ -5,7 +5,7 @@
 
 _pkgbasename=libpng
 pkgname=lib32-$_pkgbasename
-pkgver=1.6.36
+pkgver=1.6.37
 _apngver=1.6.36
 _libversion=16
 pkgrel=1
@@ -17,9 +17,18 @@
 makedepends=(gcc-multilib)
 
source=("https://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz;
 
"https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
-sha256sums=('eceb924c1fa6b79172fdfd008d335f0e59172a86a66481e09d4089df872aa319'
+sha256sums=('505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca'
 '8c1f33da739b29a77e35e5a1ebcdffaab63bfe184be8b5a97677cc80156fdc0f')
 
+prepare() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch"
+
+}
+
 build() {
   export CC="gcc -m32"
   export CXX="g++ -m32"
@@ -27,11 +36,11 @@
 
   cd "${srcdir}/${_pkgbasename}-${pkgver}"
 
-  # Add animated PNG (apng) support
-  # see http://sourceforge.net/projects/libpng-apng/
-  patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch"
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 --program-suffix=-32 
--disable-static
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--program-suffix=-32 \
+--disable-static
   make
 }
 
@@ -40,9 +49,6 @@
 
   make DESTDIR="${pkgdir}" install
 
-  cd contrib/pngminus
-  make PNGLIB="-L${pkgdir}/usr/lib32 -lpng" -f makefile.std png2pnm pnm2png
-
   rm -rf "${pkgdir}"/usr/{include,share}
 
   rm "$pkgdir/usr/bin/libpng-config"


[arch-commits] Commit in browserpass-chromium/repos/community-any (PKGBUILD PKGBUILD)

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 14:30:12
  Author: maximbaz
Revision: 451697

archrelease: copy trunk to community-any

Added:
  browserpass-chromium/repos/community-any/PKGBUILD
(from rev 451696, browserpass-chromium/trunk/PKGBUILD)
Deleted:
  browserpass-chromium/repos/community-any/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 14:30:05 UTC (rev 451696)
+++ PKGBUILD2019-04-15 14:30:12 UTC (rev 451697)
@@ -1,43 +0,0 @@
-# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
-
-_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
-_name=browserpass-extension
-pkgname=browserpass-chromium
-pkgver=3.0.10
-pkgrel=1
-pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
-arch=('any')
-url="https://github.com/browserpass/${_name};
-license=('ISC')
-depends=('browserpass')
-source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
-
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
-
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
-noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('782cd40ffdaeebc43e03e791150d4171f514f1691e0d1e850dd067b9a0527c5f'
-'SKIP'
-'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
-validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
-
-prepare() {
-# Create extension json
-cat << EOF > "${_id}".json
-{
-"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
-"external_version": "${pkgver}"
-}
-EOF
-}
-
-package() {
-install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
-install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
-
-# Install host json from browserpass package
-install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
-ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
-
-install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
-}
-
-# vim:set ts=4 sw=4 et:

Copied: browserpass-chromium/repos/community-any/PKGBUILD (from rev 451696, 
browserpass-chromium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 14:30:12 UTC (rev 451697)
@@ -0,0 +1,43 @@
+# Maintainer: Maxim Baz <$pkgname at maximbaz dot com>
+
+_id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
+_name=browserpass-extension
+pkgname=browserpass-chromium
+pkgver=3.0.11
+pkgrel=1
+pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
+arch=('any')
+url="https://github.com/browserpass/${_name};
+license=('ISC')
+depends=('browserpass')
+source=("${pkgname}-${pkgver}.crx::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx"
+
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
+
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
+noextract=("${pkgname}-${pkgver}.crx")
+sha256sums=('1b53ce4eb8285f0c130211167a7a6a0801795f8131bca7cb6e68877a755f9932'
+'SKIP'
+'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
+validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')
+
+prepare() {
+# Create extension json
+cat << EOF > "${_id}".json
+{
+"external_crx": "/usr/lib/${pkgname}/${pkgname}-${pkgver}.crx",
+"external_version": "${pkgver}"
+}
+EOF
+}
+
+package() {
+install -Dm644 -t "${pkgdir}/usr/share/chromium/extensions/" "${_id}.json"
+install -Dm644 -t "${pkgdir}/usr/lib/${pkgname}/" 
"${pkgname}-${pkgver}.crx"
+
+# Install host json from browserpass package
+install -dm755 "${pkgdir}/etc/chromium/native-messaging-hosts/"
+ln -sf 
"/usr/lib/browserpass/hosts/chromium/com.github.browserpass.native.json" 
"${pkgdir}/etc/chromium/native-messaging-hosts/"
+
+install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
+}
+
+# vim:set ts=4 sw=4 et:


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

2019-04-15 Thread Maxim Baz via arch-commits
Date: Monday, April 15, 2019 @ 14:30:05
  Author: maximbaz
Revision: 451696

upgpkg: browserpass-chromium 3.0.11-1

Modified:
  browserpass-chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 14:13:37 UTC (rev 451695)
+++ PKGBUILD2019-04-15 14:30:05 UTC (rev 451696)
@@ -3,7 +3,7 @@
 _id=pjmbgaakjkbhpopmakjoedenlfdmcdgm
 _name=browserpass-extension
 pkgname=browserpass-chromium
-pkgver=3.0.10
+pkgver=3.0.11
 pkgrel=1
 pkgdesc="Chromium extension for Browserpass, browser extension for zx2c4's 
pass (password manager)"
 arch=('any')
@@ -14,7 +14,7 @@
 
"${pkgname}-${pkgver}.crx.asc::${url}/releases/download/${pkgver}/browserpass-github-${pkgver}.crx.asc"
 
"https://raw.githubusercontent.com/browserpass/browserpass-extension/master/LICENSE;)
 noextract=("${pkgname}-${pkgver}.crx")
-sha256sums=('782cd40ffdaeebc43e03e791150d4171f514f1691e0d1e850dd067b9a0527c5f'
+sha256sums=('1b53ce4eb8285f0c130211167a7a6a0801795f8131bca7cb6e68877a755f9932'
 'SKIP'
 'ea8738ea89deaa31df9477e4f6cba90cb40d01e3e1e39b36afdcab763cf54dee')
 validpgpkeys=('EB4F9E5A60D32232BB52150C12C87A28FEAC6B20')


[arch-commits] Commit in lib32-glib2/repos (4 files)

2019-04-15 Thread Jan Steffens via arch-commits
Date: Monday, April 15, 2019 @ 13:26:05
  Author: heftig
Revision: 451694

archrelease: copy trunk to multilib-testing-x86_64

Added:
  lib32-glib2/repos/multilib-testing-x86_64/
  lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD
(from rev 451693, lib32-glib2/trunk/PKGBUILD)
  lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook
(from rev 451693, lib32-glib2/trunk/gio-querymodules-32.hook)
  lib32-glib2/repos/multilib-testing-x86_64/multilib.diff
(from rev 451693, lib32-glib2/trunk/multilib.diff)

--+
 PKGBUILD |   62 +
 gio-querymodules-32.hook |   11 +++
 multilib.diff|   12 
 3 files changed, 85 insertions(+)

Copied: lib32-glib2/repos/multilib-testing-x86_64/PKGBUILD (from rev 451693, 
lib32-glib2/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2019-04-15 13:26:05 UTC (rev 451694)
@@ -0,0 +1,62 @@
+# Contributor: Ionut Biru 
+# Contributor: Pierre Schmitz 
+# Contributor: Mikko Seppälä 
+
+pkgname=lib32-glib2
+pkgver=2.60.1
+pkgrel=1
+pkgdesc="Low level core library (32-bit)"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(lib32-pcre lib32-libffi lib32-util-linux lib32-zlib glib2)
+makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux meson lib32-dbus)
+checkdepends=(desktop-file-utils lib32-glib2)
+options=(!emptydirs)
+_commit=527022ae143c0ef154edaba449bedd430f382d86  # tags/2.60.1^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+multilib.diff
+gio-querymodules-32.hook)
+sha256sums=('SKIP'
+'9c59f120cdccdbd960c5e3aab11f6c3c4b464ff4f7fc267520f5baad7919310a'
+'73b6791b58180e2a02fe908938e6c547ee1b263f8c387262f9a8c4105ffa999a')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+  patch -Np1 -i ../multilib.diff
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  arch-meson glib build \
+-D selinux=disabled \
+--libdir=/usr/lib32
+  ninja -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --print-errorlogs
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+
+  rm -r "$pkgdir"/usr/{share,include}
+  find "$pkgdir/usr/bin" -type f -not -name gio-querymodules -printf 'Removing 
%P\n' -delete
+  mv "$pkgdir"/usr/bin/gio-querymodules{,-32}
+
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+
+  # Remove installed tests
+  rm -r "$pkgdir/usr/lib/installed-tests"
+}
+
+# vim:set sw=2 et:

Copied: lib32-glib2/repos/multilib-testing-x86_64/gio-querymodules-32.hook 
(from rev 451693, lib32-glib2/trunk/gio-querymodules-32.hook)
===
--- multilib-testing-x86_64/gio-querymodules-32.hook
(rev 0)
+++ multilib-testing-x86_64/gio-querymodules-32.hook2019-04-15 13:26:05 UTC 
(rev 451694)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib32/gio/modules/*.so
+
+[Action]
+Description = Updating 32-bit GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules-32 /usr/lib32/gio/modules

Copied: lib32-glib2/repos/multilib-testing-x86_64/multilib.diff (from rev 
451693, lib32-glib2/trunk/multilib.diff)
===
--- multilib-testing-x86_64/multilib.diff   (rev 0)
+++ multilib-testing-x86_64/multilib.diff   2019-04-15 13:26:05 UTC (rev 
451694)
@@ -0,0 +1,12 @@
+diff --git i/gio/tests/meson.build w/gio/tests/meson.build
+index 5c0e03365..d69346216 100644
+--- i/gio/tests/meson.build
 w/gio/tests/meson.build
+@@ -586,6 +586,7 @@ if not meson.is_cross_build() or meson.has_exe_wrapper()
+  '-r',
+  '-b','binary',
+  '@INPUT@',
++ '--oformat', 'elf32-i386',
+  '-o','@OUTPUT@'])
+ 
+   # Rename symbol to match the one in the C file


[arch-commits] Commit in glib2/repos (5 files)

2019-04-15 Thread Jan Steffens via arch-commits
Date: Monday, April 15, 2019 @ 13:26:07
  Author: heftig
Revision: 350788

archrelease: copy trunk to testing-x86_64

Added:
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 350787, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
(from rev 350787, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
(from rev 350787, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff
(from rev 350787, glib2/trunk/noisy-glib-compile-schemas.diff)

-+
 PKGBUILD|   77 ++
 gio-querymodules.hook   |   11 +
 glib-compile-schemas.hook   |   12 +
 noisy-glib-compile-schemas.diff |   24 +++
 4 files changed, 124 insertions(+)

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 350787, 
glib2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-15 13:26:07 UTC (rev 350788)
@@ -0,0 +1,77 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.60.1
+pkgrel=1
+pkgdesc="Low level core library"
+url="https://wiki.gnome.org/Projects/GLib;
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(pcre libffi libutil-linux zlib)
+makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux 
meson dbus)
+checkdepends=(desktop-file-utils)
+optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
+'libelf: gresource inspection tool')
+options=(!emptydirs)
+_commit=527022ae143c0ef154edaba449bedd430f382d86  # tags/2.60.1^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
+noisy-glib-compile-schemas.diff
+glib-compile-schemas.hook gio-querymodules.hook)
+sha256sums=('SKIP'
+'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
+'e1123a5d85d2445faac33f6dae1085fdd620d83279a4e130a83fe38db52b62b3'
+'5ba204a2686304b1454d401a39a9d27d09dd25e4529664e3fd565be3d439f8b6')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Suppress noise from glib-compile-schemas.hook
+  patch -Np1 -i ../noisy-glib-compile-schemas.diff
+}
+
+build() {
+  arch-meson glib build \
+-D selinux=disabled \
+-D man=true \
+-D gtk_doc=true
+  ninja -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --print-errorlogs
+}
+
+package_glib2() {
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+
+  python -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
+  python -O -m compileall -d /usr/share/glib-2.0/codegen 
"$pkgdir/usr/share/glib-2.0/codegen"
+
+  # Remove installed tests
+  rm -r "$pkgdir/usr/lib/installed-tests"
+
+  # Split docs
+  mv "$pkgdir/usr/share/gtk-doc" "$srcdir"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for GLib"
+  depends=()
+  optdepends=()
+  license+=(custom)
+
+  mkdir -p "$pkgdir/usr/share"
+  mv gtk-doc "$pkgdir/usr/share"
+
+  install -Dt "$pkgdir/usr/share/licenses/glib2-docs" -m644 
glib/docs/reference/COPYING
+}
+
+# vim:set sw=2 et:

Copied: glib2/repos/testing-x86_64/gio-querymodules.hook (from rev 350787, 
glib2/trunk/gio-querymodules.hook)
===
--- testing-x86_64/gio-querymodules.hook(rev 0)
+++ testing-x86_64/gio-querymodules.hook2019-04-15 13:26:07 UTC (rev 
350788)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gio/modules/*.so
+
+[Action]
+Description = Updating GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules /usr/lib/gio/modules

Copied: glib2/repos/testing-x86_64/glib-compile-schemas.hook (from rev 350787, 
glib2/trunk/glib-compile-schemas.hook)
===
--- testing-x86_64/glib-compile-schemas.hook(rev 0)
+++ testing-x86_64/glib-compile-schemas.hook2019-04-15 13:26:07 UTC (rev 
350788)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = File
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/glib-2.0/schemas/*.gschema.xml
+Target = usr/share/glib-2.0/schemas/*.gschema.override
+
+[Action]
+Description = Compiling GSettings XML schema files...
+When = PostTransaction
+Exec = /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas

Copied: glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff (from rev 
350787, glib2/trunk/noisy-glib-compile-schemas.diff)
===
--- 

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

2019-04-15 Thread Jan Steffens via arch-commits
Date: Monday, April 15, 2019 @ 13:25:45
  Author: heftig
Revision: 451693

2.60.1-1

Modified:
  lib32-glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 13:05:48 UTC (rev 451692)
+++ PKGBUILD2019-04-15 13:25:45 UTC (rev 451693)
@@ -3,7 +3,7 @@
 # Contributor: Mikko Seppälä 
 
 pkgname=lib32-glib2
-pkgver=2.60.0
+pkgver=2.60.1
 pkgrel=1
 pkgdesc="Low level core library (32-bit)"
 url="https://wiki.gnome.org/Projects/GLib;
@@ -13,7 +13,7 @@
 makedepends=(gettext gtk-doc shared-mime-info python lib32-libelf git 
util-linux meson lib32-dbus)
 checkdepends=(desktop-file-utils lib32-glib2)
 options=(!emptydirs)
-_commit=2edc5aa6dfffec0a48c8a1e9381b73d1096e0489  # tags/2.60.0^0
+_commit=527022ae143c0ef154edaba449bedd430f382d86  # tags/2.60.1^0
 source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
 multilib.diff
 gio-querymodules-32.hook)
@@ -43,7 +43,7 @@
 }
 
 check() {
-  meson test -C build --no-suite flaky
+  meson test -C build --no-suite flaky --print-errorlogs
 }
 
 package() {


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

2019-04-15 Thread Jan Steffens via arch-commits
Date: Monday, April 15, 2019 @ 13:25:38
  Author: heftig
Revision: 350787

2.60.1-1

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-14 21:15:12 UTC (rev 350786)
+++ PKGBUILD2019-04-15 13:25:38 UTC (rev 350787)
@@ -3,7 +3,7 @@
 
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
-pkgver=2.60.0
+pkgver=2.60.1
 pkgrel=1
 pkgdesc="Low level core library"
 url="https://wiki.gnome.org/Projects/GLib;
@@ -15,7 +15,7 @@
 optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
 'libelf: gresource inspection tool')
 options=(!emptydirs)
-_commit=2edc5aa6dfffec0a48c8a1e9381b73d1096e0489  # tags/2.60.0^0
+_commit=527022ae143c0ef154edaba449bedd430f382d86  # tags/2.60.1^0
 source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit;
 noisy-glib-compile-schemas.diff
 glib-compile-schemas.hook gio-querymodules.hook)
@@ -45,7 +45,7 @@
 }
 
 check() {
-  meson test -C build --no-suite flaky
+  meson test -C build --no-suite flaky --print-errorlogs
 }
 
 package_glib2() {


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

2019-04-15 Thread Ike Devolder via arch-commits
Date: Monday, April 15, 2019 @ 13:05:48
  Author: idevolder
Revision: 451692

archrelease: copy trunk to community-x86_64

Added:
  qcad/repos/community-x86_64/PKGBUILD
(from rev 451691, qcad/trunk/PKGBUILD)
Deleted:
  qcad/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  182 ++---
 1 file changed, 91 insertions(+), 91 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 13:05:41 UTC (rev 451691)
+++ PKGBUILD2019-04-15 13:05:48 UTC (rev 451692)
@@ -1,91 +0,0 @@
-# Maintainer: BlackIkeEagle 
-# Contributor: Sergej Pupykin 
-# Contributor: Stefan Husmann 
-# Contributor: Giovanni Scafora 
-# Contributor: Daniel J Griffiths 
-
-pkgname=qcad
-pkgver=3.22.0.6
-pkgrel=1
-pkgdesc='A 2D CAD package based upon Qt'
-arch=('x86_64')
-url="https://www.qcad.org;
-license=('GPL3')
-depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
-makedepends=('glu')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;)
-sha512sums=('97e2ff0c5a57153c00626f52abc33548726dc377115e72254197c2d98a5b883f67d7deaa611be86cb40cd42fe333a33b61adb7b0fe485ed7f28cc12047cc998f')
-
-prepare() {
-  rm *.tar.gz
-  cd qcad-$pkgver
-  sed -e 's|$${QT_VERSION}|5.5.0|g' \
-  -i src/3rdparty/3rdparty.pro # Don't require specific Qt version
-}
-
-build() {
-  cd qcad-$pkgver
-  qmake-qt5 qcad.pro
-  make
-}
-
-package() {
-  cd qcad-$pkgver
-
-  # remove project files
-  find . \( -name '*.pri' -or -name '.pro' -or -name '*.ts' \) -delete
-  find . \( -name 'Makefile' -name '.gitignore' \) -delete
-
-  install -dm755 "$pkgdir"/usr/lib/qcad
-  cp -r examples fonts libraries linetypes patterns scripts themes ts \
-  "$pkgdir"/usr/lib/qcad
-  cp release/{*.so,qcad-bin} "$pkgdir"/usr/lib/qcad
-
-  # install man
-  install -Dm644 qcad.1 "$pkgdir"/usr/share/man/man1/qcad.1
-
-  # readme
-  install -Dm644 readme.txt "$pkgdir"/usr/lib/qcad/readme.txt
-
-  # qt
-  cp -r plugins platforminputcontexts platforms xcbglintegrations \
-  "$pkgdir"/usr/lib/qcad
-  #install -dm755 
"$pkgdir"/usr/lib/qcad/plugins/{designer,imageformats,printsupport,sqldrivers}
-  #for sofiles in /usr/lib/qt/plugins/designer/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/plugins/designer/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/imageformats/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/imageformats/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/printsupport/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/printsupport/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/sqldrivers/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/plugins/sqldrivers/${sofiles##/*/}
-  #done
-  #install -dm755 
"$pkgdir"/usr/lib/qcad/{platforminputcontexts,platforms,xcbglintegrations}
-  #for sofiles in /usr/lib/qt/plugins/platforminputcontexts/*.so
-  #do
-#ln -sf ${sofiles} 
"$pkgdir"/usr/lib/qcad/platforminputcontexts/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/platforms/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/platforms/${sofiles##/*/}
-  #done
-  #for sofiles in /usr/lib/qt/plugins/xcbglintegrations/*.so
-  #do
-#ln -sf ${sofiles} "$pkgdir"/usr/lib/qcad/xcbglintegrations/${sofiles##/*/}
-  #done
-
-  install -Dm644 scripts/qcad_icon.png 
"$pkgdir"/usr/share/pixmaps/qcad_icon.png
-  install -Dm644 qcad.desktop "$pkgdir"/usr/share/applications/qcad.desktop
-
-  install -dm755 "$pkgdir"/usr/bin
-  echo -e 
'#!/bin/sh\nLD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"/usr/lib/qcad"
 exec /usr/lib/qcad/qcad-bin "$@"' >"$pkgdir"/usr/bin/qcad
-
-  chmod 0755 "$pkgdir"/usr/bin/qcad
-}

Copied: qcad/repos/community-x86_64/PKGBUILD (from rev 451691, 
qcad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 13:05:48 UTC (rev 451692)
@@ -0,0 +1,91 @@
+# Maintainer: BlackIkeEagle 
+# Contributor: Sergej Pupykin 
+# Contributor: Stefan Husmann 
+# Contributor: Giovanni Scafora 
+# Contributor: Daniel J Griffiths 
+
+pkgname=qcad
+pkgver=3.22.0.7
+pkgrel=1
+pkgdesc='A 2D CAD package based upon Qt'
+arch=('x86_64')
+url="https://www.qcad.org;
+license=('GPL3')
+depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
+makedepends=('glu')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;)
+sha512sums=('a9b16dcd9867104c33cf4b4c8e426598552740c5f71c3b4f8ed1200bdf60d092a942bc469c1550daf3ae12e1529e731bf0a14b3c0709ab6dada074638b9550d0')
+
+prepare() {
+  rm *.tar.gz
+  cd qcad-$pkgver
+  sed -e 's|$${QT_VERSION}|5.5.0|g' \
+  -i src/3rdparty/3rdparty.pro # Don't require specific Qt version
+}
+
+build() {
+  cd qcad-$pkgver
+  qmake-qt5 qcad.pro
+  make
+}
+
+package() {
+  cd 

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

2019-04-15 Thread Ike Devolder via arch-commits
Date: Monday, April 15, 2019 @ 13:05:41
  Author: idevolder
Revision: 451691

upgpkg: qcad 3.22.0.7-1

Modified:
  qcad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 13:05:24 UTC (rev 451690)
+++ PKGBUILD2019-04-15 13:05:41 UTC (rev 451691)
@@ -5,7 +5,7 @@
 # Contributor: Daniel J Griffiths 
 
 pkgname=qcad
-pkgver=3.22.0.6
+pkgver=3.22.0.7
 pkgrel=1
 pkgdesc='A 2D CAD package based upon Qt'
 arch=('x86_64')
@@ -14,7 +14,7 @@
 depends=('qt5-script' 'qt5-svg' 'gcc-libs' 'qt5-xmlpatterns' 'qt5-tools')
 makedepends=('glu')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/qcad/qcad/archive/v${pkgver}.tar.gz;)
-sha512sums=('97e2ff0c5a57153c00626f52abc33548726dc377115e72254197c2d98a5b883f67d7deaa611be86cb40cd42fe333a33b61adb7b0fe485ed7f28cc12047cc998f')
+sha512sums=('a9b16dcd9867104c33cf4b4c8e426598552740c5f71c3b4f8ed1200bdf60d092a942bc469c1550daf3ae12e1529e731bf0a14b3c0709ab6dada074638b9550d0')
 
 prepare() {
   rm *.tar.gz


[arch-commits] Commit in kodi-addon-visualization-shadertoy/repos/community-x86_64 (2 files)

2019-04-15 Thread Ike Devolder via arch-commits
Date: Monday, April 15, 2019 @ 13:05:24
  Author: idevolder
Revision: 451690

archrelease: copy trunk to community-x86_64

Added:
  kodi-addon-visualization-shadertoy/repos/community-x86_64/PKGBUILD
(from rev 451689, kodi-addon-visualization-shadertoy/trunk/PKGBUILD)
Deleted:
  kodi-addon-visualization-shadertoy/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   66 ++---
 1 file changed, 33 insertions(+), 33 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 13:05:16 UTC (rev 451689)
+++ PKGBUILD2019-04-15 13:05:24 UTC (rev 451690)
@@ -1,33 +0,0 @@
-# Maintainer: BlackEagle >
-
-pkgname=kodi-addon-visualization-shadertoy
-epoch=1
-pkgver=1.1.9
-_codename=Leia
-pkgrel=4
-pkgdesc="Shadertoy visualizer for Kodi"
-arch=('x86_64')
-url='https://github.com/xbmc/visualization.shadertoy'
-license=('GPL')
-groups=('kodi-addons' 'kodi-addons-visualization')
-depends=('kodi' 'p8-platform')
-makedepends=('cmake' 'kodi-dev')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.shadertoy/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('f829505525f46cb54ac205a52561dbf99f776350c0c34487438663d1c42dcd734f8c2e543c23550b4be61bab00d7f09beb63824935cd68de14328aaca44a5b95')
-
-build() {
-cd "visualization.shadertoy-$pkgver-$_codename"
-cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DBUILD_SHARED_LIBS=1 \
--DUSE_LTO=1 \
-.
-make
-}
-
-package() {
-cd "visualization.shadertoy-$pkgver-$_codename"
-make DESTDIR="$pkgdir/" install
-}
-

Copied: kodi-addon-visualization-shadertoy/repos/community-x86_64/PKGBUILD 
(from rev 451689, kodi-addon-visualization-shadertoy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 13:05:24 UTC (rev 451690)
@@ -0,0 +1,33 @@
+# Maintainer: BlackEagle >
+
+pkgname=kodi-addon-visualization-shadertoy
+epoch=1
+pkgver=1.1.10
+_codename=Leia
+pkgrel=1
+pkgdesc="Shadertoy visualizer for Kodi"
+arch=('x86_64')
+url='https://github.com/xbmc/visualization.shadertoy'
+license=('GPL')
+groups=('kodi-addons' 'kodi-addons-visualization')
+depends=('kodi' 'p8-platform')
+makedepends=('cmake' 'kodi-dev')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.shadertoy/archive/$pkgver-$_codename.tar.gz;)
+sha512sums=('2d81edc2bffd29d2d33a8c67fdf84e65a53a2f204cc051df23d7904a763d6096b7c9839dfda9830e081ee465fcfacd656dc2959ace84ea4350e9d0372712')
+
+build() {
+cd "visualization.shadertoy-$pkgver-$_codename"
+cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_SHARED_LIBS=1 \
+-DUSE_LTO=1 \
+.
+make
+}
+
+package() {
+cd "visualization.shadertoy-$pkgver-$_codename"
+make DESTDIR="$pkgdir/" install
+}
+


[arch-commits] Commit in kodi-addon-visualization-shadertoy/trunk (PKGBUILD)

2019-04-15 Thread Ike Devolder via arch-commits
Date: Monday, April 15, 2019 @ 13:05:16
  Author: idevolder
Revision: 451689

upgpkg: kodi-addon-visualization-shadertoy 1:1.1.10-1

Modified:
  kodi-addon-visualization-shadertoy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 10:24:09 UTC (rev 451688)
+++ PKGBUILD2019-04-15 13:05:16 UTC (rev 451689)
@@ -2,9 +2,9 @@
 
 pkgname=kodi-addon-visualization-shadertoy
 epoch=1
-pkgver=1.1.9
+pkgver=1.1.10
 _codename=Leia
-pkgrel=4
+pkgrel=1
 pkgdesc="Shadertoy visualizer for Kodi"
 arch=('x86_64')
 url='https://github.com/xbmc/visualization.shadertoy'
@@ -13,7 +13,7 @@
 depends=('kodi' 'p8-platform')
 makedepends=('cmake' 'kodi-dev')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/xbmc/visualization.shadertoy/archive/$pkgver-$_codename.tar.gz;)
-sha512sums=('f829505525f46cb54ac205a52561dbf99f776350c0c34487438663d1c42dcd734f8c2e543c23550b4be61bab00d7f09beb63824935cd68de14328aaca44a5b95')
+sha512sums=('2d81edc2bffd29d2d33a8c67fdf84e65a53a2f204cc051df23d7904a763d6096b7c9839dfda9830e081ee465fcfacd656dc2959ace84ea4350e9d0372712')
 
 build() {
 cd "visualization.shadertoy-$pkgver-$_codename"


[arch-commits] Commit in go/repos/community-x86_64 (4 files)

2019-04-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, April 15, 2019 @ 08:03:28
  Author: bpiotrowski
Revision: 451687

archrelease: copy trunk to community-x86_64

Added:
  go/repos/community-x86_64/PKGBUILD
(from rev 451686, go/trunk/PKGBUILD)
  go/repos/community-x86_64/default-buildmode-pie.patch
(from rev 451686, go/trunk/default-buildmode-pie.patch)
Deleted:
  go/repos/community-x86_64/PKGBUILD
  go/repos/community-x86_64/default-buildmode-pie.patch

-+
 PKGBUILD|  222 +-
 default-buildmode-pie.patch |   28 ++---
 2 files changed, 125 insertions(+), 125 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 08:03:20 UTC (rev 451686)
+++ PKGBUILD2019-04-15 08:03:28 UTC (rev 451687)
@@ -1,111 +0,0 @@
-# Maintainer: Morten Linderud 
-# Maintainer: Bartłomiej Piotrowski 
-# Contributor: Alexander F. Rødseth 
-# Contributor: Pierre Neidhardt 
-# Contributor: Vesa Kaihlavirta 
-# Contributor: Rémy Oudompheng 
-# Contributor: Andres Perera 
-# Contributor: Matthew Bauer 
-# Contributor: Christian Himpel 
-# Contributor: Mike Rosset 
-# Contributor: Daniel YC Lin 
-# Contributor: John Luebs 
-
-pkgbase=go
-pkgname=(go go-pie)
-epoch=2
-pkgver=1.12.3
-pkgrel=1
-arch=(x86_64)
-url='https://golang.org/'
-license=(BSD)
-makedepends=(git go)
-source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
-default-buildmode-pie.patch)
-sha256sums=('5c507abe8818429d74ebb650a4155d36bc3f9a725e59e76f5d6aca9690be2373'
-'9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
-
-prepare() {
-  cp -r $pkgbase $pkgbase-pie
-  cd $pkgbase-pie
-  patch -p1 -i "$srcdir/default-buildmode-pie.patch"
-}
-
-build() {
-  export GOARCH=amd64
-  export GOROOT_FINAL=/usr/lib/go
-  export GOROOT_BOOTSTRAP=/usr/lib/go
-  export GOPATH="$srcdir/"
-
-  for _pkgname in ${pkgname[@]}; do
-export GOROOT="$srcdir/$_pkgname"
-export GOBIN="$GOROOT/bin"
-
-cd "$srcdir/$_pkgname/src"
-./make.bash --no-clean -v
-
-PATH="$GOBIN:$PATH" go install -v -buildmode=shared std
-PATH="$GOBIN:$PATH" go install -v -race std
-  done
-}
-
-check() {
-  export GOARCH=amd64
-  export GOROOT_FINAL=/usr/lib/go
-  export GOROOT_BOOTSTRAP=/usr/lib/go
-  # Run test suite only for unpatched Go as it expects non-PIE ldBuildmode
-  export GOROOT="$srcdir/$pkgbase"
-  export GOBIN="$GOROOT/bin"
-  export PATH="$srcdir/$pkgbase/bin:$PATH"
-  export GO_TEST_TIMEOUT_SCALE=2
-
-  cd $pkgbase/src
-  ./run.bash --no-rebuild -v -v -v -k
-}
-
-_package() {
-  export GOARCH=amd64
-  export GOROOT_FINAL=/usr/lib/go
-  export GOROOT_BOOTSTRAP=/usr/lib/go
-
-  options=(!strip staticlibs)
-  cd "$srcdir/$1"
-
-  install -d "$pkgdir/usr/bin" "$pkgdir/usr/lib/go" "$pkgdir/usr/share/doc/go"
-  cp -a bin pkg src lib misc api test "$pkgdir/usr/lib/go"
-  cp -r doc/* "$pkgdir/usr/share/doc/go"
-
-  ln -sf /usr/lib/go/bin/go "$pkgdir/usr/bin/go"
-  ln -sf /usr/lib/go/bin/gofmt "$pkgdir/usr/bin/gofmt"
-  ln -sf /usr/share/doc/go "$pkgdir/usr/lib/go/doc"
-
-  install -Dm644 VERSION "$pkgdir/usr/lib/go/VERSION"
-
-  rm -rf "$pkgdir/usr/lib/go/pkg/bootstrap" "$pkgdir/usr/lib/go/pkg/tool/*/api"
-
-  # TODO: Figure out if really needed
-  rm -rf "$pkgdir"/usr/lib/go/pkg/obj/go-build/*
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$1/LICENSE"
-}
-
-package_go() {
-  pkgdesc='Core compiler tools for the Go programming language'
-
-  _package $pkgname
-}
-
-package_go-pie() {
-  pkgdesc='Core compiler tools for the Go programming language (with PIE 
enabled by default)'
-  provides=(go)
-  conflicts=(go)
-
-  _package $pkgname
-
-  # linux_amd64 is essentially the content of linux_amd64_shared, however 
there might
-  # be cases where the user could generate the _shared directory as it's 
missing in go-pie.
-  # Make sure it exists without rebuilding std with -buildmode=pie.
-  cp -a "$pkgdir/usr/lib/go/pkg/linux_amd64/" 
"$pkgdir/usr/lib/go/pkg/linux_amd64_shared"
-}
-
-# vim: ts=2 sw=2 et

Copied: go/repos/community-x86_64/PKGBUILD (from rev 451686, go/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 08:03:28 UTC (rev 451687)
@@ -0,0 +1,111 @@
+# Maintainer: Morten Linderud 
+# Maintainer: Bartłomiej Piotrowski 
+# Contributor: Alexander F. Rødseth 
+# Contributor: Pierre Neidhardt 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Rémy Oudompheng 
+# Contributor: Andres Perera 
+# Contributor: Matthew Bauer 
+# Contributor: Christian Himpel 
+# Contributor: Mike Rosset 
+# Contributor: Daniel YC Lin 
+# Contributor: John Luebs 
+
+pkgbase=go
+pkgname=(go go-pie)
+epoch=2
+pkgver=1.12.4
+pkgrel=1
+arch=(x86_64)
+url='https://golang.org/'
+license=(BSD)
+makedepends=(git go)
+source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
+default-buildmode-pie.patch)

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

2019-04-15 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, April 15, 2019 @ 08:03:20
  Author: bpiotrowski
Revision: 451686

2:1.12.4-1

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 07:20:06 UTC (rev 451685)
+++ PKGBUILD2019-04-15 08:03:20 UTC (rev 451686)
@@ -14,7 +14,7 @@
 pkgbase=go
 pkgname=(go go-pie)
 epoch=2
-pkgver=1.12.3
+pkgver=1.12.4
 pkgrel=1
 arch=(x86_64)
 url='https://golang.org/'
@@ -22,7 +22,7 @@
 makedepends=(git go)
 source=(https://storage.googleapis.com/golang/go$pkgver.src.tar.gz
 default-buildmode-pie.patch)
-sha256sums=('5c507abe8818429d74ebb650a4155d36bc3f9a725e59e76f5d6aca9690be2373'
+sha256sums=('4affc3e610cd8182c47abbc5b0c0e4e3c6a2b945b55aaa2ba952964ad9df1467'
 '9d2f0d201d4e002d74f548cc82bd131139bab5dd62191004c71dd430fdc1666d')
 
 prepare() {


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

2019-04-15 Thread Evangelos Foutras via arch-commits
Date: Monday, April 15, 2019 @ 07:19:58
  Author: foutrelis
Revision: 451684

upgpkg: shorewall 5.2.3.3-1

New upstream release.

Modified:
  shorewall/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-15 03:51:31 UTC (rev 451683)
+++ PKGBUILD2019-04-15 07:19:58 UTC (rev 451684)
@@ -4,7 +4,7 @@
 # Contributor: FUBAR 
 
 pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.2.3.2
+pkgver=5.2.3.3
 pkgrel=1
 _v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
 _v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
@@ -14,11 +14,11 @@
 
source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
 
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
 
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
-sha256sums=('58615c40598d3f2f71e6aab286ebd281c9018dea584ee658e5609ea0e434b242'
+sha256sums=('6bb832d557f9646b62af1b60db6d8b693756403ea5d23c10db96013dd40547cd'
 'SKIP'
-'43d48d47929fdef29023ff2659550f0b2289064d54b7abe64f79efeb1613146a'
+'f620107bd19f8df573ca249720506bcc5fa99db72f191ba04060f2a74c251a56'
 'SKIP'
-'fa71e435ba3ffa3b424c3fe4dfb405c536e4c8d837e8f0936486f7673478ce5b'
+'e516c56b416181c325dfee68d0bbf38685f89ec0b6bc9c25c6c98ffabbf3e2bd'
 'SKIP')
 validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
 


[arch-commits] Commit in shorewall/repos/community-any (PKGBUILD PKGBUILD)

2019-04-15 Thread Evangelos Foutras via arch-commits
Date: Monday, April 15, 2019 @ 07:20:06
  Author: foutrelis
Revision: 451685

archrelease: copy trunk to community-any

Added:
  shorewall/repos/community-any/PKGBUILD
(from rev 451684, shorewall/trunk/PKGBUILD)
Deleted:
  shorewall/repos/community-any/PKGBUILD

--+
 PKGBUILD |  156 ++---
 1 file changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-15 07:19:58 UTC (rev 451684)
+++ PKGBUILD2019-04-15 07:20:06 UTC (rev 451685)
@@ -1,78 +0,0 @@
-# Maintainer: Evangelos Foutras 
-# Contributor: Malte Rabenseifner 
-# Contributor: Andrea Scarpino 
-# Contributor: FUBAR 
-
-pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.2.3.2
-pkgrel=1
-_v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
-_v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
-arch=('any')
-url="http://www.shorewall.net/;
-license=('GPL')
-source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
-
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
-
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
-sha256sums=('58615c40598d3f2f71e6aab286ebd281c9018dea584ee658e5609ea0e434b242'
-'SKIP'
-'43d48d47929fdef29023ff2659550f0b2289064d54b7abe64f79efeb1613146a'
-'SKIP'
-'fa71e435ba3ffa3b424c3fe4dfb405c536e4c8d837e8f0936486f7673478ce5b'
-'SKIP')
-validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
-
-build() {
-  for product in shorewall{,6,-core}; do
-pushd "$srcdir/$product-$pkgver"
-./configure HOST=archlinux
-popd
-  done
-}
-
-package_shorewall() {
-  pkgdesc="An iptables-based firewall for Linux systems"
-  depends=('shorewall-core' 'perl')
-  
backup=(etc/shorewall/{accounting,actions,arprules,blrules,clear,conntrack,ecn,findgw,hosts,init,initdone,interfaces,lib.private,maclist,mangle,nat,netmap,params,policy,providers,proxyarp,refresh,refreshed,restored,routes,rtrules,rules,scfilter,secmarks,shorewall.conf,snat,start,started,stop,stopped,stoppedrules,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install
-}
-
-package_shorewall6() {
-  pkgdesc="An iptables-based firewall for Linux systems (with IPv6 support)"
-  depends=('shorewall')
-  
backup=(etc/shorewall6/{accounting,actions,blrules,clear,conntrack,findgw,hosts,init,interfaces,lib.private,maclist,mangle,nat,netmap,params,policy,providers,proxyndp,refresh,refreshed,restored,routes,rtrules,rules,scfilter,secmarks,shorewall6.conf,snat,start,started,stop,stopped,stoppedrules,tcclasses,tcclear,tcdevices,tcfilters,tcinterfaces,tcpri,tunnels,zones})
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  do_install 6
-}
-
-package_shorewall-core() {
-  pkgdesc="Core Shorewall libraries"
-  depends=('iptables' 'iproute2')
-
-  cd "$srcdir/$pkgname-$pkgver"
-
-  DESTDIR="$pkgdir" ./install.sh
-}
-
-do_install() {
-  local _name_suffix=$1
-
-  sed -i -e 's|^MODULE_SUFFIX=ko$|&.gz|' \
- -e 's|/subsys||' \
-  "configfiles/shorewall$_name_suffix.conf"
-
-  DESTDIR="$pkgdir" ./install.sh
-
-  install -d "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-  cp -r Samples$_name_suffix "$pkgdir/usr/share/doc/shorewall$_name_suffix/"
-
-  chmod -R 644 "$pkgdir/etc/shorewall$_name_suffix/"
-  chmod 755 "$pkgdir/etc/shorewall$_name_suffix/"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: shorewall/repos/community-any/PKGBUILD (from rev 451684, 
shorewall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-15 07:20:06 UTC (rev 451685)
@@ -0,0 +1,78 @@
+# Maintainer: Evangelos Foutras 
+# Contributor: Malte Rabenseifner 
+# Contributor: Andrea Scarpino 
+# Contributor: FUBAR 
+
+pkgname=('shorewall' 'shorewall6' 'shorewall-core')
+pkgver=5.2.3.3
+pkgrel=1
+_v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
+_v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
+arch=('any')
+url="http://www.shorewall.net/;
+license=('GPL')
+source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
+
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
+
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
+sha256sums=('6bb832d557f9646b62af1b60db6d8b693756403ea5d23c10db96013dd40547cd'
+'SKIP'
+'f620107bd19f8df573ca249720506bcc5fa99db72f191ba04060f2a74c251a56'
+'SKIP'
+'e516c56b416181c325dfee68d0bbf38685f89ec0b6bc9c25c6c98ffabbf3e2bd'
+'SKIP')
+validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
+
+build() {
+  for product in