[arch-commits] Commit in appstream/repos/extra-x86_64 (4 files)

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Wednesday, January 31, 2018 @ 07:33:50
  Author: arojas
Revision: 315658

archrelease: copy trunk to extra-x86_64

Added:
  appstream/repos/extra-x86_64/PKGBUILD
(from rev 315657, appstream/trunk/PKGBUILD)
  appstream/repos/extra-x86_64/update-appstream-cache.hook
(from rev 315657, appstream/trunk/update-appstream-cache.hook)
Deleted:
  appstream/repos/extra-x86_64/PKGBUILD
  appstream/repos/extra-x86_64/update-appstream-cache.hook

-+
 PKGBUILD|  119 +-
 update-appstream-cache.hook |   34 ++--
 2 files changed, 79 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-31 07:33:27 UTC (rev 315657)
+++ PKGBUILD2018-01-31 07:33:50 UTC (rev 315658)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Jameson Pugh 
-# Contributor: Tim Jester-Pfadt 
-
-pkgbase=appstream
-pkgname=(appstream appstream-qt)
-pkgver=0.11.8
-pkgrel=1
-pkgdesc="Provides a standard for creating app stores across distributions"
-arch=(x86_64)
-url="http://distributions.freedesktop.org/wiki/AppStream;
-license=(GPL)
-depends=(libyaml libxml2 libstemmer glib2)
-makedepends=(meson xmlto gobject-introspection python2 gtk-doc qt5-tools 
itstool vala)
-source=("https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz"{,.asc}
-update-appstream-cache.hook)
-sha256sums=('54a6c443e51c2e016fe5031f8f1865500bb7a7807b8514355f4841298b85edf3'
-'SKIP'
-'a6c42e4607ffd7d7dc931d608f1856e2ba7689d4caac0783e7100d86de0f951b')
-validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 

-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  meson ../AppStream-$pkgver \
---prefix=/usr \
--Dqt=true \
--Dvapi=true
-  ninja
-}
-
-package_appstream() {
-  cd build
-
-  DESTDIR="$pkgdir" ninja install
-
-# provided by -qt subpackage
-  rm -r "$pkgdir"/usr/{include/AppStreamQt,lib/cmake,lib/libAppStreamQt.*}
-
-  install -Dm644 "$srcdir"/update-appstream-cache.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-appstream-cache.hook
-}
-
-package_appstream-qt() {
-  pkgdesc='Qt5 interface for AppStream'
-  depends=(appstream qt5-base)
-
-  cd build
-  DESTDIR="$pkgdir" ninja install
-
-# provided by appstream
-  rm -r 
"$pkgdir"{/etc,/usr/{bin,include/appstream,lib/{girepository-1.0,libappstream*,pkgconfig},share}}
-}

Copied: appstream/repos/extra-x86_64/PKGBUILD (from rev 315657, 
appstream/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-31 07:33:50 UTC (rev 315658)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Jameson Pugh 
+# Contributor: Tim Jester-Pfadt 
+
+pkgbase=appstream
+pkgname=(appstream appstream-qt)
+pkgver=0.11.8
+pkgrel=2
+pkgdesc="Provides a standard for creating app stores across distributions"
+arch=(x86_64)
+url="http://distributions.freedesktop.org/wiki/AppStream;
+license=(GPL)
+depends=(libyaml libxml2 libstemmer glib2)
+makedepends=(meson xmlto gobject-introspection python2 gtk-doc qt5-tools 
itstool vala)
+source=("https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz"{,.asc}
+update-appstream-cache.hook
+https://github.com/ximion/appstream/commit/3e58f9c9.patch)
+sha256sums=('54a6c443e51c2e016fe5031f8f1865500bb7a7807b8514355f4841298b85edf3'
+'SKIP'
+'a6c42e4607ffd7d7dc931d608f1856e2ba7689d4caac0783e7100d86de0f951b'
+'e6aeca8a58187c92298fd42aa83eb29dea2db6810b0f55c34671e03de4ed8002')
+validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 

+
+prepare() {
+  mkdir -p build
+
+  cd AppStream-$pkgver
+  patch -p1 -i ../3e58f9c9.patch # Fix build of packages against appstream-qt
+}
+
+build() {
+  cd build
+
+  meson ../AppStream-$pkgver \
+--prefix=/usr \
+-Dqt=true \
+-Dvapi=true
+  ninja
+}
+
+package_appstream() {
+  cd build
+
+  DESTDIR="$pkgdir" ninja install
+
+# provided by -qt subpackage
+  rm -r "$pkgdir"/usr/{include/AppStreamQt,lib/cmake,lib/libAppStreamQt.*}
+
+  install -Dm644 "$srcdir"/update-appstream-cache.hook 
"$pkgdir"/usr/share/libalpm/hooks/update-appstream-cache.hook
+}
+
+package_appstream-qt() {
+  pkgdesc='Qt5 interface for AppStream'
+  depends=(appstream qt5-base)
+
+  cd build
+  DESTDIR="$pkgdir" ninja install
+
+# provided by appstream
+  rm -r 
"$pkgdir"{/etc,/usr/{bin,include/appstream,lib/{girepository-1.0,libappstream*,pkgconfig},share}}
+}

Deleted: update-appstream-cache.hook
===
--- update-appstream-cache.hook 2018-01-31 07:33:27 UTC (rev 315657)

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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Wednesday, January 31, 2018 @ 07:33:27
  Author: arojas
Revision: 315657

Fix build of packages against appstream-qt (FS#57302)

Modified:
  appstream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-31 07:26:35 UTC (rev 315656)
+++ PKGBUILD2018-01-31 07:33:27 UTC (rev 315657)
@@ -6,7 +6,7 @@
 pkgbase=appstream
 pkgname=(appstream appstream-qt)
 pkgver=0.11.8
-pkgrel=1
+pkgrel=2
 pkgdesc="Provides a standard for creating app stores across distributions"
 arch=(x86_64)
 url="http://distributions.freedesktop.org/wiki/AppStream;
@@ -14,14 +14,19 @@
 depends=(libyaml libxml2 libstemmer glib2)
 makedepends=(meson xmlto gobject-introspection python2 gtk-doc qt5-tools 
itstool vala)
 
source=("https://www.freedesktop.org/software/appstream/releases/AppStream-$pkgver.tar.xz"{,.asc}
-update-appstream-cache.hook)
+update-appstream-cache.hook
+https://github.com/ximion/appstream/commit/3e58f9c9.patch)
 sha256sums=('54a6c443e51c2e016fe5031f8f1865500bb7a7807b8514355f4841298b85edf3'
 'SKIP'
-'a6c42e4607ffd7d7dc931d608f1856e2ba7689d4caac0783e7100d86de0f951b')
+'a6c42e4607ffd7d7dc931d608f1856e2ba7689d4caac0783e7100d86de0f951b'
+'e6aeca8a58187c92298fd42aa83eb29dea2db6810b0f55c34671e03de4ed8002')
 validpgpkeys=(D33A3F0CA16B0ACC51A60738494C8A5FBF4DECEB) # Matthias Klumpp 

 
 prepare() {
   mkdir -p build
+
+  cd AppStream-$pkgver
+  patch -p1 -i ../3e58f9c9.patch # Fix build of packages against appstream-qt
 }
 
 build() {


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

2018-01-30 Thread Anatol Pomozov via arch-commits
Date: Wednesday, January 31, 2018 @ 07:26:35
  Author: anatolik
Revision: 315656

archrelease: copy trunk to testing-x86_64

Added:
  gdb/repos/testing-x86_64/
  gdb/repos/testing-x86_64/PKGBUILD
(from rev 315655, gdb/trunk/PKGBUILD)

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

Copied: gdb/repos/testing-x86_64/PKGBUILD (from rev 315655, gdb/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-31 07:26:35 UTC (rev 315656)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Allan McRae 
+# Contributor: Jan de Groot 
+
+pkgbase=gdb
+# gdb-common is a package that contains files common for all cross compiled 
versions
+# of gdb (for arm/avr/...)
+pkgname=(gdb gdb-common)
+pkgver=8.1
+pkgrel=1
+pkgdesc='The GNU Debugger'
+arch=(x86_64)
+url='http://www.gnu.org/software/gdb/'
+license=(GPL3)
+makedepends=(texinfo python guile2.0 ncurses expat xz)
+source=(https://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
+sha1sums=('641861f7d3f22b6a23bc3e801f0ff29a78375490'
+  'SKIP')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
+
+prepare() {
+  cd gdb-$pkgver
+
+  # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
+}
+
+build() {
+  cd gdb-$pkgver
+  
+  ./configure --prefix=/usr --disable-nls \
+--with-system-readline \
+--with-python=/usr/bin/python3 \
+--with-guile=guile-2.0 \
+--with-system-gdbinit=/etc/gdb/gdbinit
+  make
+}
+
+package_gdb-common() {
+  depends=(python guile2.0)
+
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # resolve conflicts with binutils
+  rm $pkgdir/usr/include/{ansidecl,bfd,bfdlink,dis-asm,plugin-api,symcat}.h
+  rm $pkgdir/usr/share/info/bfd.info
+  rm $pkgdir/usr/lib/{libbfd,libopcodes}.a
+
+  rm -r $pkgdir/usr/{bin,include,lib,share/info,share/man}
+}
+
+package_gdb() {
+  depends=(ncurses expat xz mpfr gdb-common=$pkgver)
+  backup=(etc/gdb/gdbinit)
+
+  cd gdb-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # install "custom" system gdbinit
+  install -dm755 $pkgdir/etc/gdb
+  touch $pkgdir/etc/gdb/gdbinit
+
+  # resolve conflicts with binutils
+  rm $pkgdir/usr/include/{ansidecl,bfd,bfdlink,dis-asm,plugin-api,symcat}.h
+  rm $pkgdir/usr/share/info/bfd.info
+  rm $pkgdir/usr/lib/{libbfd,libopcodes}.a
+
+  # comes from gdb-common
+  rm -r $pkgdir/usr/share/gdb/
+}


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

2018-01-30 Thread Anatol Pomozov via arch-commits
Date: Wednesday, January 31, 2018 @ 07:26:08
  Author: anatolik
Revision: 315655

upgpkg: gdb 8.1-1

Modified:
  gdb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-31 07:18:48 UTC (rev 315654)
+++ PKGBUILD2018-01-31 07:26:08 UTC (rev 315655)
@@ -6,7 +6,7 @@
 # gdb-common is a package that contains files common for all cross compiled 
versions
 # of gdb (for arm/avr/...)
 pkgname=(gdb gdb-common)
-pkgver=8.0.1
+pkgver=8.1
 pkgrel=1
 pkgdesc='The GNU Debugger'
 arch=(x86_64)
@@ -14,7 +14,7 @@
 license=(GPL3)
 makedepends=(texinfo python guile2.0 ncurses expat xz)
 source=(https://ftp.gnu.org/gnu/gdb/${pkgname}-${pkgver}.tar.xz{,.sig})
-sha1sums=('faa945f77cf9bb5ae9530664f8b34ad21e38088f'
+sha1sums=('641861f7d3f22b6a23bc3e801f0ff29a78375490'
   'SKIP')
 validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
 
@@ -51,7 +51,7 @@
 }
 
 package_gdb() {
-  depends=(ncurses expat xz gdb-common=$pkgver)
+  depends=(ncurses expat xz mpfr gdb-common=$pkgver)
   backup=(etc/gdb/gdbinit)
 
   cd gdb-$pkgver


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

2018-01-30 Thread Christian Hesse via arch-commits
Date: Wednesday, January 31, 2018 @ 07:02:30
  Author: eworm
Revision: 315652

upgpkg: systemd 237.0-2

add dependency on pcre2 (FS#57297)

Modified:
  systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-31 06:18:22 UTC (rev 315651)
+++ PKGBUILD2018-01-31 07:02:30 UTC (rev 315652)
@@ -10,7 +10,7 @@
 # Bump this to latest major release for signed tag verification,
 # the commit count is handled by pkgver() function.
 pkgver=237.0
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url="https://www.github.com/systemd/systemd;
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -17,7 +17,7 @@
  'intltool' 'iptables' 'kmod' 'libcap' 'libidn' 'libgcrypt'
  'libmicrohttpd' 'libxslt' 'util-linux' 'linux-api-headers'
  'python-lxml' 'quota-tools' 'shadow' 'gnu-efi-libs' 'git'
- 'meson' 'libseccomp')
+ 'meson' 'libseccomp' 'pcre2')
 options=('strip')
 validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4')  # Lennart 
Poettering 
 source=('git://github.com/systemd/systemd-stable.git'
@@ -141,7 +141,7 @@
   groups=('base-devel')
   depends=('acl' 'bash' 'cryptsetup' 'dbus' 'iptables' 'kbd' 'kmod' 'hwids' 
'libcap'
'libgcrypt' 'libsystemd' 'libidn' 'lz4' 'pam' 'libelf' 'libseccomp'
-   'util-linux' 'xz')
+   'util-linux' 'xz' 'pcre2')
   provides=('nss-myhostname' "systemd-tools=$pkgver" "udev=$pkgver")
   replaces=('nss-myhostname' 'systemd-tools' 'udev')
   conflicts=('nss-myhostname' 'systemd-tools' 'udev')


[arch-commits] Commit in systemd/repos/testing-x86_64 (26 files)

2018-01-30 Thread Christian Hesse via arch-commits
Date: Wednesday, January 31, 2018 @ 07:02:41
  Author: eworm
Revision: 315653

archrelease: copy trunk to testing-x86_64

Added:
  systemd/repos/testing-x86_64/PKGBUILD
(from rev 315652, systemd/trunk/PKGBUILD)
  systemd/repos/testing-x86_64/arch.conf
(from rev 315652, systemd/trunk/arch.conf)
  systemd/repos/testing-x86_64/initcpio-hook-udev
(from rev 315652, systemd/trunk/initcpio-hook-udev)
  systemd/repos/testing-x86_64/initcpio-install-systemd
(from rev 315652, systemd/trunk/initcpio-install-systemd)
  systemd/repos/testing-x86_64/initcpio-install-udev
(from rev 315652, systemd/trunk/initcpio-install-udev)
  systemd/repos/testing-x86_64/loader.conf
(from rev 315652, systemd/trunk/loader.conf)
  systemd/repos/testing-x86_64/splash-arch.bmp
(from rev 315652, systemd/trunk/splash-arch.bmp)
  systemd/repos/testing-x86_64/systemd-hwdb.hook
(from rev 315652, systemd/trunk/systemd-hwdb.hook)
  systemd/repos/testing-x86_64/systemd-sysusers.hook
(from rev 315652, systemd/trunk/systemd-sysusers.hook)
  systemd/repos/testing-x86_64/systemd-tmpfiles.hook
(from rev 315652, systemd/trunk/systemd-tmpfiles.hook)
  systemd/repos/testing-x86_64/systemd-update.hook
(from rev 315652, systemd/trunk/systemd-update.hook)
  systemd/repos/testing-x86_64/systemd-user.pam
(from rev 315652, systemd/trunk/systemd-user.pam)
  systemd/repos/testing-x86_64/systemd.install
(from rev 315652, systemd/trunk/systemd.install)
Deleted:
  systemd/repos/testing-x86_64/PKGBUILD
  systemd/repos/testing-x86_64/arch.conf
  systemd/repos/testing-x86_64/initcpio-hook-udev
  systemd/repos/testing-x86_64/initcpio-install-systemd
  systemd/repos/testing-x86_64/initcpio-install-udev
  systemd/repos/testing-x86_64/loader.conf
  systemd/repos/testing-x86_64/splash-arch.bmp
  systemd/repos/testing-x86_64/systemd-hwdb.hook
  systemd/repos/testing-x86_64/systemd-sysusers.hook
  systemd/repos/testing-x86_64/systemd-tmpfiles.hook
  systemd/repos/testing-x86_64/systemd-update.hook
  systemd/repos/testing-x86_64/systemd-user.pam
  systemd/repos/testing-x86_64/systemd.install

--+
 PKGBUILD |  526 ++---
 arch.conf|   14 -
 initcpio-hook-udev   |   44 +--
 initcpio-install-systemd |  396 -
 initcpio-install-udev|   58 ++--
 loader.conf  |2 
 systemd-hwdb.hook|   22 -
 systemd-sysusers.hook|   22 -
 systemd-tmpfiles.hook|   22 -
 systemd-update.hook  |   22 -
 systemd-user.pam |   10 
 systemd.install  |  198 
 12 files changed, 668 insertions(+), 668 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-31 07:02:30 UTC (rev 315652)
+++ PKGBUILD2018-01-31 07:02:41 UTC (rev 315653)
@@ -1,263 +0,0 @@
-# $Id$
-# Maintainer: Christian Hesse 
-# Maintainer: Dave Reisner 
-# Maintainer: Tom Gundersen 
-
-pkgbase=systemd
-pkgname=('systemd' 'libsystemd' 'systemd-sysvcompat')
-# latest commit on stable branch
-_commit='46659f7deb962f55c728e70597e37c2a3ab6326d'
-# Bump this to latest major release for signed tag verification,
-# the commit count is handled by pkgver() function.
-pkgver=237.0
-pkgrel=1
-arch=('x86_64')
-url="https://www.github.com/systemd/systemd;
-makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
- 'intltool' 'iptables' 'kmod' 'libcap' 'libidn' 'libgcrypt'
- 'libmicrohttpd' 'libxslt' 'util-linux' 'linux-api-headers'
- 'python-lxml' 'quota-tools' 'shadow' 'gnu-efi-libs' 'git'
- 'meson' 'libseccomp')
-options=('strip')
-validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4')  # Lennart 
Poettering 
-source=('git://github.com/systemd/systemd-stable.git'
-'git://github.com/systemd/systemd.git' # pull in for tags, backports & 
reverts
-'initcpio-hook-udev'
-'initcpio-install-systemd'
-'initcpio-install-udev'
-'arch.conf'
-'loader.conf'
-'splash-arch.bmp'
-'systemd-user.pam'
-'systemd-hwdb.hook'
-'systemd-sysusers.hook'
-'systemd-tmpfiles.hook'
-'systemd-update.hook')
-sha512sums=('SKIP'
-'SKIP'
-
'f0d933e8c6064ed830dec54049b0a01e27be87203208f6ae982f10fb4eddc7258cb2919d594cbfb9a33e74c3510cfd682f3416ba8e804387ab87d1a217eb4b73'
-
'86d7cacd7536b1069c8208de7ec81e7f0f18a19fc2b06fabe90db4700623eb3540b75121080d325672d92e26912632ae4f93fd3c0bb48eb3e5eedd88352c'
-
'a25b28af2e8c516c3a2eec4e64b8c7f70c21f974af4a955a4a9d45fd3e3ff0d2a98b4419fe425d47152d5acae77d64e69d8d014a7209524b75a81b0edb10bf3a'
-
'61032d29241b74a0f28446f8cf1be0e8ec46d0847a61dadb2a4f096e8686d5f57fe5c72bcf386003f6520bc4b5856c32d63bf3efe7eb0bc0deefc9f68159e648'
-

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

2018-01-30 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 31, 2018 @ 02:36:43
  Author: svenstaro
Revision: 288347

archrelease: copy trunk to community-x86_64

Added:
  emscripten/repos/community-x86_64/PKGBUILD
(from rev 288346, emscripten/trunk/PKGBUILD)
  emscripten/repos/community-x86_64/emscripten.install
(from rev 288346, emscripten/trunk/emscripten.install)
  emscripten/repos/community-x86_64/emscripten.sh
(from rev 288346, emscripten/trunk/emscripten.sh)
Deleted:
  emscripten/repos/community-x86_64/PKGBUILD
  emscripten/repos/community-x86_64/emscripten.install
  emscripten/repos/community-x86_64/emscripten.sh

+
 PKGBUILD   |  172 +--
 emscripten.install |   22 +++---
 emscripten.sh  |   14 ++--
 3 files changed, 104 insertions(+), 104 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-31 02:36:24 UTC (rev 288346)
+++ PKGBUILD2018-01-31 02:36:43 UTC (rev 288347)
@@ -1,86 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: carstene1ns  - http://git.io/ctPKG
-# Contributor: Stefan Husmann 
-# Contributor: Vlad Kolotvin 
-
-pkgname=emscripten
-pkgver=1.37.28
-pkgrel=1
-pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
-arch=('x86_64')
-url="http://emscripten.org;
-license=('custom')
-depends=('nodejs' 'python' 'python2')
-makedepends=('cmake' 'libxml2')
-optdepends=('java-environment: for using clojure'
-'ruby: for using websockify addon')
-install=$pkgname.install
-source=(emscripten-$pkgver.tar.gz::"https://github.com/kripken/emscripten/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
-
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
-"emscripten.sh")
-sha512sums=('3179ca2151ce5296abf3cca242f7c5d4aadd4d74560737ad914e17c7cbfb5d5ff49c580a569ea54f53eae54251a32ca0325da2ac235d8a5e88209815834f43b4'
-
'6e40b12f0afa498ed8b76dacff0a7a2a7ba54a210706e891a18c48c0e24532bbb56f4b99a7b94014b7e4dbee0d9faec28d7c0d4f16a41256179a3c85a70ff432'
-
'd65c6df48f4f1406c62bf627cc3d1786e317369866c57677f2fa42068523d26e82cc66996150f2219b0187e04e857205367a963cfbaec227d9e5a492e9ccc352'
-
'52007717c21c22f5d9f027268de2516e969f2ffb8e37121f75ca2697b7ddcde6c0be9636d19df7b3c2e89bc769f5361750c62f9fcb84d224cde3c8626bc9c93b')
-
-prepare() {
-  cd emscripten-fastcomp-$pkgver
-
-  # reset folder for out-of-source build
-  rm -rf build
-  mkdir build
-
-  # put clang source into the right place (http://git.io/i1GBkg)
-  rm -rf tools/clang
-  ln -s "$srcdir"/emscripten-fastcomp-clang-$pkgver tools/clang
-
-  # python2 shebang fixes
-  cd ../emscripten-$pkgver
-  sed '1s|python$|python2|' -i $(find third_party tools -name \*.py) emrun
-
-  # adapt config file template to use our custom environment variable and path
-  sed -e "s|getenv('LLVM')|getenv('EMSCRIPTEN_FASTCOMP')|" \
--e 's|{{{ LLVM_ROOT }}}|/usr/lib/emscripten-fastcomp|' \
--i tools/settings_template_readonly.py
-}
-
-build() {
-  cd emscripten-fastcomp-$pkgver/build
-
-  CC=gcc CXX=g++ cmake .. -DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=YES \
--DLLVM_TARGETS_TO_BUILD="X86;JSBackend" \
--DLLVM_BUILD_RUNTIME=OFF \
--DLLVM_INCLUDE_EXAMPLES=OFF \
--DLLVM_INCLUDE_TESTS=OFF \
--DCLANG_INCLUDE_TESTS=OFF
-  make
-}
-
-package() {
-  # exported variables
-  install -Dm755 "$srcdir"/emscripten.sh "$pkgdir"/etc/profile.d/emscripten.sh
-
-  # LLVM-backend, TODO: include only needed tools
-  cd "$srcdir"/emscripten-fastcomp-$pkgver
-  install -Dm644 emscripten-version.txt 
"$pkgdir"/usr/lib/emscripten-fastcomp/emscripten-version.txt
-  install -m755 build/bin/* "$pkgdir"/usr/lib/emscripten-fastcomp
-
-  # copy structure
-  cd "$srcdir"/emscripten-$pkgver
-  install -d "$pkgdir"/usr/lib/emscripten
-  cp -rup em* cmake site src system third_party tools 
"$pkgdir"/usr/lib/emscripten
-
-  # remove clutter
-  rm "$pkgdir"/usr/lib/emscripten-fastcomp/{*-test,llvm-lit}
-  rm "$pkgdir"/usr/lib/emscripten/*.bat
-
-  # docs
-  install -d "$pkgdir"/usr/share/doc
-  ln -s /usr/lib/emscripten/site/source/docs "$pkgdir"/usr/share/doc/$pkgname
-
-  # license
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: emscripten/repos/community-x86_64/PKGBUILD (from rev 288346, 
emscripten/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-31 02:36:43 UTC (rev 288347)
@@ -0,0 +1,86 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: carstene1ns  - http://git.io/ctPKG
+# Contributor: Stefan 

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

2018-01-30 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, January 31, 2018 @ 02:36:24
  Author: svenstaro
Revision: 288346

upgpkg: emscripten 1.37.29-1

Modified:
  emscripten/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-31 00:57:19 UTC (rev 288345)
+++ PKGBUILD2018-01-31 02:36:24 UTC (rev 288346)
@@ -4,7 +4,7 @@
 # Contributor: Vlad Kolotvin 
 
 pkgname=emscripten
-pkgver=1.37.28
+pkgver=1.37.29
 pkgrel=1
 pkgdesc="LLVM-based project that compiles C and C++ into highly-optimizable 
JavaScript for the web"
 arch=('x86_64')
@@ -19,9 +19,9 @@
 
emscripten-fastcomp-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp/archive/$pkgver.tar.gz;
 
emscripten-fastcomp-clang-$pkgver.tar.gz::"https://github.com/kripken/emscripten-fastcomp-clang/archive/$pkgver.tar.gz;
 "emscripten.sh")
-sha512sums=('3179ca2151ce5296abf3cca242f7c5d4aadd4d74560737ad914e17c7cbfb5d5ff49c580a569ea54f53eae54251a32ca0325da2ac235d8a5e88209815834f43b4'
-
'6e40b12f0afa498ed8b76dacff0a7a2a7ba54a210706e891a18c48c0e24532bbb56f4b99a7b94014b7e4dbee0d9faec28d7c0d4f16a41256179a3c85a70ff432'
-
'd65c6df48f4f1406c62bf627cc3d1786e317369866c57677f2fa42068523d26e82cc66996150f2219b0187e04e857205367a963cfbaec227d9e5a492e9ccc352'
+sha512sums=('6eaf6ff60b881a91168306549fbf289b3c80f92a2b21c842add1f50ac797cc35ad692e90a8271ff3606e4955ca6581c7ff2861da7abf7c9a7d1052ba88b1008e'
+
'e72d57f4f83464c6de1b81ca3875198f2749dcd691ec5bbabdf4ef7acaeca00fdddcee1a2f831f38d9ddb4c08cb55eb7ee64e7d0ba2053a3dc52624c7032851a'
+
'1a12e900c6e4a3b687aced01addb1e6ea1436878df493e6d1ce8adfb45d896a1d5a6ba417621f87129262f865d0b584b43f8369d7316ff0623a51e44f7ea918c'
 
'52007717c21c22f5d9f027268de2516e969f2ffb8e37121f75ca2697b7ddcde6c0be9636d19df7b3c2e89bc769f5361750c62f9fcb84d224cde3c8626bc9c93b')
 
 prepare() {


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

2018-01-30 Thread Dan Printzell via arch-commits
Date: Tuesday, January 30, 2018 @ 23:59:27
  Author: wild
Revision: 288343

upgpkg: dfmt 0.5.3-1

Updated to 0.5.3

Modified:
  dfmt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 22:47:30 UTC (rev 288342)
+++ PKGBUILD2018-01-30 23:59:27 UTC (rev 288343)
@@ -2,9 +2,9 @@
 # Maintainer: Dan Printzell 
 
 pkgname=('dfmt')
-pkgver=0.5.2
+pkgver=0.5.3
 pkgrel=1
-_pkgcommit=0b7189107276163b250c311f35b9121b34d11808
+_pkgcommit=6e598c197df780c8cd3496c3a663f602a2bd1e58
 pkgdesc="Dfmt is a formatter for D source code"
 arch=('x86_64')
 url="https://github.com/dlang-community/dfmt;
@@ -17,13 +17,11 @@
"git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
"git+https://github.com/dlang-community/libdparse;
"git+https://github.com/sociomantic-tsunami/makd;
-   "git+https://github.com/sociomantic-tsunami/beaver;
 )
 sha256sums=(
'SKIP'
'SKIP'
'SKIP'
-   'SKIP'
 )
 
 prepare() {
@@ -32,7 +30,6 @@
git submodule init
git config submodule.libdparse.url "$srcdir/libdparse"
git config submodule.makd.url "$srcdir/makd"
-   git config submodule.beaver.url "$srcdir/beaver"
git submodule update
 }
 


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

2018-01-30 Thread Dan Printzell via arch-commits
Date: Tuesday, January 30, 2018 @ 23:59:40
  Author: wild
Revision: 288344

archrelease: copy trunk to community-x86_64

Added:
  dfmt/repos/community-x86_64/PKGBUILD
(from rev 288343, dfmt/trunk/PKGBUILD)
Deleted:
  dfmt/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   97 +
 1 file changed, 47 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 23:59:27 UTC (rev 288343)
+++ PKGBUILD2018-01-30 23:59:40 UTC (rev 288344)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Dan Printzell 
-
-pkgname=('dfmt')
-pkgver=0.5.2
-pkgrel=1
-_pkgcommit=0b7189107276163b250c311f35b9121b34d11808
-pkgdesc="Dfmt is a formatter for D source code"
-arch=('x86_64')
-url="https://github.com/dlang-community/dfmt;
-license=("custom")
-groups=('dlang')
-makedepends=('dmd' 'git')
-depends=('libphobos')
-
-source=(
-   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
-   "git+https://github.com/dlang-community/libdparse;
-   "git+https://github.com/sociomantic-tsunami/makd;
-   "git+https://github.com/sociomantic-tsunami/beaver;
-)
-sha256sums=(
-   'SKIP'
-   'SKIP'
-   'SKIP'
-   'SKIP'
-)
-
-prepare() {
-   cd "$srcdir/dfmt"
-
-   git submodule init
-   git config submodule.libdparse.url "$srcdir/libdparse"
-   git config submodule.makd.url "$srcdir/makd"
-   git config submodule.beaver.url "$srcdir/beaver"
-   git submodule update
-}
-
-build() {
-   cd "$srcdir/dfmt"
-   make
-}
-
-package() {
-   # binaries
-   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
-
-   # license
-   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: dfmt/repos/community-x86_64/PKGBUILD (from rev 288343, 
dfmt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 23:59:40 UTC (rev 288344)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Dan Printzell 
+
+pkgname=('dfmt')
+pkgver=0.5.3
+pkgrel=1
+_pkgcommit=6e598c197df780c8cd3496c3a663f602a2bd1e58
+pkgdesc="Dfmt is a formatter for D source code"
+arch=('x86_64')
+url="https://github.com/dlang-community/dfmt;
+license=("custom")
+groups=('dlang')
+makedepends=('dmd' 'git')
+depends=('libphobos')
+
+source=(
+   "git+https://github.com/dlang-community/dfmt#commit=$_pkgcommit;
+   "git+https://github.com/dlang-community/libdparse;
+   "git+https://github.com/sociomantic-tsunami/makd;
+)
+sha256sums=(
+   'SKIP'
+   'SKIP'
+   'SKIP'
+)
+
+prepare() {
+   cd "$srcdir/dfmt"
+
+   git submodule init
+   git config submodule.libdparse.url "$srcdir/libdparse"
+   git config submodule.makd.url "$srcdir/makd"
+   git submodule update
+}
+
+build() {
+   cd "$srcdir/dfmt"
+   make
+}
+
+package() {
+   # binaries
+   install -Dm755 "$srcdir/dfmt/bin/dfmt" "$pkgdir/usr/bin/dfmt"
+
+   # license
+   install -Dm644 "$srcdir/dfmt/LICENSE.txt" 
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in amule/repos (7 files)

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 22:47:30
  Author: arojas
Revision: 288342

archrelease: copy trunk to community-staging-x86_64

Added:
  amule/repos/community-staging-x86_64/
  amule/repos/community-staging-x86_64/PKGBUILD
(from rev 288341, amule/trunk/PKGBUILD)
  amule/repos/community-staging-x86_64/amule-cryptopp6.patch
(from rev 288341, amule/trunk/amule-cryptopp6.patch)
  amule/repos/community-staging-x86_64/amule.sysusers
(from rev 288341, amule/trunk/amule.sysusers)
  amule/repos/community-staging-x86_64/amule.tmpfiles
(from rev 288341, amule/trunk/amule.tmpfiles)
  amule/repos/community-staging-x86_64/amuled.systemd
(from rev 288341, amule/trunk/amuled.systemd)
  amule/repos/community-staging-x86_64/amuleweb.systemd
(from rev 288341, amule/trunk/amuleweb.systemd)

---+
 PKGBUILD  |   66 
 amule-cryptopp6.patch |   11 
 amule.sysusers|1 
 amule.tmpfiles|1 
 amuled.systemd|   11 
 amuleweb.systemd  |   13 +
 6 files changed, 103 insertions(+)

Copied: amule/repos/community-staging-x86_64/PKGBUILD (from rev 288341, 
amule/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 22:47:30 UTC (rev 288342)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Giovanni Scafora 
+# Contributor: Henrik Ronellenfitsch 
+# Contributor: Alessio Sergi 
+# Contributor: Dario 'Dax' Vilardi 
+# Contributor: Anatol Pomozov 
+
+pkgname=amule
+pkgver=10990
+pkgrel=5
+pkgdesc="An eMule-like client for ed2k p2p network"
+arch=(x86_64)
+url="http://www.amule.org;
+license=(GPL)
+depends=(wxgtk2 gd geoip libupnp crypto++ boost-libs)
+makedepends=(git ccache boost)
+source=("git://repo.or.cz/amule.git#tag=amule-svn-r$pkgver"
+amuled.systemd amuleweb.systemd amule.sysusers amule.tmpfiles
+amule-cryptopp6.patch)
+sha256sums=('SKIP'
+'527a2cca6d56b8269722aafc77a89734f59a929f946f342bd0f69b256f9c7522'
+'f4f43b1154ddccc9036a4291a58c6715f097b171fec62ea7aead0c9d9fa654f2'
+'c4ca658ab4105b3b90e0bb3efcc8121eca1c4d873787db1ed4f637925c16d502'
+'e9d1b7019c7075b0f8616c6507a767b87de8f899936680e9ff5829d8cbba224d'
+'84d5e913bf05c1819275f4fd27028856aeb31157debbca89f9b54132efe69575')
+
+prepare() {
+  cd amule
+
+  patch -p1 -i ../amule-cryptopp6.patch # Fix build with crypto++ 6.0
+}
+
+build() {
+  cd amule
+
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man \
+  --enable-cas \
+  --enable-wxcas \
+  --enable-amule-daemon \
+  --enable-amulecmd \
+  --enable-amule-gui \
+  --enable-alc \
+  --enable-alcc \
+  --enable-webserver \
+  --disable-debug \
+  --enable-optimize \
+  --enable-ccache \
+  --enable-geoip \
+  --enable-upnp \
+  --with-boost
+  make
+}
+
+package() {
+  cd amule
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/amuled.systemd 
"$pkgdir"/usr/lib/systemd/system/amuled.service
+  install -Dm644 "$srcdir"/amuleweb.systemd 
"$pkgdir"/usr/lib/systemd/system/amuleweb.service
+  install -Dm644 "$srcdir"/amule.sysusers 
"$pkgdir"/usr/lib/sysusers.d/amule.conf
+  install -Dm644 "$srcdir"/amule.tmpfiles 
"$pkgdir"/usr/lib/tmpfiles.d/amule.conf
+
+}

Copied: amule/repos/community-staging-x86_64/amule-cryptopp6.patch (from rev 
288341, amule/trunk/amule-cryptopp6.patch)
===
--- community-staging-x86_64/amule-cryptopp6.patch  
(rev 0)
+++ community-staging-x86_64/amule-cryptopp6.patch  2018-01-30 22:47:30 UTC 
(rev 288342)
@@ -0,0 +1,11 @@
+--- amule/src/ClientCreditsList.cpp.orig   2018-01-30 22:28:29.951863645 
+
 amule/src/ClientCreditsList.cpp2018-01-30 22:30:05.725410074 +
+@@ -312,7 +312,7 @@
+   // calculate and store public key
+   CryptoPP::RSASSA_PKCS1v15_SHA_Verifier 
pubkey(*static_cast(m_pSignkey));
+   CryptoPP::ArraySink asink(m_abyMyPublicKey, 80);
+-  pubkey.DEREncode(asink);
++  pubkey.AccessMaterial().Save(asink);
+   m_nMyPublicKeyLen = asink.TotalPutLength();
+   asink.MessageEnd();
+   } catch (const CryptoPP::Exception& e) {

Copied: amule/repos/community-staging-x86_64/amule.sysusers (from rev 288341, 
amule/trunk/amule.sysusers)
===
--- community-staging-x86_64/amule.sysusers (rev 0)
+++ 

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

2018-01-30 Thread Christian Hesse via arch-commits
Date: Tuesday, January 30, 2018 @ 22:47:32
  Author: eworm
Revision: 315643

upgpkg: f2fs-tools 1.10.0-1


new upstream release

Modified:
  f2fs-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 21:20:33 UTC (rev 315642)
+++ PKGBUILD2018-01-30 22:47:32 UTC (rev 315643)
@@ -3,7 +3,7 @@
 # Contributor: Christian Hesse 
 
 pkgname=f2fs-tools
-pkgver=1.9.0
+pkgver=1.10.0
 pkgrel=1
 pkgdesc="Tools for Flash-Friendly File System (F2FS)"
 arch=('x86_64')
@@ -11,7 +11,7 @@
 depends=('util-linux')
 license=('GPL')
 
source=("https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$pkgname-$pkgver.tar.gz;)
-sha256sums=('77217562ae7011a6d81b7b3c43c42623db1796a57596408d6c8037def70d6cc7')
+sha256sums=('e841b086dbe02e3553b2c2ecb8c11a7990cfa9ca835c3d7aea6d600c6a543316')
 
 build() {
cd "${pkgname}-${pkgver}"


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

2018-01-30 Thread Christian Hesse via arch-commits
Date: Tuesday, January 30, 2018 @ 22:47:43
  Author: eworm
Revision: 315644

archrelease: copy trunk to testing-x86_64

Added:
  f2fs-tools/repos/testing-x86_64/
  f2fs-tools/repos/testing-x86_64/PKGBUILD
(from rev 315643, f2fs-tools/trunk/PKGBUILD)

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

Copied: f2fs-tools/repos/testing-x86_64/PKGBUILD (from rev 315643, 
f2fs-tools/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-30 22:47:43 UTC (rev 315644)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+# Contributor: Christian Hesse 
+
+pkgname=f2fs-tools
+pkgver=1.10.0
+pkgrel=1
+pkgdesc="Tools for Flash-Friendly File System (F2FS)"
+arch=('x86_64')
+url='http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/'
+depends=('util-linux')
+license=('GPL')
+source=("https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/$pkgname-$pkgver.tar.gz;)
+sha256sums=('e841b086dbe02e3553b2c2ecb8c11a7990cfa9ca835c3d7aea6d600c6a543316')
+
+build() {
+   cd "${pkgname}-${pkgver}"
+
+   autoreconf -fi
+   ./configure --prefix=/usr --sbindir=/usr/bin
+   make
+}
+
+package() {
+   cd "${pkgname}-${pkgver}"
+
+   make DESTDIR="${pkgdir}/" sbindir=/usr/bin install
+}


[arch-commits] Commit in amule/trunk (PKGBUILD amule-cryptopp6.patch amule.install)

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 22:46:24
  Author: arojas
Revision: 288341

crypto++ 6.0.0 rebuild

Added:
  amule/trunk/amule-cryptopp6.patch
Modified:
  amule/trunk/PKGBUILD
Deleted:
  amule/trunk/amule.install

---+
 PKGBUILD  |   23 +++
 amule-cryptopp6.patch |   11 +++
 amule.install |   17 -
 3 files changed, 26 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 21:02:17 UTC (rev 288340)
+++ PKGBUILD2018-01-30 22:46:24 UTC (rev 288341)
@@ -8,7 +8,7 @@
 
 pkgname=amule
 pkgver=10990
-pkgrel=4
+pkgrel=5
 pkgdesc="An eMule-like client for ed2k p2p network"
 arch=(x86_64)
 url="http://www.amule.org;
@@ -15,15 +15,22 @@
 license=(GPL)
 depends=(wxgtk2 gd geoip libupnp crypto++ boost-libs)
 makedepends=(git ccache boost)
-install=amule.install
 source=("git://repo.or.cz/amule.git#tag=amule-svn-r$pkgver"
-amuled.systemd amuleweb.systemd amule.sysusers amule.tmpfiles)
-sha512sums=('SKIP'
-
'13dbaee96658ca34e76bfdcf1e65895a24b57bc64bb846ae50d3d64a2e65047d90c13c0b14a50947d0ff9ccf30c4764380da05383650995d3798981068b87ebd'
-
'fbb58e2d0229e72e2192eae724e812a158443dc8d465ce14f94c184bcb575079e5e568c24bfbd132d9a6edf8651e7d7c45ca2ce46209bd04e27948503f6bbcdc'
-
'aaeab784e3a0fa9bd296897024bdd550a1704be3d62aecb7be497a6c174cbbd8bc07bccc9652c9f98316209fc9fd6f801f9121f11d64e978185a2f0cb4b34549'
-
'1a16613bddda48a4c1c5489d9df8d796c7c2ffb1541e42e4c8b84d4598652f6a1a0305b39c3d40f376f816ad7b4a17d8079ed67203d90a21800352fba189a20a')
+amuled.systemd amuleweb.systemd amule.sysusers amule.tmpfiles
+amule-cryptopp6.patch)
+sha256sums=('SKIP'
+'527a2cca6d56b8269722aafc77a89734f59a929f946f342bd0f69b256f9c7522'
+'f4f43b1154ddccc9036a4291a58c6715f097b171fec62ea7aead0c9d9fa654f2'
+'c4ca658ab4105b3b90e0bb3efcc8121eca1c4d873787db1ed4f637925c16d502'
+'e9d1b7019c7075b0f8616c6507a767b87de8f899936680e9ff5829d8cbba224d'
+'84d5e913bf05c1819275f4fd27028856aeb31157debbca89f9b54132efe69575')
 
+prepare() {
+  cd amule
+
+  patch -p1 -i ../amule-cryptopp6.patch # Fix build with crypto++ 6.0
+}
+
 build() {
   cd amule
 

Added: amule-cryptopp6.patch
===
--- amule-cryptopp6.patch   (rev 0)
+++ amule-cryptopp6.patch   2018-01-30 22:46:24 UTC (rev 288341)
@@ -0,0 +1,11 @@
+--- amule/src/ClientCreditsList.cpp.orig   2018-01-30 22:28:29.951863645 
+
 amule/src/ClientCreditsList.cpp2018-01-30 22:30:05.725410074 +
+@@ -312,7 +312,7 @@
+   // calculate and store public key
+   CryptoPP::RSASSA_PKCS1v15_SHA_Verifier 
pubkey(*static_cast(m_pSignkey));
+   CryptoPP::ArraySink asink(m_abyMyPublicKey, 80);
+-  pubkey.DEREncode(asink);
++  pubkey.AccessMaterial().Save(asink);
+   m_nMyPublicKeyLen = asink.TotalPutLength();
+   asink.MessageEnd();
+   } catch (const CryptoPP::Exception& e) {

Deleted: amule.install
===
--- amule.install   2018-01-30 21:02:17 UTC (rev 288340)
+++ amule.install   2018-01-30 22:46:24 UTC (rev 288341)
@@ -1,17 +0,0 @@
-post_install() {
-  post_upgrade
-}
-
-_config_instructions() {
-  echo "If you plan to use external client (e.g. amuleGUI or amuleweb) then 
you need to"
-  echo "provide [ExternalConnect] configuration."
-  echo "You also need to specify amuleweb password."
-  echo "Please follow https://wiki.archlinux.org/index.php/AMule for more 
information."
-  echo "amuleweb can be started as 'systemctl start amuleweb'."
-}
-
-post_upgrade() {
-  if [ ! -e /var/lib/amule/.aMule/amule.conf ]; then
-_config_instructions
-  fi
-}


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 21:20:33
  Author: arojas
Revision: 315642

archrelease: copy trunk to extra-x86_64

Added:
  libebur128/repos/extra-x86_64/PKGBUILD
(from rev 315641, libebur128/trunk/PKGBUILD)
Deleted:
  libebur128/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 21:20:05 UTC (rev 315641)
+++ PKGBUILD2018-01-30 21:20:33 UTC (rev 315642)
@@ -1,35 +0,0 @@
-# Maintainer:
-# Contributor: BoosterDEV 
-
-pkgname=libebur128
-pkgver=1.2.3
-pkgrel=1
-pkgdesc="A library that implements the EBU R 128 standard for loudness 
normalisation."
-arch=(x86_64)
-url="https://github.com/jiixyj/libebur128;
-license=(MIT)
-depends=(glibc)
-makedepends=(cmake)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/jiixyj/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('13776667743cf6e3df36bcf4f8c7ac828859ce02c9988514e3fdddc3efba98f7')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DBUILD_STATIC_LIBS=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libebur128/repos/extra-x86_64/PKGBUILD (from rev 315641, 
libebur128/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 21:20:33 UTC (rev 315642)
@@ -0,0 +1,35 @@
+# Maintainer:
+# Contributor: BoosterDEV 
+
+pkgname=libebur128
+pkgver=1.2.4
+pkgrel=1
+pkgdesc="A library that implements the EBU R 128 standard for loudness 
normalisation."
+arch=(x86_64)
+url="https://github.com/jiixyj/libebur128;
+license=(MIT)
+depends=(glibc)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jiixyj/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('2ee41a3a5ae3891601ae975d5ec2642b997d276ef647cf5c5b363b6127f7add8')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_STATIC_LIBS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 21:20:05
  Author: arojas
Revision: 315641

Update to 1.2.4

Modified:
  libebur128/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 21:15:49 UTC (rev 315640)
+++ PKGBUILD2018-01-30 21:20:05 UTC (rev 315641)
@@ -2,7 +2,7 @@
 # Contributor: BoosterDEV 
 
 pkgname=libebur128
-pkgver=1.2.3
+pkgver=1.2.4
 pkgrel=1
 pkgdesc="A library that implements the EBU R 128 standard for loudness 
normalisation."
 arch=(x86_64)
@@ -11,7 +11,7 @@
 depends=(glibc)
 makedepends=(cmake)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jiixyj/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('13776667743cf6e3df36bcf4f8c7ac828859ce02c9988514e3fdddc3efba98f7')
+sha256sums=('2ee41a3a5ae3891601ae975d5ec2642b997d276ef647cf5c5b363b6127f7add8')
 
 prepare() {
   mkdir -p build


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 21:15:49
  Author: arojas
Revision: 315640

archrelease: copy trunk to extra-x86_64

Added:
  mlt/repos/extra-x86_64/PKGBUILD
(from rev 315639, mlt/trunk/PKGBUILD)
Deleted:
  mlt/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 21:15:15 UTC (rev 315639)
+++ PKGBUILD2018-01-30 21:15:49 UTC (rev 315640)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-# Contributor: Sergej Pupykin 
-# Contributor: Fabian Schoelzel 
-# Contributor: funkyou 
-# Contributor: tardo 
-# Contributor: Stefan Husmann 
-# Contributor: Gustavo Alvarez 
-
-pkgbase=mlt
-pkgname=(mlt mlt-python-bindings)
-pkgver=6.6.0
-pkgrel=2
-pkgdesc="An open source multimedia framework"
-arch=(x86_64)
-url="http://www.mltframework.org;
-license=(GPL)
-makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg
- jack libexif python2 swig movit eigen opencv libebur128)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;)
-sha256sums=('11515546516b3c54719b6b402cacf46e8d5172450d6e9fe2655b237582490315')
-
-build() {
-  # mlt
-  cd mlt-$pkgver
-
-  ./configure --prefix=/usr \
-   --avformat-swscale \
-   --enable-gpl --enable-gpl3 \
-   --qt-libdir=/usr/lib --qt-includedir=/usr/include/qt
-  make
-
-  # mlt python bindings
-  cd src/swig/python
-  sed -i 's_path=`which python_path=`which python2_' build
-  sed -i 's_`python -c_`python2 -c_' build
-  sed -i 's#python-config#python2-config#' build
-  ./build
-}
-
-package_mlt() {
-  optdepends=('sdl_image: for SDL plugin'
-   'libsamplerate: for libavresample plugin'
-   'sox: for SOX (Audio Swiss Army Knife) plugin'
-   'ffmpeg: for ffmpeg plugin'
-   'vid.stab: for video stabilize plugin'
-   'gtk2: Gtk plugin'
-   'qt5-svg: for Qt5 plugins'
-   'jack: for JACK sound output plugin'
-'ladspa: for LADSPA plugins'
-   'libexif: for auto rotate plugin'
-   'frei0r-plugins: for additional effects'
-   'movit: opengl plugin'
-'opencv: openCV plugin'
-'libebur128: plus module')
-
-  cd mlt-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-package_mlt-python-bindings() {
-  depends=(python2 mlt)
-
-  cd "$srcdir/mlt-$pkgver/src/swig/python"
-  mkdir -p "$pkgdir/usr/lib/python2.7/"
-  install -m755 mlt.py "$pkgdir/usr/lib/python2.7/"
-  install -m755 _mlt.so "$pkgdir/usr/lib/python2.7/"
-  install -m755 mlt_wrap.o "$pkgdir/usr/lib/python2.7/"
-}

Copied: mlt/repos/extra-x86_64/PKGBUILD (from rev 315639, mlt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 21:15:49 UTC (rev 315640)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+# Contributor: Sergej Pupykin 
+# Contributor: Fabian Schoelzel 
+# Contributor: funkyou 
+# Contributor: tardo 
+# Contributor: Stefan Husmann 
+# Contributor: Gustavo Alvarez 
+
+pkgbase=mlt
+pkgname=(mlt mlt-python-bindings)
+pkgver=6.6.0
+pkgrel=3
+pkgdesc="An open source multimedia framework"
+arch=(x86_64)
+url="http://www.mltframework.org;
+license=(GPL)
+makedepends=(ladspa frei0r-plugins libdv sdl_image libsamplerate sox ffmpeg 
vid.stab qt5-svg
+ jack libexif python2 swig movit eigen opencv libebur128)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/mltframework/mlt/archive/v$pkgver.tar.gz;)
+sha256sums=('11515546516b3c54719b6b402cacf46e8d5172450d6e9fe2655b237582490315')
+
+build() {
+  # mlt
+  cd mlt-$pkgver
+
+  ./configure --prefix=/usr \
+   --avformat-swscale \
+   --enable-gpl --enable-gpl3 \
+   --qt-libdir=/usr/lib --qt-includedir=/usr/include/qt
+  make
+
+  # mlt python bindings
+  cd src/swig/python
+  sed -i 's_path=`which python_path=`which python2_' build
+  sed -i 's_`python -c_`python2 -c_' build
+  sed -i 's#python-config#python2-config#' build
+  ./build
+}
+
+package_mlt() {
+  depends=(libebur128)
+  optdepends=('sdl_image: for SDL plugin'
+   'libsamplerate: for libavresample plugin'
+   'sox: for SOX (Audio Swiss Army Knife) plugin'
+   'ffmpeg: for ffmpeg plugin'
+   'vid.stab: for video stabilize plugin'
+   'gtk2: Gtk plugin'
+   'qt5-svg: for Qt5 plugins'
+   'jack: for JACK sound output plugin'
+'ladspa: for LADSPA plugins'
+   'libexif: for auto rotate 

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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 21:15:15
  Author: arojas
Revision: 315639

Make libebur128 a hard dependency (FS#57294)

Modified:
  mlt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 21:01:54 UTC (rev 315638)
+++ PKGBUILD2018-01-30 21:15:15 UTC (rev 315639)
@@ -10,7 +10,7 @@
 pkgbase=mlt
 pkgname=(mlt mlt-python-bindings)
 pkgver=6.6.0
-pkgrel=2
+pkgrel=3
 pkgdesc="An open source multimedia framework"
 arch=(x86_64)
 url="http://www.mltframework.org;
@@ -39,6 +39,7 @@
 }
 
 package_mlt() {
+  depends=(libebur128)
   optdepends=('sdl_image: for SDL plugin'
'libsamplerate: for libavresample plugin'
'sox: for SOX (Audio Swiss Army Knife) plugin'
@@ -51,8 +52,7 @@
'libexif: for auto rotate plugin'
'frei0r-plugins: for additional effects'
'movit: opengl plugin'
-'opencv: openCV plugin'
-'libebur128: plus module')
+'opencv: openCV plugin')
 
   cd mlt-$pkgver
   make DESTDIR="$pkgdir" install


[arch-commits] Commit in (libebur128)

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 21:02:17
  Author: arojas
Revision: 288340

community2extra: Moving libebur128 from community to extra

Deleted:
  libebur128/


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 21:01:54
  Author: arojas
Revision: 315638

archrelease: copy trunk to extra-x86_64

Added:
  libebur128/repos/extra-x86_64/
  libebur128/repos/extra-x86_64/PKGBUILD
(from rev 315637, libebur128/trunk/PKGBUILD)

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

Copied: libebur128/repos/extra-x86_64/PKGBUILD (from rev 315637, 
libebur128/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2018-01-30 21:01:54 UTC (rev 315638)
@@ -0,0 +1,35 @@
+# Maintainer:
+# Contributor: BoosterDEV 
+
+pkgname=libebur128
+pkgver=1.2.3
+pkgrel=1
+pkgdesc="A library that implements the EBU R 128 standard for loudness 
normalisation."
+arch=(x86_64)
+url="https://github.com/jiixyj/libebur128;
+license=(MIT)
+depends=(glibc)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jiixyj/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('13776667743cf6e3df36bcf4f8c7ac828859ce02c9988514e3fdddc3efba98f7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_STATIC_LIBS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (4 files)

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 21:01:41
  Author: arojas
Revision: 315637

community2extra: Moving libebur128 from community to extra

Added:
  libebur128/
  libebur128/repos/
  libebur128/trunk/
  libebur128/trunk/PKGBUILD

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

Added: libebur128/trunk/PKGBUILD
===
--- libebur128/trunk/PKGBUILD   (rev 0)
+++ libebur128/trunk/PKGBUILD   2018-01-30 21:01:41 UTC (rev 315637)
@@ -0,0 +1,35 @@
+# Maintainer:
+# Contributor: BoosterDEV 
+
+pkgname=libebur128
+pkgver=1.2.3
+pkgrel=1
+pkgdesc="A library that implements the EBU R 128 standard for loudness 
normalisation."
+arch=(x86_64)
+url="https://github.com/jiixyj/libebur128;
+license=(MIT)
+depends=(glibc)
+makedepends=(cmake)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jiixyj/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('13776667743cf6e3df36bcf4f8c7ac828859ce02c9988514e3fdddc3efba98f7')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DBUILD_STATIC_LIBS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/COPYING 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


Property changes on: libebur128/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in synapse/trunk (PKGBUILD fix-build.patch)

2018-01-30 Thread Balló György via arch-commits
Date: Tuesday, January 30, 2018 @ 20:38:15
  Author: bgyorgy
Revision: 288337

upgpkg: synapse 0.2.99.2-3

Fix build, remove unavailable/unneeded optional dependencies

Added:
  synapse/trunk/fix-build.patch
Modified:
  synapse/trunk/PKGBUILD

-+
 PKGBUILD|   18 --
 fix-build.patch |   52 
 2 files changed, 64 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 19:24:35 UTC (rev 288336)
+++ PKGBUILD2018-01-30 20:38:15 UTC (rev 288337)
@@ -4,7 +4,7 @@
 
 pkgname=synapse
 pkgver=0.2.99.2
-pkgrel=2
+pkgrel=3
 pkgdesc="A semantic file launcher"
 arch=('x86_64')
 url="https://launchpad.net/synapse-project;
@@ -12,18 +12,24 @@
 depends=('libkeybinder3' 'hicolor-icon-theme' 'json-glib' 'libgee' 'libnotify' 
\
  'zeitgeist' 'rest' 'xdg-utils')
 makedepends=('intltool' 'vala')
-optdepends=('banshee: banshee plugin'
-'bc: calculator plugin'
+optdepends=('bc: calculator plugin'
 'devhelp: documentation plugin'
-'gnome-screensaver: screensaver plugin'
 'gnome-dictionary: dictionary plugin'
 'openssh: ssh plugin'
 'pastebinit: pastebin plugin'
 'rhythmbox: rhythmbox plugin'
 'xnoise: xnoise plugin')
-source=("https://launchpad.net/$pkgname-project/0.3/$pkgver/+download/$pkgname-$pkgver.tar.xz;)
-sha1sums=('6720537a239419833fc5b4e521b25935e30a3274')
+source=("https://launchpad.net/$pkgname-project/0.3/$pkgver/+download/$pkgname-$pkgver.tar.xz;
+fix-build.patch)
+sha1sums=('6720537a239419833fc5b4e521b25935e30a3274'
+  '0ddb104dd7ec2d8de663c48f9d4f3614d17ee824')
 
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  patch -Np1 -i ../fix-build.patch
+}
+
 build() {
   cd "$srcdir/$pkgname-$pkgver"
 

Added: fix-build.patch
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2018-01-30 20:38:15 UTC (rev 288337)
@@ -0,0 +1,52 @@
+From: Tomasz Buchert 
+Date: Tue, 19 Sep 2017 01:00:01 +0200
+Subject: revisions-652-and-653
+
+Fixes build problems on vala 0.36.
+---
+ src/core/result-set.vala  | 2 +-
+ src/plugins/desktop-file-plugin.vala  | 4 ++--
+ src/plugins/hybrid-search-plugin.vala | 2 +-
+ 3 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/src/core/result-set.vala b/src/core/result-set.vala
+index 6c4059d..10f9f92 100644
+--- a/src/core/result-set.vala
 b/src/core/result-set.vala
+@@ -57,7 +57,7 @@ namespace Synapse
+   owned get { return matches.entries; }
+ }
+ 
+-public Gee.Iterator?> iterator ()
++public Gee.Iterator> iterator ()
+ {
+   return matches.iterator ();
+ }
+diff --git a/src/plugins/desktop-file-plugin.vala 
b/src/plugins/desktop-file-plugin.vala
+index 346ae40..e18725c 100644
+--- a/src/plugins/desktop-file-plugin.vala
 b/src/plugins/desktop-file-plugin.vala
+@@ -83,8 +83,8 @@ namespace Synapse
+ construct
+ {
+   desktop_files = new Gee.ArrayList ();
+-  mimetype_map = new Gee.HashMap ();
+-  actions_map = new Gee.HashMap ();
++  mimetype_map = new Gee.HashMap ();
++  actions_map = new Gee.HashMap ();
+ 
+   var dfs = DesktopFileService.get_default ();
+   dfs.reload_started.connect (() => {
+diff --git a/src/plugins/hybrid-search-plugin.vala 
b/src/plugins/hybrid-search-plugin.vala
+index dfdb614..c9e1010 100644
+--- a/src/plugins/hybrid-search-plugin.vala
 b/src/plugins/hybrid-search-plugin.vala
+@@ -74,7 +74,7 @@ namespace Synapse
+ construct
+ {
+   directory_hits = new Gee.HashMap ();
+-  directory_contents = new Gee.HashMap ();
++  directory_contents = new Gee.HashMap ();
+ 
+   analyze_recent_documents.begin ();
+ }


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

2018-01-30 Thread Balló György via arch-commits
Date: Tuesday, January 30, 2018 @ 20:38:22
  Author: bgyorgy
Revision: 288338

archrelease: copy trunk to community-x86_64

Added:
  synapse/repos/community-x86_64/PKGBUILD
(from rev 288337, synapse/trunk/PKGBUILD)
  synapse/repos/community-x86_64/fix-build.patch
(from rev 288337, synapse/trunk/fix-build.patch)
Deleted:
  synapse/repos/community-x86_64/PKGBUILD

-+
 PKGBUILD|   86 --
 fix-build.patch |   52 
 2 files changed, 98 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 20:38:15 UTC (rev 288337)
+++ PKGBUILD2018-01-30 20:38:22 UTC (rev 288338)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Alessio Sergi 
-
-pkgname=synapse
-pkgver=0.2.99.2
-pkgrel=2
-pkgdesc="A semantic file launcher"
-arch=('i686' 'x86_64')
-url="https://launchpad.net/synapse-project;
-license=('GPL3')
-depends=('libkeybinder3' 'hicolor-icon-theme' 'json-glib' 'libgee' 'libnotify' 
\
- 'zeitgeist' 'rest' 'xdg-utils')
-makedepends=('intltool' 'vala')
-optdepends=('banshee: banshee plugin'
-'bc: calculator plugin'
-'devhelp: documentation plugin'
-'gnome-screensaver: screensaver plugin'
-'gnome-dictionary: dictionary plugin'
-'openssh: ssh plugin'
-'pastebinit: pastebin plugin'
-'rhythmbox: rhythmbox plugin'
-'xnoise: xnoise plugin')
-source=("https://launchpad.net/$pkgname-project/0.3/$pkgver/+download/$pkgname-$pkgver.tar.xz;)
-sha1sums=('6720537a239419833fc5b4e521b25935e30a3274')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir/" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: synapse/repos/community-x86_64/PKGBUILD (from rev 288337, 
synapse/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 20:38:22 UTC (rev 288338)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Alessio Sergi 
+
+pkgname=synapse
+pkgver=0.2.99.2
+pkgrel=3
+pkgdesc="A semantic file launcher"
+arch=('x86_64')
+url="https://launchpad.net/synapse-project;
+license=('GPL3')
+depends=('libkeybinder3' 'hicolor-icon-theme' 'json-glib' 'libgee' 'libnotify' 
\
+ 'zeitgeist' 'rest' 'xdg-utils')
+makedepends=('intltool' 'vala')
+optdepends=('bc: calculator plugin'
+'devhelp: documentation plugin'
+'gnome-dictionary: dictionary plugin'
+'openssh: ssh plugin'
+'pastebinit: pastebin plugin'
+'rhythmbox: rhythmbox plugin'
+'xnoise: xnoise plugin')
+source=("https://launchpad.net/$pkgname-project/0.3/$pkgver/+download/$pkgname-$pkgver.tar.xz;
+fix-build.patch)
+sha1sums=('6720537a239419833fc5b4e521b25935e30a3274'
+  '0ddb104dd7ec2d8de663c48f9d4f3614d17ee824')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  patch -Np1 -i ../fix-build.patch
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: synapse/repos/community-x86_64/fix-build.patch (from rev 288337, 
synapse/trunk/fix-build.patch)
===
--- fix-build.patch (rev 0)
+++ fix-build.patch 2018-01-30 20:38:22 UTC (rev 288338)
@@ -0,0 +1,52 @@
+From: Tomasz Buchert 
+Date: Tue, 19 Sep 2017 01:00:01 +0200
+Subject: revisions-652-and-653
+
+Fixes build problems on vala 0.36.
+---
+ src/core/result-set.vala  | 2 +-
+ src/plugins/desktop-file-plugin.vala  | 4 ++--
+ src/plugins/hybrid-search-plugin.vala | 2 +-
+ 3 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/src/core/result-set.vala b/src/core/result-set.vala
+index 6c4059d..10f9f92 100644
+--- a/src/core/result-set.vala
 b/src/core/result-set.vala
+@@ -57,7 +57,7 @@ namespace Synapse
+   owned get { return matches.entries; }
+ }
+ 
+-public Gee.Iterator?> iterator ()
++public Gee.Iterator> iterator ()
+ {
+   return matches.iterator ();
+ }
+diff --git a/src/plugins/desktop-file-plugin.vala 
b/src/plugins/desktop-file-plugin.vala
+index 346ae40..e18725c 100644
+--- a/src/plugins/desktop-file-plugin.vala
 b/src/plugins/desktop-file-plugin.vala
+@@ -83,8 +83,8 @@ namespace Synapse
+ construct
+ {
+   desktop_files = new Gee.ArrayList ();
+-  mimetype_map = new Gee.HashMap ();
+-  actions_map = new Gee.HashMap ();
++  mimetype_map = new Gee.HashMap

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

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:45:15
  Author: heftig
Revision: 315636

archrelease: copy trunk to extra-x86_64

Added:
  vala/repos/extra-x86_64/PKGBUILD
(from rev 315635, vala/trunk/PKGBUILD)
Deleted:
  vala/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 19:44:33 UTC (rev 315635)
+++ PKGBUILD2018-01-30 19:45:15 UTC (rev 315636)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.38.6
-pkgrel=1
-pkgdesc="Compiler for the GObject type system"
-url="https://wiki.gnome.org/Projects/Vala;
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 gtk-doc graphviz ttf-dejavu pkg-config gcc)
-makedepends=(libxslt vala git help2man)
-checkdepends=(dbus libx11 gobject-introspection)
-provides=(valadoc)
-conflicts=(valadoc)
-replaces=(valadoc)
-_commit=df4a09baeaa47e300782a5f0017cec96e2a8e2ad  # tags/0.38.6^0
-source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-x86_64/PKGBUILD (from rev 315635, vala/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 19:45:15 UTC (rev 315636)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.38.6
+pkgrel=2
+pkgdesc="Compiler for the GObject type system"
+url="https://wiki.gnome.org/Projects/Vala;
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz ttf-font pkg-config gcc)
+makedepends=(libxslt vala git help2man)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=df4a09baeaa47e300782a5f0017cec96e2a8e2ad  # tags/0.38.6^0
+source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:44:33
  Author: heftig
Revision: 315635

0.38.6-2

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 19:42:51 UTC (rev 315634)
+++ PKGBUILD2018-01-30 19:44:33 UTC (rev 315635)
@@ -5,12 +5,12 @@
 
 pkgname=vala
 pkgver=0.38.6
-pkgrel=1
+pkgrel=2
 pkgdesc="Compiler for the GObject type system"
 url="https://wiki.gnome.org/Projects/Vala;
 arch=(x86_64)
 license=(LGPL)
-depends=(glib2 gtk-doc graphviz ttf-dejavu pkg-config gcc)
+depends=(glib2 gtk-doc graphviz ttf-font pkg-config gcc)
 makedepends=(libxslt vala git help2man)
 checkdepends=(dbus libx11 gobject-introspection)
 provides=(valadoc)


[arch-commits] Commit in gnome-themes-standard/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:42:51
  Author: heftig
Revision: 315634

archrelease: copy trunk to extra-x86_64

Added:
  gnome-themes-standard/repos/extra-x86_64/PKGBUILD
(from rev 315633, gnome-themes-standard/trunk/PKGBUILD)
Deleted:
  gnome-themes-standard/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 19:42:04 UTC (rev 315633)
+++ PKGBUILD2018-01-30 19:42:51 UTC (rev 315634)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-themes-standard
-pkgver=3.22.3+13+ga993fdc0
-pkgrel=1
-pkgdesc="Standard Themes for GNOME Applications"
-url="https://git.gnome.org/browse/gnome-themes-standard;
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(cantarell-fonts ttf-dejavu librsvg)
-makedepends=(intltool gtk2 gtk3 gnome-common git)
-optdepends=('gtk-engines: HighContrast GTK2 theme')
-groups=(gnome)
-options=(!emptydirs)
-_commit=a993fdc050a001fe7880b29155908772f874efb4  # master
-source=("git+https://git.gnome.org/browse/gnome-themes-standard#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-themes-standard/repos/extra-x86_64/PKGBUILD (from rev 315633, 
gnome-themes-standard/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 19:42:51 UTC (rev 315634)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-themes-standard
+pkgver=3.22.3+16+gc092fc89
+pkgrel=1
+pkgdesc="Standard Themes for GNOME Applications"
+url="https://gitlab.gnome.org/GNOME/gnome-themes-extra;
+arch=(x86_64)
+license=(GPL2)
+depends=(cantarell-fonts)
+makedepends=(intltool gtk2 gtk3 gnome-common git)
+optdepends=('gtk-engines: HighContrast GTK2 theme')
+groups=(gnome)
+options=(!emptydirs)
+_commit=c092fc89acc581d145e63aae77e186284a56af71  # master~13
+source=("git+https://gitlab.gnome.org/GNOME/gnome-themes-extra.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd gnome-themes-extra
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd gnome-themes-extra
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd gnome-themes-extra
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd gnome-themes-extra
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:42:04
  Author: heftig
Revision: 315633

3.22.3+16+gc092fc89-1

Modified:
  gnome-themes-standard/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 19:34:46 UTC (rev 315632)
+++ PKGBUILD2018-01-30 19:42:04 UTC (rev 315633)
@@ -2,33 +2,33 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-themes-standard
-pkgver=3.22.3+13+ga993fdc0
+pkgver=3.22.3+16+gc092fc89
 pkgrel=1
 pkgdesc="Standard Themes for GNOME Applications"
-url="https://git.gnome.org/browse/gnome-themes-standard;
+url="https://gitlab.gnome.org/GNOME/gnome-themes-extra;
 arch=(x86_64)
 license=(GPL2)
-depends=(cantarell-fonts ttf-dejavu librsvg)
+depends=(cantarell-fonts)
 makedepends=(intltool gtk2 gtk3 gnome-common git)
 optdepends=('gtk-engines: HighContrast GTK2 theme')
 groups=(gnome)
 options=(!emptydirs)
-_commit=a993fdc050a001fe7880b29155908772f874efb4  # master
-source=("git+https://git.gnome.org/browse/gnome-themes-standard#commit=$_commit;)
+_commit=c092fc89acc581d145e63aae77e186284a56af71  # master~13
+source=("git+https://gitlab.gnome.org/GNOME/gnome-themes-extra.git#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
-  cd $pkgname
+  cd gnome-themes-extra
   git describe --tags | sed 's/-/+/g'
 }
 
 prepare() {
-  cd $pkgname
+  cd gnome-themes-extra
   NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd $pkgname
+  cd gnome-themes-extra
   ./configure --prefix=/usr
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
@@ -35,8 +35,8 @@
 }
 
 package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
+  cd gnome-themes-extra
+  make DESTDIR="$pkgdir" install
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in gnome-color-manager/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:34:46
  Author: heftig
Revision: 315632

archrelease: copy trunk to extra-x86_64

Added:
  gnome-color-manager/repos/extra-x86_64/PKGBUILD
(from rev 315631, gnome-color-manager/trunk/PKGBUILD)
Deleted:
  gnome-color-manager/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 19:34:09 UTC (rev 315631)
+++ PKGBUILD2018-01-30 19:34:46 UTC (rev 315632)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-color-manager
-pkgver=3.26.0+3+g3620f9b
-pkgrel=1
-pkgdesc="GNOME Color Profile Tools"
-arch=(i686 x86_64)
-url="https://git.gnome.org/browse/gnome-color-manager;
-license=(GPL2)
-depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif)
-makedepends=(itstool git appstream-glib meson)
-optdepends=('argyllcms: color calibration')
-options=('!emptydirs')
-groups=('gnome-extra')
-_commit=3620f9bc7e5f4f3cae856eaeac1046a41da69164  # master
-source=("git+https://git.gnome.org/browse/gnome-color-manager#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^GNOME_COLOR_MANAGER_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  mkdir build
-  cd $pkgname
-}
-  
-
-build() {
-  cd build
-  meson setup --prefix=/usr --libexecdir=/usr/lib/gnome-color-manager 
--buildtype=release ../$pkgname
-  ninja
-}
-
-package() {
-  cd build
-  DESTDIR="$pkgdir" ninja install
-}

Copied: gnome-color-manager/repos/extra-x86_64/PKGBUILD (from rev 315631, 
gnome-color-manager/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 19:34:46 UTC (rev 315632)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-color-manager
+pkgver=3.26.0+16+g3b2109b
+pkgrel=1
+pkgdesc="GNOME Color Profile Tools"
+url="https://git.gnome.org/browse/gnome-color-manager;
+arch=(x86_64)
+license=(GPL2)
+depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif)
+makedepends=(itstool git appstream-glib meson)
+optdepends=('argyllcms: color calibration')
+groups=(gnome)
+_commit=3b2109b48c283779b1e800bcd61558c22a3e8e0c  # master
+source=("git+https://git.gnome.org/browse/gnome-color-manager#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^GNOME_COLOR_MANAGER_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+  
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}


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

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:34:09
  Author: heftig
Revision: 315631

archrelease: copy trunk to extra-x86_64

Added:
  vala/repos/extra-x86_64/PKGBUILD
(from rev 315630, vala/trunk/PKGBUILD)
Deleted:
  vala/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  100 ++---
 1 file changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 19:32:19 UTC (rev 315630)
+++ PKGBUILD2018-01-30 19:34:09 UTC (rev 315631)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Levente Polyak 
-# Contributor: Ionut Biru 
-# Contributor: Timm Preetz 
-
-pkgname=vala
-pkgver=0.38.5
-pkgrel=1
-pkgdesc="Compiler for the GObject type system"
-url="https://wiki.gnome.org/Projects/Vala;
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 gtk-doc graphviz ttf-dejavu pkg-config gcc)
-makedepends=(libxslt vala git help2man)
-checkdepends=(dbus libx11 gobject-introspection)
-provides=(valadoc)
-conflicts=(valadoc)
-replaces=(valadoc)
-_commit=c389a822546ccf534c9cec38d55797e880a68a53  # tags/0.38.5^0
-source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd $pkgname
-  make check
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: vala/repos/extra-x86_64/PKGBUILD (from rev 315630, vala/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 19:34:09 UTC (rev 315631)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Levente Polyak 
+# Contributor: Ionut Biru 
+# Contributor: Timm Preetz 
+
+pkgname=vala
+pkgver=0.38.6
+pkgrel=1
+pkgdesc="Compiler for the GObject type system"
+url="https://wiki.gnome.org/Projects/Vala;
+arch=(x86_64)
+license=(LGPL)
+depends=(glib2 gtk-doc graphviz ttf-dejavu pkg-config gcc)
+makedepends=(libxslt vala git help2man)
+checkdepends=(dbus libx11 gobject-introspection)
+provides=(valadoc)
+conflicts=(valadoc)
+replaces=(valadoc)
+_commit=df4a09baeaa47e300782a5f0017cec96e2a8e2ad  # tags/0.38.6^0
+source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make check
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:


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

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:32:19
  Author: heftig
Revision: 315630

0.38.6-1

Modified:
  vala/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 19:30:53 UTC (rev 315629)
+++ PKGBUILD2018-01-30 19:32:19 UTC (rev 315630)
@@ -4,7 +4,7 @@
 # Contributor: Timm Preetz 
 
 pkgname=vala
-pkgver=0.38.5
+pkgver=0.38.6
 pkgrel=1
 pkgdesc="Compiler for the GObject type system"
 url="https://wiki.gnome.org/Projects/Vala;
@@ -16,7 +16,7 @@
 provides=(valadoc)
 conflicts=(valadoc)
 replaces=(valadoc)
-_commit=c389a822546ccf534c9cec38d55797e880a68a53  # tags/0.38.5^0
+_commit=df4a09baeaa47e300782a5f0017cec96e2a8e2ad  # tags/0.38.6^0
 source=("git+https://git.gnome.org/browse/vala#commit=$_commit;)
 sha256sums=('SKIP')
 


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

2018-01-30 Thread Jan Steffens via arch-commits
Date: Tuesday, January 30, 2018 @ 19:30:53
  Author: heftig
Revision: 315629

3.26.0+16+g3b2109b-1

Modified:
  gnome-color-manager/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 19:05:04 UTC (rev 315628)
+++ PKGBUILD2018-01-30 19:30:53 UTC (rev 315629)
@@ -2,17 +2,17 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=gnome-color-manager
-pkgver=3.26.0+3+g3620f9b
+pkgver=3.26.0+16+g3b2109b
 pkgrel=1
 pkgdesc="GNOME Color Profile Tools"
+url="https://git.gnome.org/browse/gnome-color-manager;
 arch=(x86_64)
-url="https://git.gnome.org/browse/gnome-color-manager;
 license=(GPL2)
 depends=(libcanberra vte3 exiv2 shared-color-targets colord-gtk libexif)
 makedepends=(itstool git appstream-glib meson)
 optdepends=('argyllcms: color calibration')
 groups=(gnome)
-_commit=3620f9bc7e5f4f3cae856eaeac1046a41da69164  # master
+_commit=3b2109b48c283779b1e800bcd61558c22a3e8e0c  # master
 source=("git+https://git.gnome.org/browse/gnome-color-manager#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in broadcom-wl-dkms/repos/community-x86_64 (24 files)

2018-01-30 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 19:24:35
  Author: eschwartz
Revision: 288336

archrelease: copy trunk to community-x86_64

Added:
  broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch
(from rev 288335, broadcom-wl-dkms/trunk/001-null-pointer-fix.patch)
  broadcom-wl-dkms/repos/community-x86_64/002-rdtscl.patch
(from rev 288335, broadcom-wl-dkms/trunk/002-rdtscl.patch)
  broadcom-wl-dkms/repos/community-x86_64/003-linux47.patch
(from rev 288335, broadcom-wl-dkms/trunk/003-linux47.patch)
  broadcom-wl-dkms/repos/community-x86_64/004-linux48.patch
(from rev 288335, broadcom-wl-dkms/trunk/004-linux48.patch)
  broadcom-wl-dkms/repos/community-x86_64/005-debian-fix-kernel-warnings.patch
(from rev 288335, 
broadcom-wl-dkms/trunk/005-debian-fix-kernel-warnings.patch)
  broadcom-wl-dkms/repos/community-x86_64/006-linux411.patch
(from rev 288335, broadcom-wl-dkms/trunk/006-linux411.patch)
  broadcom-wl-dkms/repos/community-x86_64/007-linux412.patch
(from rev 288335, broadcom-wl-dkms/trunk/007-linux412.patch)
  broadcom-wl-dkms/repos/community-x86_64/008-linux415.patch
(from rev 288335, broadcom-wl-dkms/trunk/008-linux415.patch)
  broadcom-wl-dkms/repos/community-x86_64/PKGBUILD
(from rev 288335, broadcom-wl-dkms/trunk/PKGBUILD)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.conf
(from rev 288335, broadcom-wl-dkms/trunk/broadcom-wl-dkms.conf)
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.install
(from rev 288335, broadcom-wl-dkms/trunk/broadcom-wl-dkms.install)
  broadcom-wl-dkms/repos/community-x86_64/dkms.conf.in
(from rev 288335, broadcom-wl-dkms/trunk/dkms.conf.in)
Deleted:
  broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch
  broadcom-wl-dkms/repos/community-x86_64/002-rdtscl.patch
  broadcom-wl-dkms/repos/community-x86_64/003-linux47.patch
  broadcom-wl-dkms/repos/community-x86_64/004-linux48.patch
  broadcom-wl-dkms/repos/community-x86_64/005-debian-fix-kernel-warnings.patch
  broadcom-wl-dkms/repos/community-x86_64/006-linux411.patch
  broadcom-wl-dkms/repos/community-x86_64/007-linux412.patch
  broadcom-wl-dkms/repos/community-x86_64/008-linux415.patch
  broadcom-wl-dkms/repos/community-x86_64/PKGBUILD
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.conf
  broadcom-wl-dkms/repos/community-x86_64/broadcom-wl-dkms.install
  broadcom-wl-dkms/repos/community-x86_64/dkms.conf.in

--+
 001-null-pointer-fix.patch   |   54 ++---
 002-rdtscl.patch |   44 ++--
 003-linux47.patch|  218 +++---
 004-linux48.patch|  128 ++---
 005-debian-fix-kernel-warnings.patch |  322 -
 006-linux411.patch   |   54 ++---
 007-linux412.patch   |  136 ++---
 008-linux415.patch   |   92 -
 PKGBUILD |  132 ++---
 broadcom-wl-dkms.conf|   16 -
 broadcom-wl-dkms.install |   32 +--
 dkms.conf.in |   25 +-
 12 files changed, 627 insertions(+), 626 deletions(-)

Deleted: 001-null-pointer-fix.patch
===
--- 001-null-pointer-fix.patch  2018-01-30 19:23:56 UTC (rev 288335)
+++ 001-null-pointer-fix.patch  2018-01-30 19:24:35 UTC (rev 288336)
@@ -1,27 +0,0 @@
-Description: Fixing null pointer crash
-
-Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773713
-Bug-Ubuntu: https://launchpad.net/bugs/1415880
-Last-Update: 2015-08-18
-

- src/wl/sys/wl_linux.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
-index 860b935..295156f 100644
 a/src/wl/sys/wl_linux.c
-+++ b/src/wl/sys/wl_linux.c
-@@ -2157,8 +2157,8 @@ wl_start(struct sk_buff *skb, struct net_device *dev)
-   wlif = WL_DEV_IF(dev);
-   wl = WL_INFO(dev);
- 
-+  skb->prev = NULL;
-   if (WL_ALL_PASSIVE_ENAB(wl) || (WL_RTR() && WL_CONFIG_SMP())) {
--  skb->prev = NULL;
- 
-   TXQ_LOCK(wl);
- 
--- 
-1.9.1
-

Copied: broadcom-wl-dkms/repos/community-x86_64/001-null-pointer-fix.patch 
(from rev 288335, broadcom-wl-dkms/trunk/001-null-pointer-fix.patch)
===
--- 001-null-pointer-fix.patch  (rev 0)
+++ 001-null-pointer-fix.patch  2018-01-30 19:24:35 UTC (rev 288336)
@@ -0,0 +1,27 @@
+Description: Fixing null pointer crash
+
+Origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=773713
+Bug-Ubuntu: https://launchpad.net/bugs/1415880
+Last-Update: 2015-08-18
+
+---
+ src/wl/sys/wl_linux.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/wl/sys/wl_linux.c b/src/wl/sys/wl_linux.c
+index 860b935..295156f 100644
+--- a/src/wl/sys/wl_linux.c
 b/src/wl/sys/wl_linux.c
+@@ -2157,8 

[arch-commits] Commit in broadcom-wl-dkms/trunk (PKGBUILD dkms.conf.in)

2018-01-30 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 19:23:56
  Author: eschwartz
Revision: 288335

upgpkg: broadcom-wl-dkms 6.30.223.271-17

Fix dkms.conf to actually apply the linux-4.15 patch.

Modified:
  broadcom-wl-dkms/trunk/PKGBUILD
  broadcom-wl-dkms/trunk/dkms.conf.in

--+
 PKGBUILD |   12 ++--
 dkms.conf.in |1 +
 2 files changed, 7 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 19:05:43 UTC (rev 288334)
+++ PKGBUILD2018-01-30 19:23:56 UTC (rev 288335)
@@ -7,7 +7,7 @@
 
 pkgname=broadcom-wl-dkms
 pkgver=6.30.223.271
-pkgrel=16
+pkgrel=17
 pkgdesc='Broadcom 802.11 Linux STA wireless driver'
 arch=('x86_64')
 
url="https://www.broadcom.com/support/download-search/?pf=Wireless+LAN+Infrastructure;
@@ -15,8 +15,7 @@
 depends=('dkms')
 conflicts=('broadcom-wl')
 install=broadcom-wl-dkms.install
-source=("https://docs.broadcom.com/docs-and-downloads/docs/linux_sta/hybrid-v35_64-nodebug-pcoem-${pkgver//./_}.tar.gz;
-'broadcom-wl-dkms.conf'
+source=('broadcom-wl-dkms.conf'
 'dkms.conf.in'
 '001-null-pointer-fix.patch'
 '002-rdtscl.patch'
@@ -26,9 +25,9 @@
 '006-linux411.patch'
 '007-linux412.patch'
 '008-linux415.patch')
-sha256sums=('5f79774d5beec8f7636b59c0fb07a03108eef1e3fd3245638b20858c714144be'
-'b97bc588420d1542f73279e71975ccb5d81d75e534e7b5717e01d6e6adf6a283'
-'17a4857279d99e14847fa66e8d8ce0d5dc4851856a0683f4a6bfc93f67a8f6f6'
+source_x86_64=("https://docs.broadcom.com/docs-and-downloads/docs/linux_sta/hybrid-v35_64-nodebug-pcoem-${pkgver//./_}.tar.gz;)
+sha256sums=('b97bc588420d1542f73279e71975ccb5d81d75e534e7b5717e01d6e6adf6a283'
+'f1df2aa45416b4ac61ea1501602bd1f205a416e1bf1664f23b3761a84d035b26'
 '32e505a651fdb9fd5e4870a9d6de21dd703dead768c2b3340a2ca46671a5852f'
 '4ea03f102248beb8963ad00bd3e36e67519a90fa39244db065e74038c98360dd'
 '30ce1d5e8bf78aee487d0f3ac76756e1060777f70ed1a9cf95215c3a52cfbe2e'
@@ -37,6 +36,7 @@
 '5bc12cb57712e6a944dff1c90de50135c2508085d8497ab99284db35c32b'
 'a3d13e8abb96ad440dbfae29acae82d31d1ced2ea62052f1efb2c3c4add347ce'
 '08c24157cf3b93b60e67e600d1d90223447361990df09acfb00281d79813d167')
+sha256sums_x86_64=('5f79774d5beec8f7636b59c0fb07a03108eef1e3fd3245638b20858c714144be')
 
 prepare() {
   sed -i -e '/BRCM_WLAN_IFNAME/s/eth/wlan/' src/wl/sys/wl_linux.c

Modified: dkms.conf.in
===
--- dkms.conf.in2018-01-30 19:05:43 UTC (rev 288334)
+++ dkms.conf.in2018-01-30 19:23:56 UTC (rev 288335)
@@ -9,4 +9,5 @@
 PATCH[4]="005-debian-fix-kernel-warnings.patch"
 PATCH[5]="006-linux411.patch"
 PATCH[6]="007-linux412.patch"
+PATCH[7]="008-linux415.patch"
 AUTOINSTALL="yes"


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

2018-01-30 Thread Christian Rebischke via arch-commits
Date: Tuesday, January 30, 2018 @ 19:05:43
  Author: shibumi
Revision: 288334

archrelease: copy trunk to community-x86_64

Added:
  hcloud/repos/community-x86_64/
  hcloud/repos/community-x86_64/PKGBUILD
(from rev 288333, hcloud/trunk/PKGBUILD)

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

Copied: hcloud/repos/community-x86_64/PKGBUILD (from rev 288333, 
hcloud/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-01-30 19:05:43 UTC (rev 288334)
@@ -0,0 +1,46 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Konrad Tegtmeier 
+
+pkgname='hcloud'
+pkgver='1.2.0'
+pkgrel='5'
+pkgdesc="CLI for Hetzner Cloud"
+arch=('x86_64')
+url='https://github.com/hetznercloud/cli'
+license=('MIT')
+optdepends=(
+'bash-completion: tab auto-completion'
+'zsh: tab auto-completion')
+makedepends=('go' 'git')
+provides=('hcloud')
+_hcloud_commit='56fa3db24bafede2616a6d2c3b1e5cdca1cb851d'
+source=("git+https://github.com/hetznercloud/cli#commit=${_hcloud_commit};)
+sha512sums=('SKIP')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p src/github.com/hetznercloud
+  mv cli src/github.com/hetznercloud
+}
+
+build(){
+  cd src/github.com/hetznercloud/cli
+  go build \
+  -ldflags "-w -X github.com/hetznercloud/cli.Version=${pkgver}" \
+  github.com/hetznercloud/cli/cmd/hcloud
+  chmod +x ./hcloud
+  ./hcloud completion bash > "$pkgname-completion.bash"
+}
+
+check(){
+  cd src/github.com/hetznercloud/cli
+  go test -v -x
+}
+
+package(){
+  cd src/github.com/hetznercloud/cli
+  install -Dsm755 hcloud "${pkgdir}/usr/bin/hcloud"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 "${pkgname}-completion.bash" 
"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}


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

2018-01-30 Thread Christian Rebischke via arch-commits
Date: Tuesday, January 30, 2018 @ 19:05:36
  Author: shibumi
Revision: 288333

upgpkg: hcloud 1.2.0-5

moved hcloud from aur to community

Modified:
  hcloud/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 18:47:03 UTC (rev 288332)
+++ PKGBUILD2018-01-30 19:05:36 UTC (rev 288333)
@@ -14,7 +14,7 @@
 makedepends=('go' 'git')
 provides=('hcloud')
 _hcloud_commit='56fa3db24bafede2616a6d2c3b1e5cdca1cb851d'
-source=("git+https://github.com/hetznercloud/hcloud#commit=${_hcloud_commit};)
+source=("git+https://github.com/hetznercloud/cli#commit=${_hcloud_commit};)
 sha512sums=('SKIP')
 
 prepare(){
@@ -21,23 +21,26 @@
   export GOPATH="${srcdir}"
   export PATH="$PATH:$GOPATH/bin"
   mkdir -p src/github.com/hetznercloud
-  mv "${pkgname}" src/github.com/hetznercloud
+  mv cli src/github.com/hetznercloud
 }
 
 build(){
-  cd src/github.com/hetznercloud/"${pkgname}"
-  go build -o hcloud-binary
-  ./hcloud-binary completion bash > "$pkgname-completion.bash"
+  cd src/github.com/hetznercloud/cli
+  go build \
+  -ldflags "-w -X github.com/hetznercloud/cli.Version=${pkgver}" \
+  github.com/hetznercloud/cli/cmd/hcloud
+  chmod +x ./hcloud
+  ./hcloud completion bash > "$pkgname-completion.bash"
 }
 
 check(){
-  cd src/github.com/hetznercloud/"${pkgname}"
+  cd src/github.com/hetznercloud/cli
   go test -v -x
 }
 
 package(){
-  cd src/github.com/hetznercloud/"${pkgname}"
-  install -Dsm755 hcloud-binary "${pkgdir}/usr/bin/hcloud"
+  cd src/github.com/hetznercloud/cli
+  install -Dsm755 hcloud "${pkgdir}/usr/bin/hcloud"
   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
   install -Dm644 "${pkgname}-completion.bash" 
"$pkgdir/usr/share/bash-completion/completions/$pkgname"
 }


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 19:05:04
  Author: arojas
Revision: 315628

Make gtkglext optional

Modified:
  opencv/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 18:48:08 UTC (rev 315627)
+++ PKGBUILD2018-01-30 19:05:04 UTC (rev 315628)
@@ -10,9 +10,10 @@
 arch=('x86_64')
 license=('BSD')
 url="http://opencv.org/;
-depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'gtkglext' 'cblas' 
'lapack' 'libgphoto2')
-makedepends=('cmake' 'python-numpy' 'python2-numpy' 'mesa' 'eigen' 'hdf5' 
'lapacke')
+depends=('intel-tbb' 'openexr' 'xine-lib' 'libdc1394' 'cblas' 'lapack' 
'libgphoto2')
+makedepends=('cmake' 'python-numpy' 'python2-numpy' 'mesa' 'eigen' 'hdf5' 
'lapacke' 'gtkglext')
 optdepends=('opencv-samples'
+'gtkglext: for the HighGUI module'
 'hdf5: support for HDF5 format'
 'opencl-icd-loader: For coding with OpenCL'
 'python-numpy: Python 3 interface'


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

2018-01-30 Thread Pierre Schmitz via arch-commits
Date: Tuesday, January 30, 2018 @ 18:46:55
  Author: pierre
Revision: 288331

upgpkg: xdebug 2.6.0-1

Modified:
  xdebug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 18:21:38 UTC (rev 288330)
+++ PKGBUILD2018-01-30 18:46:55 UTC (rev 288331)
@@ -5,7 +5,7 @@
 # Contributor: sracker 
 
 pkgname=xdebug
-pkgver=2.6.0beta1
+pkgver=2.6.0
 pkgrel=1
 pkgdesc="PHP debugging extension"
 arch=('x86_64')
@@ -15,7 +15,7 @@
 backup=('etc/php/conf.d/xdebug.ini')
 source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
'xdebug.ini')
-sha256sums=('49de661e1e18cbbd739fc9fb7a014a36f97a84d2c4a89417c358dd258340527d'
+sha256sums=('b5264cc03bf68fcbb04b97229f96dca505d7b87ec2fb3bd4249896783d29cbdc'
 '7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
 
 build() {


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

2018-01-30 Thread Pierre Schmitz via arch-commits
Date: Tuesday, January 30, 2018 @ 18:47:03
  Author: pierre
Revision: 288332

archrelease: copy trunk to community-x86_64

Added:
  xdebug/repos/community-x86_64/PKGBUILD
(from rev 288331, xdebug/trunk/PKGBUILD)
  xdebug/repos/community-x86_64/xdebug.ini
(from rev 288331, xdebug/trunk/xdebug.ini)
Deleted:
  xdebug/repos/community-x86_64/PKGBUILD
  xdebug/repos/community-x86_64/xdebug.ini

+
 PKGBUILD   |   78 +--
 xdebug.ini |   10 +++
 2 files changed, 44 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 18:46:55 UTC (rev 288331)
+++ PKGBUILD2018-01-30 18:47:03 UTC (rev 288332)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-# Contributor: Jonathan Wiersma 
-# Contributor: sracker 
-
-pkgname=xdebug
-pkgver=2.6.0beta1
-pkgrel=1
-pkgdesc="PHP debugging extension"
-arch=('x86_64')
-url="http://www.xdebug.org;
-license=('GPL')
-depends=('php')
-backup=('etc/php/conf.d/xdebug.ini')
-source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
-   'xdebug.ini')
-sha256sums=('49de661e1e18cbbd739fc9fb7a014a36f97a84d2c4a89417c358dd258340527d'
-'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
-
-build() {
-  cd "$srcdir"/$pkgname-$pkgver
-  phpize
-  ./configure --prefix=/usr --enable-xdebug
-  make
-
-  cd "$srcdir"/$pkgname-$pkgver/debugclient
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir"/$pkgname-$pkgver/debugclient
-  make DESTDIR="$pkgdir" install
-
-  cd "$srcdir"/$pkgname-$pkgver
-  make INSTALL_ROOT="$pkgdir" install
-  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
-}

Copied: xdebug/repos/community-x86_64/PKGBUILD (from rev 288331, 
xdebug/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 18:47:03 UTC (rev 288332)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.6.0
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('x86_64')
+url="http://www.xdebug.org;
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("https://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
+   'xdebug.ini')
+sha256sums=('b5264cc03bf68fcbb04b97229f96dca505d7b87ec2fb3bd4249896783d29cbdc'
+'7c66883dc2ade69069ef84e30188b25630748aa9c8b0dd123727c00505421205')
+
+build() {
+  cd "$srcdir"/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/debugclient
+  make DESTDIR="$pkgdir" install
+
+  cd "$srcdir"/$pkgname-$pkgver
+  make INSTALL_ROOT="$pkgdir" install
+  install -D -m 644 "$srcdir"/xdebug.ini "$pkgdir"/etc/php/conf.d/xdebug.ini
+}

Deleted: xdebug.ini
===
--- xdebug.ini  2018-01-30 18:46:55 UTC (rev 288331)
+++ xdebug.ini  2018-01-30 18:47:03 UTC (rev 288332)
@@ -1,5 +0,0 @@
-;zend_extension=xdebug.so
-;xdebug.remote_enable=on
-;xdebug.remote_host=127.0.0.1
-;xdebug.remote_port=9000
-;xdebug.remote_handler=dbgp

Copied: xdebug/repos/community-x86_64/xdebug.ini (from rev 288331, 
xdebug/trunk/xdebug.ini)
===
--- xdebug.ini  (rev 0)
+++ xdebug.ini  2018-01-30 18:47:03 UTC (rev 288332)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp


[arch-commits] Commit in php/repos (9 files)

2018-01-30 Thread Pierre Schmitz via arch-commits
Date: Tuesday, January 30, 2018 @ 18:22:54
  Author: pierre
Revision: 315625

archrelease: copy trunk to testing-x86_64

Added:
  php/repos/testing-x86_64/
  php/repos/testing-x86_64/PKGBUILD
(from rev 315624, php/trunk/PKGBUILD)
  php/repos/testing-x86_64/apache.conf
(from rev 315624, php/trunk/apache.conf)
  php/repos/testing-x86_64/apache.patch
(from rev 315624, php/trunk/apache.patch)
  php/repos/testing-x86_64/enchant-2.patch
(from rev 315624, php/trunk/enchant-2.patch)
  php/repos/testing-x86_64/generate_patches
(from rev 315624, php/trunk/generate_patches)
  php/repos/testing-x86_64/php-fpm.patch
(from rev 315624, php/trunk/php-fpm.patch)
  php/repos/testing-x86_64/php-fpm.tmpfiles
(from rev 315624, php/trunk/php-fpm.tmpfiles)
  php/repos/testing-x86_64/php.ini.patch
(from rev 315624, php/trunk/php.ini.patch)

--+
 PKGBUILD |  336 +
 apache.conf  |   13 ++
 apache.patch |   20 +++
 enchant-2.patch  |   84 +
 generate_patches |   48 +++
 php-fpm.patch|   74 +++
 php-fpm.tmpfiles |1 
 php.ini.patch|   78 
 8 files changed, 654 insertions(+)

Copied: php/repos/testing-x86_64/PKGBUILD (from rev 315624, php/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-30 18:22:54 UTC (rev 315625)
@@ -0,0 +1,336 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgbase=php
+pkgname=('php'
+ 'php-cgi'
+ 'php-apache'
+ 'php-fpm'
+ 'php-embed'
+ 'php-phpdbg'
+ 'php-dblib'
+ 'php-enchant'
+ 'php-gd'
+ 'php-imap'
+ 'php-intl'
+ 'php-sodium'
+ 'php-odbc'
+ 'php-pgsql'
+ 'php-pspell'
+ 'php-snmp'
+ 'php-sqlite'
+ 'php-tidy'
+ 'php-xsl')
+pkgver=7.2.2
+pkgrel=1
+arch=('x86_64')
+license=('PHP')
+url='http://www.php.net'
+makedepends=('apache' 'aspell' 'c-client' 'db' 'enchant' 'gd' 'gmp' 'icu' 
'libsodium' 'libxslt' 'libzip' 'net-snmp'
+ 'postgresql-libs' 'sqlite' 'systemd' 'tidy' 'unixodbc' 'curl' 
'libtool' 'postfix' 'freetds' 'pcre')
+checkdepends=('procps-ng')
+source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
+'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch' enchant-2.patch)
+sha512sums=('36a3565161fc481307ac3e76c8d2ccc457c265bf510f085be1907835c7da7c747a0876502192d77bd664f94a584a1b149deee2600c650481fbedbf02d72d5fd0'
+'SKIP'
+
'65ea5cb38c1fc1874b2a4d08bc52443f9ed5dcc92cf99023a74292c78f9074516296f56c768f7efa8a1f0838feac47b356d3da6fdb1199419bebec3a93204ae6'
+
'eccbe1a0c7b2757ab3c982c871cc591a66ad70f085aaa0d44f93cacacedc7b8fd21b8d0c66471327ff070db1bab1ab83a802f6fa190f33bdd74c134975e3910e'
+
'87453c9f41204bc7a20cbf2a85ee44965f7754529e2c17fb60bdfe42ded7a894d6e7fcc30fe6c650ea5f92f95920161522ef3ce0f355686a2fed7f0857abdd5c'
+
'824e9a0d10063283357d49a81ab49bf834afd24f098482bdbaa9ab60bbad2b0dea6f5879259b73717d437626b02fb4f2d3ef68b7bcbb26bee274a7b61144720f'
+
'1606178f55dee8ca6a3cf47c7db486dca0c261bfffbaf4f69450a3497643910c65f8ee1543839ae4213d8b396afc6e5f86141accac553545c35fe234a50f56e6'
+
'89993be67988f6db09e1102214a41fdb7223274bc6ca71f1defc5fe9548d832485f7133b8ba82860f04da00c7f655d701c7550460c0172a2a2d31ef3f3f96038')
+validpgpkeys=('B1B44D8F021E4E2D6021E995DC9FF8D3EE5AF27F'
+  '1729F83938DA44E27BA0F4D3DBDB397470D12172')
+
+prepare() {
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   patch -p0 -i ${srcdir}/apache.patch
+   patch -p0 -i ${srcdir}/php-fpm.patch
+   patch -p0 -i ${srcdir}/php.ini.patch
+   patch -p1 -i ../enchant-2.patch
+
+   rm tests/output/stream_isatty_*.phpt
+}
+
+build() {
+   local _phpconfig="--srcdir=../${pkgbase}-${pkgver} \
+   --config-cache \
+   --prefix=/usr \
+   --sbindir=/usr/bin \
+   --sysconfdir=/etc/php \
+   --localstatedir=/var \
+   --with-layout=GNU \
+   --with-config-file-path=/etc/php \
+   --with-config-file-scan-dir=/etc/php/conf.d \
+   --disable-rpath \
+   --mandir=/usr/share/man \
+   --without-pear \
+   "
+
+   local _phpextensions="\
+   --enable-bcmath=shared \
+   --enable-calendar=shared \
+   --enable-dba=shared \
+   --enable-exif=shared \
+   --enable-ftp=shared \
+   --enable-intl=shared \
+   --enable-mbstring \
+   --enable-shmop=shared \
+   --enable-soap=shared \
+   --enable-sockets=shared \
+   --enable-sysvmsg=shared \
+   

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

2018-01-30 Thread Pierre Schmitz via arch-commits
Date: Tuesday, January 30, 2018 @ 18:22:25
  Author: pierre
Revision: 315624

upgpkg: php 7.2.2-1

Modified:
  php/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 14:47:57 UTC (rev 315623)
+++ PKGBUILD2018-01-30 18:22:25 UTC (rev 315624)
@@ -21,8 +21,8 @@
  'php-sqlite'
  'php-tidy'
  'php-xsl')
-pkgver=7.2.1
-pkgrel=3
+pkgver=7.2.2
+pkgrel=1
 arch=('x86_64')
 license=('PHP')
 url='http://www.php.net'
@@ -31,7 +31,7 @@
 checkdepends=('procps-ng')
 source=("https://php.net/distributions/${pkgbase}-${pkgver}.tar.xz"{,.asc}
 'apache.patch' 'apache.conf' 'php-fpm.patch' 'php-fpm.tmpfiles' 
'php.ini.patch' enchant-2.patch)
-sha512sums=('2445f2cff20214b521c48592e5ab42b770c291702178d7cb2a84912c81b7e5d2cc45948a3a4a7830194fa444708d544c73efbaa8e90c95ab77937f7feffb2ffc'
+sha512sums=('36a3565161fc481307ac3e76c8d2ccc457c265bf510f085be1907835c7da7c747a0876502192d77bd664f94a584a1b149deee2600c650481fbedbf02d72d5fd0'
 'SKIP'
 
'65ea5cb38c1fc1874b2a4d08bc52443f9ed5dcc92cf99023a74292c78f9074516296f56c768f7efa8a1f0838feac47b356d3da6fdb1199419bebec3a93204ae6'
 
'eccbe1a0c7b2757ab3c982c871cc591a66ad70f085aaa0d44f93cacacedc7b8fd21b8d0c66471327ff070db1bab1ab83a802f6fa190f33bdd74c134975e3910e'
@@ -103,6 +103,7 @@
--with-mysql-sock=/run/mysqld/mysqld.sock \
--with-mysqli=shared,mysqlnd \
--with-openssl \
+   --with-password-argon2 \
--with-pcre-regex=/usr \
--with-pdo-dblib=shared,/usr \
--with-pdo-mysql=shared,mysqlnd \
@@ -174,7 +175,7 @@
 
 package_php() {
pkgdesc='A general-purpose scripting language that is especially suited 
to web development'
-   depends=('libxml2' 'curl' 'libzip' 'pcre')
+   depends=('libxml2' 'curl' 'libzip' 'pcre' 'argon2')
replaces=('php-ldap')
conflicts=('php-ldap')
provides=("php-ldap=${pkgver}")


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

2018-01-30 Thread Christian Rebischke via arch-commits
Date: Tuesday, January 30, 2018 @ 18:21:38
  Author: shibumi
Revision: 288330

hcloud 

Added:
  hcloud/
  hcloud/repos/
  hcloud/trunk/
  hcloud/trunk/PKGBUILD

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

Added: hcloud/trunk/PKGBUILD
===
--- hcloud/trunk/PKGBUILD   (rev 0)
+++ hcloud/trunk/PKGBUILD   2018-01-30 18:21:38 UTC (rev 288330)
@@ -0,0 +1,43 @@
+# Maintainer: Christian Rebischke 
+# Contributor: Konrad Tegtmeier 
+
+pkgname='hcloud'
+pkgver='1.2.0'
+pkgrel='5'
+pkgdesc="CLI for Hetzner Cloud"
+arch=('x86_64')
+url='https://github.com/hetznercloud/cli'
+license=('MIT')
+optdepends=(
+'bash-completion: tab auto-completion'
+'zsh: tab auto-completion')
+makedepends=('go' 'git')
+provides=('hcloud')
+_hcloud_commit='56fa3db24bafede2616a6d2c3b1e5cdca1cb851d'
+source=("git+https://github.com/hetznercloud/hcloud#commit=${_hcloud_commit};)
+sha512sums=('SKIP')
+
+prepare(){
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p src/github.com/hetznercloud
+  mv "${pkgname}" src/github.com/hetznercloud
+}
+
+build(){
+  cd src/github.com/hetznercloud/"${pkgname}"
+  go build -o hcloud-binary
+  ./hcloud-binary completion bash > "$pkgname-completion.bash"
+}
+
+check(){
+  cd src/github.com/hetznercloud/"${pkgname}"
+  go test -v -x
+}
+
+package(){
+  cd src/github.com/hetznercloud/"${pkgname}"
+  install -Dsm755 hcloud-binary "${pkgdir}/usr/bin/hcloud"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm644 "${pkgname}-completion.bash" 
"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}


Property changes on: hcloud/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-01-30 Thread David Runge via arch-commits
Date: Tuesday, January 30, 2018 @ 17:55:39
  Author: dvzrv
Revision: 288329

archrelease: copy trunk to community-testing-x86_64

Added:
  csoundqt/repos/community-testing-x86_64/PKGBUILD
(from rev 288328, csoundqt/trunk/PKGBUILD)
Deleted:
  csoundqt/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 17:55:30 UTC (rev 288328)
+++ PKGBUILD2018-01-30 17:55:39 UTC (rev 288329)
@@ -1,71 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Ainola
-# Contributor: rtfreedman
-
-_name=CsoundQt
-_rtmidiver=3.0.0
-pkgname=csoundqt
-pkgver=0.9.5
-pkgrel=3
-pkgdesc="A frontend for Csound featuring a highlighting editor with 
autocomplete, interactive widgets and integrated help"
-arch=('x86_64')
-url="https://csoundqt.github.io/;
-license=('CCPL' 'FDL' 'GPL' 'LGPL2.1')
-# somehow include pythonqt
-depends=('csound' 'csound-doc' 'qt5-declarative')
-makedepends=('shared-mime-info')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
-
"rtmidi-${_rtmidiver}.tar.gz::https://github.com/thestk/rtmidi/archive/v${_rtmidiver}.tar.gz;)
-sha512sums=('136fb395b955e21c153ccde3642362d4451bd458af78e235808a8b911a87e24fc5614c72b0e09f3dcd6ab1f49d563eb547dc1371b8ebd75cb8e051a2d629fb74'
-
'8975a63e7be9102af70401cef48c702597b87efe2d8fa30a978fe280e26da1dfa90d6f30cfbd3df587462f0dd085d0f29e1c014e67d7fcd3a36960b6bcfb3e55')
-
-prepare() {
-  cd "${_name}-${pkgver}"
-  # fix system-wide locations for html, examples and scripts
-  sed -e 's,csdocdir = \"\",csdocdir = \"/usr/share/doc/csound/html\",' \
--i src/csoundoptions.cpp
-  sed -e 's@/usr/share/qutecsound/Examples/@/usr/share/csoundqt/Examples/@g' \
--i src/qutecsound.cpp
-  sed 's@../../csoundqt/src/Scripts@/usr/share/csoundqt/Scripts@' \
--i src/types.h
-  # fix icon in desktop file
-  sed -e "s/qtcs/${pkgname}/" -i ${_name}.desktop
-  # move rtmidi sources
-  mv ${srcdir}/rtmidi-${_rtmidiver} .
-}
-
-build() {
-  cd "${_name}-${pkgver}"
-  qmake-qt5 qcs.pro CONFIG+=rtmidi "RTMIDI_DIR=rtmidi-${_rtmidiver}/"
-  make
-}
-
-package() {
-  cd "${_name}-${pkgver}"
-  # executable
-  install -vDm755 "bin/${_name}-d-cs6" "${pkgdir}/usr/bin/${pkgname}"
-  # docs
-  install -vDm644 doc/*.pdf  -t "${pkgdir}/usr/share/doc/${pkgname}"
-  # mime types and icon
-  install -vDm644 mime-types/*.xml -t "${pkgdir}/usr/share/mime/packages/"
-  install -vDm644 mime-types/csound-light-128.png \
-"${pkgdir}/usr/share/icons/hicolor/128x128/mimetypes/csound.png"
-  # desktop file and icon
-  install -vDm644 "${_name}.desktop" \
-"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-  install -vDm644 images/qtcs.png \
-"${pkgdir}/usr/share/icons/hicolor/128x128/apps/${pkgname}.png"
-
-  # examples
-  find examples -type f -print0 | xargs -0 -n1 -i{} install -Dm644 '{}' \
-"$pkgdir/usr/share/doc/${pkgname}/"'{}'
-  cd src
-  find Examples -type f -print0 | xargs -0 -n1 -i{} install -Dm644 '{}' \
-"$pkgdir/usr/share/${pkgname}/"'{}'
-
-#  # pythonqt scripts (disabled until pythonqt is included properly)
-#  find Scripts -type f -print0 | xargs -0 -n1 -i{} install -Dm644 '{}' \
-#"$pkgdir/usr/share/${pkgname}/"'{}'
-}
-
-# vim:set ts=2 sw=2 et:

Copied: csoundqt/repos/community-testing-x86_64/PKGBUILD (from rev 288328, 
csoundqt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 17:55:39 UTC (rev 288329)
@@ -0,0 +1,70 @@
+# Maintainer: David Runge 
+# Contributor: Ainola
+# Contributor: rtfreedman
+
+_name=CsoundQt
+_rtmidiver=3.0.0
+pkgname=csoundqt
+pkgver=0.9.5
+pkgrel=4
+pkgdesc="A frontend for Csound featuring a highlighting editor with 
autocomplete, interactive widgets and integrated help"
+arch=('x86_64')
+url="https://csoundqt.github.io/;
+license=('CCPL' 'FDL' 'GPL' 'LGPL2.1')
+# somehow include pythonqt
+depends=('csound' 'csound-doc' 'qt5-declarative')
+makedepends=('shared-mime-info')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/${pkgname}/${pkgname}/archive/${pkgver}.tar.gz;
+
"rtmidi-${_rtmidiver}.tar.gz::https://github.com/thestk/rtmidi/archive/v${_rtmidiver}.tar.gz;)
+sha512sums=('136fb395b955e21c153ccde3642362d4451bd458af78e235808a8b911a87e24fc5614c72b0e09f3dcd6ab1f49d563eb547dc1371b8ebd75cb8e051a2d629fb74'
+
'8975a63e7be9102af70401cef48c702597b87efe2d8fa30a978fe280e26da1dfa90d6f30cfbd3df587462f0dd085d0f29e1c014e67d7fcd3a36960b6bcfb3e55')
+
+prepare() {
+  cd "${_name}-${pkgver}"
+  # fix exptected location for html, examples and scripts
+  sed -e 's,csdocdir = \"\",csdocdir = \"/usr/share/doc/csound/html\",' \
+-i src/csoundoptions.cpp
+  sed -e 

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

2018-01-30 Thread David Runge via arch-commits
Date: Tuesday, January 30, 2018 @ 17:55:30
  Author: dvzrv
Revision: 288328

upgpkg: csoundqt 0.9.5-4

Properly using qmake installer. Fixing files, permissions and locations in 
prepare().

Modified:
  csoundqt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 17:51:55 UTC (rev 288327)
+++ PKGBUILD2018-01-30 17:55:30 UTC (rev 288328)
@@ -6,7 +6,7 @@
 _rtmidiver=3.0.0
 pkgname=csoundqt
 pkgver=0.9.5
-pkgrel=3
+pkgrel=4
 pkgdesc="A frontend for Csound featuring a highlighting editor with 
autocomplete, interactive widgets and integrated help"
 arch=('x86_64')
 url="https://csoundqt.github.io/;
@@ -21,15 +21,29 @@
 
 prepare() {
   cd "${_name}-${pkgver}"
-  # fix system-wide locations for html, examples and scripts
+  # fix exptected location for html, examples and scripts
   sed -e 's,csdocdir = \"\",csdocdir = \"/usr/share/doc/csound/html\",' \
 -i src/csoundoptions.cpp
-  sed -e 's@/usr/share/qutecsound/Examples/@/usr/share/csoundqt/Examples/@g' \
+  sed -e 's,/usr/share/qutecsound/Examples/,/usr/share/csoundqt/Examples/,g' \
 -i src/qutecsound.cpp
-  sed 's@../../csoundqt/src/Scripts@/usr/share/csoundqt/Scripts@' \
+  sed -e 's,../../csoundqt/src/Scripts,/usr/share/csoundqt/Scripts,' \
 -i src/types.h
-  # fix icon in desktop file
-  sed -e "s/qtcs/${pkgname}/" -i ${_name}.desktop
+
+  # fix install location of examples on filesystem
+  sed -e 's@DIR/qutecsound/@DIR/csoundqt/@' -i qcs.pro
+
+  # fix desktop file
+  chmod -c 644 ${_name}.desktop
+  mv -v ${_name}.desktop ${pkgname}.desktop
+  sed -e "s/${_name}.desktop/${pkgname}.desktop/" -i qcs.pro
+
+  # fix application icon
+  sed -e "s/qtcs/${pkgname}/" -i "${pkgname}.desktop"
+  sed -e "s,icons,icons/hicolor/scalable/apps," \
+  -e "s/qtcs.svg/${pkgname}.svg/" \
+  -i qcs.pro
+  mv -v images/qtcs.svg "images/${pkgname}.svg"
+
   # move rtmidi sources
   mv ${srcdir}/rtmidi-${_rtmidiver} .
 }
@@ -36,36 +50,21 @@
 
 build() {
   cd "${_name}-${pkgver}"
-  qmake-qt5 qcs.pro CONFIG+=rtmidi "RTMIDI_DIR=rtmidi-${_rtmidiver}/"
+  qmake-qt5 qcs.pro DESTDIR="${pkgdir}" \
+SHARE_DIR="${pkgdir}/usr/share" \
+INSTALL_DIR="${pkgdir}/usr" \
+CONFIG+=rtmidi \
+RTMIDI_DIR="rtmidi-${_rtmidiver}/"
   make
 }
 
 package() {
   cd "${_name}-${pkgver}"
-  # executable
-  install -vDm755 "bin/${_name}-d-cs6" "${pkgdir}/usr/bin/${pkgname}"
-  # docs
-  install -vDm644 doc/*.pdf  -t "${pkgdir}/usr/share/doc/${pkgname}"
-  # mime types and icon
-  install -vDm644 mime-types/*.xml -t "${pkgdir}/usr/share/mime/packages/"
-  install -vDm644 mime-types/csound-light-128.png \
-"${pkgdir}/usr/share/icons/hicolor/128x128/mimetypes/csound.png"
-  # desktop file and icon
-  install -vDm644 "${_name}.desktop" \
-"${pkgdir}/usr/share/applications/${pkgname}.desktop"
-  install -vDm644 images/qtcs.png \
-"${pkgdir}/usr/share/icons/hicolor/128x128/apps/${pkgname}.png"
+  echo "${pkgdir}/"
+  make install
 
-  # examples
-  find examples -type f -print0 | xargs -0 -n1 -i{} install -Dm644 '{}' \
-"$pkgdir/usr/share/doc/${pkgname}/"'{}'
-  cd src
-  find Examples -type f -print0 | xargs -0 -n1 -i{} install -Dm644 '{}' \
-"$pkgdir/usr/share/${pkgname}/"'{}'
-
-#  # pythonqt scripts (disabled until pythonqt is included properly)
-#  find Scripts -type f -print0 | xargs -0 -n1 -i{} install -Dm644 '{}' \
-#"$pkgdir/usr/share/${pkgname}/"'{}'
+  install -t "${pkgdir}/usr/share/doc/${pkgname}/" \
+-vDm644 {ChangeLog,README.md}
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in (dart/trunk/PKGBUILD nginx-mod-pagespeed/trunk/PKGBUILD)

2018-01-30 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 17:51:55
  Author: eschwartz
Revision: 288327

remove legacy i686-specific sources

Modified:
  dart/trunk/PKGBUILD
  nginx-mod-pagespeed/trunk/PKGBUILD

+
 dart/trunk/PKGBUILD|1 -
 nginx-mod-pagespeed/trunk/PKGBUILD |2 --
 2 files changed, 3 deletions(-)

Modified: dart/trunk/PKGBUILD
===
--- dart/trunk/PKGBUILD 2018-01-30 17:50:07 UTC (rev 288326)
+++ dart/trunk/PKGBUILD 2018-01-30 17:51:55 UTC (rev 288327)
@@ -16,7 +16,6 @@
 makedepends=('setconf')
 options=('!strip')
 
source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
-source_i686+=("$pkgname-$pkgver-32.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip;)
 
sha512sums_x86_64=('ec050c51f2adae2fa6c57955b93f29580c07969965c33e4625bc94e44eb22244af616d82fc5fe85b8d13b8371b9874ff55baa400ab321883fbc83c1075fae219')
 
 prepare() {

Modified: nginx-mod-pagespeed/trunk/PKGBUILD
===
--- nginx-mod-pagespeed/trunk/PKGBUILD  2018-01-30 17:50:07 UTC (rev 288326)
+++ nginx-mod-pagespeed/trunk/PKGBUILD  2018-01-30 17:51:55 UTC (rev 288327)
@@ -21,13 +21,11 @@
https://nginx.org/download/nginx-$_nginxver.tar.gz{,.asc}

https://github.com/pagespeed/ngx_pagespeed/archive/v$_pagespeedver/$_modname-$_pagespeedver.tar.gz
 )
-source_i686=(pagespeed-$_psolver-i686.tar.gz::https://dl.google.com/dl/page-speed/psol/$_psolver-ia32.tar.gz)
 
source_x86_64=(pagespeed-$_psolver-x86_64.tar.gz::https://dl.google.com/dl/page-speed/psol/$_psolver-x64.tar.gz)
 validpgpkeys=(B0F4253373F8F6F510D42178520A9993A1C052F8) # Maxim Dounin 

 sha256sums=('305f379da1d5fb5aefa79e45c829852ca6983c7cd2a79328f8e084a324cf0416'
 'SKIP'
 '7bc56a2fd9c0ac435df6d0f1242b8e9311e0389dfb095e5fc901c122ca368aef')
-sha256sums_i686=('cf54611bf8713a0dcb13ff274b011cb2a00c738b53afacb39edc64df7687f7fc')
 
sha256sums_x86_64=('f5e53a07dff6b38075aa811f8a973b10db9f7c1d61464fd76b55b398f478e2c5')
 
 prepare() {


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

2018-01-30 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 17:50:07
  Author: eschwartz
Revision: 288326

Update to HTTPS, remove legacy i686-specific sources

Modified:
  freebasic/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 17:44:55 UTC (rev 288325)
+++ PKGBUILD2018-01-30 17:50:07 UTC (rev 288326)
@@ -8,20 +8,17 @@
 pkgrel=2
 pkgdesc="A free BASIC compiler"
 arch=('x86_64')
-url="http://www.freebasic.net/;
+url="https://www.freebasic.net/;
 license=('GPL2' 'LGPL')
 depends=('ncurses')
 makedepends=('libxpm' 'gpm' 'libffi' 'libxrandr' 'mesa')
 
source=("https://downloads.sourceforge.net/fbc/FreeBASIC-$pkgver-source.tar.xz;)
-source_i686=("http://downloads.sourceforge.net/fbc/FreeBASIC-${pkgver}-linux-x86.tar.xz;)
-source_x86_64=("http://downloads.sourceforge.net/fbc/FreeBASIC-${pkgver}-linux-x86_64.tar.xz;)
+source_x86_64=("https://downloads.sourceforge.net/fbc/FreeBASIC-${pkgver}-linux-x86_64.tar.xz;)
 md5sums=('a0b89405678c831af2d28e566758aeae')
-md5sums_i686=('50aec8fcfa577dc7a76cffc6dfe50476')
 md5sums_x86_64=('4bf93ad31b378df4897699a5a0744b11')
 
 prepare() {
   [[ "$CARCH" = "x86_64" ]] && _arch=x86_64
-  [[ "$CARCH" = "i686" ]] && _arch=x86
 
   mkdir -p bootstrap
   cd "${srcdir}/FreeBASIC-${pkgver}-linux-$_arch"


[arch-commits] Commit in nvidia-cg-toolkit/trunk (PKGBUILD)

2018-01-30 Thread Eli Schwartz via arch-commits
Date: Tuesday, January 30, 2018 @ 17:44:55
  Author: eschwartz
Revision: 288325

Update to HTTPS, fix unquoted srcdir/pkgdir, remove legacy i686-specific sources

Modified:
  nvidia-cg-toolkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 17:19:06 UTC (rev 288324)
+++ PKGBUILD2018-01-30 17:44:55 UTC (rev 288325)
@@ -8,23 +8,21 @@
 pkgrel=4
 pkgdesc="NVIDIA Cg libraries"
 arch=('x86_64')
-url="http://developer.nvidia.com/object/cg_toolkit.html;
+url="https://developer.nvidia.com/cg-toolkit;
 license=('custom')
 depends=('glibc' 'libgl')
-source_i686=(http://developer.download.nvidia.com/cg/Cg_${pkgver}/Cg-${pkgver}_${_date}_x86.tgz)
-source_x86_64=(http://developer.download.nvidia.com/cg/Cg_${pkgver}/Cg-${pkgver}_${_date}_x86_64.tgz)
-md5sums_i686=('9a9fc5108154808f3b10eafa54df1c74')
+source_x86_64=(https://developer.download.nvidia.com/cg/Cg_${pkgver}/Cg-${pkgver}_${_date}_x86_64.tgz)
 md5sums_x86_64=('88ba727cdbe0261fac465c4d84f44762')
 
 package() {
-  install -Dm755 ${srcdir}/usr/bin/cgc ${pkgdir}/usr/bin/cgc
-  install -dm755 ${pkgdir}/usr/include/Cg
-  install -m644 ${srcdir}/usr/include/Cg/* ${pkgdir}/usr/include/Cg
-  install -dm755 ${pkgdir}/usr/lib
-  [ "$CARCH" = "i686" ] && install -m644 ${srcdir}/usr/lib/* ${pkgdir}/usr/lib
-  [ "$CARCH" = "x86_64" ] && install -m644 ${srcdir}/usr/lib64/* 
${pkgdir}/usr/lib
-  install -Dm644 ${srcdir}/usr//local/Cg/docs/license.txt 
${pkgdir}/usr/share/licenses/nvidia-cg-toolkit/license.txt
-  cp -r ${srcdir}/usr/local/Cg ${pkgdir}/usr/share/
+  install -Dm755 "${srcdir}"/usr/bin/cgc "${pkgdir}"/usr/bin/cgc
+  install -dm755 "${pkgdir}"/usr/include/Cg
+  install -m644 "${srcdir}"/usr/include/Cg/* "${pkgdir}"/usr/include/Cg
+  install -dm755 "${pkgdir}"/usr/lib
+  [ "$CARCH" = "i686" ] && install -m644 "${srcdir}"/usr/lib/* 
"${pkgdir}"/usr/lib
+  [ "$CARCH" = "x86_64" ] && install -m644 "${srcdir}"/usr/lib64/* 
"${pkgdir}"/usr/lib
+  install -Dm644 "${srcdir}"/usr//local/Cg/docs/license.txt 
"${pkgdir}"/usr/share/licenses/nvidia-cg-toolkit/license.txt
+  cp -r "${srcdir}"/usr/local/Cg "${pkgdir}"/usr/share/
   find $pkgdir/usr/share/ -type d -exec chmod -R 755 '{}' ';'
   find $pkgdir/usr/share/ -type f -exec chmod -R 644 '{}' ';'
 }


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

2018-01-30 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, January 30, 2018 @ 17:19:06
  Author: bisson
Revision: 288324

archrelease: copy trunk to community-x86_64

Added:
  ncdu/repos/community-x86_64/PKGBUILD
(from rev 288323, ncdu/trunk/PKGBUILD)
Deleted:
  ncdu/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   57 +
 1 file changed, 29 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 17:18:25 UTC (rev 288323)
+++ PKGBUILD2018-01-30 17:19:06 UTC (rev 288324)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: lp76 
-# Contributor: Daenyth 
-# Maintainer: Gaetan Bisson 
-
-pkgname=ncdu
-pkgver=1.12
-pkgrel=1
-pkgdesc='Disk usage analyzer with an ncurses interface'
-url='https://dev.yorhel.nl/ncdu'
-license=('custom:MIT')
-depends=('ncurses')
-arch=('i686' 'x86_64')
-validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
-source=("http://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha1sums=('b79b1c44784f334dca74d89a49f49274f14cfeef' 'SKIP')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ncdu/repos/community-x86_64/PKGBUILD (from rev 288323, 
ncdu/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 17:19:06 UTC (rev 288324)
@@ -0,0 +1,29 @@
+# $Id$
+# Contributor: lp76 
+# Contributor: Daenyth 
+# Maintainer: Gaetan Bisson 
+
+pkgname=ncdu
+pkgver=1.13
+pkgrel=1
+pkgdesc='Disk usage analyzer with an ncurses interface'
+url='https://dev.yorhel.nl/ncdu'
+license=('custom:MIT')
+depends=('ncurses')
+arch=('x86_64')
+validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
+source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
+sha256sums=('f4d9285c38292c2de05e444d0ba271cbfe1a705eee37c2b23ea7c448ab37255a'
+'SKIP')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2018-01-30 Thread Gaëtan Bisson via arch-commits
Date: Tuesday, January 30, 2018 @ 17:18:25
  Author: bisson
Revision: 288323

upstream update

Modified:
  ncdu/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 15:33:22 UTC (rev 288322)
+++ PKGBUILD2018-01-30 17:18:25 UTC (rev 288323)
@@ -4,7 +4,7 @@
 # Maintainer: Gaetan Bisson 
 
 pkgname=ncdu
-pkgver=1.12
+pkgver=1.13
 pkgrel=1
 pkgdesc='Disk usage analyzer with an ncurses interface'
 url='https://dev.yorhel.nl/ncdu'
@@ -13,7 +13,7 @@
 arch=('x86_64')
 validpgpkeys=('74460D32B80810EBA9AFA2E962394C698C2739FA')
 source=("https://dev.yorhel.nl/download/${pkgname}-${pkgver}.tar.gz"{,.asc})
-sha256sums=('820e4e4747a2a2ec7a2e9f06d2f5a353516362c22496a10a9834f871b877499a'
+sha256sums=('f4d9285c38292c2de05e444d0ba271cbfe1a705eee37c2b23ea7c448ab37255a'
 'SKIP')
 
 build() {


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

2018-01-30 Thread Jonathan Steel via arch-commits
Date: Tuesday, January 30, 2018 @ 15:33:22
  Author: jsteel
Revision: 288322

archrelease: copy trunk to community-x86_64

Added:
  vagrant/repos/community-x86_64/PKGBUILD
(from rev 288321, vagrant/trunk/PKGBUILD)
Deleted:
  vagrant/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  143 +
 1 file changed, 69 insertions(+), 74 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 15:33:10 UTC (rev 288321)
+++ PKGBUILD2018-01-30 15:33:22 UTC (rev 288322)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: Ido Rosen 
-# Contributor: Brett Hoerner 
-# Contributor: Jochen Schalanda 
-# Contributor: Mathieu Clabaut 
-# Contributor: helios 
-# Contributor: George Ornbo 
-# Contributor: Niklas Heer 
-# Contributor: Steven Nance 
-
-pkgname=vagrant
-pkgver=2.0.1
-pkgrel=3
-pkgdesc="Build and distribute virtualized development environments"
-arch=('x86_64')
-url="https://vagrantup.com;
-license=('MIT')
-options=('!emptydirs')
-depends=('curl' 'libarchive' 'libssh2' 'libxml2' 'libxslt' 'rsync'
- 'ruby2.4' 'xz')
-makedepends=('git' 'go-pie')
-conflicts=('vagrant-substrate')
-replaces=('vagrant-substrate')
-source=($pkgname-$pkgver.tar.gz::https://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
-"git://github.com/mitchellh/vagrant-installers.git#commit=7b7fb86")
-md5sums=('c443ac9e1034d5748b81f01da548d587'
- 'SKIP')
-
-prepare() {
-  cd vagrant-installers/substrate/modules/vagrant_substrate
-  sed -i 's_"/usr/bin/ruby"_"/usr/bin/ruby-2.4"_' files/launcher/main.go
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  INSTALLERS_DIR="$srcdir"/vagrant-installers/substrate/modules
-
-  gem-2.4 build $pkgname.gemspec
-
-  cd "$INSTALLERS_DIR"/vagrant_substrate/files/launcher
-  go get github.com/mitchellh/osext
-  go build -o vagrant
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  INSTALLERS_DIR="$srcdir"/vagrant-installers/substrate/modules
-  EMBEDDED_DIR="$pkgdir"/opt/vagrant/embedded
-
-  install -d "$pkgdir"/usr/{bin,share/bash-completion/completions}
-
-  install -Dm644 "$INSTALLERS_DIR"/vagrant_substrate/templates/gemrc.erb \
-"$EMBEDDED_DIR"/etc/gemrc
-
-  cp -r "$INSTALLERS_DIR"/rubyencoder/files/rgloader "$EMBEDDED_DIR"
-
-  GEM_PATH="$EMBEDDED_DIR"/gems GEM_HOME="$GEM_PATH" \
-  GEMRC="$EMBEDDED_DIR"/etc/gemrc \
-gem-2.4 install $pkgname-$pkgver.gem --no-ri --no-rdoc
-
-  install -Dm755 "$INSTALLERS_DIR"/vagrant_substrate/files/launcher/vagrant \
-"$pkgdir"/opt/$pkgname/bin/$pkgname
-
-  ln -s /opt/$pkgname/bin/$pkgname "$pkgdir"/usr/bin/$pkgname
-
-  install -Dm644 contrib/bash/completion.sh \
-"$pkgdir"/usr/share/bash-completion/completions/$pkgname
-
-  install -Dm644 LICENSE \
-"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: vagrant/repos/community-x86_64/PKGBUILD (from rev 288321, 
vagrant/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 15:33:22 UTC (rev 288322)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Ido Rosen 
+# Contributor: Brett Hoerner 
+# Contributor: Jochen Schalanda 
+# Contributor: Mathieu Clabaut 
+# Contributor: helios 
+# Contributor: George Ornbo 
+# Contributor: Niklas Heer 
+# Contributor: Steven Nance 
+
+pkgname=vagrant
+pkgver=2.0.2
+pkgrel=1
+pkgdesc="Build and distribute virtualized development environments"
+arch=('x86_64')
+url="https://vagrantup.com;
+license=('MIT')
+options=('!emptydirs')
+depends=('curl' 'libarchive' 'libssh2' 'libxml2' 'libxslt' 'rsync'
+ 'ruby' 'xz')
+makedepends=('git' 'go-pie')
+conflicts=('vagrant-substrate')
+replaces=('vagrant-substrate')
+source=($pkgname-$pkgver.tar.gz::https://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
+"git://github.com/mitchellh/vagrant-installers.git#commit=7b7fb86")
+md5sums=('699f9c16c7417ce89c86cbeb92e6e2cf'
+ 'SKIP')
+
+build() {
+  cd $pkgname-$pkgver
+
+  INSTALLERS_DIR="$srcdir"/vagrant-installers/substrate/modules
+
+  gem build $pkgname.gemspec
+
+  cd "$INSTALLERS_DIR"/vagrant_substrate/files/launcher
+  go get github.com/mitchellh/osext
+  go build -o vagrant
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  INSTALLERS_DIR="$srcdir"/vagrant-installers/substrate/modules
+  EMBEDDED_DIR="$pkgdir"/opt/vagrant/embedded
+
+  install -d "$pkgdir"/usr/{bin,share/bash-completion/completions}
+
+  install -Dm644 "$INSTALLERS_DIR"/vagrant_substrate/templates/gemrc.erb \
+"$EMBEDDED_DIR"/etc/gemrc
+
+  cp 

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

2018-01-30 Thread Jonathan Steel via arch-commits
Date: Tuesday, January 30, 2018 @ 15:33:10
  Author: jsteel
Revision: 288321

upgpkg: vagrant 2.0.2-1

Modified:
  vagrant/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 15:10:11 UTC (rev 288320)
+++ PKGBUILD2018-01-30 15:33:10 UTC (rev 288321)
@@ -10,8 +10,8 @@
 # Contributor: Steven Nance 
 
 pkgname=vagrant
-pkgver=2.0.1
-pkgrel=3
+pkgver=2.0.2
+pkgrel=1
 pkgdesc="Build and distribute virtualized development environments"
 arch=('x86_64')
 url="https://vagrantup.com;
@@ -18,26 +18,21 @@
 license=('MIT')
 options=('!emptydirs')
 depends=('curl' 'libarchive' 'libssh2' 'libxml2' 'libxslt' 'rsync'
- 'ruby2.4' 'xz')
+ 'ruby' 'xz')
 makedepends=('git' 'go-pie')
 conflicts=('vagrant-substrate')
 replaces=('vagrant-substrate')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/mitchellh/$pkgname/archive/v$pkgver.tar.gz
 "git://github.com/mitchellh/vagrant-installers.git#commit=7b7fb86")
-md5sums=('c443ac9e1034d5748b81f01da548d587'
+md5sums=('699f9c16c7417ce89c86cbeb92e6e2cf'
  'SKIP')
 
-prepare() {
-  cd vagrant-installers/substrate/modules/vagrant_substrate
-  sed -i 's_"/usr/bin/ruby"_"/usr/bin/ruby-2.4"_' files/launcher/main.go
-}
-
 build() {
   cd $pkgname-$pkgver
 
   INSTALLERS_DIR="$srcdir"/vagrant-installers/substrate/modules
 
-  gem-2.4 build $pkgname.gemspec
+  gem build $pkgname.gemspec
 
   cd "$INSTALLERS_DIR"/vagrant_substrate/files/launcher
   go get github.com/mitchellh/osext
@@ -59,7 +54,7 @@
 
   GEM_PATH="$EMBEDDED_DIR"/gems GEM_HOME="$GEM_PATH" \
   GEMRC="$EMBEDDED_DIR"/etc/gemrc \
-gem-2.4 install $pkgname-$pkgver.gem --no-ri --no-rdoc
+gem install $pkgname-$pkgver.gem --no-ri --no-rdoc
 
   install -Dm755 "$INSTALLERS_DIR"/vagrant_substrate/files/launcher/vagrant \
 "$pkgdir"/opt/$pkgname/bin/$pkgname


[arch-commits] Commit in unrealircd/repos/community-x86_64 (11 files)

2018-01-30 Thread Sergej Pupykin via arch-commits
Date: Tuesday, January 30, 2018 @ 15:10:11
  Author: spupykin
Revision: 288320

archrelease: copy trunk to community-x86_64

Added:
  unrealircd/repos/community-x86_64/PKGBUILD
(from rev 288319, unrealircd/trunk/PKGBUILD)
  unrealircd/repos/community-x86_64/install.pl
(from rev 288319, unrealircd/trunk/install.pl)
  unrealircd/repos/community-x86_64/unrealircd.install
(from rev 288319, unrealircd/trunk/unrealircd.install)
  unrealircd/repos/community-x86_64/unrealircd.service
(from rev 288319, unrealircd/trunk/unrealircd.service)
  unrealircd/repos/community-x86_64/unrealircd.sysusers.d
(from rev 288319, unrealircd/trunk/unrealircd.sysusers.d)
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d
(from rev 288319, unrealircd/trunk/unrealircd.tmpfiles.d)
Deleted:
  unrealircd/repos/community-x86_64/PKGBUILD
  unrealircd/repos/community-x86_64/install.pl
  unrealircd/repos/community-x86_64/unrealircd.install
  unrealircd/repos/community-x86_64/unrealircd.service
  unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d

---+
 PKGBUILD  |  139 
 install.pl|   10 +--
 unrealircd.install|   20 +++---
 unrealircd.service|   24 
 unrealircd.sysusers.d |1 
 unrealircd.tmpfiles.d |6 +-
 6 files changed, 103 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 15:09:50 UTC (rev 288319)
+++ PKGBUILD2018-01-30 15:10:11 UTC (rev 288320)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Contributor: Zerial 
-
-pkgname=unrealircd
-pkgver=4.0.17
-pkgrel=1
-pkgdesc="Open Source IRC Server"
-arch=('x86_64')
-url="http://unrealircd.com;
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares' 'tre' 'pcre2')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf')
-install=unrealircd.install
-source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
-   unrealircd.service
-   unrealircd.tmpfiles.d
-   install.pl)
-sha256sums=('eadf7885d61d8ae0cf84b8aa8e0c5d0181d181d3123e7e008aa5a9ac910e99d9'
-'0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
-'2b2efb4b87b5b270e87fc0187ac1c559d41a41e6c81615182dc2bdd18bfcaccd'
-'43f07093ada8eb5c954f9e2e189610575906c690c0953fec041d4f2d31210d85')
-
-prepare() {
-  cd "$srcdir"/unrealircd-$pkgver
-  sed -i \
--e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
--e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
-Makefile.in
-}
-
-build() {
-  cd "$srcdir"/unrealircd-$pkgver
-  ./configure \
---with-pidfile=/run/unrealircd/ircd.pid \
---with-showlistmodes \
---enable-ssl=/usr \
---with-bindir=/usr/bin \
---with-datadir=/var/lib/unrealircd \
---with-confdir=/etc/unrealircd \
---with-modulesdir=/usr/lib/unrealircd \
---with-logdir=/var/log/unrealircd \
---with-cachedir=/var/cache/unrealircd \
---with-docdir=/usr/share/doc/unrealircd \
---with-tmpdir=/tmp \
---with-scriptdir=/usr \
---with-nick-history=2000 \
---with-sendq=300 \
---with-permissions=0644 \
---with-fd-setsize=1024 \
---enable-dynamic-linking
-  make
-}
-
-package() {
-  cd "$srcdir"/unrealircd-$pkgver
-
-  export pkgdir
-  make INSTALL="$srcdir"/install.pl install
-  mv "$pkgdir"/usr/unrealircd "$pkgdir"/etc/unrealircd/unrealircd
-  cp "$pkgdir"/etc/unrealircd/examples/example.conf 
"$pkgdir"/etc/unrealircd/unrealircd.conf
-  rm -rf "$pkgdir"/tmp
-
-  install -Dm0644 "$srcdir"/unrealircd.service 
"$pkgdir"/usr/lib/systemd/system/unrealircd.service
-  install -Dm0644 "$srcdir"/unrealircd.tmpfiles.d 
"$pkgdir"/usr/lib/tmpfiles.d/unrealircd.conf
-}

Copied: unrealircd/repos/community-x86_64/PKGBUILD (from rev 288319, 
unrealircd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 15:10:11 UTC (rev 288320)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Contributor: Zerial 
+
+pkgname=unrealircd
+pkgver=4.0.17
+pkgrel=2
+pkgdesc="Open Source IRC Server"
+arch=('x86_64')
+url="http://unrealircd.com;
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares' 'tre' 'pcre2')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf')
+install=unrealircd.install
+source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
+   unrealircd.service
+   unrealircd.tmpfiles.d
+   unrealircd.sysusers.d
+   install.pl)
+sha256sums=('eadf7885d61d8ae0cf84b8aa8e0c5d0181d181d3123e7e008aa5a9ac910e99d9'
+'0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
+'75360541bc3aec9c1241c75e0ce60214c65cb618ffe5ca77144f01651ef5ab5b'
+

[arch-commits] Commit in unrealircd/trunk (4 files)

2018-01-30 Thread Sergej Pupykin via arch-commits
Date: Tuesday, January 30, 2018 @ 15:09:50
  Author: spupykin
Revision: 288319

upgpkg: unrealircd 4.0.17-2

Added:
  unrealircd/trunk/unrealircd.sysusers.d
Modified:
  unrealircd/trunk/PKGBUILD
  unrealircd/trunk/unrealircd.install
  unrealircd/trunk/unrealircd.tmpfiles.d

---+
 PKGBUILD  |7 +--
 unrealircd.install|2 --
 unrealircd.sysusers.d |1 +
 unrealircd.tmpfiles.d |4 
 4 files changed, 10 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 14:47:49 UTC (rev 288318)
+++ PKGBUILD2018-01-30 15:09:50 UTC (rev 288319)
@@ -4,7 +4,7 @@
 
 pkgname=unrealircd
 pkgver=4.0.17
-pkgrel=1
+pkgrel=2
 pkgdesc="Open Source IRC Server"
 arch=('x86_64')
 url="http://unrealircd.com;
@@ -17,10 +17,12 @@
 source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
unrealircd.service
unrealircd.tmpfiles.d
+   unrealircd.sysusers.d
install.pl)
 sha256sums=('eadf7885d61d8ae0cf84b8aa8e0c5d0181d181d3123e7e008aa5a9ac910e99d9'
 '0a6d3c269ba5379f967b2ec035ad4c6226d42ce22ffaaf8c3e5b37ba8ee02ddd'
-'2b2efb4b87b5b270e87fc0187ac1c559d41a41e6c81615182dc2bdd18bfcaccd'
+'75360541bc3aec9c1241c75e0ce60214c65cb618ffe5ca77144f01651ef5ab5b'
+'9e595176e63b301476982b1456d6ed065c479ff913b6743417ab8a9efdda0e3a'
 '43f07093ada8eb5c954f9e2e189610575906c690c0953fec041d4f2d31210d85')
 
 prepare() {
@@ -65,4 +67,5 @@
 
   install -Dm0644 "$srcdir"/unrealircd.service 
"$pkgdir"/usr/lib/systemd/system/unrealircd.service
   install -Dm0644 "$srcdir"/unrealircd.tmpfiles.d 
"$pkgdir"/usr/lib/tmpfiles.d/unrealircd.conf
+  install -Dm0644 "$srcdir"/unrealircd.sysusers.d 
"$pkgdir"/usr/lib/sysusers.d/unrealircd.conf
 }

Modified: unrealircd.install
===
--- unrealircd.install  2018-01-30 14:47:49 UTC (rev 288318)
+++ unrealircd.install  2018-01-30 15:09:50 UTC (rev 288319)
@@ -1,6 +1,4 @@
 post_install() {
-  getent passwd ircd >/dev/null || useradd -r ircd -d /var/empty
-  chown -R ircd {etc,var/{cache,log,lib}}/unrealircd
   echo "SSL is enabled by default, so you need to create pem files"
   echo "unrealircd.conf needs adjustments"
   echo "See also: https://wiki.archlinux.org/index.php/UnrealIRCd;

Added: unrealircd.sysusers.d
===
--- unrealircd.sysusers.d   (rev 0)
+++ unrealircd.sysusers.d   2018-01-30 15:09:50 UTC (rev 288319)
@@ -0,0 +1 @@
+u ircd - "IRC daemon" /var/empty

Modified: unrealircd.tmpfiles.d
===
--- unrealircd.tmpfiles.d   2018-01-30 14:47:49 UTC (rev 288318)
+++ unrealircd.tmpfiles.d   2018-01-30 15:09:50 UTC (rev 288319)
@@ -1 +1,5 @@
 d /run/unrealircd 0755 ircd root -
+Z /etc/unrealircd - ircd ircd
+Z /var/cache/unrealircd - ircd ircd
+Z /var/log/unrealircd - ircd ircd
+Z /var/lib/unrealircd - ircd ircd


[arch-commits] Commit in firefox-developer-edition/repos/community-x86_64 (8 files)

2018-01-30 Thread Andrew Crerar via arch-commits
Date: Tuesday, January 30, 2018 @ 14:19:32
  Author: andrewsc
Revision: 288312

archrelease: copy trunk to community-x86_64

Added:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
(from rev 288311, firefox-developer-edition/trunk/PKGBUILD)
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
(from rev 288311, 
firefox-developer-edition/trunk/firefox-developer-edition.desktop)
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
(from rev 288311, firefox-developer-edition/trunk/firefox-install-dir.patch)
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg
(from rev 288311, firefox-developer-edition/trunk/firefox-symbolic.svg)
Deleted:
  firefox-developer-edition/repos/community-x86_64/PKGBUILD
  
firefox-developer-edition/repos/community-x86_64/firefox-developer-edition.desktop
  firefox-developer-edition/repos/community-x86_64/firefox-install-dir.patch
  firefox-developer-edition/repos/community-x86_64/firefox-symbolic.svg

---+
 PKGBUILD  |  356 ++--
 firefox-developer-edition.desktop |  622 ++--
 firefox-install-dir.patch |   84 ++--
 firefox-symbolic.svg  |   60 +--
 4 files changed, 561 insertions(+), 561 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 14:18:53 UTC (rev 288311)
+++ PKGBUILD2018-01-30 14:19:32 UTC (rev 288312)
@@ -1,178 +0,0 @@
-# Maintainer: Andrew Crerar 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=firefox-developer-edition
-pkgver=59.0b5
-pkgrel=1
-pkgdesc="Developer Edition of the popular Firefox web browser"
-arch=('x86_64')
-license=('MPL' 'GPL' 'LGPL')
-url="https://www.mozilla.org/firefox/channel/#developer;
-depends=('gtk3' 'gtk2' 'mozilla-common' 'libxt' 'startup-notification' 
'mime-types'
- 'dbus-glib' 'ffmpeg' 'nss' 'hunspell' 'sqlite' 'ttf-font' 'libpulse')
-makedepends=('unzip' 'zip' 'diffutils' 'python2' 'yasm' 'mesa' 'imake' 'gconf' 
'inetutils'
- 'xorg-server-xvfb' 'autoconf2.13' 'rust' 'mercurial' 'clang' 
'llvm' 'jack')
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'pulseaudio: Audio support'
-'speech-dispatcher: Text-to-Speech')
-replaces=('firefox-developer')
-options=(!emptydirs !makeflags !strip)
-_repo=https://hg.mozilla.org/mozilla-unified
-source=("hg+$_repo#tag=DEVEDITION_${pkgver//./_}_RELEASE"
-"$pkgname".desktop
-firefox-symbolic.svg
-firefox-install-dir.patch)
-sha512sums=('SKIP'
-
'12617f60e01420350b8d9c7c1c3a2a5ba0f2c46df31b0e23e51093ebd68019ced7d193a01d964421b91e1b444ce4ab499523f21cd3a39a2ffac8883d096ac195'
-
'84e741b6a4c7675c846c16a0e0280d00e7be5477b07b693ccddac597987e8979a35d07a9ac8a3a28338b458ebdf41754ceb2119b8e41d2ec41f95b551232c64c'
-
'8fdf6a65e78406251075168c8310bb12c9b8419b3e51f59b1aa6244ef48ef1d201aae8bfdd5faa1da79242d9967fce959cbeffa54991ff39691f16168111b248')
-
-# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact foutre...@archlinux.org for
-# more information.
-_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
-
-# Mozilla API keys (see https://location.services.mozilla.com/api)
-# Note: These are for Arch Linux use ONLY. For your own distribution, please
-# get your own set of keys. Feel free to contact hef...@archlinux.org for
-# more information.
-_mozilla_api_key=16674381-f021-49de-8622-3021c5942aff
-
-prepare() {
-  mkdir path
-  ln -s /usr/bin/python2 path/python
-
-  cd mozilla-unified
-  patch -Np1 -i ../firefox-install-dir.patch
-
-  echo -n "$_google_api_key" > google-api-key
-  echo -n "$_mozilla_api_key" > mozilla-api-key
-
-  cat > .mozconfig << END
-ac_add_options --enable-application=browser
-
-ac_add_options --prefix=/usr
-ac_add_options --enable-release
-ac_add_options --enable-gold
-ac_add_options --enable-pie
-ac_add_options --enable-optimize="-O2"
-ac_add_options --enable-rust-simd
-
-# Branding
-ac_add_options --with-branding=browser/branding/aurora
-ac_add_options --enable-update-channel=aurora
-ac_add_options --with-distribution-id=org.archlinux
-export MOZILLA_OFFICIAL=1
-export MOZ_TELEMETRY_REPORTING=1
-export MOZ_ADDON_SIGNING=1
-export MOZ_REQUIRE_SIGNING=0
-ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1"
-
-# Keys
-ac_add_options --with-google-api-keyfile=${PWD@Q}/google-api-key
-ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
-
-# System libraries
-ac_add_options --with-system-zlib
-ac_add_options --with-system-bz2
-ac_add_options --enable-system-hunspell
-ac_add_options 

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

2018-01-30 Thread Andrew Crerar via arch-commits
Date: Tuesday, January 30, 2018 @ 14:18:53
  Author: andrewsc
Revision: 288311

upgpkg: firefox-developer-edition 59.0b5-2

Remove intl.locale.matchOS in favor of intl.locale.requested

Modified:
  firefox-developer-edition/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 14:00:15 UTC (rev 288310)
+++ PKGBUILD2018-01-30 14:18:53 UTC (rev 288311)
@@ -3,7 +3,7 @@
 
 pkgname=firefox-developer-edition
 pkgver=59.0b5
-pkgrel=1
+pkgrel=2
 pkgdesc="Developer Edition of the popular Firefox web browser"
 arch=('x86_64')
 license=('MPL' 'GPL' 'LGPL')
@@ -116,7 +116,7 @@
   _vendorjs="$pkgdir/usr/lib/$pkgname/browser/defaults/preferences/vendor.js"
   install -Dm644 /dev/stdin "$_vendorjs" << END
 // Use LANG environment variable to choose locale
-pref("intl.locale.matchOS", true);
+pref("intl.locale.requested", "");
 
 // Disable default browser checking.
 pref("browser.shell.checkDefaultBrowser", false);


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

2018-01-30 Thread Sergej Pupykin via arch-commits
Date: Tuesday, January 30, 2018 @ 14:00:15
  Author: spupykin
Revision: 288310

fix source urls

Modified:
  cadaver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 13:50:17 UTC (rev 288309)
+++ PKGBUILD2018-01-30 14:00:15 UTC (rev 288310)
@@ -7,15 +7,15 @@
 pkgrel=9
 pkgdesc="Command-line WebDAV client for Unix"
 arch=('x86_64')
-url="http://www.webdav.org/cadaver;
+#url="http://www.webdav.org/cadaver;
+url="https://packages.debian.org/jessie/cadaver;
 license=('GPL')
 depends=('neon')
 validpgpkeys=('6D0C74985535060B23300BFE47F6969D0E44CF0C')
-source=(http://www.webdav.org/cadaver/cadaver-$pkgver.tar.gz{,.asc}
+source=(http://http.debian.net/debian/pool/main/c/cadaver/cadaver_$pkgver.orig.tar.gz
 disable-sslv2.patch)
-md5sums=('502ecd601e467f8b16056d2acca39a6f'
- 'SKIP'
- 'cbcf9db91efe751c523d6835d2abee43')
+sha256sums=('fd4ce68a3230ba459a92bcb747fc6afa91e46d803c1d5ffe964b661793c13fca'
+'b86f04a16dfd2dc1a925a702301edd72147496ea03d8b583023cf90e162354e6')
 
 prepare() {
   cd "$srcdir"/cadaver-$pkgver


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

2018-01-30 Thread David Runge via arch-commits
Date: Tuesday, January 30, 2018 @ 13:50:17
  Author: dvzrv
Revision: 288309

archrelease: copy trunk to community-testing-x86_64

Added:
  faust/repos/community-testing-x86_64/PKGBUILD
(from rev 288308, faust/trunk/PKGBUILD)
  faust/repos/community-testing-x86_64/python2-fix.patch
(from rev 288308, faust/trunk/python2-fix.patch)
Deleted:
  faust/repos/community-testing-x86_64/PKGBUILD
  faust/repos/community-testing-x86_64/python2-fix.patch

---+
 PKGBUILD  |  157 +---
 python2-fix.patch |   40 ++---
 2 files changed, 98 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 13:50:09 UTC (rev 288308)
+++ PKGBUILD2018-01-30 13:50:17 UTC (rev 288309)
@@ -1,79 +0,0 @@
-# Maintainer: David Runge 
-# Contributor: Albert Graef 
-# Contributor: Bernardo Barros 
-# Contributor: bjoern lindig (bjoern _dot_ lindig _at_ google.com)
-
-pkgname=faust
-pkgver=2.5.17
-pkgrel=1
-pkgdesc="A functional programming language for realtime audio signal 
processing."
-arch=('x86_64')
-url="https://faust.grame.fr/;
-license=('GPL2')
-depends=('bash' 'llvm-libs' 'libsndfile' 'libmicrohttpd' 'python2' 'ruby')
-makedepends=('llvm' 'xxd')
-optdepends=('clang: needed for sound2reader'
-'java-runtime=8: needed for faust2android')
-provides=('faust')
-conflicts=('faust-git')
-options=('staticlibs')
-source=("https://github.com/grame-cncm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;
-'python2-fix.patch')
-sha512sums=('84d7d8d9f6e7e351525870b4c2ba96a013d81e920ae4c2a514bb196c5f2207699c4a615fd19945e6564ad09a062787c03cb95ad75b9b3065012c5e2e8812555a'
-
'aefee8c8bfe1115f8b2a576e6021bd0da3eeced9403878dc124fe7fbcb819d3910f1f119662ae09c52e60dff6ebfc76f0f63e07df3705e0849149fa540104482')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # fix scripts requiring python2
-  patch -Np1 < "${srcdir}/python2-fix.patch"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  make PREFIX=/usr world
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make install PREFIX=/usr DESTDIR="$pkgdir"
-
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm644 documentation/{,misc/}*.pdf
-
-  # examples
-  install -vd "${pkgdir}/usr/share/${pkgname}/examples"
-  cp -vR "examples/"* "${pkgdir}/usr/share/${pkgname}/examples/"
-
-  cd syntax-highlighting
-  # atom
-  install -vDm644 "atom/language-${pkgname}/package.json" \
-"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/package.json"
-  install -vDm644 "atom/language-${pkgname}/grammars/${pkgname}.cson" \
-
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/grammars/${pkgname}.cson"
-  install -vDm644 "atom/language-${pkgname}/settings/language-${pkgname}.cson" 
\
-
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/settings/language-${pkgname}.cson"
-  install -t 
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/snippets/" \
--vDm644 "atom/language-${pkgname}/snippets/"*
-  install -vDm644 "atom/language-${pkgname}/process-palette.json.linux" \
-"${pkgdir}/usr/share/doc/${pkgname}/process-palette.json"
-  # kate
-  install -vDm644 "${pkgname}.xml" \
-"${pkgdir}/usr/share/apps/katepart/syntax/${pkgname}.xml"
-  # gedit
-  install -vDm644 "${pkgname}.lang" \
-"${pkgdir}/usr/share/gtksourceview-2.0/language-specs/${pkgname}.lang"
-  install -vDm644 "${pkgname}.lang" \
-"${pkgdir}/usr/share/gtksourceview-3.0/language-specs/${pkgname}.lang"
-  # highlight
-  install -vDm644 dsp.lang "$pkgdir/usr/share/highlight/langDefs/dsp.lang"
-  # nano
-  install -vDm644 "${pkgname}.nanorc" 
"$pkgdir/usr/share/nano/${pkgname}.nanorc"
-  # vim
-  install -vDm644 "${pkgname}.vim" \
-"${pkgdir}/usr/share/vim/vimfiles/syntax/${pkgname}.vim"
-  # emacs
-  install -vDm644 "${pkgname}-mode.el" \
-"${pkgdir}/usr/share/emacs/site-lisp/${pkgname}-mode.el"
-}
-

Copied: faust/repos/community-testing-x86_64/PKGBUILD (from rev 288308, 
faust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 13:50:17 UTC (rev 288309)
@@ -0,0 +1,78 @@
+# Maintainer: David Runge 
+# Contributor: Albert Graef 
+# Contributor: Bernardo Barros 
+# Contributor: bjoern lindig (bjoern _dot_ lindig _at_ google.com)
+
+pkgname=faust
+pkgver=2.5.17
+pkgrel=2
+pkgdesc="A functional programming language for realtime audio signal 
processing."
+arch=('x86_64')
+url="https://faust.grame.fr/;
+license=('GPL2')
+depends=('bash' 'llvm-libs' 'libsndfile' 'libmicrohttpd' 'python2' 'ruby')
+makedepends=('llvm' 'xxd')
+optdepends=('clang: needed for sound2reader'
+'java-runtime=8: needed for faust2android')
+provides=('faust')
+options=('staticlibs')

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

2018-01-30 Thread David Runge via arch-commits
Date: Tuesday, January 30, 2018 @ 13:50:09
  Author: dvzrv
Revision: 288308

upgpkg: faust 2.5.17-2

Removing useless conflicts.

Modified:
  faust/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 13:47:01 UTC (rev 288307)
+++ PKGBUILD2018-01-30 13:50:09 UTC (rev 288308)
@@ -5,7 +5,7 @@
 
 pkgname=faust
 pkgver=2.5.17
-pkgrel=1
+pkgrel=2
 pkgdesc="A functional programming language for realtime audio signal 
processing."
 arch=('x86_64')
 url="https://faust.grame.fr/;
@@ -15,7 +15,6 @@
 optdepends=('clang: needed for sound2reader'
 'java-runtime=8: needed for faust2android')
 provides=('faust')
-conflicts=('faust-git')
 options=('staticlibs')
 
source=("https://github.com/grame-cncm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;
 'python2-fix.patch')


[arch-commits] Commit in elasticsearch/repos/community-any (16 files)

2018-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, January 30, 2018 @ 13:47:01
  Author: mtorromeo
Revision: 288307

archrelease: copy trunk to community-any

Added:
  elasticsearch/repos/community-any/PKGBUILD
(from rev 288306, elasticsearch/trunk/PKGBUILD)
  elasticsearch/repos/community-any/elasticsearch-env
(from rev 288306, elasticsearch/trunk/elasticsearch-env)
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
(from rev 288306, elasticsearch/trunk/elasticsearch-sysctl.conf)
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
(from rev 288306, elasticsearch/trunk/elasticsearch-tmpfile.conf)
  elasticsearch/repos/community-any/elasticsearch-user.conf
(from rev 288306, elasticsearch/trunk/elasticsearch-user.conf)
  elasticsearch/repos/community-any/elasticsearch.default
(from rev 288306, elasticsearch/trunk/elasticsearch.default)
  elasticsearch/repos/community-any/elasticsearch.service
(from rev 288306, elasticsearch/trunk/elasticsearch.service)
  elasticsearch/repos/community-any/elasticsearch@.service
(from rev 288306, elasticsearch/trunk/elasticsearch@.service)
Deleted:
  elasticsearch/repos/community-any/PKGBUILD
  elasticsearch/repos/community-any/elasticsearch-env
  elasticsearch/repos/community-any/elasticsearch-sysctl.conf
  elasticsearch/repos/community-any/elasticsearch-tmpfile.conf
  elasticsearch/repos/community-any/elasticsearch-user.conf
  elasticsearch/repos/community-any/elasticsearch.default
  elasticsearch/repos/community-any/elasticsearch.service
  elasticsearch/repos/community-any/elasticsearch@.service

+
 PKGBUILD   |  152 +--
 elasticsearch-env  |   90 -
 elasticsearch-sysctl.conf  |2 
 elasticsearch-tmpfile.conf |   12 +--
 elasticsearch-user.conf|2 
 elasticsearch.default  |   26 +++
 elasticsearch.service  |   66 +-
 elasticsearch@.service |   66 +-
 8 files changed, 208 insertions(+), 208 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 13:46:34 UTC (rev 288306)
+++ PKGBUILD2018-01-30 13:47:01 UTC (rev 288307)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Marcello "mererghost" Rocha 
-# Refactored by Blaž "Speed" Hrastnik 
-
-pkgname=elasticsearch
-pkgver=6.1.1
-pkgrel=1
-pkgdesc="Distributed RESTful search engine built on top of Lucene"
-arch=('any')
-url="https://www.elastic.co/products/elasticsearch;
-license=('APACHE')
-depends=('java-runtime-headless=8' 'systemd')
-source=(
-  "https://artifacts.elastic.co/downloads/$pkgname/$pkgname-$pkgver.tar.gz;
-  elasticsearch-env
-  elasticsearch.service
-  elasticsearch@.service
-  elasticsearch-sysctl.conf
-  elasticsearch-user.conf
-  elasticsearch-tmpfile.conf
-  elasticsearch.default
-)
-sha256sums=('0cadc90c2ab1bd941e3965eef96fbc2c08b12b832ae81f5882e81505333b74b6'
-'ffb354d8ec3752daa52c1bea49445491c3b811a5327dd8510b7c8e9499adefd1'
-'d3e92ff8cf6058965b1407537c3e618bff67f8012a8e3125721d22a72be1523b'
-'a38cf624ed91e2dcf36ed65806bbcf5ae91809a2a84a700ec52d1eb04ef0d5bf'
-'b3feb1e9c7e7ce6b33cea6c727728ed700332aae942ca475c3bcc1d56b9f113c'
-'815f6a39db6f54bb40750c382ffbdc298d2c4c187ee8ea7e2f855923e2ff354b'
-'3173e3efa429507e6329f518699a072dfd442d9b5da7c62452a55f82334dd2b5'
-'bb74e5fb8bc28f2125e015395ab05bea117b72bfc6dadbca827694b362ee0bf8')
-
-backup=('etc/elasticsearch/elasticsearch.yml'
-'etc/elasticsearch/log4j2.properties'
-'etc/elasticsearch/jvm.options'
-'etc/default/elasticsearch')
-
-prepare() {
-  cd "$srcdir"/$pkgname-$pkgver
-
-  sed -r 's;source .*/elasticsearch-env;source 
/usr/share/elasticsearch/elasticsearch-env;' \
-  -i bin/elasticsearch{,-keystore,-plugin,-translog}
-}
-
-package() {
-  cd "$pkgdir"
-  install -dm750 etc/elasticsearch/scripts
-  install -dm755 usr/share/elasticsearch
-  install -dm755 var/lib/elasticsearch
-  install -dm755 var/log/elasticsearch
-
-  install -Dm644 "$srcdir"/elasticsearch-env 
usr/share/elasticsearch/elasticsearch-env
-  install -Dm644 "$srcdir"/elasticsearch.service 
usr/lib/systemd/system/elasticsearch.service
-  install -Dm644 "$srcdir"/elasticsearch@.service 
usr/lib/systemd/system/elasticsearch@.service
-  install -Dm644 "$srcdir"/elasticsearch-user.conf 
usr/lib/sysusers.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch-tmpfile.conf 
usr/lib/tmpfiles.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch-sysctl.conf 
usr/lib/sysctl.d/elasticsearch.conf
-  install -Dm644 "$srcdir"/elasticsearch.default etc/default/elasticsearch
-
-  cd "$srcdir"/$pkgname-$pkgver
-  cp -R lib modules plugins "$pkgdir"/usr/share/elasticsearch/
-
-   cd config
-  

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

2018-01-30 Thread Massimiliano Torromeo via arch-commits
Date: Tuesday, January 30, 2018 @ 13:46:34
  Author: mtorromeo
Revision: 288306

upgpkg: elasticsearch 6.1.2-1

Modified:
  elasticsearch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 13:34:55 UTC (rev 288305)
+++ PKGBUILD2018-01-30 13:46:34 UTC (rev 288306)
@@ -4,7 +4,7 @@
 # Refactored by Blaž "Speed" Hrastnik 
 
 pkgname=elasticsearch
-pkgver=6.1.1
+pkgver=6.1.2
 pkgrel=1
 pkgdesc="Distributed RESTful search engine built on top of Lucene"
 arch=('any')
@@ -21,7 +21,7 @@
   elasticsearch-tmpfile.conf
   elasticsearch.default
 )
-sha256sums=('0cadc90c2ab1bd941e3965eef96fbc2c08b12b832ae81f5882e81505333b74b6'
+sha256sums=('9c0eae0bdab78c59dac0ba3a9c054e6785dc0f5ce4666e284f42010a326abc0f'
 'ffb354d8ec3752daa52c1bea49445491c3b811a5327dd8510b7c8e9499adefd1'
 'd3e92ff8cf6058965b1407537c3e618bff67f8012a8e3125721d22a72be1523b'
 'a38cf624ed91e2dcf36ed65806bbcf5ae91809a2a84a700ec52d1eb04ef0d5bf'


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

2018-01-30 Thread David Runge via arch-commits
Date: Tuesday, January 30, 2018 @ 13:34:55
  Author: dvzrv
Revision: 288305

archrelease: copy trunk to community-testing-x86_64

Added:
  faust/repos/community-testing-x86_64/
  faust/repos/community-testing-x86_64/PKGBUILD
(from rev 288304, faust/trunk/PKGBUILD)
  faust/repos/community-testing-x86_64/python2-fix.patch
(from rev 288304, faust/trunk/python2-fix.patch)

---+
 PKGBUILD  |   79 
 python2-fix.patch |   20 +
 2 files changed, 99 insertions(+)

Copied: faust/repos/community-testing-x86_64/PKGBUILD (from rev 288304, 
faust/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-01-30 13:34:55 UTC (rev 288305)
@@ -0,0 +1,79 @@
+# Maintainer: David Runge 
+# Contributor: Albert Graef 
+# Contributor: Bernardo Barros 
+# Contributor: bjoern lindig (bjoern _dot_ lindig _at_ google.com)
+
+pkgname=faust
+pkgver=2.5.17
+pkgrel=1
+pkgdesc="A functional programming language for realtime audio signal 
processing."
+arch=('x86_64')
+url="https://faust.grame.fr/;
+license=('GPL2')
+depends=('bash' 'llvm-libs' 'libsndfile' 'libmicrohttpd' 'python2' 'ruby')
+makedepends=('llvm' 'xxd')
+optdepends=('clang: needed for sound2reader'
+'java-runtime=8: needed for faust2android')
+provides=('faust')
+conflicts=('faust-git')
+options=('staticlibs')
+source=("https://github.com/grame-cncm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'python2-fix.patch')
+sha512sums=('84d7d8d9f6e7e351525870b4c2ba96a013d81e920ae4c2a514bb196c5f2207699c4a615fd19945e6564ad09a062787c03cb95ad75b9b3065012c5e2e8812555a'
+
'aefee8c8bfe1115f8b2a576e6021bd0da3eeced9403878dc124fe7fbcb819d3910f1f119662ae09c52e60dff6ebfc76f0f63e07df3705e0849149fa540104482')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix scripts requiring python2
+  patch -Np1 < "${srcdir}/python2-fix.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr world
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install PREFIX=/usr DESTDIR="$pkgdir"
+
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 documentation/{,misc/}*.pdf
+
+  # examples
+  install -vd "${pkgdir}/usr/share/${pkgname}/examples"
+  cp -vR "examples/"* "${pkgdir}/usr/share/${pkgname}/examples/"
+
+  cd syntax-highlighting
+  # atom
+  install -vDm644 "atom/language-${pkgname}/package.json" \
+"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/package.json"
+  install -vDm644 "atom/language-${pkgname}/grammars/${pkgname}.cson" \
+
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/grammars/${pkgname}.cson"
+  install -vDm644 "atom/language-${pkgname}/settings/language-${pkgname}.cson" 
\
+
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/settings/language-${pkgname}.cson"
+  install -t 
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/snippets/" \
+-vDm644 "atom/language-${pkgname}/snippets/"*
+  install -vDm644 "atom/language-${pkgname}/process-palette.json.linux" \
+"${pkgdir}/usr/share/doc/${pkgname}/process-palette.json"
+  # kate
+  install -vDm644 "${pkgname}.xml" \
+"${pkgdir}/usr/share/apps/katepart/syntax/${pkgname}.xml"
+  # gedit
+  install -vDm644 "${pkgname}.lang" \
+"${pkgdir}/usr/share/gtksourceview-2.0/language-specs/${pkgname}.lang"
+  install -vDm644 "${pkgname}.lang" \
+"${pkgdir}/usr/share/gtksourceview-3.0/language-specs/${pkgname}.lang"
+  # highlight
+  install -vDm644 dsp.lang "$pkgdir/usr/share/highlight/langDefs/dsp.lang"
+  # nano
+  install -vDm644 "${pkgname}.nanorc" 
"$pkgdir/usr/share/nano/${pkgname}.nanorc"
+  # vim
+  install -vDm644 "${pkgname}.vim" \
+"${pkgdir}/usr/share/vim/vimfiles/syntax/${pkgname}.vim"
+  # emacs
+  install -vDm644 "${pkgname}-mode.el" \
+"${pkgdir}/usr/share/emacs/site-lisp/${pkgname}-mode.el"
+}
+

Copied: faust/repos/community-testing-x86_64/python2-fix.patch (from rev 
288304, faust/trunk/python2-fix.patch)
===
--- community-testing-x86_64/python2-fix.patch  (rev 0)
+++ community-testing-x86_64/python2-fix.patch  2018-01-30 13:34:55 UTC (rev 
288305)
@@ -0,0 +1,20 @@
+diff --git a/tools/faust2appls/faust2md b/tools/faust2appls/faust2md
+index 2e460fcb9..5831a86a9 100755
+--- a/tools/faust2appls/faust2md
 b/tools/faust2appls/faust2md
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ 
+ #-- faust2md ---
+ # Usage: `faust2md [-t 4] [-c] [-f] foo.dsp > foo.md`
+diff --git a/tools/faust2appls/faust2atomsnippets 
b/tools/faust2appls/faust2atomsnippets
+index 183436022..989618a30 100755
+--- a/tools/faust2appls/faust2atomsnippets
 

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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 13:33:00
  Author: arojas
Revision: 288304

archrelease: copy trunk to community-x86_64

Added:
  plantri/repos/community-x86_64/LICENSE
(from rev 288303, plantri/trunk/LICENSE)
  plantri/repos/community-x86_64/PKGBUILD
(from rev 288303, plantri/trunk/PKGBUILD)
Deleted:
  plantri/repos/community-x86_64/LICENSE
  plantri/repos/community-x86_64/PKGBUILD

--+
 LICENSE  |4 ++--
 PKGBUILD |   60 ++--
 2 files changed, 32 insertions(+), 32 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2018-01-30 13:32:15 UTC (rev 288303)
+++ LICENSE 2018-01-30 13:33:00 UTC (rev 288304)
@@ -1,2 +0,0 @@
-The programs are written in C and are free for all purposes other than sale 
for profit. However, they remain subject to our copyright and are not 
-"public domain".

Copied: plantri/repos/community-x86_64/LICENSE (from rev 288303, 
plantri/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2018-01-30 13:33:00 UTC (rev 288304)
@@ -0,0 +1,2 @@
+The programs are written in C and are free for all purposes other than sale 
for profit. However, they remain subject to our copyright and are not 
+"public domain".

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 13:32:15 UTC (rev 288303)
+++ PKGBUILD2018-01-30 13:33:00 UTC (rev 288304)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=plantri
-pkgver=4.5
-pkgrel=1
-pkgdesc="A program for generation of certain types of planar graph"
-arch=('i686' 'x86_64')
-url="http://cs.anu.edu.au/~bdm/plantri/;
-license=('custom')
-depends=('glibc')
-source=("http://cs.anu.edu.au/~bdm/plantri/plantri45.tar.gz; 'LICENSE')
-md5sums=('1c95b421f8005309fb211e44e482ddea'
- 'fea1c032371053fa22f277075ce94b67')
-
-build() {
-  cd plantri45
-  make
-}
-
-package() {
-  cd plantri45
-
-  mkdir -p "$pkgdir"/usr/bin
-  cp plantri fullgen "$pkgdir"/usr/bin/
-
-  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
-  cp "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname
-}
-

Copied: plantri/repos/community-x86_64/PKGBUILD (from rev 288303, 
plantri/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 13:33:00 UTC (rev 288304)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=plantri
+pkgver=5.0
+pkgrel=1
+pkgdesc="A program for generation of certain types of planar graph"
+arch=(x86_64)
+url="http://cs.anu.edu.au/~bdm/plantri/;
+license=(custom)
+depends=(glibc)
+source=("http://cs.anu.edu.au/~bdm/plantri/plantri${pkgver/./}.tar.gz; 
'LICENSE')
+sha256sums=('39a2fd2269b1fc6936aa08e45ccbc5c10508b40545a693a8358cdba2e33d42a3'
+'83a2186806f5f535ebc2ba0381830bc1528f38c8484bf9d7c1977011c25a424a')
+
+build() {
+  cd plantri${pkgver/./}
+  make
+}
+
+package() {
+  cd plantri${pkgver/./}
+
+  mkdir -p "$pkgdir"/usr/bin
+  cp plantri fullgen "$pkgdir"/usr/bin/
+
+  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
+  cp "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname
+}
+


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 13:32:15
  Author: arojas
Revision: 288303

Update to 5.0

Modified:
  plantri/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 13:22:57 UTC (rev 288302)
+++ PKGBUILD2018-01-30 13:32:15 UTC (rev 288303)
@@ -2,24 +2,24 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=plantri
-pkgver=4.5
+pkgver=5.0
 pkgrel=1
 pkgdesc="A program for generation of certain types of planar graph"
-arch=('x86_64')
+arch=(x86_64)
 url="http://cs.anu.edu.au/~bdm/plantri/;
-license=('custom')
-depends=('glibc')
-source=("http://cs.anu.edu.au/~bdm/plantri/plantri45.tar.gz; 'LICENSE')
-md5sums=('1c95b421f8005309fb211e44e482ddea'
- 'fea1c032371053fa22f277075ce94b67')
+license=(custom)
+depends=(glibc)
+source=("http://cs.anu.edu.au/~bdm/plantri/plantri${pkgver/./}.tar.gz; 
'LICENSE')
+sha256sums=('39a2fd2269b1fc6936aa08e45ccbc5c10508b40545a693a8358cdba2e33d42a3'
+'83a2186806f5f535ebc2ba0381830bc1528f38c8484bf9d7c1977011c25a424a')
 
 build() {
-  cd plantri45
+  cd plantri${pkgver/./}
   make
 }
 
 package() {
-  cd plantri45
+  cd plantri${pkgver/./}
 
   mkdir -p "$pkgdir"/usr/bin
   cp plantri fullgen "$pkgdir"/usr/bin/


[arch-commits] Commit in (5 files)

2018-01-30 Thread David Runge via arch-commits
Date: Tuesday, January 30, 2018 @ 13:22:57
  Author: dvzrv
Revision: 288302

Adding faust from AUR (12 votes).

Added:
  faust/
  faust/repos/
  faust/trunk/
  faust/trunk/PKGBUILD
  faust/trunk/python2-fix.patch

---+
 PKGBUILD  |   79 
 python2-fix.patch |   20 +
 2 files changed, 99 insertions(+)

Added: faust/trunk/PKGBUILD
===
--- faust/trunk/PKGBUILD(rev 0)
+++ faust/trunk/PKGBUILD2018-01-30 13:22:57 UTC (rev 288302)
@@ -0,0 +1,79 @@
+# Maintainer: David Runge 
+# Contributor: Albert Graef 
+# Contributor: Bernardo Barros 
+# Contributor: bjoern lindig (bjoern _dot_ lindig _at_ google.com)
+
+pkgname=faust
+pkgver=2.5.17
+pkgrel=1
+pkgdesc="A functional programming language for realtime audio signal 
processing."
+arch=('x86_64')
+url="https://faust.grame.fr/;
+license=('GPL2')
+depends=('bash' 'llvm-libs' 'libsndfile' 'libmicrohttpd' 'python2' 'ruby')
+makedepends=('llvm' 'xxd')
+optdepends=('clang: needed for sound2reader'
+'java-runtime=8: needed for faust2android')
+provides=('faust')
+conflicts=('faust-git')
+options=('staticlibs')
+source=("https://github.com/grame-cncm/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+'python2-fix.patch')
+sha512sums=('84d7d8d9f6e7e351525870b4c2ba96a013d81e920ae4c2a514bb196c5f2207699c4a615fd19945e6564ad09a062787c03cb95ad75b9b3065012c5e2e8812555a'
+
'aefee8c8bfe1115f8b2a576e6021bd0da3eeced9403878dc124fe7fbcb819d3910f1f119662ae09c52e60dff6ebfc76f0f63e07df3705e0849149fa540104482')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # fix scripts requiring python2
+  patch -Np1 < "${srcdir}/python2-fix.patch"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr world
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make install PREFIX=/usr DESTDIR="$pkgdir"
+
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 documentation/{,misc/}*.pdf
+
+  # examples
+  install -vd "${pkgdir}/usr/share/${pkgname}/examples"
+  cp -vR "examples/"* "${pkgdir}/usr/share/${pkgname}/examples/"
+
+  cd syntax-highlighting
+  # atom
+  install -vDm644 "atom/language-${pkgname}/package.json" \
+"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/package.json"
+  install -vDm644 "atom/language-${pkgname}/grammars/${pkgname}.cson" \
+
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/grammars/${pkgname}.cson"
+  install -vDm644 "atom/language-${pkgname}/settings/language-${pkgname}.cson" 
\
+
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/settings/language-${pkgname}.cson"
+  install -t 
"${pkgdir}/usr/lib/atom/dot-atom/packages/language-${pkgname}/snippets/" \
+-vDm644 "atom/language-${pkgname}/snippets/"*
+  install -vDm644 "atom/language-${pkgname}/process-palette.json.linux" \
+"${pkgdir}/usr/share/doc/${pkgname}/process-palette.json"
+  # kate
+  install -vDm644 "${pkgname}.xml" \
+"${pkgdir}/usr/share/apps/katepart/syntax/${pkgname}.xml"
+  # gedit
+  install -vDm644 "${pkgname}.lang" \
+"${pkgdir}/usr/share/gtksourceview-2.0/language-specs/${pkgname}.lang"
+  install -vDm644 "${pkgname}.lang" \
+"${pkgdir}/usr/share/gtksourceview-3.0/language-specs/${pkgname}.lang"
+  # highlight
+  install -vDm644 dsp.lang "$pkgdir/usr/share/highlight/langDefs/dsp.lang"
+  # nano
+  install -vDm644 "${pkgname}.nanorc" 
"$pkgdir/usr/share/nano/${pkgname}.nanorc"
+  # vim
+  install -vDm644 "${pkgname}.vim" \
+"${pkgdir}/usr/share/vim/vimfiles/syntax/${pkgname}.vim"
+  # emacs
+  install -vDm644 "${pkgname}-mode.el" \
+"${pkgdir}/usr/share/emacs/site-lisp/${pkgname}-mode.el"
+}
+


Property changes on: faust/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: faust/trunk/python2-fix.patch
===
--- faust/trunk/python2-fix.patch   (rev 0)
+++ faust/trunk/python2-fix.patch   2018-01-30 13:22:57 UTC (rev 288302)
@@ -0,0 +1,20 @@
+diff --git a/tools/faust2appls/faust2md b/tools/faust2appls/faust2md
+index 2e460fcb9..5831a86a9 100755
+--- a/tools/faust2appls/faust2md
 b/tools/faust2appls/faust2md
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ 
+ #-- faust2md ---
+ # Usage: `faust2md [-t 4] [-c] [-f] foo.dsp > foo.md`
+diff --git a/tools/faust2appls/faust2atomsnippets 
b/tools/faust2appls/faust2atomsnippets
+index 183436022..989618a30 100755
+--- a/tools/faust2appls/faust2atomsnippets
 b/tools/faust2appls/faust2atomsnippets
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python2
+ 
+ #-- faust2atomsnippets ---
+ # Usage: 

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

2018-01-30 Thread Christian Hesse via arch-commits
Date: Tuesday, January 30, 2018 @ 13:10:46
  Author: eworm
Revision: 288301

archrelease: copy trunk to multilib-testing-x86_64

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

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

Copied: lib32-systemd/repos/multilib-testing-x86_64/PKGBUILD (from rev 288300, 
lib32-systemd/trunk/PKGBUILD)
===
--- multilib-testing-x86_64/PKGBUILD(rev 0)
+++ multilib-testing-x86_64/PKGBUILD2018-01-30 13:10:46 UTC (rev 288301)
@@ -0,0 +1,141 @@
+# $Id$
+# Maintainer: Christian Hesse 
+# Maintainer: Dave Reisner 
+# Maintainer: Tom Gundersen 
+
+pkgname=lib32-systemd
+_pkgbasename=systemd
+# latest commit on stable branch
+_commit='46659f7deb962f55c728e70597e37c2a3ab6326d'
+# Bump this to latest major release for signed tag verification,
+# the commit count is handled by pkgver() function.
+pkgver=237.0
+pkgrel=1
+pkgdesc="system and service manager (32-bit)"
+arch=('x86_64')
+url="https://www.github.com/systemd/systemd;
+license=('GPL2' 'LGPL2.1')
+depends=('lib32-gcc-libs' 'lib32-libcap' 'lib32-libgcrypt' 'lib32-xz' 
'systemd')
+makedepends=('gcc-multilib' 'git' 'gperf' 'intltool' 'lib32-acl' 'lib32-bzip2'
+ 'lib32-curl' 'lib32-dbus' 'lib32-gcc-libs' 'lib32-glib2'
+ 'lib32-gnutls' 'lib32-libelf' 'lib32-libidn' 'lib32-pcre2'
+ 'libxslt' 'meson')
+options=('strip')
+validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4')  # Lennart 
Poettering 
+source=('git://github.com/systemd/systemd-stable.git'
+'git://github.com/systemd/systemd.git') # pull in for tags, backports 
& reverts
+sha256sums=('SKIP'
+ 'SKIP')
+
+_backports=(
+)
+
+_reverts=(
+)
+
+_validate_tag() {
+  local success fingerprint trusted status tag=v${pkgver%.*}
+
+  parse_gpg_statusfile /dev/stdin < <(git verify-tag --raw "$tag" 2>&1)
+
+  if (( ! success )); then
+error 'failed to validate tag %s\n' "$tag"
+return 1
+  fi
+
+  if ! in_array "$fingerprint" "${validpgpkeys[@]}" && (( ! trusted )); then
+error 'unknown or untrusted public key: %s\n' "$fingerprint"
+return 1
+  fi
+
+  case $status in
+'expired')
+  warning 'the signature has expired'
+  ;;
+'expiredkey')
+  warning 'the key has expired'
+  ;;
+  esac
+
+  return 0
+}
+
+pkgver() {
+  local version count
+
+  cd "$_pkgbasename-stable"
+
+  version="$(git describe --abbrev=0 --tags)"
+  count="$(git rev-list --count ${version}..)"
+  printf '%s.%s' "${version#v}" "${count}"
+}
+
+prepare() {
+  cd "$_pkgbasename-stable"
+
+  git remote add upstream ../systemd/
+  git fetch --all
+
+  git checkout "${_commit}"
+
+  _validate_tag || return
+
+  local _commit
+  for _commit in "${_backports[@]}"; do
+git cherry-pick -n "$_commit"
+  done
+  for _commit in "${_reverts[@]}"; do
+git revert -n "$_commit"
+  done
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  local timeservers=({0..3}.arch.pool.ntp.org)
+
+  local meson_options=(
+--libexecdir   /usr/lib32
+--libdir   /usr/lib32
+
+-Daudit=false
+-Dgnuefi=false
+-Dima=false
+-Dlz4=false
+-Dblkid=false
+-Dkmod=false
+-Dlibcryptsetup=false
+-Dlibiptc=false
+-Dmanpages=false
+-Dnetworkd=false
+-Dpam=false
+-Dpython=false
+-Dseccomp=false
+-Dman=false
+-Dhtml=false
+
+-Ddbuspolicydir=/usr/share/dbus-1/system.d
+-Ddefault-dnssec=no
+# TODO(dreisner): consider changing this to unified
+-Ddefault-hierarchy=hybrid
+-Ddefault-kill-user-processes=false
+-Dfallback-hostname='archlinux'
+-Dntp-servers="${timeservers[*]}"
+-Drpmmacrosdir=no
+-Dsysvinit-path=
+-Dsysvrcnd-path=
+  )
+
+  arch-meson "$_pkgbasename-stable" build "${meson_options[@]}"
+
+  ninja -C build
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+
+  rm -rf "${pkgdir}"/{etc,var}
+  rm -rf "${pkgdir}"/usr/{bin,include,lib,share}
+}


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

2018-01-30 Thread Christian Hesse via arch-commits
Date: Tuesday, January 30, 2018 @ 13:10:43
  Author: eworm
Revision: 288300

upgpkg: lib32-systemd 237.0-1

new upstream release

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 13:10:07 UTC (rev 288299)
+++ PKGBUILD2018-01-30 13:10:43 UTC (rev 288300)
@@ -6,10 +6,10 @@
 pkgname=lib32-systemd
 _pkgbasename=systemd
 # latest commit on stable branch
-_commit='242f14c5a807bb50bfda18568887deae1eb8a3ec'
+_commit='46659f7deb962f55c728e70597e37c2a3ab6326d'
 # Bump this to latest major release for signed tag verification,
 # the commit count is handled by pkgver() function.
-pkgver=236.81
+pkgver=237.0
 pkgrel=1
 pkgdesc="system and service manager (32-bit)"
 arch=('x86_64')
@@ -18,7 +18,8 @@
 depends=('lib32-gcc-libs' 'lib32-libcap' 'lib32-libgcrypt' 'lib32-xz' 
'systemd')
 makedepends=('gcc-multilib' 'git' 'gperf' 'intltool' 'lib32-acl' 'lib32-bzip2'
  'lib32-curl' 'lib32-dbus' 'lib32-gcc-libs' 'lib32-glib2'
- 'lib32-gnutls' 'lib32-libelf' 'lib32-libidn' 'libxslt' 'meson')
+ 'lib32-gnutls' 'lib32-libelf' 'lib32-libidn' 'lib32-pcre2'
+ 'libxslt' 'meson')
 options=('strip')
 validpgpkeys=('63CDA1E5D3FC22B998D20DD6327F26951A015CC4')  # Lennart 
Poettering 
 source=('git://github.com/systemd/systemd-stable.git'


[arch-commits] Commit in lib32-pcre2/repos (multilib-x86_64 multilib-x86_64/PKGBUILD)

2018-01-30 Thread Christian Hesse via arch-commits
Date: Tuesday, January 30, 2018 @ 13:10:07
  Author: eworm
Revision: 288299

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-pcre2/repos/multilib-x86_64/
  lib32-pcre2/repos/multilib-x86_64/PKGBUILD
(from rev 288298, lib32-pcre2/trunk/PKGBUILD)

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

Copied: lib32-pcre2/repos/multilib-x86_64/PKGBUILD (from rev 288298, 
lib32-pcre2/trunk/PKGBUILD)
===
--- multilib-x86_64/PKGBUILD(rev 0)
+++ multilib-x86_64/PKGBUILD2018-01-30 13:10:07 UTC (rev 288299)
@@ -0,0 +1,49 @@
+# $Id$
+
+pkgname=lib32-pcre2
+_pkgname=pcre2
+pkgver=10.30
+pkgrel=1
+pkgdesc='A library that implements Perl 5-style regular expressions. 2nd 
version (32-bit)'
+arch=('x86_64')
+url='http://www.pcre.org/'
+license=('BSD')
+depends=('lib32-gcc-libs' 'lib32-readline' 'lib32-zlib' 'lib32-bzip2' 'bash')
+source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$_pkgname-$pkgver.tar.bz2;)
+sha512sums=('f247a9f917c75920793b9919a45bb1426d126246e7a5d04e39d9407e44b5781f894a90cd3d232b385436b2f22be391335ab782664dd3a28c79058a2fcc74dc3e')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--enable-pcre2-16 \
+--enable-pcre2-32 \
+--enable-jit \
+--enable-pcre2grep-libz \
+--enable-pcre2grep-libbz2 \
+--enable-pcre2test-libreadline
+  make
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  make -j1 check
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  
+  make DESTDIR="$pkgdir" install
+  rm -rf "${pkgdir}"/usr/{share,bin,include}
+
+  install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2018-01-30 Thread Christian Hesse via arch-commits
Date: Tuesday, January 30, 2018 @ 13:09:39
  Author: eworm
Revision: 288298

lib32-pcre2 is a build dependency for lib32-systemd

Added:
  lib32-pcre2/
  lib32-pcre2/repos/
  lib32-pcre2/trunk/
  lib32-pcre2/trunk/PKGBUILD

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

Added: lib32-pcre2/trunk/PKGBUILD
===
--- lib32-pcre2/trunk/PKGBUILD  (rev 0)
+++ lib32-pcre2/trunk/PKGBUILD  2018-01-30 13:09:39 UTC (rev 288298)
@@ -0,0 +1,49 @@
+# $Id$
+
+pkgname=lib32-pcre2
+_pkgname=pcre2
+pkgver=10.30
+pkgrel=1
+pkgdesc='A library that implements Perl 5-style regular expressions. 2nd 
version (32-bit)'
+arch=('x86_64')
+url='http://www.pcre.org/'
+license=('BSD')
+depends=('lib32-gcc-libs' 'lib32-readline' 'lib32-zlib' 'lib32-bzip2' 'bash')
+source=("ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$_pkgname-$pkgver.tar.bz2;)
+sha512sums=('f247a9f917c75920793b9919a45bb1426d126246e7a5d04e39d9407e44b5781f894a90cd3d232b385436b2f22be391335ab782664dd3a28c79058a2fcc74dc3e')
+
+build() {
+  cd $_pkgname-$pkgver
+
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+  
+  ./configure \
+--prefix=/usr \
+--libdir=/usr/lib32 \
+--enable-pcre2-16 \
+--enable-pcre2-32 \
+--enable-jit \
+--enable-pcre2grep-libz \
+--enable-pcre2grep-libbz2 \
+--enable-pcre2test-libreadline
+  make
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  make -j1 check
+}
+
+package() {
+  cd $_pkgname-$pkgver
+  
+  make DESTDIR="$pkgdir" install
+  rm -rf "${pkgdir}"/usr/{share,bin,include}
+
+  install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: lib32-pcre2/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2018-01-30 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 30, 2018 @ 13:08:53
  Author: svenstaro
Revision: 288297

archrelease: copy trunk to community-x86_64

Added:
  rustup/repos/community-x86_64/PKGBUILD
(from rev 288296, rustup/trunk/PKGBUILD)
  rustup/repos/community-x86_64/post.install
(from rev 288296, rustup/trunk/post.install)
Deleted:
  rustup/repos/community-x86_64/PKGBUILD
  rustup/repos/community-x86_64/post.install

--+
 PKGBUILD |   84 -
 post.install |   16 +-
 2 files changed, 50 insertions(+), 50 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 13:08:41 UTC (rev 288296)
+++ PKGBUILD2018-01-30 13:08:53 UTC (rev 288297)
@@ -1,42 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Jonathon Fernyhough 
-# Contributor: Jon Gjengset 
-pkgname=rustup
-pkgver=1.9.0
-pkgrel=2
-pkgdesc="The Rust toolchain installer"
-arch=('x86_64')
-url="https://github.com/rust-lang-nursery/rustup.rs;
-license=('MIT' 'Apache')
-makedepends=('cargo')
-provides=('rust' 'cargo' 'rust-nightly' 'cargo-nightly' 'rustfmt')
-conflicts=('rust' 'cargo' 'rustfmt')
-install='post.install'
-source=("rustup-${pkgver}.tar.gz::https://github.com/rust-lang-nursery/rustup.rs/archive/${pkgver}.tar.gz;)
-sha512sums=('33299d1b9da96b899205042a53666e870d9ddab7721a56ecaefeb4d05503d838d44f2c8688f21d04ef9181bd7c9597cc85b83c527c86822f39c56f9cac7e08ec')
-_binlinks=('cargo' 'rustc' 'rustdoc' 'rust-gdb' 'rust-lldb' 'rls' 'rustfmt' 
'cargo-fmt')
-
-build() {
-msg2 "Building rustup"
-cd "$srcdir/$pkgname.rs-${pkgver}"
-# cargo update
-cargo build --release --features no-self-update --bin rustup-init
-}
-
-package() {
-cd "$pkgname.rs-${pkgver}"
-install -Dm755 "target/release/rustup-init" "${pkgdir}/usr/bin/rustup"
-for link in "${_binlinks[@]}"; do
-ln -s /usr/bin/rustup "${pkgdir}/usr/bin/${link}"
-done
-
-# Generate completion files.
-mkdir -p "$pkgdir/usr/share/bash-completion/completions"
-$pkgdir/usr/bin/rustup completions bash > 
"$pkgdir/usr/share/bash-completion/completions/rustup"
-mkdir -p "$pkgdir/usr/share/fish/completions"
-$pkgdir/usr/bin/rustup completions fish > 
"$pkgdir/usr/share/fish/completions/rustup.fish"
-mkdir -p "$pkgdir/usr/share/zsh/site-functions"
-$pkgdir/usr/bin/rustup completions zsh > 
"$pkgdir/usr/share/zsh/site-functions/_rustup"
-}
-
-# vim:filetype=sh:

Copied: rustup/repos/community-x86_64/PKGBUILD (from rev 288296, 
rustup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 13:08:53 UTC (rev 288297)
@@ -0,0 +1,42 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Jonathon Fernyhough 
+# Contributor: Jon Gjengset 
+pkgname=rustup
+pkgver=1.10.0
+pkgrel=1
+pkgdesc="The Rust toolchain installer"
+arch=('x86_64')
+url="https://github.com/rust-lang-nursery/rustup.rs;
+license=('MIT' 'Apache')
+makedepends=('cargo')
+provides=('rust' 'cargo' 'rust-nightly' 'cargo-nightly' 'rustfmt')
+conflicts=('rust' 'cargo' 'rustfmt')
+install='post.install'
+source=("rustup-${pkgver}.tar.gz::https://github.com/rust-lang-nursery/rustup.rs/archive/${pkgver}.tar.gz;)
+sha512sums=('e7913e84a7a1bc971e942702d936b56bbc4cee335ec5453f0f2ec684d3843a043cf473f4337f23b881e1151573ba66a62ada4763d1c5b9e1845723c14bdfcb02')
+_binlinks=('cargo' 'rustc' 'rustdoc' 'rust-gdb' 'rust-lldb' 'rls' 'rustfmt' 
'cargo-fmt')
+
+build() {
+msg2 "Building rustup"
+cd "$srcdir/$pkgname.rs-${pkgver}"
+# cargo update
+cargo build --release --features no-self-update --bin rustup-init
+}
+
+package() {
+cd "$pkgname.rs-${pkgver}"
+install -Dm755 "target/release/rustup-init" "${pkgdir}/usr/bin/rustup"
+for link in "${_binlinks[@]}"; do
+ln -s /usr/bin/rustup "${pkgdir}/usr/bin/${link}"
+done
+
+# Generate completion files.
+mkdir -p "$pkgdir/usr/share/bash-completion/completions"
+$pkgdir/usr/bin/rustup completions bash > 
"$pkgdir/usr/share/bash-completion/completions/rustup"
+mkdir -p "$pkgdir/usr/share/fish/completions"
+$pkgdir/usr/bin/rustup completions fish > 
"$pkgdir/usr/share/fish/completions/rustup.fish"
+mkdir -p "$pkgdir/usr/share/zsh/site-functions"
+$pkgdir/usr/bin/rustup completions zsh > 
"$pkgdir/usr/share/zsh/site-functions/_rustup"
+}
+
+# vim:filetype=sh:

Deleted: post.install
===
--- post.install2018-01-30 13:08:41 UTC (rev 288296)
+++ post.install2018-01-30 13:08:53 UTC (rev 288297)
@@ -1,8 +0,0 @@
-post_install() {
-   echo "You may need to run rustup update stable"
-   echo "and possibly also rustup self upgrade-data"
-}
-
-post_upgrade() {
-   echo "You may need to run rustup self upgrade-data"

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

2018-01-30 Thread Sven-Hendrik Haase via arch-commits
Date: Tuesday, January 30, 2018 @ 13:08:41
  Author: svenstaro
Revision: 288296

upgpkg: rustup 1.10.0-1

Modified:
  rustup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 13:02:03 UTC (rev 288295)
+++ PKGBUILD2018-01-30 13:08:41 UTC (rev 288296)
@@ -2,8 +2,8 @@
 # Contributor: Jonathon Fernyhough 
 # Contributor: Jon Gjengset 
 pkgname=rustup
-pkgver=1.9.0
-pkgrel=2
+pkgver=1.10.0
+pkgrel=1
 pkgdesc="The Rust toolchain installer"
 arch=('x86_64')
 url="https://github.com/rust-lang-nursery/rustup.rs;
@@ -13,7 +13,7 @@
 conflicts=('rust' 'cargo' 'rustfmt')
 install='post.install'
 
source=("rustup-${pkgver}.tar.gz::https://github.com/rust-lang-nursery/rustup.rs/archive/${pkgver}.tar.gz;)
-sha512sums=('33299d1b9da96b899205042a53666e870d9ddab7721a56ecaefeb4d05503d838d44f2c8688f21d04ef9181bd7c9597cc85b83c527c86822f39c56f9cac7e08ec')
+sha512sums=('e7913e84a7a1bc971e942702d936b56bbc4cee335ec5453f0f2ec684d3843a043cf473f4337f23b881e1151573ba66a62ada4763d1c5b9e1845723c14bdfcb02')
 _binlinks=('cargo' 'rustc' 'rustdoc' 'rust-gdb' 'rust-lldb' 'rls' 'rustfmt' 
'cargo-fmt')
 
 build() {


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

2018-01-30 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 30, 2018 @ 13:02:03
  Author: foutrelis
Revision: 288295

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 13:01:55 UTC (rev 288294)
+++ PKGBUILD2018-01-30 13:02:03 UTC (rev 288295)
@@ -1,79 +0,0 @@
-# $Id$
-# Maintainer: Evangelos Foutras 
-# Contributor: Malte Rabenseifner 
-# Contributor: Andrea Scarpino 
-# Contributor: FUBAR 
-
-pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.1.11.1
-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=('690099d66509fb6efd5c4b0886b0f8d4aace2c3072e57fe1d7a981f2205e0eeb'
-'SKIP'
-'b2e9222b8579156bd881b4be95860e8b83e93d42abfed05a7bd95fb29da18d30'
-'SKIP'
-'8ac0eaa0fca17b4183dd8ca176efccc9b6ba68bdbcdeadbb2c92c2cb76816c1c'
-'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 288294, 
shorewall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 13:02:03 UTC (rev 288295)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Malte Rabenseifner 
+# Contributor: Andrea Scarpino 
+# Contributor: FUBAR 
+
+pkgname=('shorewall' 'shorewall6' 'shorewall-core')
+pkgver=5.1.11.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=('349ce8a5081994e611165521010d38c2326e4f1b036c9bd07034e6e7e0cee038'
+'SKIP'
+'16d1dbc56667dcf7a11aae2d404cde12014f5c5b7df5f3b02fbdc5d7e775e5e4'
+'SKIP'
+

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

2018-01-30 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 30, 2018 @ 13:01:55
  Author: foutrelis
Revision: 288294

upgpkg: shorewall 5.1.11.2-1

New upstream release.

Modified:
  shorewall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:43:37 UTC (rev 288293)
+++ PKGBUILD2018-01-30 13:01:55 UTC (rev 288294)
@@ -5,7 +5,7 @@
 # Contributor: FUBAR 
 
 pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.1.11.1
+pkgver=5.1.11.2
 pkgrel=1
 _v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
 _v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
@@ -15,11 +15,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=('690099d66509fb6efd5c4b0886b0f8d4aace2c3072e57fe1d7a981f2205e0eeb'
+sha256sums=('349ce8a5081994e611165521010d38c2326e4f1b036c9bd07034e6e7e0cee038'
 'SKIP'
-'b2e9222b8579156bd881b4be95860e8b83e93d42abfed05a7bd95fb29da18d30'
+'16d1dbc56667dcf7a11aae2d404cde12014f5c5b7df5f3b02fbdc5d7e775e5e4'
 'SKIP'
-'8ac0eaa0fca17b4183dd8ca176efccc9b6ba68bdbcdeadbb2c92c2cb76816c1c'
+'053d17922491e10d8b9a3df498e9d3f53ea2e566ce234874f54abc636b489a4e'
 'SKIP')
 validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
 


[arch-commits] Commit in freetype2/repos/extra-x86_64 (15 files)

2018-01-30 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 30, 2018 @ 12:58:39
  Author: foutrelis
Revision: 315620

archrelease: copy trunk to extra-x86_64

Added:
  freetype2/repos/extra-x86_64/0001-Enable-table-validation-modules.patch
(from rev 315619, 
freetype2/trunk/0001-Enable-table-validation-modules.patch)
  
freetype2/repos/extra-x86_64/0001-psaux-Correctly-handle-Flex-features-52846.patch
(from rev 315619, 
freetype2/trunk/0001-psaux-Correctly-handle-Flex-features-52846.patch)
  freetype2/repos/extra-x86_64/0002-Enable-infinality-subpixel-hinting.patch
(from rev 315619, 
freetype2/trunk/0002-Enable-infinality-subpixel-hinting.patch)
  freetype2/repos/extra-x86_64/0003-Enable-long-PCF-family-names.patch
(from rev 315619, freetype2/trunk/0003-Enable-long-PCF-family-names.patch)
  freetype2/repos/extra-x86_64/0005-freetype-2.5.2-more-demos.patch
(from rev 315619, freetype2/trunk/0005-freetype-2.5.2-more-demos.patch)
  freetype2/repos/extra-x86_64/PKGBUILD
(from rev 315619, freetype2/trunk/PKGBUILD)
  freetype2/repos/extra-x86_64/freetype2.install
(from rev 315619, freetype2/trunk/freetype2.install)
  freetype2/repos/extra-x86_64/freetype2.sh
(from rev 315619, freetype2/trunk/freetype2.sh)
Deleted:
  freetype2/repos/extra-x86_64/0001-Enable-table-validation-modules.patch
  freetype2/repos/extra-x86_64/0002-Enable-infinality-subpixel-hinting.patch
  freetype2/repos/extra-x86_64/0003-Enable-long-PCF-family-names.patch
  freetype2/repos/extra-x86_64/0005-freetype-2.5.2-more-demos.patch
  freetype2/repos/extra-x86_64/PKGBUILD
  freetype2/repos/extra-x86_64/freetype2.install
  freetype2/repos/extra-x86_64/freetype2.sh

---+
 0001-Enable-table-validation-modules.patch|  100 +++
 0001-psaux-Correctly-handle-Flex-features-52846.patch |   38 ++
 0002-Enable-infinality-subpixel-hinting.patch |   60 ++--
 0003-Enable-long-PCF-family-names.patch   |   56 ++--
 0005-freetype-2.5.2-more-demos.patch  |   34 +-
 PKGBUILD  |  206 
 freetype2.install |   16 -
 freetype2.sh  |   24 -
 8 files changed, 289 insertions(+), 245 deletions(-)

Deleted: 0001-Enable-table-validation-modules.patch
===
--- 0001-Enable-table-validation-modules.patch  2018-01-30 12:58:25 UTC (rev 
315619)
+++ 0001-Enable-table-validation-modules.patch  2018-01-30 12:58:39 UTC (rev 
315620)
@@ -1,50 +0,0 @@
-From c7a6a2312313a971089fb592deb8c476be4dca0f Mon Sep 17 00:00:00 2001
-Message-Id: 

-From: "Jan Alexander Steffens (heftig)" 
-Date: Tue, 23 Jun 2015 08:40:29 +0200
-Subject: [PATCH 1/4] Enable table validation modules
-

- modules.cfg | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/modules.cfg b/modules.cfg
-index 56a2340e56d187aa..3a028329187275df 100644
 a/modules.cfg
-+++ b/modules.cfg
-@@ -120,30 +120,30 @@ AUX_MODULES += cache
- # TrueType GX/AAT table validation.  Needs ftgxval.c below.
- #
- # No FT_CONFIG_OPTION_PIC support.
--# AUX_MODULES += gxvalid
-+AUX_MODULES += gxvalid
- 
- # Support for streams compressed with gzip (files with suffix .gz).
- #
- # See include/freetype/ftgzip.h for the API.
- # No FT_CONFIG_OPTION_PIC support.
- AUX_MODULES += gzip
- 
- # Support for streams compressed with LZW (files with suffix .Z).
- #
- # See include/freetype/ftlzw.h for the API.
- # No FT_CONFIG_OPTION_PIC support.
- AUX_MODULES += lzw
- 
- # Support for streams compressed with bzip2 (files with suffix .bz2).
- #
- # See include/freetype/ftbzip2.h for the API.
- # No FT_CONFIG_OPTION_PIC support.
- AUX_MODULES += bzip2
- 
- # OpenType table validation.  Needs ftotval.c below.
- #
- # No FT_CONFIG_OPTION_PIC support.
--# AUX_MODULES += otvalid
-+AUX_MODULES += otvalid
- 
- # Auxiliary PostScript driver component to share common code.
- #
--- 
-2.15.1
-

Copied: freetype2/repos/extra-x86_64/0001-Enable-table-validation-modules.patch 
(from rev 315619, freetype2/trunk/0001-Enable-table-validation-modules.patch)
===
--- 0001-Enable-table-validation-modules.patch  (rev 0)
+++ 0001-Enable-table-validation-modules.patch  2018-01-30 12:58:39 UTC (rev 
315620)
@@ -0,0 +1,50 @@
+From c7a6a2312313a971089fb592deb8c476be4dca0f Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 23 Jun 2015 08:40:29 +0200
+Subject: [PATCH 1/4] Enable table validation modules
+
+---
+ modules.cfg | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/modules.cfg b/modules.cfg
+index 

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

2018-01-30 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 30, 2018 @ 12:58:25
  Author: foutrelis
Revision: 315619

upgpkg: freetype2 2.9-2

Fix rendering of some Type 1 fonts (FS#57205).

Added:
  freetype2/trunk/0001-psaux-Correctly-handle-Flex-features-52846.patch
Modified:
  freetype2/trunk/PKGBUILD

---+
 0001-psaux-Correctly-handle-Flex-features-52846.patch |   38 
 PKGBUILD  |8 ++-
 2 files changed, 45 insertions(+), 1 deletion(-)

Added: 0001-psaux-Correctly-handle-Flex-features-52846.patch
===
--- 0001-psaux-Correctly-handle-Flex-features-52846.patch   
(rev 0)
+++ 0001-psaux-Correctly-handle-Flex-features-52846.patch   2018-01-30 
12:58:25 UTC (rev 315619)
@@ -0,0 +1,38 @@
+From cc2f3cdecff5a351e7e8961b9f2e389ab740231a Mon Sep 17 00:00:00 2001
+From: Ewald Hew 
+Date: Wed, 10 Jan 2018 13:24:56 +0800
+Subject: [PATCH] [psaux] Correctly handle Flex features (#52846).
+
+* src/psaux/psintrp.c (cf2_interpT2CharString) : Do not move if doing Flex.
+---
+ src/psaux/psintrp.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/src/psaux/psintrp.c b/src/psaux/psintrp.c
+index 5c0ee78..da5a8da 100644
+--- a/src/psaux/psintrp.c
 b/src/psaux/psintrp.c
+@@ -852,7 +852,8 @@
+ 
+ curY = ADD_INT32( curY, cf2_stack_popFixed( opStack ) );
+ 
+-cf2_glyphpath_moveTo( , curX, curY );
++if ( !decoder->flex_state )
++  cf2_glyphpath_moveTo( , curX, curY );
+ 
+ break;
+ 
+@@ -2674,7 +2675,8 @@
+ 
+ curX = ADD_INT32( curX, cf2_stack_popFixed( opStack ) );
+ 
+-cf2_glyphpath_moveTo( , curX, curY );
++if ( !decoder->flex_state )
++  cf2_glyphpath_moveTo( , curX, curY );
+ 
+ break;
+ 
+-- 
+2.16.1
+

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:57:19 UTC (rev 315618)
+++ PKGBUILD2018-01-30 12:58:25 UTC (rev 315619)
@@ -4,7 +4,7 @@
 pkgbase=freetype2
 pkgname=('freetype2' 'freetype2-demos' 'freetype2-docs')
 pkgver=2.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Font rasterization library"
 arch=(x86_64)
 license=('GPL')
@@ -19,6 +19,7 @@
 0001-Enable-table-validation-modules.patch
 0002-Enable-infinality-subpixel-hinting.patch
 0003-Enable-long-PCF-family-names.patch
+0001-psaux-Correctly-handle-Flex-features-52846.patch
 0005-freetype-2.5.2-more-demos.patch
 freetype2.sh)
 sha1sums=('94c4399b1a55c5892812e732843fcb4a7c2fe657'
@@ -30,6 +31,7 @@
   'b69531770c343d403be294b7e4d25ac45738c833'
   '3d26a569f0cb94c28a550577f5dcaadb4e193d91'
   '770f1981734a837bcf065564c91644b4cc5e256a'
+  '21ad7dd31e16adb5b39adfa5671018a736626562'
   '72cfecbe738085eec475e012617661ad0cc9b76f'
   'bc6df1661c4c33e20f5ce30c2da8ad3c2083665f')
 validpgpkeys=('58E0C111E39F5408C5D3EC76C1A60EACE707FDA5')
@@ -44,6 +46,10 @@
   patch -Np1 -i ../0002-Enable-infinality-subpixel-hinting.patch
   patch -Np1 -i ../0003-Enable-long-PCF-family-names.patch
 
+  # Freetype 2.9 regression: bad rendering for some Type 1 fonts
+  # https://savannah.nongnu.org/bugs/?52846
+  patch -Np1 -i ../0001-psaux-Correctly-handle-Flex-features-52846.patch
+
   cd ../freetype2-demos
   # enable more demos
   patch -Np1 -i ../0005-freetype-2.5.2-more-demos.patch


[arch-commits] Commit in editorconfig-core-c/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 12:57:19
  Author: arojas
Revision: 315618

archrelease: copy trunk to extra-x86_64

Added:
  editorconfig-core-c/repos/extra-x86_64/PKGBUILD
(from rev 315617, editorconfig-core-c/trunk/PKGBUILD)
Deleted:
  editorconfig-core-c/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 12:56:43 UTC (rev 315617)
+++ PKGBUILD2018-01-30 12:57:19 UTC (rev 315618)
@@ -1,37 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Matt Harrison 
-# Contributor: Erik van der Kolk 
-# Contributor: Hong Xu
-
-pkgname=editorconfig-core-c
-pkgver=0.12.1
-pkgrel=2
-pkgdesc="EditorConfig core code written in C (for use by plugins supporting 
EditorConfig parsing)"
-arch=(i686 x86_64)
-url="https://github.com/editorconfig/editorconfig-core-c;
-license=(BSD)
-depends=(pcre)
-makedepends=(cmake)
-source=($pkgname-$pkgver.tar.gz::"https://github.com/editorconfig/${pkgname}/archive/v$pkgver.tar.gz;)
-sha256sums=('c7bd714c73f01edde583b059b51078173aa85a36fa05bb9652d35a75fe0ac372')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-
-  cmake ../$pkgname-$pkgver \
-  -DCMAKE_INSTALL_PREFIX=/usr \
-  -DINSTALL_HTML_DOC=ON \
-  -DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: editorconfig-core-c/repos/extra-x86_64/PKGBUILD (from rev 315617, 
editorconfig-core-c/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 12:57:19 UTC (rev 315618)
@@ -0,0 +1,36 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Matt Harrison 
+# Contributor: Erik van der Kolk 
+# Contributor: Hong Xu
+
+pkgname=editorconfig-core-c
+pkgver=0.12.1
+pkgrel=3
+pkgdesc="EditorConfig core code written in C (for use by plugins supporting 
EditorConfig parsing)"
+arch=(x86_64)
+url="https://github.com/editorconfig/editorconfig-core-c;
+license=(BSD)
+depends=(pcre)
+makedepends=(cmake doxygen)
+source=($pkgname-$pkgver.tar.gz::"https://github.com/editorconfig/${pkgname}/archive/v$pkgver.tar.gz;)
+sha256sums=('c7bd714c73f01edde583b059b51078173aa85a36fa05bb9652d35a75fe0ac372')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+  -DCMAKE_INSTALL_PREFIX=/usr \
+  -DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in editorconfig-core-c/trunk (PKGBUILD)

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 12:56:43
  Author: arojas
Revision: 315617

Install man pages

Modified:
  editorconfig-core-c/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 10:32:34 UTC (rev 315616)
+++ PKGBUILD2018-01-30 12:56:43 UTC (rev 315617)
@@ -5,13 +5,13 @@
 
 pkgname=editorconfig-core-c
 pkgver=0.12.1
-pkgrel=2
+pkgrel=3
 pkgdesc="EditorConfig core code written in C (for use by plugins supporting 
EditorConfig parsing)"
 arch=(x86_64)
 url="https://github.com/editorconfig/editorconfig-core-c;
 license=(BSD)
 depends=(pcre)
-makedepends=(cmake)
+makedepends=(cmake doxygen)
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/editorconfig/${pkgname}/archive/v$pkgver.tar.gz;)
 sha256sums=('c7bd714c73f01edde583b059b51078173aa85a36fa05bb9652d35a75fe0ac372')
 
@@ -24,7 +24,6 @@
 
   cmake ../$pkgname-$pkgver \
   -DCMAKE_INSTALL_PREFIX=/usr \
-  -DINSTALL_HTML_DOC=ON \
   -DCMAKE_INSTALL_LIBDIR=lib
   make
 }


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

2018-01-30 Thread Kyle Keen via arch-commits
Date: Tuesday, January 30, 2018 @ 12:43:37
  Author: kkeen
Revision: 288293

archrelease: copy trunk to community-x86_64

Added:
  simplescreenrecorder/repos/community-x86_64/PKGBUILD
(from rev 288292, simplescreenrecorder/trunk/PKGBUILD)
  simplescreenrecorder/repos/community-x86_64/simplescreenrecorder.install
(from rev 288292, simplescreenrecorder/trunk/simplescreenrecorder.install)
Deleted:
  simplescreenrecorder/repos/community-x86_64/PKGBUILD
  simplescreenrecorder/repos/community-x86_64/simplescreenrecorder.install

--+
 PKGBUILD |   87 -
 simplescreenrecorder.install |   18 
 2 files changed, 53 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 12:41:53 UTC (rev 288292)
+++ PKGBUILD2018-01-30 12:43:37 UTC (rev 288293)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Maarten Baert
-
-pkgname=simplescreenrecorder
-pkgver=0.3.9
-pkgrel=1
-pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
-arch=("x86_64")
-url="http://www.maartenbaert.be/simplescreenrecorder/;
-license=("GPL3")
-# upstream reports crashes with Qt5, reverting FS#45104
-#depends=("qt5-base" "qt5-x11extras" "qt5-tools" "ffmpeg" "alsa-lib" 
"libpulse" "jack" "libgl" "glu" "libx11" "libxext" "libxfixes" "libxi")
-depends=("qt4" "ffmpeg" "alsa-lib" "libpulse" "jack" "libgl" "glu"
-"libx11" "libxext" "libxfixes" "libxi"
-"desktop-file-utils" "gtk-update-icon-cache")
-optdepends=("lib32-simplescreenrecorder: OpenGL recording of 32-bit 
applications")
-makedepends=("git" "cmake")
-source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver;)
-md5sums=("SKIP")
-
-options=("!libtool")
-install=simplescreenrecorder.install
-
-prepare() {
-  cd ssr
-  mkdir -p build
-}
-
-build() {
-  cd ssr/build
-  # fPIC is only required for qt5 + gcc5
-  #CXXFLAGS="$CXXFLAGS -fPIC"
-  #./configure --prefix=/usr --disable-assert --with-qt5
-  #./configure --prefix=/usr --disable-assert
-  cmake -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_LIBDIR='lib' ../
-  make
-}
-package() {
-  cd ssr/build
-  make DESTDIR="$pkgdir" install
-}

Copied: simplescreenrecorder/repos/community-x86_64/PKGBUILD (from rev 288292, 
simplescreenrecorder/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 12:43:37 UTC (rev 288293)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Maarten Baert
+
+pkgname=simplescreenrecorder
+pkgver=0.3.9
+pkgrel=2
+pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
+arch=("x86_64")
+url="http://www.maartenbaert.be/simplescreenrecorder/;
+license=("GPL3")
+# upstream reports crashes with Qt5, reverting FS#45104
+#depends=("qt5-base" "qt5-x11extras" "qt5-tools" "ffmpeg" "alsa-lib" 
"libpulse" "jack" "libgl" "glu" "libx11" "libxext" "libxfixes" "libxi")
+depends=("qt4" "ffmpeg" "alsa-lib" "libpulse" "jack" "libgl" "glu"
+"libx11" "libxext" "libxfixes" "libxi"
+"desktop-file-utils" "gtk-update-icon-cache")
+optdepends=("lib32-simplescreenrecorder: OpenGL recording of 32-bit 
applications")
+makedepends=("git" "cmake")
+source=("git+https://github.com/MaartenBaert/ssr.git#tag=$pkgver;)
+md5sums=("SKIP")
+
+options=("!libtool")
+install=simplescreenrecorder.install
+
+prepare() {
+  cd ssr
+  mkdir -p build
+}
+
+build() {
+  cd ssr/build
+  # fPIC is only required for qt5 + gcc5
+  #CXXFLAGS="$CXXFLAGS -fPIC"
+  #./configure --prefix=/usr --disable-assert --with-qt5
+  #./configure --prefix=/usr --disable-assert
+  cmake -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_BUILD_TYPE=Release \
+-DLRELEASE='/usr/bin/lrelease-qt4' \
+-DCMAKE_INSTALL_LIBDIR='lib' ../
+  make
+}
+package() {
+  cd ssr/build
+  make DESTDIR="$pkgdir" install
+}

Deleted: simplescreenrecorder.install
===
--- simplescreenrecorder.install2018-01-30 12:41:53 UTC (rev 288292)
+++ simplescreenrecorder.install2018-01-30 12:43:37 UTC (rev 288293)
@@ -1,9 +0,0 @@
-post_install() {
-   ldconfig
-}
-post_upgrade() {
-   post_install
-}
-post_remove() {
-   post_install
-}

Copied: 
simplescreenrecorder/repos/community-x86_64/simplescreenrecorder.install (from 
rev 288292, simplescreenrecorder/trunk/simplescreenrecorder.install)
===
--- simplescreenrecorder.install(rev 0)
+++ simplescreenrecorder.install2018-01-30 12:43:37 UTC (rev 288293)
@@ -0,0 +1,9 @@
+post_install() {
+   ldconfig
+}
+post_upgrade() {
+   post_install
+}
+post_remove() {
+   post_install
+}


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

2018-01-30 Thread Kyle Keen via arch-commits
Date: Tuesday, January 30, 2018 @ 12:41:53
  Author: kkeen
Revision: 288292

fix FS#57171, missing translation files

Modified:
  simplescreenrecorder/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:34:56 UTC (rev 288291)
+++ PKGBUILD2018-01-30 12:41:53 UTC (rev 288292)
@@ -4,7 +4,7 @@
 
 pkgname=simplescreenrecorder
 pkgver=0.3.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A feature-rich screen recorder that supports X11 and OpenGL."
 arch=("x86_64")
 url="http://www.maartenbaert.be/simplescreenrecorder/;
@@ -34,6 +34,7 @@
   #./configure --prefix=/usr --disable-assert --with-qt5
   #./configure --prefix=/usr --disable-assert
   cmake -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_BUILD_TYPE=Release \
+-DLRELEASE='/usr/bin/lrelease-qt4' \
 -DCMAKE_INSTALL_LIBDIR='lib' ../
   make
 }


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 12:34:56
  Author: arojas
Revision: 288291

archrelease: copy trunk to community-x86_64

Added:
  babe/repos/community-x86_64/PKGBUILD
(from rev 288290, babe/trunk/PKGBUILD)
Deleted:
  babe/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-30 12:34:07 UTC (rev 288290)
+++ PKGBUILD2018-01-30 12:34:56 UTC (rev 288291)
@@ -1,29 +0,0 @@
-# Maintainer: Antonio Rojas 
-
-pkgname=babe
-pkgver=1.2
-pkgrel=1
-pkgdesc='A tiny music collection manager'
-url='https://babe.kde.org'
-arch=(x86_64)
-license=(GPL3)
-depends=(ki18n knotifications qt5-webengine qt5-websockets taglib)
-makedepends=(extra-cmake-modules python)
-source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha256sums=('f686e8ac3b5d18389cd1018df0ae93e8bcbe9fae9741c6f3da8920d46b4ef1fe')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: babe/repos/community-x86_64/PKGBUILD (from rev 288290, 
babe/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-30 12:34:56 UTC (rev 288291)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas 
+
+pkgname=babe
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='A tiny music collection manager'
+url='https://babe.kde.org'
+arch=(x86_64)
+license=(GPL3)
+depends=(ki18n knotifications qt5-webengine qt5-websockets taglib)
+makedepends=(extra-cmake-modules python)
+source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
+sha256sums=('eced1599b2b9af8f4ce7764120c454df4c299ddb436e1f392e57746c22bd7ba6')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}


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

2018-01-30 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 30, 2018 @ 12:34:07
  Author: arojas
Revision: 288290

Update to 1.2.1

Modified:
  babe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:14:58 UTC (rev 288289)
+++ PKGBUILD2018-01-30 12:34:07 UTC (rev 288290)
@@ -1,7 +1,7 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=babe
-pkgver=1.2
+pkgver=1.2.1
 pkgrel=1
 pkgdesc='A tiny music collection manager'
 url='https://babe.kde.org'
@@ -10,7 +10,7 @@
 depends=(ki18n knotifications qt5-webengine qt5-websockets taglib)
 makedepends=(extra-cmake-modules python)
 
source=("https://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.xz;)
-sha256sums=('f686e8ac3b5d18389cd1018df0ae93e8bcbe9fae9741c6f3da8920d46b4ef1fe')
+sha256sums=('eced1599b2b9af8f4ce7764120c454df4c299ddb436e1f392e57746c22bd7ba6')
 
 prepare() {
   mkdir -p build


[arch-commits] Commit in haskell-vector-instances/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:12:10
  Author: felixonmars
Revision: 288271

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-vector-instances/repos/community-staging-x86_64/
  haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD
(from rev 288270, haskell-vector-instances/trunk/PKGBUILD)

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

Copied: haskell-vector-instances/repos/community-staging-x86_64/PKGBUILD (from 
rev 288270, haskell-vector-instances/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 12:12:10 UTC (rev 288271)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vector-instances
+pkgname=haskell-vector-instances
+pkgver=3.4
+pkgrel=33
+pkgdesc="Orphan Instances for \'Data.Vector\'"
+url="https://github.com/ekmett/vector-instances;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-comonad" "haskell-hashable" "haskell-keys" 
"haskell-pointed"
+ "haskell-semigroupoids" "haskell-semigroups" "haskell-vector")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('67ffd6b941909bda1b6f26c8c7579fc495267425461f15f20bbaecf22b67d3dbf4ee88eb2ac76232f47917c26558eb325fedfe8ffc97368bbe1ad90fb427a7b1')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fhashable
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-vector-instances/trunk (PKGBUILD)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:11:38
  Author: felixonmars
Revision: 288270

upgpkg: haskell-vector-instances 3.4-33

rebuild with adjunctions,4.4

Modified:
  haskell-vector-instances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:10:42 UTC (rev 288269)
+++ PKGBUILD2018-01-30 12:11:38 UTC (rev 288270)
@@ -5,7 +5,7 @@
 _hkgname=vector-instances
 pkgname=haskell-vector-instances
 pkgver=3.4
-pkgrel=32
+pkgrel=33
 pkgdesc="Orphan Instances for \'Data.Vector\'"
 url="https://github.com/ekmett/vector-instances;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-pointed/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:10:42
  Author: felixonmars
Revision: 288269

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-pointed/repos/community-staging-x86_64/
  haskell-pointed/repos/community-staging-x86_64/PKGBUILD
(from rev 288268, haskell-pointed/trunk/PKGBUILD)

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

Copied: haskell-pointed/repos/community-staging-x86_64/PKGBUILD (from rev 
288268, haskell-pointed/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 12:10:42 UTC (rev 288269)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pointed
+pkgname=haskell-pointed
+pkgver=5.0.1
+pkgrel=4
+pkgdesc="Pointed and copointed data"
+url="https://github.com/ekmett/pointed/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-comonad' 'haskell-data-default-class' 
'haskell-hashable'
+ 'haskell-kan-extensions' 'haskell-semigroupoids' 'haskell-semigroups' 
'haskell-stm'
+ 'haskell-tagged' 'haskell-transformers-compat' 
'haskell-unordered-containers')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('65958628c983a2c2866b1a1a615c7a7f2f516068c667ce9b93f4214b863632b40eba4915d49e07388c52ced8868bb308b24e7b38a6f50563c68954696748c99b')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcomonad -fcontainers -fkan-extensions -fsemigroupoids 
-fsemigroups \
+-fstm -ftagged -ftransformers -funordered-containers
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:10:02
  Author: felixonmars
Revision: 288268

upgpkg: haskell-pointed 5.0.1-4

rebuild with adjunctions,4.4

Modified:
  haskell-pointed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:08:49 UTC (rev 288267)
+++ PKGBUILD2018-01-30 12:10:02 UTC (rev 288268)
@@ -5,7 +5,7 @@
 _hkgname=pointed
 pkgname=haskell-pointed
 pkgver=5.0.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Pointed and copointed data"
 url="https://github.com/ekmett/pointed/;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-trifecta/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:08:49
  Author: felixonmars
Revision: 288267

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-trifecta/repos/community-staging-x86_64/
  haskell-trifecta/repos/community-staging-x86_64/PKGBUILD
(from rev 288266, haskell-trifecta/trunk/PKGBUILD)

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

Copied: haskell-trifecta/repos/community-staging-x86_64/PKGBUILD (from rev 
288266, haskell-trifecta/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 12:08:49 UTC (rev 288267)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=trifecta
+pkgname=haskell-trifecta
+pkgver=1.7.1.1
+pkgrel=29
+pkgdesc="A modern parser combinator library with convenient diagnostics"
+url="https://github.com/ekmett/trifecta/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-charset" 
"haskell-comonad"
+ "haskell-fingertree" "haskell-hashable" "haskell-lens" "haskell-mtl" 
"haskell-parsers"
+ "haskell-profunctors" "haskell-reducers" "haskell-semigroups" 
"haskell-unordered-containers"
+ "haskell-utf8-string")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('5da4e04be3f4f02220aa730b830a50b9a5df243815d6e00051beb7274af3bc78e50cf70747e3e1f448b2966d1c3051ab589e7d99a0432620390c6193d034a602')
+
+prepare() {
+sed -i 's/ansi-terminal>= 0.6 && < 0.7,/ansi-terminal
>= 0.6,/' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:08:13
  Author: felixonmars
Revision: 288266

upgpkg: haskell-trifecta 1.7.1.1-29

rebuild with adjunctions,4.4

Modified:
  haskell-trifecta/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:07:10 UTC (rev 288265)
+++ PKGBUILD2018-01-30 12:08:13 UTC (rev 288266)
@@ -5,7 +5,7 @@
 _hkgname=trifecta
 pkgname=haskell-trifecta
 pkgver=1.7.1.1
-pkgrel=28
+pkgrel=29
 pkgdesc="A modern parser combinator library with convenient diagnostics"
 url="https://github.com/ekmett/trifecta/;
 license=("custom:BSD3")


[arch-commits] Commit in hledger-api/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:07:10
  Author: felixonmars
Revision: 288265

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-api/repos/community-staging-x86_64/
  hledger-api/repos/community-staging-x86_64/PKGBUILD
(from rev 288264, hledger-api/trunk/PKGBUILD)

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 288264, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 12:07:10 UTC (rev 288265)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.5
+pkgrel=39
+pkgdesc="Web API server for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-aeson' 
'haskell-decimal'
+ 'haskell-docopt' 'haskell-either' 'haskell-microlens' 
'haskell-microlens-platform'
+ 'haskell-safe' 'haskell-servant-server' 'haskell-servant-swagger' 
'haskell-swagger2'
+ 'haskell-text' 'haskell-wai' 'haskell-wai-extra' 'haskell-warp')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('237eb5f6b88c1d8fc3647e6ce5d2d1db70abaf4c5f3b3c3392327333a539df49227d2063f0d55ac9cd4c9982c566f3733412b683a87c762b064f4b1c5aa1daae')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:06:42
  Author: felixonmars
Revision: 288264

upgpkg: hledger-api 1.5-39

rebuild with adjunctions,4.4

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:05:25 UTC (rev 288263)
+++ PKGBUILD2018-01-30 12:06:42 UTC (rev 288264)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-api
 pkgver=1.5
-pkgrel=38
+pkgrel=39
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


[arch-commits] Commit in haskell-servant-swagger/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:05:25
  Author: felixonmars
Revision: 288263

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-servant-swagger/repos/community-staging-x86_64/
  haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD
(from rev 288262, haskell-servant-swagger/trunk/PKGBUILD)

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

Copied: haskell-servant-swagger/repos/community-staging-x86_64/PKGBUILD (from 
rev 288262, haskell-servant-swagger/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 12:05:25 UTC (rev 288263)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=servant-swagger
+pkgname=haskell-servant-swagger
+pkgver=1.1.4
+pkgrel=26
+pkgdesc="Generate Swagger specification for your servant API."
+url="https://github.com/haskell-servant/servant-swagger;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-http-media' 
'haskell-insert-ordered-containers'
+ 'haskell-lens' 'haskell-servant' 'haskell-swagger2' 'haskell-text'
+ 'haskell-unordered-containers' 'haskell-hspec' 'haskell-quickcheck')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-cabal-doctest' 
'haskell-doctest')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('990e8c03d6ed6da0ac15d80cd4bce5a46f816fce4e6cfb8eb11db664d09662075ae1ef3508a682fc695a76e3952d080c4e406a0cdb12b995e044935e408cd516')
+
+prepare() {
+sed -i '/test-suite doctests/a \  x-doctest-options: -dynamic' 
$_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $_hkgname-$pkgver
+runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-servant-swagger/trunk (PKGBUILD)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:04:52
  Author: felixonmars
Revision: 288262

upgpkg: haskell-servant-swagger 1.1.4-26

rebuild with adjunctions,4.4

Modified:
  haskell-servant-swagger/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 12:03:22 UTC (rev 288261)
+++ PKGBUILD2018-01-30 12:04:52 UTC (rev 288262)
@@ -5,7 +5,7 @@
 _hkgname=servant-swagger
 pkgname=haskell-servant-swagger
 pkgver=1.1.4
-pkgrel=25
+pkgrel=26
 pkgdesc="Generate Swagger specification for your servant API."
 url="https://github.com/haskell-servant/servant-swagger;
 license=("custom:BSD3")


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

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:03:22
  Author: felixonmars
Revision: 288261

archrelease: copy trunk to community-staging-x86_64

Added:
  postgrest/repos/community-staging-x86_64/
  postgrest/repos/community-staging-x86_64/PKGBUILD
(from rev 288260, postgrest/trunk/PKGBUILD)

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

Copied: postgrest/repos/community-staging-x86_64/PKGBUILD (from rev 288260, 
postgrest/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 12:03:22 UTC (rev 288261)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=postgrest
+pkgver=0.4.4.0
+pkgrel=23
+pkgdesc="REST API for any Postgres database"
+url="https://github.com/begriffs/postgrest;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-hasql' 'haskell-hasql-pool' 'haskell-protolude' 
'haskell-text'
+ 'haskell-warp' 'haskell-base64-bytestring' 'haskell-retry' 
'haskell-aeson'
+ 'haskell-ansi-wl-pprint' 'haskell-case-insensitive' 'haskell-cassava'
+ 'haskell-configurator-ng' 'haskell-contravariant' 'haskell-either' 
'haskell-gitrev'
+ 'haskell-hasql-transaction' 'haskell-heredoc' 'haskell-http' 
'haskell-http-types'
+ 'haskell-insert-ordered-containers' 
'haskell-interpolatedstring-perl6' 'haskell-jose'
+ 'haskell-lens' 'haskell-lens-aeson' 'haskell-network-uri' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-ranged-sets' 'haskell-regex-tdfa' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-swagger2' 
'haskell-unordered-containers' 'haskell-vector'
+ 'haskell-wai' 'haskell-wai-cors' 'haskell-wai-extra' 
'haskell-wai-middleware-static'
+ 'haskell-cookie')
+makedepends=('ghc' 'haskell-aeson-qq' 'haskell-async' 'haskell-hspec' 
'haskell-hspec-wai'
+ 'haskell-hspec-wai-json' 'haskell-hjsonschema')
+checkdepends=('pifpaf' 'postgresql' 'procps-ng')
+source=("$pkgname-$pkgver.tar.bz2::https://github.com/begriffs/postgrest/archive/v$pkgver.tar.gz;)
+sha512sums=('f19c426a59d1c77d8e7808ee248eba1967cc5fc8686f5380603e2f8ab80aeeca20a4b145e056feceb1bcb9dedfa3b88c2ace7aab4bc1152f780630360fe6485c')
+
+prepare() {
+sed -i 's/==/>=/' $pkgname-$pkgver/$pkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-CI
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+check() {
+cd $pkgname-$pkgver
+
+eval $(pifpaf run postgresql --host 127.0.0.1 --port 5432)
+createdb postgrest_test
+
+# TODO: it shouldn't take this long to finish
+# POSTGREST_TEST_CONNECTION=$(test/create_test_db 
"postgres://$USER@localhost" postgrest_test) runhaskell Setup test
+
+# Disabled: uses stack
+# test/io-tests.sh
+
+pifpaf_stop
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 12:02:15
  Author: felixonmars
Revision: 288260

upgpkg: postgrest 0.4.4.0-23

rebuild with adjunctions,4.4

Modified:
  postgrest/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 11:59:17 UTC (rev 288259)
+++ PKGBUILD2018-01-30 12:02:15 UTC (rev 288260)
@@ -4,7 +4,7 @@
 
 pkgname=postgrest
 pkgver=0.4.4.0
-pkgrel=22
+pkgrel=23
 pkgdesc="REST API for any Postgres database"
 url="https://github.com/begriffs/postgrest;
 license=("MIT")


[arch-commits] Commit in haskell-swagger2/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:59:17
  Author: felixonmars
Revision: 288259

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-swagger2/repos/community-staging-x86_64/
  haskell-swagger2/repos/community-staging-x86_64/PKGBUILD
(from rev 288258, haskell-swagger2/trunk/PKGBUILD)

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

Copied: haskell-swagger2/repos/community-staging-x86_64/PKGBUILD (from rev 
288258, haskell-swagger2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 11:59:17 UTC (rev 288259)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=swagger2
+pkgname=haskell-swagger2
+pkgver=2.2
+pkgrel=16
+pkgdesc="Swagger 2.0 data model"
+url="https://github.com/GetShopTV/swagger2;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-base-compat" "haskell-hashable" 
"haskell-generics-sop"
+ "haskell-http-media" "haskell-insert-ordered-containers" 
"haskell-lens" "haskell-mtl"
+ "haskell-network" "haskell-scientific" "haskell-text" 
"haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-uuid-types")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('aff8e49641cf6054fe9f01d48de19bcc70474bf053b78ba3c237b60f06e09989c02a6c2d21527697eb6848fbc04519cd1157dbed31ba801f274cffdadf0b')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:58:39
  Author: felixonmars
Revision: 288258

upgpkg: haskell-swagger2 2.2-16

rebuild with adjunctions,4.4

Modified:
  haskell-swagger2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 11:56:24 UTC (rev 288257)
+++ PKGBUILD2018-01-30 11:58:39 UTC (rev 288258)
@@ -5,7 +5,7 @@
 _hkgname=swagger2
 pkgname=haskell-swagger2
 pkgver=2.2
-pkgrel=15
+pkgrel=16
 pkgdesc="Swagger 2.0 data model"
 url="https://github.com/GetShopTV/swagger2;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-lens-aeson/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:56:24
  Author: felixonmars
Revision: 288257

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-lens-aeson/repos/community-staging-x86_64/
  haskell-lens-aeson/repos/community-staging-x86_64/PKGBUILD
(from rev 288256, haskell-lens-aeson/trunk/PKGBUILD)

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

Copied: haskell-lens-aeson/repos/community-staging-x86_64/PKGBUILD (from rev 
288256, haskell-lens-aeson/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 11:56:24 UTC (rev 288257)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=lens-aeson
+pkgname=haskell-lens-aeson
+pkgver=1.0.2
+pkgrel=28
+pkgdesc="Law-abiding lenses for aeson"
+url="http://github.com/lens/lens-aeson/;
+license=('MIT')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 'haskell-lens' 
'haskell-scientific'
+ 'haskell-text' 'haskell-unordered-containers' 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('db13c9126b41fd1b3b2e66c72e069ef07722c4e125a128eca2592bf2c68b7e550c10a0d35795616c0e66ed6c70bbe3b188e9baba19913bba41b5d44900b71013')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-test-doctests
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-lens-aeson/trunk (PKGBUILD)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:55:55
  Author: felixonmars
Revision: 288256

upgpkg: haskell-lens-aeson 1.0.2-28

rebuild with adjunctions,4.4

Modified:
  haskell-lens-aeson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 11:52:32 UTC (rev 288255)
+++ PKGBUILD2018-01-30 11:55:55 UTC (rev 288256)
@@ -4,7 +4,7 @@
 _hkgname=lens-aeson
 pkgname=haskell-lens-aeson
 pkgver=1.0.2
-pkgrel=27
+pkgrel=28
 pkgdesc="Law-abiding lenses for aeson"
 url="http://github.com/lens/lens-aeson/;
 license=('MIT')


[arch-commits] Commit in haskell-jose/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:52:32
  Author: felixonmars
Revision: 288255

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-jose/repos/community-staging-x86_64/
  haskell-jose/repos/community-staging-x86_64/PKGBUILD
(from rev 288254, haskell-jose/trunk/PKGBUILD)

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

Copied: haskell-jose/repos/community-staging-x86_64/PKGBUILD (from rev 288254, 
haskell-jose/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 11:52:32 UTC (rev 288255)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=jose
+pkgname=haskell-jose
+pkgver=0.6.0.3
+pkgrel=23
+pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
+url="https://github.com/frasertweedale/hs-jose;
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-attoparsec' 'haskell-base64-bytestring' 
'haskell-concise'
+ 'haskell-cryptonite' 'haskell-lens' 'haskell-memory' 
'haskell-monad-time' 'haskell-mtl'
+ 'haskell-semigroups' 'haskell-safe' 'haskell-aeson' 
'haskell-unordered-containers'
+ 'haskell-text' 'haskell-network-uri' 'haskell-quickcheck' 
'haskell-quickcheck-instances'
+ 'haskell-x509' 'haskell-vector')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('7ea81c0d3571debbf18409c9f77cb1528df611ca4b7186f705158edea9b6b8e348d5f6d5fd2acfcd00063011b053bb2bfa43086177f21ef7300af5d5c7e6b45c')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+mv "$pkgdir"/usr/bin/{,jose-}example
+}


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

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:49:09
  Author: felixonmars
Revision: 288254

upgpkg: haskell-jose 0.6.0.3-23

rebuild with adjunctions,4.4

Modified:
  haskell-jose/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 11:47:20 UTC (rev 288253)
+++ PKGBUILD2018-01-30 11:49:09 UTC (rev 288254)
@@ -5,7 +5,7 @@
 _hkgname=jose
 pkgname=haskell-jose
 pkgver=0.6.0.3
-pkgrel=22
+pkgrel=23
 pkgdesc="Javascript Object Signing and Encryption and JSON Web Token library"
 url="https://github.com/frasertweedale/hs-jose;
 license=("Apache")


[arch-commits] Commit in haskell-insert-ordered-containers/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:47:20
  Author: felixonmars
Revision: 288253

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-insert-ordered-containers/repos/community-staging-x86_64/
  haskell-insert-ordered-containers/repos/community-staging-x86_64/PKGBUILD
(from rev 288252, haskell-insert-ordered-containers/trunk/PKGBUILD)

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

Copied: 
haskell-insert-ordered-containers/repos/community-staging-x86_64/PKGBUILD (from 
rev 288252, haskell-insert-ordered-containers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 11:47:20 UTC (rev 288253)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=insert-ordered-containers
+pkgname=haskell-insert-ordered-containers
+pkgver=0.2.1.0
+pkgrel=47
+pkgdesc="Associative containers retating insertion order for traversals."
+url="https://github.com/phadej/insert-ordered-containers;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-base-compat' 'haskell-hashable' 
'haskell-lens'
+ 'haskell-semigroupoids' 'haskell-semigroups' 'haskell-text' 
'haskell-unordered-containers')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('baff8b23700a7d0209810208183d9856c0a5219018c5f09e82f8820ac87630073543da19e1198fc42f3feec143895707e5e33fdf1edbf8f4e6c441271cc3243b')
+
+prepare() {
+sed -e 's/, semigroupoids >=4.3  && <5.2/, semigroupoids   
  >=4.3/' \
+-e 's/, aeson >=1.0.0.0  && <1.2/, aeson   
  >=1.0.0.0/' \
+-e 's/base  >=4.6  && <4.10/base  
>=4.6/' \
+-i ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


[arch-commits] Commit in haskell-insert-ordered-containers/trunk (PKGBUILD)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:46:54
  Author: felixonmars
Revision: 288252

upgpkg: haskell-insert-ordered-containers 0.2.1.0-47

rebuild with adjunctions,4.4

Modified:
  haskell-insert-ordered-containers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-01-30 11:45:50 UTC (rev 288251)
+++ PKGBUILD2018-01-30 11:46:54 UTC (rev 288252)
@@ -4,7 +4,7 @@
 _hkgname=insert-ordered-containers
 pkgname=haskell-insert-ordered-containers
 pkgver=0.2.1.0
-pkgrel=46
+pkgrel=47
 pkgdesc="Associative containers retating insertion order for traversals."
 url="https://github.com/phadej/insert-ordered-containers;
 license=('custom:BSD3')


[arch-commits] Commit in hopenpgp-tools/repos (2 files)

2018-01-30 Thread Felix Yan via arch-commits
Date: Tuesday, January 30, 2018 @ 11:45:50
  Author: felixonmars
Revision: 288251

archrelease: copy trunk to community-staging-x86_64

Added:
  hopenpgp-tools/repos/community-staging-x86_64/
  hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD
(from rev 288250, hopenpgp-tools/trunk/PKGBUILD)

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

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
288250, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-01-30 11:45:50 UTC (rev 288251)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.5
+pkgrel=60
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-ansi-wl-pprint" 
"haskell-attoparsec"
+ "haskell-base16-bytestring" "haskell-binary-conduit" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-crypto-pubkey" "haskell-cryptohash" 
"haskell-errors"
+ "haskell-fgl" "haskell-graphviz" "haskell-hopenpgp" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-types" "haskell-ixset-typed" 
"haskell-lens"
+ "haskell-monad-loops" "haskell-openpgp-asciiarmor" 
"haskell-optparse-applicative"
+ "haskell-resourcet" "haskell-text" "haskell-time-locale-compat" 
"haskell-wl-pprint-extras"
+ "haskell-wl-pprint-terminfo" "haskell-yaml")
+makedepends=('alex' 'happy' 'ghc')
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha512sums=('0ecba903607ef27f14c43bf1f6a2383a740c44802dcecf6ac093f41f8d754d77ef6f14e8200316cd2d7e56b8c63934299c521b6693baf1ca219b65485fd6d52a')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


  1   2   3   >