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

2018-02-21 Thread Nicola Squartini via arch-commits
Date: Wednesday, February 21, 2018 @ 09:07:56
  Author: tensor5
Revision: 296663

upgpkg: go-ethereum 1.8.1-1

Modified:
  go-ethereum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 08:35:13 UTC (rev 296662)
+++ PKGBUILD2018-02-21 09:07:56 UTC (rev 296663)
@@ -2,8 +2,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=go-ethereum
-pkgver=1.8.0
-_commit=5f54075760748ae7f249bf735565924ea885c477
+pkgver=1.8.1
+_commit=1e67410e88d2685bc54611a7c9f75c327b553ccc
 pkgrel=1
 pkgdesc='Official golang implementation of the Ethereum protocol'
 arch=('x86_64')


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

2018-02-21 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, February 21, 2018 @ 09:24:00
  Author: svenstaro
Revision: 29

archrelease: copy trunk to community-x86_64

Added:
  lua-mpack/repos/community-x86_64/PKGBUILD
(from rev 296665, lua-mpack/trunk/PKGBUILD)
Deleted:
  lua-mpack/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 09:23:45 UTC (rev 296665)
+++ PKGBUILD2018-02-21 09:24:00 UTC (rev 29)
@@ -1,56 +0,0 @@
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: Florian Walch 
-
-pkgbase=lua-mpack
-pkgname=('lua51-mpack')
-pkgver=1.0.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url='https://github.com/tarruda/libmpack'
-makedepends=('lua51' 'lua52' 'lua')
-license=('MIT')
-source=("libmpack-${pkgver}.tar.gz::https://github.com/tarruda/libmpack/archive/${pkgver}.tar.gz;)
-sha256sums=('9c570b2aab81b0c56d97cbd8fc483dc431b69510fd9becb4a1845291563e8bc9')
-
-build() {
-  cd "${srcdir}/libmpack-${pkgver}"
-
-  gcc -O2 -fPIC -I/usr/include/lua5.1 -c binding/lua/lmpack.c -o lmpack.o
-  gcc -shared -o mpack.so.5.1 lmpack.o
-
-  # Broken currently
-  # gcc -O2 -fPIC -I/usr/include/lua5.2 -c binding/lua/lmpack.c -o lmpack.o
-  # gcc -shared -o mpack.so.5.2 lmpack.o
-  #
-  # gcc -O2 -fPIC -I/usr/include -c binding/lua/lmpack.c -o lmpack.o
-  # gcc -shared -o mpack.so.5.3 lmpack.o
-}
-
-package_lua51-mpack() {
-  pkgdesc='Simple implementation of msgpack in C Lua 5.1'
-  depends=('lua51')
-
-  cd "${srcdir}/libmpack-${pkgver}"
-  install -Dm755 mpack.so.5.1 "${pkgdir}/usr/lib/lua/5.1/mpack.so"
-  install -Dm644 LICENSE-MIT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-# package_lua52-mpack() {
-#   pkgdesc='Simple implementation of msgpack in C Lua 5.2'
-#   depends=('lua52')
-#
-#   cd "${srcdir}/libmpack-${pkgver}"
-#   install -Dm755 mpack.so.5.3 "${pkgdir}/usr/lib/lua/5.2/mpack.so"
-#   install -Dm644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-# }
-#
-# package_lua-mpack() {
-#   pkgdesc='Simple implementation of msgpack in C Lua 5.3'
-#   depends=('lua')
-#
-#   cd "${srcdir}/libmpack-${pkgver}"
-#   install -Dm755 mpack.so.5.3 "${pkgdir}/usr/lib/lua/5.3/mpack.so"
-#   install -Dm644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-# }
-
-# vim:set sw=2 sts=2 et:

Copied: lua-mpack/repos/community-x86_64/PKGBUILD (from rev 296665, 
lua-mpack/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 09:24:00 UTC (rev 29)
@@ -0,0 +1,58 @@
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: Florian Walch 
+
+pkgbase=lua-mpack
+pkgname=('lua51-mpack')
+pkgver=1.0.7
+pkgdesc="libmpack lua binding"
+pkgrel=1
+arch=('x86_64')
+url='https://github.com/libmpack/libmpack-lua'
+depends=('libmpack')
+makedepends=('lua51' 'lua52' 'lua')
+license=('MIT')
+source=("libmpack-lua-${pkgver}.tar.gz::https://github.com/libmpack/libmpack-lua/archive/${pkgver}.tar.gz;)
+sha256sums=('2ebe9c8972c378040c9b8505f5fb40a0c64d990cd68be6a62989362b18294d0a')
+
+build() {
+  cd "libmpack-lua-${pkgver}"
+
+  gcc -O2 -fPIC -DMPACK_USE_SYSTEM -I/usr/include/lua5.1 -c lmpack.c -o 
lmpack.o
+  gcc -shared -lmpack -o mpack.so.5.1 lmpack.o
+
+  # Broken currently
+  # gcc -O2 -fPIC -I/usr/include/lua5.2 -c lmpack.c -o lmpack.o
+  # gcc -shared -o mpack.so.5.2 lmpack.o
+  #
+  # gcc -O2 -fPIC -I/usr/include -c lmpack.c -o lmpack.o
+  # gcc -shared -o mpack.so.5.3 lmpack.o
+}
+
+package_lua51-mpack() {
+  pkgdesc='Simple implementation of msgpack in C Lua 5.1'
+  depends=('lua51')
+
+  cd "libmpack-lua-${pkgver}"
+  install -Dm755 mpack.so.5.1 "${pkgdir}/usr/lib/lua/5.1/mpack.so"
+  install -Dm644 LICENSE-MIT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+# package_lua52-mpack() {
+#   pkgdesc='Simple implementation of msgpack in C Lua 5.2'
+#   depends=('lua52')
+#
+#   cd "${srcdir}/libmpack-${pkgver}"
+#   install -Dm755 mpack.so.5.3 "${pkgdir}/usr/lib/lua/5.2/mpack.so"
+#   install -Dm644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+# }
+#
+# package_lua-mpack() {
+#   pkgdesc='Simple implementation of msgpack in C Lua 5.3'
+#   depends=('lua')
+#
+#   cd "${srcdir}/libmpack-${pkgver}"
+#   install -Dm755 mpack.so.5.3 "${pkgdir}/usr/lib/lua/5.3/mpack.so"
+#   install -Dm644 LICENSE-MIT 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+# }
+
+# vim:set sw=2 sts=2 et:


[arch-commits] Commit in apper/trunk (apper.install)

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 08:34:40
  Author: arojas
Revision: 296661

Remove install

Deleted:
  apper/trunk/apper.install

---+
 apper.install |   29 -
 1 file changed, 29 deletions(-)

Deleted: apper.install
===
--- apper.install   2018-02-21 08:34:05 UTC (rev 296660)
+++ apper.install   2018-02-21 08:34:40 UTC (rev 296661)
@@ -1,29 +0,0 @@
-available() {
-   which "$1" >/dev/null 2>&1
-}
-
-updatemime() {
-   # Setup Menus
-   if available update-desktop-database
-   then
-   update-desktop-database -q /usr/share/applications
-   fi
-
-   # Setup MIME types
-   if available update-mime-database
-   then
-   update-mime-database /usr/share/mime >/dev/null
-   fi
-}
-
-post_install() {
-   updatemime
-}
-
-post_upgrade() {
-   updatemime
-}
-
-post_remove() {
-   updatemime
-}


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

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 08:35:13
  Author: arojas
Revision: 296662

archrelease: copy trunk to community-x86_64

Added:
  apper/repos/community-x86_64/
  apper/repos/community-x86_64/PKGBUILD
(from rev 296661, apper/trunk/PKGBUILD)
  apper/repos/community-x86_64/apper-rpath.patch
(from rev 296661, apper/trunk/apper-rpath.patch)

---+
 PKGBUILD  |   44 
 apper-rpath.patch |   13 +
 2 files changed, 57 insertions(+)

Copied: apper/repos/community-x86_64/PKGBUILD (from rev 296661, 
apper/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-02-21 08:35:13 UTC (rev 296662)
@@ -0,0 +1,44 @@
+# Maintainer: Antonio Rojas 
+# Contributor: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Valeriy Lyasotskiy 
+# Contributor: Zom 
+
+pkgname=apper
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="An application and package manager using PackageKit"
+arch=(x86_64)
+url="https://www.kde.org/applications/system/apper/;
+license=(GPL)
+depends=(packagekit-qt5 kcmutils appstream-qt)
+makedepends=(extra-cmake-modules kdoctools plasma-workspace)
+optdepends=('plasma-workspace: Updates daemon')
+source=("http://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
 apper-rpath.patch)
+sha256sums=('1a30be92aab8bd258c2a8824f533c5646b934e06b4268edbd11724ea450f4923'
+'SKIP'
+'17ce82a3f9bafebc5d2b2dc63e5c73d7be4b216e9110f0ca73050be0010d')
+validpgpkeys=(70C26659D184ABC01FFAF45228DDEDC6E4480AD0) # Daniel Nicoletti 

+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../apper-rpath.patch # Fix RPATH of apper binary
+}
+
+build() {
+  cd build
+
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DAPPSTREAM=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Copied: apper/repos/community-x86_64/apper-rpath.patch (from rev 296661, 
apper/trunk/apper-rpath.patch)
===
--- community-x86_64/apper-rpath.patch  (rev 0)
+++ community-x86_64/apper-rpath.patch  2018-02-21 08:35:13 UTC (rev 296662)
@@ -0,0 +1,13 @@
+diff --git a/Apper/CMakeLists.txt b/Apper/CMakeLists.txt
+index 2b71603..8c24305 100644
+--- a/Apper/CMakeLists.txt
 b/Apper/CMakeLists.txt
+@@ -49,7 +49,7 @@ target_link_libraries(apper
+ 
+ set_target_properties(apper PROPERTIES INSTALL_RPATH 
${CMAKE_INSTALL_FULL_LIBDIR}/apper)
+ 
+-install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/apper DESTINATION 
${CMAKE_INSTALL_BINDIR})
++install(TARGETS apper DESTINATION ${CMAKE_INSTALL_BINDIR})
+ install(FILES org.kde.apper.desktop DESTINATION ${CMAKE_INSTALL_APPDIR})
+ install(FILES org.kde.apper_installer.desktop DESTINATION 
${CMAKE_INSTALL_APPDIR})
+ install(FILES org.kde.apper_settings.desktop DESTINATION 
${CMAKE_INSTALL_APPDIR})


[arch-commits] Commit in apper/trunk (PKGBUILD apper-rpath.patch)

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 08:34:05
  Author: arojas
Revision: 296660

Readd apper

Added:
  apper/trunk/apper-rpath.patch
Modified:
  apper/trunk/PKGBUILD

---+
 PKGBUILD  |   68 +---
 apper-rpath.patch |   13 +
 2 files changed, 46 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 07:32:04 UTC (rev 296659)
+++ PKGBUILD2018-02-21 08:34:05 UTC (rev 296660)
@@ -1,46 +1,44 @@
-# $Id$
-# Maintainer: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
+# Maintainer: Antonio Rojas 
+# Contributor: BlackIkeEagle < ike DOT devolder AT gmail DOT com >
 # Contributor: Valeriy Lyasotskiy 
 # Contributor: Zom 
 
 pkgname=apper
-_pkgmainver=0.7
-epoch=1
-pkgver=0.7.2
-pkgrel=7
-pkgdesc="KDE tools for PackageKit"
-arch=('x86_64')
-url="http://kde-apps.org/content/show.php/Apper?content=84745;
-license=('GPL')
-depends=('kdebase-workspace' 'packagekit-qt2>=0.6.17')
-makedepends=('cmake' 'automoc4' 'chrpath')
-install="$pkgname.install"
-provides=('kpackagekit')
-conflicts=('kpackagekit')
-replaces=('kpackagekit')
-source=("http://download.kde.org/stable/$pkgname/$pkgver/src/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('975fede728e7ab96d8e244ae721a2e15ae40b9fb1cd189a1f4afd46c400b219f')
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="An application and package manager using PackageKit"
+arch=(x86_64)
+url="https://www.kde.org/applications/system/apper/;
+license=(GPL)
+depends=(packagekit-qt5 kcmutils appstream-qt)
+makedepends=(extra-cmake-modules kdoctools plasma-workspace)
+optdepends=('plasma-workspace: Updates daemon')
+source=("http://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}
 apper-rpath.patch)
+sha256sums=('1a30be92aab8bd258c2a8824f533c5646b934e06b4268edbd11724ea450f4923'
+'SKIP'
+'17ce82a3f9bafebc5d2b2dc63e5c73d7be4b216e9110f0ca73050be0010d')
+validpgpkeys=(70C26659D184ABC01FFAF45228DDEDC6E4480AD0) # Daniel Nicoletti 

 
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../apper-rpath.patch # Fix RPATH of apper binary
+}
+
 build() {
-   cd "$pkgname-$pkgver"
-   [ -d "build" ] && rm -rf build
-   mkdir build
-   cd build
+  cd build
 
-   cmake ../ \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr
-   make
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_INSTALL_LIBEXECDIR=lib \
+-DAPPSTREAM=ON
+  make
 }
 
 package() {
-   cd "$pkgname-$pkgver"
-   cd build
-   make DESTDIR="$pkgdir" install
-   # avoid gnome-packagekit conflict (stolen from fedora as suggested)
-   mv 
"$pkgdir/usr/share/dbus-1/services/org.freedesktop.PackageKit.service" \
-   
"$pkgdir/usr/share/dbus-1/services/kde-org.freedesktop.PackageKit.service"
-   # Hack around cmake rpath bug (debian)
-   chrpath --list "$pkgdir/usr/bin/apper"
-   chrpath --replace "/usr/lib/apper" "$pkgdir/usr/bin/apper"
+  cd build
+  make DESTDIR="$pkgdir" install
 }

Added: apper-rpath.patch
===
--- apper-rpath.patch   (rev 0)
+++ apper-rpath.patch   2018-02-21 08:34:05 UTC (rev 296660)
@@ -0,0 +1,13 @@
+diff --git a/Apper/CMakeLists.txt b/Apper/CMakeLists.txt
+index 2b71603..8c24305 100644
+--- a/Apper/CMakeLists.txt
 b/Apper/CMakeLists.txt
+@@ -49,7 +49,7 @@ target_link_libraries(apper
+ 
+ set_target_properties(apper PROPERTIES INSTALL_RPATH 
${CMAKE_INSTALL_FULL_LIBDIR}/apper)
+ 
+-install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/apper DESTINATION 
${CMAKE_INSTALL_BINDIR})
++install(TARGETS apper DESTINATION ${CMAKE_INSTALL_BINDIR})
+ install(FILES org.kde.apper.desktop DESTINATION ${CMAKE_INSTALL_APPDIR})
+ install(FILES org.kde.apper_installer.desktop DESTINATION 
${CMAKE_INSTALL_APPDIR})
+ install(FILES org.kde.apper_settings.desktop DESTINATION 
${CMAKE_INSTALL_APPDIR})


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

2018-02-21 Thread Nicola Squartini via arch-commits
Date: Wednesday, February 21, 2018 @ 09:08:26
  Author: tensor5
Revision: 296664

archrelease: copy trunk to community-x86_64

Added:
  go-ethereum/repos/community-x86_64/PKGBUILD
(from rev 296663, go-ethereum/trunk/PKGBUILD)
Deleted:
  go-ethereum/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 09:07:56 UTC (rev 296663)
+++ PKGBUILD2018-02-21 09:08:26 UTC (rev 296664)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=go-ethereum
-pkgver=1.8.0
-_commit=5f54075760748ae7f249bf735565924ea885c477
-pkgrel=1
-pkgdesc='Official golang implementation of the Ethereum protocol'
-arch=('x86_64')
-url='http://geth.ethereum.org/'
-license=('GPL3')
-depends=('glibc')
-makedepends=('git' 'go-pie')
-provides=('geth')
-conflicts=('geth')
-replaces=('geth')
-source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
-sha256sums=('SKIP')
-
-build() {
-cd ${pkgname}
-
-make all
-}
-
-package() {
-cd ${pkgname}
-
-install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
-}

Copied: go-ethereum/repos/community-x86_64/PKGBUILD (from rev 296663, 
go-ethereum/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 09:08:26 UTC (rev 296664)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=go-ethereum
+pkgver=1.8.1
+_commit=1e67410e88d2685bc54611a7c9f75c327b553ccc
+pkgrel=1
+pkgdesc='Official golang implementation of the Ethereum protocol'
+arch=('x86_64')
+url='http://geth.ethereum.org/'
+license=('GPL3')
+depends=('glibc')
+makedepends=('git' 'go-pie')
+provides=('geth')
+conflicts=('geth')
+replaces=('geth')
+source=("git+https://github.com/ethereum/go-ethereum.git#commit=${_commit};)
+sha256sums=('SKIP')
+
+build() {
+cd ${pkgname}
+
+make all
+}
+
+package() {
+cd ${pkgname}
+
+install -Dm755 -t "${pkgdir}"/usr/bin build/bin/*
+}


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

2018-02-21 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, February 21, 2018 @ 09:23:45
  Author: svenstaro
Revision: 296665

upgpkg: lua-mpack 1.0.7-1

Modified:
  lua-mpack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 09:08:26 UTC (rev 296664)
+++ PKGBUILD2018-02-21 09:23:45 UTC (rev 296665)
@@ -3,26 +3,28 @@
 
 pkgbase=lua-mpack
 pkgname=('lua51-mpack')
-pkgver=1.0.2
+pkgver=1.0.7
+pkgdesc="libmpack lua binding"
 pkgrel=1
 arch=('x86_64')
-url='https://github.com/tarruda/libmpack'
+url='https://github.com/libmpack/libmpack-lua'
+depends=('libmpack')
 makedepends=('lua51' 'lua52' 'lua')
 license=('MIT')
-source=("libmpack-${pkgver}.tar.gz::https://github.com/tarruda/libmpack/archive/${pkgver}.tar.gz;)
-sha256sums=('9c570b2aab81b0c56d97cbd8fc483dc431b69510fd9becb4a1845291563e8bc9')
+source=("libmpack-lua-${pkgver}.tar.gz::https://github.com/libmpack/libmpack-lua/archive/${pkgver}.tar.gz;)
+sha256sums=('2ebe9c8972c378040c9b8505f5fb40a0c64d990cd68be6a62989362b18294d0a')
 
 build() {
-  cd "${srcdir}/libmpack-${pkgver}"
+  cd "libmpack-lua-${pkgver}"
 
-  gcc -O2 -fPIC -I/usr/include/lua5.1 -c binding/lua/lmpack.c -o lmpack.o
-  gcc -shared -o mpack.so.5.1 lmpack.o
+  gcc -O2 -fPIC -DMPACK_USE_SYSTEM -I/usr/include/lua5.1 -c lmpack.c -o 
lmpack.o
+  gcc -shared -lmpack -o mpack.so.5.1 lmpack.o
 
   # Broken currently
-  # gcc -O2 -fPIC -I/usr/include/lua5.2 -c binding/lua/lmpack.c -o lmpack.o
+  # gcc -O2 -fPIC -I/usr/include/lua5.2 -c lmpack.c -o lmpack.o
   # gcc -shared -o mpack.so.5.2 lmpack.o
   #
-  # gcc -O2 -fPIC -I/usr/include -c binding/lua/lmpack.c -o lmpack.o
+  # gcc -O2 -fPIC -I/usr/include -c lmpack.c -o lmpack.o
   # gcc -shared -o mpack.so.5.3 lmpack.o
 }
 
@@ -30,7 +32,7 @@
   pkgdesc='Simple implementation of msgpack in C Lua 5.1'
   depends=('lua51')
 
-  cd "${srcdir}/libmpack-${pkgver}"
+  cd "libmpack-lua-${pkgver}"
   install -Dm755 mpack.so.5.1 "${pkgdir}/usr/lib/lua/5.1/mpack.so"
   install -Dm644 LICENSE-MIT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


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

2018-02-21 Thread Christian Rebischke via arch-commits
Date: Wednesday, February 21, 2018 @ 14:44:04
  Author: shibumi
Revision: 296676

archrelease: copy trunk to community-x86_64

Added:
  strongswan/repos/community-x86_64/PKGBUILD
(from rev 296675, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-x86_64/configure_ac.patch
(from rev 296675, strongswan/trunk/configure_ac.patch)
  strongswan/repos/community-x86_64/stdint.patch
(from rev 296675, strongswan/trunk/stdint.patch)
Deleted:
  strongswan/repos/community-x86_64/PKGBUILD
  strongswan/repos/community-x86_64/configure_ac.patch
  strongswan/repos/community-x86_64/stdint.patch

+
 PKGBUILD   |  192 +--
 configure_ac.patch |   32 
 stdint.patch   |   22 ++---
 3 files changed, 123 insertions(+), 123 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 14:43:56 UTC (rev 296675)
+++ PKGBUILD2018-02-21 14:44:04 UTC (rev 296676)
@@ -1,96 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: dkorzhevin 
-# Contributor: Thermi 
-# Contributor: nikicat 
-# Contributor: danilo 
-# Contributor: Jason Begley 
-# Contributor: Ray Kohler 
-# Contributor: Daniel Riedemann 
-# Contributor: 458italia 
-# Contributor: Thermi 
-
-pkgname=strongswan
-pkgver=5.6.1
-pkgrel=2
-pkgdesc="open source IPsec implementation"
-url='http://www.strongswan.org'
-license=("GPL2")
-arch=('x86_64')
-makedepends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd'
-'systemd' 'pam' 'libnm-glib' 'python' 'ruby' 'mariadb' 'python-setuptools')
-depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'pam')
-optdepends=('libnm-glib: for networkmanager support'
-'mariadb: MySQL support'
-'ruby: Ruby support'
-'python: Python support'
-'openldap: LDAP support')
-backup=(
-etc/ipsec.conf
-etc/ipsec.secrets
-etc/swanctl/swanctl.conf
-etc/strongswan.conf
-
etc/strongswan.d/{charon-logging.conf,charon.conf,pki.conf,pool.conf,scepclient.conf,starter.conf,swanctl.conf}
-
etc/strongswan.d/charon/{aesni.conf,attr-sql.conf,attr.conf,bliss.conf,chapoly.conf,cmac.conf,connmark.conf,\
-constraints.conf,curl.conf,des.conf,dhcp.conf,dnskey.conf,eap-aka-3gpp2.conf,eap-aka.conf,\
-eap-gtc.conf,eap-identity.conf,eap-md5.conf,eap-mschapv2.conf,eap-radius.conf,eap-sim-file.conf,\
-eap-sim.conf,eap-simaka-pseudonym.conf,eap-simaka-reauth.conf,eap-tls.conf,ext-auth.conf,farp.conf,\
-fips-prf.conf,forecast.conf,gmp.conf,ha.conf,hmac.conf,kernel-netlink.conf,md5.conf,mgf1.conf,nonce.conf,newhope.conf,ntru.conf,openssl.conf,\
-pem.conf,pgp.conf,pkcs1.conf,pkcs12.conf,pkcs7.conf,pkcs8.conf,pubkey.conf,random.conf,rc2.conf,resolve.conf,\
-revocation.conf,sha1.conf,sha2.conf,sha3.conf,socket-default.conf,sql.conf,sqlite.conf,sshkey.conf,stroke.conf,updown.conf,\
-vici.conf,x509.conf,xauth-eap.conf,xauth-generic.conf,xcbc.conf,unity.conf,curve25519.conf,bypass-lan.conf}
-)
-
-source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
-"https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
-'configure_ac.patch'
-)
-
-validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
-
-sha512sums=('e4bdcf434739cf18544e18635c0b2e34c8b39e9c6c7a7cab31972bae6b1922da324f47c333fc478fa6177f58a2e59c438c48420c74086da1c0555e9a9361834e'
-'SKIP'
-
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
-
-# We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
-# would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
-# add --enable-libipsec and --enable-kernel-libipsec
-prepare() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-patch -p1 -l < "${srcdir}/configure_ac.patch"
-autoreconf
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---with-ipsecdir=/usr/lib/strongswan \
---with-nm-ca-dir=/etc/ssl/certs \
---enable-integrity-test \
---enable-sqlite \
---enable-openssl --enable-curl \
---enable-sql --enable-attr-sql \
---enable-farp --enable-dhcp \
---enable-eap-sim --enable-eap-sim-file --enable-eap-simaka-pseudonym \
---enable-eap-simaka-reauth --enable-eap-identity --enable-eap-md5 \
---enable-eap-gtc --enable-eap-aka --enable-eap-aka-3gpp2 \
---enable-eap-mschapv2 --enable-eap-radius --enable-xauth-eap \
---enable-ha --enable-vici --enable-swanctl --enable-systemd 
--enable-ext-auth \
---enable-mysql --enable-ldap --enable-cmd --enable-forecast 
--enable-connmark \
---enable-aesni --enable-eap-ttls 

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

2018-02-21 Thread Bruno Pagani via arch-commits
Date: Wednesday, February 21, 2018 @ 14:56:02
  Author: archange
Revision: 296678

archrelease: copy trunk to community-x86_64

Added:
  embree/repos/community-x86_64/PKGBUILD
(from rev 296677, embree/trunk/PKGBUILD)
Deleted:
  embree/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 14:55:42 UTC (rev 296677)
+++ PKGBUILD2018-02-21 14:56:02 UTC (rev 296678)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky 
-# Maintainer: Bruno Pagani 
-
-pkgname=embree
-pkgver=2.17.2
-pkgrel=1
-pkgdesc="A collection of high-performance ray tracing kernels"
-arch=('x86_64')
-url="https://embree.github.io/;
-license=('Apache')
-depends=('intel-tbb')
-makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
-provides=('embree-isa')
-replaces=('embree-isa')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
-sha256sums=('546e981b7542639a29d5d7655e16d5750986c57ad553795ec24b80f11cb8994d')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DEMBREE_TUTORIALS=OFF \
--DEMBREE_MAX_ISA="AVX2"
-  # Embree detects actual ISA at runtime
-  # AVX512KNL/SKX: https://github.com/embree/embree/issues/169
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}
-

Copied: embree/repos/community-x86_64/PKGBUILD (from rev 296677, 
embree/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 14:56:02 UTC (rev 296678)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky 
+# Maintainer: Bruno Pagani 
+
+pkgname=embree
+pkgver=2.17.3
+pkgrel=1
+pkgdesc="A collection of high-performance ray tracing kernels"
+arch=('x86_64')
+url="https://embree.github.io/;
+license=('Apache')
+depends=('intel-tbb')
+makedepends=('cmake' 'ispc' 'freeglut' 'libxmu' 'openexr')
+provides=('embree-isa')
+replaces=('embree-isa')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
+sha256sums=('c7d7172ce6e64a7a405fba97ed9e3e92a9cdd53aba5cfc0d46d4b792e22bc0fe')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DEMBREE_TUTORIALS=OFF \
+-DEMBREE_MAX_ISA="AVX2"
+  # Embree detects actual ISA at runtime
+  # AVX512KNL/SKX: https://github.com/embree/embree/issues/169
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}
+


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

2018-02-21 Thread Bruno Pagani via arch-commits
Date: Wednesday, February 21, 2018 @ 14:55:42
  Author: archange
Revision: 296677

upgpkg: embree 2.17.3-1

Modified:
  embree/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 14:44:04 UTC (rev 296676)
+++ PKGBUILD2018-02-21 14:55:42 UTC (rev 296677)
@@ -3,7 +3,7 @@
 # Maintainer: Bruno Pagani 
 
 pkgname=embree
-pkgver=2.17.2
+pkgver=2.17.3
 pkgrel=1
 pkgdesc="A collection of high-performance ray tracing kernels"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 provides=('embree-isa')
 replaces=('embree-isa')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/embree/embree/archive/v${pkgver}.tar.gz;)
-sha256sums=('546e981b7542639a29d5d7655e16d5750986c57ad553795ec24b80f11cb8994d')
+sha256sums=('c7d7172ce6e64a7a405fba97ed9e3e92a9cdd53aba5cfc0d46d4b792e22bc0fe')
 
 build() {
   cd ${pkgname}-${pkgver}


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

2018-02-21 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, February 21, 2018 @ 15:05:49
  Author: jlichtblau
Revision: 296680

archrelease: copy trunk to community-x86_64

Added:
  sleuthkit/repos/community-x86_64/PKGBUILD
(from rev 296679, sleuthkit/trunk/PKGBUILD)
  sleuthkit/repos/community-x86_64/sleuthkit.changelog
(from rev 296679, sleuthkit/trunk/sleuthkit.changelog)
Deleted:
  sleuthkit/repos/community-x86_64/PKGBUILD
  sleuthkit/repos/community-x86_64/sleuthkit.changelog

-+
 PKGBUILD|   68 +--
 sleuthkit.changelog |   79 +-
 2 files changed, 75 insertions(+), 72 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 15:05:17 UTC (rev 296679)
+++ PKGBUILD2018-02-21 15:05:49 UTC (rev 296680)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Geoffroy Carrier 
-
-pkgname=sleuthkit
-pkgver=4.5.0
-pkgrel=1
-pkgdesc='File system and media management forensic analysis tools'
-arch=('x86_64')
-url="http://www.sleuthkit.org/sleuthkit;
-license=('GPL2' 'CPL' 'custom:"IBM Public Licence"')
-depends=('perl' 'libewf')
-changelog=$pkgname.changelog
-source=(https://github.com/$pkgname/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz)
 #{,.asc}
-# validpgpkeys=('0917A7EE58A9308B13D3963338AD602EC7454C8B') #Brian Carrier 

-# https://github.com/sleuthkit/sleuthkit/issues/1133
-sha256sums=('f74eb16e717598056a5664ae842d8acd276acfc340e8ebbd87d0948167e789ac')
-
-build() {
-  cd ${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-#licenses
-  install -d "${pkgdir}"/usr/share/licenses/${pkgname}
-  install -Dm0644 licenses/* "${pkgdir}"/usr/share/licenses/${pkgname}
-}

Copied: sleuthkit/repos/community-x86_64/PKGBUILD (from rev 296679, 
sleuthkit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 15:05:49 UTC (rev 296680)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Geoffroy Carrier 
+
+pkgname=sleuthkit
+pkgver=4.6.0
+pkgrel=1
+pkgdesc='File system and media management forensic analysis tools'
+arch=('x86_64')
+url="http://www.sleuthkit.org/sleuthkit;
+license=('GPL2' 'CPL' 'custom:"IBM Public Licence"')
+depends=('perl' 'libewf')
+changelog=$pkgname.changelog
+source=(https://github.com/$pkgname/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz{,.asc})
+validpgpkeys=('0917A7EE58A9308B13D3963338AD602EC7454C8B') #Brian Carrier 

+sha256sums=('f52a08ab0de078182c0f2d19d3e1b341424a9e0c1633a61c3b892fb38f9acb97'
+'SKIP')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+#licenses
+  install -d "${pkgdir}"/usr/share/licenses/${pkgname}
+  install -Dm0644 licenses/* "${pkgdir}"/usr/share/licenses/${pkgname}
+}

Deleted: sleuthkit.changelog
===
--- sleuthkit.changelog 2018-02-21 15:05:17 UTC (rev 296679)
+++ sleuthkit.changelog 2018-02-21 15:05:49 UTC (rev 296680)
@@ -1,38 +0,0 @@
-2018-02-19 Jaroslav Lichtblau 
-   * sleuthkit 4.5.0-1
-
-2017-08-09 Jaroslav Lichtblau 
-   * sleuthkit 4.4.2-1
-
-2017-06-01 Jaroslav Lichtblau 
-   * sleuthkit 4.4.1-1
-
-2017-01-18 Jaroslav Lichtblau 
-   * sleuthkit 4.4.0-1
-
-2016-09-02 Jaroslav Lichtblau 
-   * sleuthkit 4.3.0-1
-
-2015-10-05 Jaroslav Lichtblau 
-   * sleuthkit 4.2.0-1
-
-2015-03-08 Jaroslav Lichtblau 
-   * sleuthkit 4.1.3-3 libewf as dependency
-
-2014-02-06 Jaroslav Lichtblau 
-   * sleuthkit 4.1.3-1
-
-2013-12-25 Jaroslav Lichtblau 
-   * sleuthkit 4.1.2-2 static library removed
-
-2013-10-13 Jaroslav Lichtblau 
-   * sleuthkit 4.1.2-1
-
-2013-03-12 Jaroslav Lichtblau 
-   * sleuthkit 4.0.2-1
-
-2013-01-05 Jaroslav Lichtblau 
-   * sleuthkit 4.0.1-1
-
-2011-10-09 Jaroslav Lichtblau 
-   * sleuthkit 3.2.3-1

Copied: sleuthkit/repos/community-x86_64/sleuthkit.changelog (from rev 296679, 
sleuthkit/trunk/sleuthkit.changelog)
===
--- sleuthkit.changelog (rev 0)
+++ sleuthkit.changelog 2018-02-21 15:05:49 

[arch-commits] Commit in sleuthkit/trunk (PKGBUILD sleuthkit.changelog)

2018-02-21 Thread Jaroslav Lichtblau via arch-commits
Date: Wednesday, February 21, 2018 @ 15:05:17
  Author: jlichtblau
Revision: 296679

upgpkg: sleuthkit 4.6.0-1 - new upstream release

Modified:
  sleuthkit/trunk/PKGBUILD
  sleuthkit/trunk/sleuthkit.changelog

-+
 PKGBUILD|   10 +-
 sleuthkit.changelog |3 +++
 2 files changed, 8 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 14:56:02 UTC (rev 296678)
+++ PKGBUILD2018-02-21 15:05:17 UTC (rev 296679)
@@ -3,7 +3,7 @@
 # Contributor: Geoffroy Carrier 
 
 pkgname=sleuthkit
-pkgver=4.5.0
+pkgver=4.6.0
 pkgrel=1
 pkgdesc='File system and media management forensic analysis tools'
 arch=('x86_64')
@@ -11,10 +11,10 @@
 license=('GPL2' 'CPL' 'custom:"IBM Public Licence"')
 depends=('perl' 'libewf')
 changelog=$pkgname.changelog
-source=(https://github.com/$pkgname/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz)
 #{,.asc}
-# validpgpkeys=('0917A7EE58A9308B13D3963338AD602EC7454C8B') #Brian Carrier 

-# https://github.com/sleuthkit/sleuthkit/issues/1133
-sha256sums=('f74eb16e717598056a5664ae842d8acd276acfc340e8ebbd87d0948167e789ac')
+source=(https://github.com/$pkgname/$pkgname/releases/download/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz{,.asc})
+validpgpkeys=('0917A7EE58A9308B13D3963338AD602EC7454C8B') #Brian Carrier 

+sha256sums=('f52a08ab0de078182c0f2d19d3e1b341424a9e0c1633a61c3b892fb38f9acb97'
+'SKIP')
 
 build() {
   cd ${pkgname}-${pkgver}

Modified: sleuthkit.changelog
===
--- sleuthkit.changelog 2018-02-21 14:56:02 UTC (rev 296678)
+++ sleuthkit.changelog 2018-02-21 15:05:17 UTC (rev 296679)
@@ -1,3 +1,6 @@
+2018-02-21 Jaroslav Lichtblau 
+   * sleuthkit 4.6.0-1
+
 2018-02-19 Jaroslav Lichtblau 
* sleuthkit 4.5.0-1
 


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

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 12:55:43
  Author: arojas
Revision: 317350

Add ref to upstream bug

Modified:
  m17n-db/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 11:53:33 UTC (rev 317349)
+++ PKGBUILD2018-02-21 12:55:43 UTC (rev 317350)
@@ -24,6 +24,6 @@
   cd ${pkgname}-${pkgver}
   make DESTDIR="${pkgdir}" install
 
-# Drop script that makes UIM segfault
+# Drop script that makes UIM segfault 
http://savannah.nongnu.org/bugs/index.php?53202
   rm "$pkgdir"/usr/share/m17n/hu-rovas-post.mim
 }


[arch-commits] Commit in (4 files)

2018-02-21 Thread David Runge via arch-commits
Date: Wednesday, February 21, 2018 @ 14:28:44
  Author: dvzrv
Revision: 296673

Adding zita-lrx 0.1.0 from AUR.

Added:
  zita-lrx/
  zita-lrx/repos/
  zita-lrx/trunk/
  zita-lrx/trunk/PKGBUILD

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

Added: zita-lrx/trunk/PKGBUILD
===
--- zita-lrx/trunk/PKGBUILD (rev 0)
+++ zita-lrx/trunk/PKGBUILD 2018-02-21 14:28:44 UTC (rev 296673)
@@ -0,0 +1,28 @@
+# Maintainer: David Runge 
+pkgname=zita-lrx
+pkgver=0.1.0
+pkgrel=2
+pkgdesc="A command line jack application providing 2, 3, or 4-band, 4th order 
crossover filters."
+arch=('x86_64')
+url="https://kokkinizita.linuxaudio.org/linuxaudio/;
+license=('GPL3')
+groups=('pro-audio')
+depends=('clthreads' 'jack')
+source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2;)
+sha512sums=('af85b3559390f3efbde13e2f6fe3b7710692b011e2a0bcee87be841515484646c41651263f316c6dc82ec64f8c00e0f97223c7ff9e2f1d96ef3550e23ebefc7d')
+
+build() {
+  cd "${pkgname}-${pkgver}/source"
+  make PREFIX=/usr
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/source"
+  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 ../{AUTHORS,README*}
+  # examples
+  install -t "${pkgdir}/usr/share/${pkgname}/examples" \
+-vDm644 ../examples/*
+}


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


[arch-commits] Commit in ceph/repos/community-x86_64 (14 files)

2018-02-21 Thread Thore Bödecker via arch-commits
Date: Wednesday, February 21, 2018 @ 15:10:01
  Author: foxxx0
Revision: 296682

archrelease: copy trunk to community-x86_64

Added:
  ceph/repos/community-x86_64/PKGBUILD
(from rev 296681, ceph/trunk/PKGBUILD)
  ceph/repos/community-x86_64/ceph.sysusers
(from rev 296681, ceph/trunk/ceph.sysusers)
  ceph/repos/community-x86_64/fix-ceph_disk-python-interpreter.patch
(from rev 296681, ceph/trunk/fix-ceph_disk-python-interpreter.patch)
  ceph/repos/community-x86_64/fix-or-disable-broken-tests.patch
(from rev 296681, ceph/trunk/fix-or-disable-broken-tests.patch)
  ceph/repos/community-x86_64/fix-python2-paths.patch
(from rev 296681, ceph/trunk/fix-python2-paths.patch)
  ceph/repos/community-x86_64/fix-sphinx-binary-name.patch
(from rev 296681, ceph/trunk/fix-sphinx-binary-name.patch)
  ceph/repos/community-x86_64/remove-distro-version-detection.patch
(from rev 296681, ceph/trunk/remove-distro-version-detection.patch)
Deleted:
  ceph/repos/community-x86_64/PKGBUILD
  ceph/repos/community-x86_64/ceph.sysusers
  ceph/repos/community-x86_64/fix-ceph_disk-python-interpreter.patch
  ceph/repos/community-x86_64/fix-or-disable-broken-tests.patch
  ceph/repos/community-x86_64/fix-python2-paths.patch
  ceph/repos/community-x86_64/fix-sphinx-binary-name.patch
  ceph/repos/community-x86_64/remove-distro-version-detection.patch

+
 PKGBUILD   |  394 ++---
 ceph.sysusers  |2 
 fix-ceph_disk-python-interpreter.patch |   16 
 fix-or-disable-broken-tests.patch  |  564 +++
 fix-python2-paths.patch|  104 ++---
 fix-sphinx-binary-name.patch   |   22 -
 remove-distro-version-detection.patch  |   42 +-
 7 files changed, 572 insertions(+), 572 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 15:09:42 UTC (rev 296681)
+++ PKGBUILD2018-02-21 15:10:01 UTC (rev 296682)
@@ -1,197 +0,0 @@
-# Maintainer: Thore Bödecker 
-# Contributor: Sébastien "Seblu" Luttringer 
-
-pkgbase='ceph'
-pkgname=('ceph' 'ceph-libs')
-pkgver=12.2.2
-pkgrel=5
-pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
-arch=('x86_64')
-url='https://ceph.com/'
-license=('GPL')
-makedepends=('bc' 'boost' 'boost-libs' 'cmake' 'cpio' 'crypto++' 'curl' 
'cython'
-  'cython2' 'expat' 'fcgi' 'fuse2' 'gcc-libs' 'git' 'glibc' 'gperf' 
'gperftools'
-  'gptfdisk' 'inetutils' 'jq' 'junit' 'keyutils' 'leveldb' 'libaio'
-  'libatomic_ops' 'libedit' 'libsystemd' 'libutil-linux' 'libxml2' 
'lsb-release'
-  'lz4' 'ncurses' 'nss' 'parted' 'pcre' 'procps-ng' 'python2-cherrypy'
-  'python2-jinja' 'python2-nose' 'python2-pecan' 'python2-pip'
-  'python2-prettytable' 'python2-pyopenssl' 'python2-setuptools'
-  'python2-sphinx' 'python2-tox' 'python2-virtualenv' 'python2-werkzeug' 'sed'
-  'snappy' 'socat' 'systemd' 'valgrind' 'xfsprogs' 'xmlstarlet' 'yasm'
-  'zlib' 'zstd')
-options=('emptydirs')
-source=("https://download.ceph.com/tarballs/${pkgbase}-${pkgver}.tar.gz;
-'ceph.sysusers'
-'fix-ceph_disk-python-interpreter.patch'
-'fix-or-disable-broken-tests.patch'
-'fix-python2-paths.patch'
-'remove-distro-version-detection.patch')
-sha512sums=('89b166dc4b58e0110ebe0147eef9f47e1090ccee01702b3f72cfbdca856d02bf03b2663de9e88c84b21a2a61f8f92211e217a05b8bdcf7d5de3158adbe49db88'
-
'4354001c1abd9a0c385ba7bd529e3638fb6660b6a88d4e49706d4ac21c81b8e829303a20fb5445730bdac18c4865efb10bc809c1cd56d743c12aa9a52e160049'
-
'7abd94a333fb0d6c9f7156d69ed6d4bf123f0f3030407f4347209d677b282e5023664d43e74a21a27b7856d3493ae469a17ea8a810331c7266018cc34eee4841'
-
'40446e298ab6b735b149d26ac26d273d6e159c319bb79f112614f1d4933a5a2684007fc9a1d660c5d4a17075d8bac59019c6cc7e66d64d4e240a1a61454800ef'
-
'd5d9e8123833212f6cf0ecef209a5dd9b9a8ec70d780b5140884dc9f87690ec305fb2569c5d1da2b28deb05bd03caecc534acc9dc5ce7ec75e2580df4b5b2063'
-
'e2ed33e2ac37bfdb9597083388e1a87f10051e976033055d440b1a4bc2bd11148c29128fb9841771ca983c12fb36b343bcc04219dea87199321ceea9aa18b3cc')
-
-prepare() {
-  cd "${srcdir}/${pkgbase}-${pkgver}"
-  # apply patch from the source array (should be a pacman feature)
-  local filename
-  for filename in "${source[@]}"; do
-if [[ "$filename" =~ \.patch$ ]]; then
-  msg2 "Applying patch ${filename##*/}"
-  patch -p1 -N -i "$srcdir/${filename##*/}"
-fi
-  done
-
-  # remove tests that require root privileges
-  rm src/test/cli/ceph-authtool/cap*.t
-
-  # remove broken tests
-  rm src/test/cli/crushtool/build.t
-  rm -rf qa/btrfs
-  rm src/btrfs_ioc_test.c
-
-  # this test will try to perform btrfs operations when a btrfs mount
-  # is active on the build host, which will fail
-  if mount | grep 'type btrfs' &>/dev/null; then
-sed -i 

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

2018-02-21 Thread Thore Bödecker via arch-commits
Date: Wednesday, February 21, 2018 @ 15:09:42
  Author: foxxx0
Revision: 296681

upgpkg: ceph 12.2.3-1

update to 12.2.3

Modified:
  ceph/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 15:05:49 UTC (rev 296680)
+++ PKGBUILD2018-02-21 15:09:42 UTC (rev 296681)
@@ -3,8 +3,8 @@
 
 pkgbase='ceph'
 pkgname=('ceph' 'ceph-libs')
-pkgver=12.2.2
-pkgrel=5
+pkgver=12.2.3
+pkgrel=1
 pkgdesc='Distributed, fault-tolerant storage platform delivering object, 
block, and file system'
 arch=('x86_64')
 url='https://ceph.com/'
@@ -26,7 +26,7 @@
 'fix-or-disable-broken-tests.patch'
 'fix-python2-paths.patch'
 'remove-distro-version-detection.patch')
-sha512sums=('89b166dc4b58e0110ebe0147eef9f47e1090ccee01702b3f72cfbdca856d02bf03b2663de9e88c84b21a2a61f8f92211e217a05b8bdcf7d5de3158adbe49db88'
+sha512sums=('3cdc105a64a68b07f55e9ea5cb8880e3eac882937313a2a8e454e34325443cee1675413d3e2148f944ecaf32be35a1384bd0a662ca58bdb2d2ab3c9eff518cd2'
 
'4354001c1abd9a0c385ba7bd529e3638fb6660b6a88d4e49706d4ac21c81b8e829303a20fb5445730bdac18c4865efb10bc809c1cd56d743c12aa9a52e160049'
 
'7abd94a333fb0d6c9f7156d69ed6d4bf123f0f3030407f4347209d677b282e5023664d43e74a21a27b7856d3493ae469a17ea8a810331c7266018cc34eee4841'
 
'40446e298ab6b735b149d26ac26d273d6e159c319bb79f112614f1d4933a5a2684007fc9a1d660c5d4a17075d8bac59019c6cc7e66d64d4e240a1a61454800ef'


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

2018-02-21 Thread David Runge via arch-commits
Date: Wednesday, February 21, 2018 @ 14:30:21
  Author: dvzrv
Revision: 296674

archrelease: copy trunk to community-testing-x86_64

Added:
  zita-lrx/repos/community-testing-x86_64/
  zita-lrx/repos/community-testing-x86_64/PKGBUILD
(from rev 296673, zita-lrx/trunk/PKGBUILD)

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

Copied: zita-lrx/repos/community-testing-x86_64/PKGBUILD (from rev 296673, 
zita-lrx/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-02-21 14:30:21 UTC (rev 296674)
@@ -0,0 +1,28 @@
+# Maintainer: David Runge 
+pkgname=zita-lrx
+pkgver=0.1.0
+pkgrel=2
+pkgdesc="A command line jack application providing 2, 3, or 4-band, 4th order 
crossover filters."
+arch=('x86_64')
+url="https://kokkinizita.linuxaudio.org/linuxaudio/;
+license=('GPL3')
+groups=('pro-audio')
+depends=('clthreads' 'jack')
+source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2;)
+sha512sums=('af85b3559390f3efbde13e2f6fe3b7710692b011e2a0bcee87be841515484646c41651263f316c6dc82ec64f8c00e0f97223c7ff9e2f1d96ef3550e23ebefc7d')
+
+build() {
+  cd "${pkgname}-${pkgver}/source"
+  make PREFIX=/usr
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/source"
+  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 ../{AUTHORS,README*}
+  # examples
+  install -t "${pkgdir}/usr/share/${pkgname}/examples" \
+-vDm644 ../examples/*
+}


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

2018-02-21 Thread Christian Rebischke via arch-commits
Date: Wednesday, February 21, 2018 @ 14:43:56
  Author: shibumi
Revision: 296675

upgpkg: strongswan 5.6.2-1

This fixes CVE-2018-6459.
See: #57597

Modified:
  strongswan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 14:30:21 UTC (rev 296674)
+++ PKGBUILD2018-02-21 14:43:56 UTC (rev 296675)
@@ -10,8 +10,8 @@
 # Contributor: Thermi 
 
 pkgname=strongswan
-pkgver=5.6.1
-pkgrel=2
+pkgver=5.6.2
+pkgrel=1
 pkgdesc="open source IPsec implementation"
 url='http://www.strongswan.org'
 license=("GPL2")
@@ -47,7 +47,7 @@
 
 validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
 
-sha512sums=('e4bdcf434739cf18544e18635c0b2e34c8b39e9c6c7a7cab31972bae6b1922da324f47c333fc478fa6177f58a2e59c438c48420c74086da1c0555e9a9361834e'
+sha512sums=('cf2d5cb6c45d991fe0ad8eed4ea8628f95a1871e9728ddf0985aa26e78d1e6da1c92c961772aafd3e55cfcfa84516204a15561389d373f78140f05607b248c52'
 'SKIP'
 
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
 


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

2018-02-21 Thread David Runge via arch-commits
Date: Wednesday, February 21, 2018 @ 21:59:03
  Author: dvzrv
Revision: 296825

Adding helm 0.9.0 from AUR.

Added:
  helm/
  helm/repos/
  helm/trunk/
  helm/trunk/PKGBUILD

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

Added: helm/trunk/PKGBUILD
===
--- helm/trunk/PKGBUILD (rev 0)
+++ helm/trunk/PKGBUILD 2018-02-21 21:59:03 UTC (rev 296825)
@@ -0,0 +1,29 @@
+# Maintainer: David Runge 
+pkgname=helm
+pkgver=0.9.0
+pkgrel=5
+pkgdesc="A cross-platform, polyphonic synthesizer, available standalone and as 
an LV2 plugin"
+arch=('x86_64')
+url="http://tytel.org/helm/;
+license=('GPL')
+groups=('pro-audio' 'lv2-plugins')
+depends=('alsa-lib' 'curl' 'freetype2' 'hicolor-icon-theme' 'libxinerama' 
'lv2' 'mesa')
+makedepends=('jack' 'libxcursor')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mtytel/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('241c6bf3aec422e9ccaf7c7113eec7e30a11baadd30fe8f05f0abfac9c41d0c8a9fb284f0cae49bcaf0d3d08aa952737f6ff3eb7d48c2b2e22c60932738aeaa4')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  sed -e 's/JUCE_INCLUDE_PNGLIB_CODE=0/JUCE_INCLUDE_PNGLIB_CODE=1/g' \
+-i {standalone/builds/linux,builds/linux/{VST,LV2}}/Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX="/usr" standalone lv2
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" install_standalone install_lv2
+}


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


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 21:59:30
  Author: felixonmars
Revision: 296826

upgpkg: hoogle 5.0.16-6

rebuild with vault,0.3.1.0

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 21:59:03 UTC (rev 296825)
+++ PKGBUILD2018-02-21 21:59:30 UTC (rev 296826)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.16
-pkgrel=5
+pkgrel=6
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-shake/repos/community-staging-x86_64 (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:15:36
  Author: felixonmars
Revision: 296840

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-shake/repos/community-staging-x86_64/PKGBUILD
(from rev 296839, haskell-shake/trunk/PKGBUILD)
Deleted:
  haskell-shake/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |  112 ++---
 1 file changed, 56 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:15:16 UTC (rev 296839)
+++ PKGBUILD2018-02-21 22:15:36 UTC (rev 296840)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=shake
-pkgname=haskell-shake
-pkgver=0.16.2
-pkgrel=2
-pkgdesc="Build system library, like Make, but more accurate dependencies."
-url="http://shakebuild.com;
-license=("custom:BSD3")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-js-flot' 
'haskell-js-jquery'
- 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
-makedepends=('ghc' 'haskell-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('cda8b5ecb70c5aaa811c9bae095cdad6e5c1074920b23767bfad9728390ad1bd5e3b369d1924f237d366a573d3e2c3eb45469fc0778ba9b2a228d784eb78d99a')
-
-prepare() {
-cd $_hkgname-$pkgver
-sed -i 's/ghc --make/ghc -dynamic --make/' src/Test/Command.hs
-sed -e 's/runhaskell Setup.hs configure/runhaskell Setup.hs configure 
--enable-executable-dynamic --disable-library-vanilla/' \
--e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
--i src/Test/Docs.hs
-sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs
-sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
-}
-
-build() {
-cd $_hkgname-$pkgver
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"  --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-portable
-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 $_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"
-}

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 296839, 
haskell-shake/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:15:36 UTC (rev 296840)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.16.2
+pkgrel=3
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="http://shakebuild.com;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('cda8b5ecb70c5aaa811c9bae095cdad6e5c1074920b23767bfad9728390ad1bd5e3b369d1924f237d366a573d3e2c3eb45469fc0778ba9b2a228d784eb78d99a')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' src/Test/Command.hs
+sed -e 's/runhaskell Setup.hs configure/runhaskell Setup.hs configure 
--enable-executable-dynamic --disable-library-vanilla/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"  --enable-tests \
+--dynlibdir=/usr/lib 

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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:27:41
  Author: felixonmars
Revision: 296845

upgpkg: git-annex 6.20180112-72

rebuild with vault,0.3.1.0

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:21:09 UTC (rev 296844)
+++ PKGBUILD2018-02-21 22:27:41 UTC (rev 296845)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20180112
-pkgrel=71
+pkgrel=72
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


[arch-commits] Commit in git-annex/repos/community-staging-x86_64 (PKGBUILD PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:28:10
  Author: felixonmars
Revision: 296846

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 296845, git-annex/trunk/PKGBUILD)
Deleted:
  git-annex/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:27:41 UTC (rev 296845)
+++ PKGBUILD2018-02-21 22:28:10 UTC (rev 296846)
@@ -1,54 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=git-annex
-pkgver=6.20180112
-pkgrel=71
-pkgdesc="Manage files with git, without checking their contents into git"
-url="http://git-annex.branchable.com/;
-license=("AGPL3")
-arch=('x86_64')
-depends=('git' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-aws'
- 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
- 'haskell-clientsession' 'haskell-concurrent-output' 'haskell-conduit' 
'haskell-crypto-api'
- 'haskell-cryptonite' 'haskell-data-default' 'haskell-dav' 
'haskell-dbus'
- 'haskell-disk-free-space' 'haskell-dlist' 'haskell-dns' 
'haskell-edit-distance'
- 'haskell-esqueleto' 'haskell-exceptions' 'haskell-fdo-notify' 
'haskell-feed'
- 'haskell-hinotify' 'haskell-hslogger' 'haskell-http-client' 
'haskell-http-conduit'
- 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 'haskell-memory'
- 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-mtl'
- 'haskell-network' 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
- 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
- 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
- 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
- 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
- 'haskell-socks' 'haskell-split' 'haskell-stm' 'haskell-stm-chans' 
'haskell-tagsoup'
- 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun'
- 'haskell-text' 'haskell-torrent' 'haskell-unix-compat' 
'haskell-unordered-containers'
- 'haskell-utf8-string' 'haskell-uuid' 'haskell-wai' 
'haskell-wai-extra' 'haskell-warp'
- 'haskell-warp-tls' 'haskell-yesod' 'haskell-yesod-core'
- 'haskell-yesod-form' 'haskell-yesod-static')
-makedepends=('chrpath' 'ghc')
-source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-build() {
-  cd git-annex
-
-  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
---docdir="/usr/share/doc/$pkgname" \
--fnetwork-uri -fconcurrentoutput -ftorrentparser \
--f-androidsplice -f-android -fproduction -fpairing -fwebapp \
--fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
-  runhaskell Setup build
-}
-
-package() {
-  cd git-annex
-  runhaskell Setup copy --destdir="$pkgdir"
-  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" -j1 install-misc
-
-  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
-  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
-}

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 296845, 
git-annex/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:28:10 UTC (rev 296846)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20180112
+pkgrel=72
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 'haskell-conduit' 
'haskell-crypto-api'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-dav' 
'haskell-dbus'
+ 'haskell-disk-free-space' 'haskell-dlist' 'haskell-dns' 
'haskell-edit-distance'
+ 'haskell-esqueleto' 'haskell-exceptions' 'haskell-fdo-notify' 
'haskell-feed'
+ 'haskell-hinotify' 'haskell-hslogger' 'haskell-http-client' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 'haskell-memory'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-mtl'
+  

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

2018-02-21 Thread Kyle Keen via arch-commits
Date: Thursday, February 22, 2018 @ 02:20:30
  Author: kkeen
Revision: 296859

upgpkg: pcb 1:4.1.0-1

Modified:
  pcb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 00:44:46 UTC (rev 296858)
+++ PKGBUILD2018-02-22 02:20:30 UTC (rev 296859)
@@ -10,7 +10,7 @@
 pkgname=pcb
 epoch=1
 # switched from MMDD to I.J.K
-pkgver=4.0.2
+pkgver=4.1.0
 pkgrel=1
 pkgdesc='Interactive printed circuit board editor'
 url='http://pcb.geda-project.org/'
@@ -22,8 +22,8 @@
 'perl: additional tools'
'desktop-file-utils: desktop integration')
 makedepends=('intltool' 'tk')
-source=("http://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('1933b92d0c8b1dbce8fb584dd47c5b8d009d9cfe')
+source=("https://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('564185df20fe96a7765edd08361b125c6e282c36')
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"


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

2018-02-21 Thread David Runge via arch-commits
Date: Wednesday, February 21, 2018 @ 19:39:40
  Author: dvzrv
Revision: 296724

archrelease: copy trunk to community-testing-x86_64

Added:
  zita-dpl1/repos/community-testing-x86_64/PKGBUILD
(from rev 296723, zita-dpl1/trunk/PKGBUILD)
Deleted:
  zita-dpl1/repos/community-testing-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 19:39:31 UTC (rev 296723)
+++ PKGBUILD2018-02-21 19:39:40 UTC (rev 296724)
@@ -1,34 +0,0 @@
-# Maintainer: David Runge 
-pkgname=zita-dpl1
-pkgver=0.1.0
-pkgrel=2
-pkgdesc="A look-ahead digital peak level limiter"
-arch=('x86_64')
-url="https://kokkinizita.linuxaudio.org/linuxaudio/;
-license=('GPL2' 'custom')
-groups=('pro-audio')
-depends=('cairo' 'clthreads' 'clxclient' 'jack')
-source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2;)
-sha512sums=('e1adf94a3acec5468f5fb2e3ac24ff9671588542754e792cbb73771f3043070ce577f122d21cd7a6c756eec51789b46b9a24fbe6128c274cb4d6554b5c7b37b1')
-
-prepare() {
-  cd "${pkgname}-${pkgver}/source"
-  head -n21 dplimit1.h > LICENSE
-}
-
-build() {
-  cd "${pkgname}-${pkgver}/source"
-  make PREFIX=/usr
-}
-
-package() {
-  cd "${pkgname}-${pkgver}/source"
-  make PREFIX=/usr DESTDIR="$pkgdir/" install
-  # custom LICENSE
-  install -vDm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm644 ../doc/* \
--vDm644 ../{AUTHORS,README}
-}
-# vim:set ts=2 sw=2 et:

Copied: zita-dpl1/repos/community-testing-x86_64/PKGBUILD (from rev 296723, 
zita-dpl1/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 19:39:40 UTC (rev 296724)
@@ -0,0 +1,38 @@
+# Maintainer: David Runge 
+pkgname=zita-dpl1
+pkgver=0.1.0
+pkgrel=3
+pkgdesc="A look-ahead digital peak level limiter"
+arch=('x86_64')
+url="https://kokkinizita.linuxaudio.org/linuxaudio/;
+license=('GPL2' 'custom')
+groups=('pro-audio')
+depends=('cairo' 'clthreads' 'clxclient' 'jack')
+source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2;)
+sha512sums=('e1adf94a3acec5468f5fb2e3ac24ff9671588542754e792cbb73771f3043070ce577f122d21cd7a6c756eec51789b46b9a24fbe6128c274cb4d6554b5c7b37b1')
+
+prepare() {
+  cd "${pkgname}-${pkgver}/source"
+  # split out custom license
+  head -n21 dplimit1.h > LICENSE
+  # strip -march=native
+  sed -i '/native/d' Makefile
+
+}
+
+build() {
+  cd "${pkgname}-${pkgver}/source"
+  make PREFIX=/usr
+}
+
+package() {
+  cd "${pkgname}-${pkgver}/source"
+  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  # custom LICENSE
+  install -vDm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 ../doc/* \
+-vDm644 ../{AUTHORS,README}
+}
+# vim:set ts=2 sw=2 et:


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

2018-02-21 Thread Maxime Gauduin via arch-commits
Date: Wednesday, February 21, 2018 @ 22:19:13
  Author: alucryd
Revision: 317362

archrelease: copy trunk to staging-x86_64

Added:
  ffmpeg/repos/staging-x86_64/
  ffmpeg/repos/staging-x86_64/PKGBUILD
(from rev 317361, ffmpeg/trunk/PKGBUILD)
  ffmpeg/repos/staging-x86_64/fs56089.patch
(from rev 317361, ffmpeg/trunk/fs56089.patch)

---+
 PKGBUILD  |  103 
 fs56089.patch |   84 +
 2 files changed, 187 insertions(+)

Copied: ffmpeg/repos/staging-x86_64/PKGBUILD (from rev 317361, 
ffmpeg/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-02-21 22:19:13 UTC (rev 317362)
@@ -0,0 +1,103 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg
+pkgver=3.4.2
+pkgrel=2
+epoch=1
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=('x86_64')
+url='http://ffmpeg.org/'
+license=('GPL3')
+depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
+ 'jack' 'lame' 'libavc1394' 'libiec61883' 'libmodplug' 'libpulse'
+ 'libraw1394' 'libsoxr' 'libssh' 'libtheora' 'libvdpau' 'libwebp'
+ 'libx11' 'libxcb' 'libxml2' 'opencore-amr' 'openjpeg2' 'opus' 'sdl2'
+ 'speex' 'v4l-utils' 'xz' 'zlib'
+ 'libomxil-bellagio'
+ 'libass.so' 'libbluray.so' 'libfreetype.so' 'libva-drm.so' 'libva.so'
+ 'libva-x11.so' 'libvidstab.so' 'libvorbisenc.so' 'libvorbis.so'
+ 'libvpx.so' 'libx264.so' 'libx265.so' 'libxvidcore.so')
+makedepends=('ladspa' 'libvdpau' 'yasm')
+optdepends=('ladspa: LADSPA filters')
+provides=('libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
+  'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
+  'libswscale.so')
+source=("https://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc}
+'fs56089.patch')
+validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8')
+sha256sums=('2b92e9578ef8b3e49eeab229e69305f5f4cbc1fdaa22e927fc7fca18acccd740'
+'SKIP'
+'0bfcd12d1992903f21c146ae56d9ad89b52818cfb2303197ee905347c25a5427')
+
+prepare() {
+  cd ffmpeg-${pkgver}
+
+  # https://bugs.archlinux.org/task/56089
+  # Backport of 
http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=a606f27f4c610708fa96e35eed7b7537d3d8f712
+  patch -Np1 -i ../fs56089.patch
+}
+
+build() {
+  cd ffmpeg-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--disable-debug \
+--disable-static \
+--disable-stripping \
+--enable-avisynth \
+--enable-avresample \
+--enable-fontconfig \
+--enable-gmp \
+--enable-gnutls \
+--enable-gpl \
+--enable-ladspa \
+--enable-libass \
+--enable-libbluray \
+--enable-libfreetype \
+--enable-libfribidi \
+--enable-libgsm \
+--enable-libiec61883 \
+--enable-libmodplug \
+--enable-libmp3lame \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libopenjpeg \
+--enable-libopus \
+--enable-libpulse \
+--enable-libsoxr \
+--enable-libspeex \
+--enable-libssh \
+--enable-libtheora \
+--enable-libv4l2 \
+--enable-libvidstab \
+--enable-libvorbis \
+--enable-libvpx \
+--enable-libwebp \
+--enable-libx264 \
+--enable-libx265 \
+--enable-libxcb \
+--enable-libxml2 \
+--enable-libxvid \
+--enable-shared \
+--enable-version3 \
+--enable-omx
+
+  make
+  make tools/qt-faststart
+  make doc/ff{mpeg,play,server}.1
+}
+
+package() {
+  cd ffmpeg-${pkgver}
+
+  make DESTDIR="${pkgdir}" install install-man
+  install -Dm 755 tools/qt-faststart "${pkgdir}"/usr/bin/
+}
+
+# vim: ts=2 sw=2 et:

Copied: ffmpeg/repos/staging-x86_64/fs56089.patch (from rev 317361, 
ffmpeg/trunk/fs56089.patch)
===
--- staging-x86_64/fs56089.patch(rev 0)
+++ staging-x86_64/fs56089.patch2018-02-21 22:19:13 UTC (rev 317362)
@@ -0,0 +1,84 @@
+diff -rupN ffmpeg-3.4.orig/libavformat/aviobuf.c 
ffmpeg-3.4/libavformat/aviobuf.c
+--- ffmpeg-3.4.orig/libavformat/aviobuf.c  2017-11-02 14:57:16.078834563 
+0100
 ffmpeg-3.4/libavformat/aviobuf.c   2017-11-02 15:02:52.549816990 +0100
+@@ -531,6 +531,24 @@ void avio_write_marker(AVIOContext *s, i
+ s->last_time = time;
+ }
+ 
++static int read_packet_wrapper(AVIOContext *s, uint8_t *buf, int size)
++{
++int ret;
++
++if (!s->read_packet)
++return AVERROR_EOF;
++ret = s->read_packet(s->opaque, buf, size);
++#if FF_API_OLD_AVIO_EOF_0
++if (!ret 

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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:18:08
  Author: felixonmars
Revision: 296841

upgpkg: haskell-hakyll 4.11.0.0-3

rebuild with vault,0.3.1.0

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:15:36 UTC (rev 296840)
+++ PKGBUILD2018-02-21 22:18:08 UTC (rev 296841)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.11.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2018-02-21 Thread Maxime Gauduin via arch-commits
Date: Wednesday, February 21, 2018 @ 22:19:01
  Author: alucryd
Revision: 317361

x265 2.7 rebuild: ffmpeg 1:3.4.2-2

Modified:
  ffmpeg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:05:46 UTC (rev 317360)
+++ PKGBUILD2018-02-21 22:19:01 UTC (rev 317361)
@@ -7,7 +7,7 @@
 
 pkgname=ffmpeg
 pkgver=3.4.2
-pkgrel=1
+pkgrel=2
 epoch=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=('x86_64')


[arch-commits] Commit in haskell-hakyll/repos/community-staging-x86_64 (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:18:30
  Author: felixonmars
Revision: 296842

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 296841, haskell-hakyll/trunk/PKGBUILD)
Deleted:
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |  106 ++---
 1 file changed, 53 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:18:08 UTC (rev 296841)
+++ PKGBUILD2018-02-21 22:18:30 UTC (rev 296842)
@@ -1,53 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=hakyll
-pkgname=haskell-hakyll
-pkgver=4.11.0.0
-pkgrel=2
-pkgdesc="A static website compiler library"
-url="http://jaspervdj.be/hakyll;
-license=("custom:BSD3")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
- 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
- 'haskell-http-types' 'haskell-lrucache' 'haskell-mtl' 
'haskell-network'
- 'haskell-network-uri' 'haskell-optparse-applicative' 'pandoc' 
'pandoc-citeproc'
- 'haskell-parsec' 'haskell-random' 'haskell-regex-base' 
'haskell-regex-tdfa'
- 'haskell-resourcet' 'haskell-scientific' 'haskell-tagsoup' 
'haskell-text'
- 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-wai'
- 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
-makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
- 'haskell-tasty-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('49870a0bc3de15f5842306a93f7c909703860701a7a59c73415b7580084e2b8413084d12f3baa3aff834e3245a8693e6386dc89989c74c2d7e5828fe7baaa4ee')
-
-build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--fcheckexternal -fwatchserver -fpreviewserver
-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
-LC_CTYPE=en_US.UTF-8 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"
-}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
296841, haskell-hakyll/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:18:30 UTC (rev 296842)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.11.0.0
+pkgrel=3
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-mtl' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 'pandoc' 
'pandoc-citeproc'
+ 'haskell-parsec' 'haskell-random' 'haskell-regex-base' 
'haskell-regex-tdfa'
+ 'haskell-resourcet' 'haskell-scientific' 'haskell-tagsoup' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-wai'
+ 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('49870a0bc3de15f5842306a93f7c909703860701a7a59c73415b7580084e2b8413084d12f3baa3aff834e3245a8693e6386dc89989c74c2d7e5828fe7baaa4ee')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+

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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:46:53
  Author: zorun
Revision: 296852

archrelease: copy trunk to community-x86_64

Added:
  ring-daemon/repos/community-x86_64/PKGBUILD
(from rev 296851, ring-daemon/trunk/PKGBUILD)
Deleted:
  ring-daemon/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:46:34 UTC (rev 296851)
+++ PKGBUILD2018-02-21 22:46:53 UTC (rev 296852)
@@ -1,69 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ring-daemon
-pkgver=20180212.1.17fec46
-pkgrel=1
-epoch=2
-_pjprojectver=2.6
-pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
-arch=("x86_64")
-url="https://ring.cx;
-license=('GPL3')
-groups=("ring")
-replaces=('pjproject-savoirfairelinux')
-depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
- 'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'gnutls'
- 'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
- 'libsecp256k1' 'util-linux' 'opus')
-makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
-#checkdepends=('cppunit')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=616d4785646d04214cd4d62aae53a84b1afb4935;
-
"http://www.pjsip.org/release/${_pjprojectver}/pjproject-${_pjprojectver}.tar.bz2;)
-noextract=("pjproject-${_pjprojectver}.tar.bz2")
-sha256sums=('SKIP'
-'2f5a1da1c174d845871c758bd80fbb580fca7799d3cfaa0d3c4e082b5161c7b4')
-
-prepare() {
-  cd "${pkgname}"
-  cp ../pjproject-${_pjprojectver}.tar.bz2 contrib/tarballs
-  mkdir contrib/native
-  autoreconf -fvi
-}
-
-build() {
-  cd "${pkgname}/contrib/native"
-  ../bootstrap \
-  --disable-downloads \
-  --disable-all \
-  --enable-pjproject
-  make DEPS_pjproject=
-
-  cd ../..
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---libexecdir=/usr/lib \
---sysconfdir=/etc \
---enable-ipv6
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-# Disabled because some tests (TURN) use the network.
-#check() {
-#  cd "${pkgname}"
-#  make -k check
-#}
-
-package() {
-  cd "${pkgname}"
-
-  msg2 'Installing...'
-  make DESTDIR="$pkgdir" install
-
-  msg2 'Cleaning up pkgdir...'
-  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
-  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ring-daemon/repos/community-x86_64/PKGBUILD (from rev 296851, 
ring-daemon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:46:53 UTC (rev 296852)
@@ -0,0 +1,68 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-daemon
+pkgver=20180216.1.63fd90f
+pkgrel=1
+epoch=2
+_pjprojectver=2.6
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (daemon)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
+ 'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'gnutls'
+ 'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
+ 'libsecp256k1' 'util-linux' 'opus')
+makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
+#checkdepends=('cppunit')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=5ebe2918a192e7b7ed0fc771f80c35fd81395464;
+
"http://www.pjsip.org/release/${_pjprojectver}/pjproject-${_pjprojectver}.tar.bz2;)
+noextract=("pjproject-${_pjprojectver}.tar.bz2")
+sha256sums=('SKIP'
+'2f5a1da1c174d845871c758bd80fbb580fca7799d3cfaa0d3c4e082b5161c7b4')
+
+prepare() {
+  cd "${pkgname}"
+  cp ../pjproject-${_pjprojectver}.tar.bz2 contrib/tarballs
+  mkdir contrib/native
+  autoreconf -fvi
+}
+
+build() {
+  cd "${pkgname}/contrib/native"
+  ../bootstrap \
+  --disable-downloads \
+  --disable-all \
+  --enable-pjproject
+  make DEPS_pjproject=
+
+  cd ../..
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--sysconfdir=/etc \
+--enable-ipv6
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+# Disabled because some tests (TURN) use the network.
+#check() {
+#  cd "${pkgname}"
+#  make -k check
+#}
+
+package() {
+  cd "${pkgname}"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:46:34
  Author: zorun
Revision: 296851

upgpkg: ring-daemon 2:20180216.1.63fd90f-1

Modified:
  ring-daemon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:46:21 UTC (rev 296850)
+++ PKGBUILD2018-02-21 22:46:34 UTC (rev 296851)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=ring-daemon
-pkgver=20180212.1.17fec46
+pkgver=20180216.1.63fd90f
 pkgrel=1
 epoch=2
 _pjprojectver=2.6
@@ -10,7 +10,6 @@
 url="https://ring.cx;
 license=('GPL3')
 groups=("ring")
-replaces=('pjproject-savoirfairelinux')
 depends=('opendht' 'yaml-cpp' 'alsa-lib' 'libpulse' 'jack' 'jsoncpp'
  'libsamplerate' 'libsndfile' 'dbus-c++' 'ffmpeg' 'gnutls'
  'expat' 'gsm' 'libupnp' 'libnatpmp' 'libva' 'libvdpau' 'restbed'
@@ -17,7 +16,7 @@
  'libsecp256k1' 'util-linux' 'opus')
 makedepends=('git' 'boost' 'msgpack-c' 'autoconf-archive')
 #checkdepends=('cppunit')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=616d4785646d04214cd4d62aae53a84b1afb4935;
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-daemon#commit=5ebe2918a192e7b7ed0fc771f80c35fd81395464;
 
"http://www.pjsip.org/release/${_pjprojectver}/pjproject-${_pjprojectver}.tar.bz2;)
 noextract=("pjproject-${_pjprojectver}.tar.bz2")
 sha256sums=('SKIP'


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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:46:06
  Author: zorun
Revision: 296849

upgpkg: libringclient 2:20180216.1.63fd90f-1

Modified:
  libringclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:38:28 UTC (rev 296848)
+++ PKGBUILD2018-02-21 22:46:06 UTC (rev 296849)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=libringclient
-pkgver=20180212.1.17fec46
+pkgver=20180216.1.63fd90f
 pkgrel=1
 epoch=2
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
@@ -11,7 +11,7 @@
 groups=("ring")
 depends=("ring-daemon" "qt5-base")
 makedepends=('git' 'cmake' 'qt5-tools')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=2ae18e8b499669612f227e24ad32451afc925113;)
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=4ce625779bed65675d0556a34064558545f98731;)
 md5sums=('SKIP')
 
 build() {


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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:46:21
  Author: zorun
Revision: 296850

archrelease: copy trunk to community-x86_64

Added:
  libringclient/repos/community-x86_64/PKGBUILD
(from rev 296849, libringclient/trunk/PKGBUILD)
Deleted:
  libringclient/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:46:06 UTC (rev 296849)
+++ PKGBUILD2018-02-21 22:46:21 UTC (rev 296850)
@@ -1,40 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=libringclient
-pkgver=20180212.1.17fec46
-pkgrel=1
-epoch=2
-pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
-arch=("x86_64")
-url="https://ring.cx;
-license=('GPL3')
-groups=("ring")
-depends=("ring-daemon" "qt5-base")
-makedepends=('git' 'cmake' 'qt5-tools')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=2ae18e8b499669612f227e24ad32451afc925113;)
-md5sums=('SKIP')
-
-build() {
-  cd "ring-lrc"
-
-  msg2 'Building...'
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "ring-lrc/build"
-
-  msg2 'Installing...'
-  make DESTDIR="$pkgdir" install
-
-  msg2 'Cleaning up pkgdir...'
-  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
-  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libringclient/repos/community-x86_64/PKGBUILD (from rev 296849, 
libringclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:46:21 UTC (rev 296850)
@@ -0,0 +1,40 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=libringclient
+pkgver=20180216.1.63fd90f
+pkgrel=1
+epoch=2
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (client communication library)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("ring-daemon" "qt5-base")
+makedepends=('git' 'cmake' 'qt5-tools')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-lrc#commit=4ce625779bed65675d0556a34064558545f98731;)
+md5sums=('SKIP')
+
+build() {
+  cd "ring-lrc"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-lrc/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (sox)

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 23:24:23
  Author: arojas
Revision: 317372

extra2community: Moving sox from extra to community

Deleted:
  sox/


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:08:21
  Author: felixonmars
Revision: 296838

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-wai-websockets/repos/community-staging-x86_64/
  haskell-wai-websockets/repos/community-staging-x86_64/PKGBUILD
(from rev 296837, haskell-wai-websockets/trunk/PKGBUILD)

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

Copied: haskell-wai-websockets/repos/community-staging-x86_64/PKGBUILD (from 
rev 296837, haskell-wai-websockets/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-21 22:08:21 UTC (rev 296838)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-websockets
+pkgname=haskell-wai-websockets
+pkgver=3.0.1.1
+pkgrel=47
+pkgdesc="Provide a bridge between WAI and the websockets package."
+url="https://github.com/yesodweb/wai;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-case-insensitive" 
"haskell-http-types"
+ "haskell-network" "haskell-wai" "haskell-websockets")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('0948084dfe99ab95b4be71a94211069009b9c12d7fa4bdda1a28f9f8f7a14244d0248fcdf6090dc9b6e916ee135d28bc44adc1361224659259c761e9eed5417f')
+
+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-example
+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-wai-websockets/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:07:57
  Author: felixonmars
Revision: 296837

upgpkg: haskell-wai-websockets 3.0.1.1-47

rebuild with vault,0.3.1.0

Modified:
  haskell-wai-websockets/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:07:07 UTC (rev 296836)
+++ PKGBUILD2018-02-21 22:07:57 UTC (rev 296837)
@@ -5,7 +5,7 @@
 _hkgname=wai-websockets
 pkgname=haskell-wai-websockets
 pkgver=3.0.1.1
-pkgrel=46
+pkgrel=47
 pkgdesc="Provide a bridge between WAI and the websockets package."
 url="https://github.com/yesodweb/wai;
 license=("MIT")


[arch-commits] Commit in ffmpeg2.8/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2018-02-21 Thread Maxime Gauduin via arch-commits
Date: Wednesday, February 21, 2018 @ 22:25:34
  Author: alucryd
Revision: 317366

archrelease: copy trunk to staging-x86_64

Added:
  ffmpeg2.8/repos/staging-x86_64/
  ffmpeg2.8/repos/staging-x86_64/PKGBUILD
(from rev 317365, ffmpeg2.8/trunk/PKGBUILD)

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

Copied: ffmpeg2.8/repos/staging-x86_64/PKGBUILD (from rev 317365, 
ffmpeg2.8/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-02-21 22:25:34 UTC (rev 317366)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg2.8
+pkgver=2.8.13
+pkgrel=6
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=('x86_64')
+url='https://ffmpeg.org/'
+license=('GPL3')
+depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'glibc' 'gmp' 'gnutls' 'gsm'
+ 'jack' 'lame' 'libmodplug' 'libpulse' 'libsoxr' 'libssh' 'libtheora'
+ 'libvdpau' 'libwebp' 'libx11' 'libxcb' 'libxext' 'libxv'
+ 'opencore-amr' 'openjpeg' 'opus' 'schroedinger' 'sdl' 'speex'
+ 'v4l-utils' 'xz' 'zlib'
+ 'libass.so' 'libbluray.so' 'libdcadec.so' 'libfreetype.so' 'libva.so'
+ 'libvidstab.so' 'libvorbisenc.so' 'libvorbis.so' 'libvpx.so'
+ 'libx264.so' 'libx265.so' 'libxvidcore.so')
+makedepends=('ladspa' 'yasm')
+optdepends=('ladspa: LADSPA filters')
+provides=('libavcodec.so' 'libavdevice.so' 'libavfilter.so' 'libavformat.so'
+  'libavresample.so' 'libavutil.so' 'libpostproc.so' 'libswresample.so'
+  'libswscale.so')
+source=("https://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc})
+validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
+sha256sums=('c8c807cddfaf6659de81453e8719be8d87f0995a206debdf266ac61bd2c8d843'
+'SKIP')
+
+build() {
+  cd ffmpeg-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--incdir='/usr/include/ffmpeg2.8' \
+--libdir='/usr/lib/ffmpeg2.8' \
+--shlibdir='/usr/lib/ffmpeg2.8' \
+--disable-debug \
+--disable-static \
+--disable-stripping \
+--enable-avisynth \
+--enable-avresample \
+--enable-fontconfig \
+--enable-gnutls \
+--enable-gpl \
+--enable-ladspa \
+--enable-libass \
+--enable-libbluray \
+--enable-libdcadec \
+--enable-libfreetype \
+--enable-libfribidi \
+--enable-libgsm \
+--enable-libmodplug \
+--enable-libmp3lame \
+--enable-libopencore_amrnb \
+--enable-libopencore_amrwb \
+--enable-libopenjpeg \
+--enable-libopus \
+--enable-libpulse \
+--enable-libschroedinger \
+--enable-libsoxr \
+--enable-libspeex \
+--enable-libssh \
+--enable-libtheora \
+--enable-libv4l2 \
+--enable-libvidstab \
+--enable-libvorbis \
+--enable-libvpx \
+--enable-libwebp \
+--enable-libx264 \
+--enable-libx265 \
+--enable-libxvid \
+--enable-shared \
+--enable-version3 \
+--enable-x11grab
+  make
+}
+
+package() {
+  cd ffmpeg-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/share
+
+  find "${pkgdir}"/usr/bin -type f -exec mv {} {}2.8 \;
+
+  install -dm 755 "${pkgdir}"/etc/ld.so.conf.d
+  echo -e '/usr/lib/\n/usr/lib/ffmpeg2.8/' > 
"${pkgdir}"/etc/ld.so.conf.d/50-ffmpeg2.8.conf
+}
+
+# vim: ts=2 sw=2 et:
+


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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:37:40
  Author: zorun
Revision: 296847

upgpkg: opendht 1:1.6.0rc2-1

Modified:
  opendht/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:28:10 UTC (rev 296846)
+++ PKGBUILD2018-02-21 22:37:40 UTC (rev 296847)
@@ -1,6 +1,6 @@
 # Maintainer: Baptiste Jonglez 
 pkgname=opendht
-pkgver=1.6.0rc1
+pkgver=1.6.0rc2
 pkgrel=1
 epoch=1
 pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
@@ -11,8 +11,8 @@
 url="https://github.com/savoirfairelinux/opendht;
 license=('GPL3')
 
source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('9c0d46399182e6d701854efa95fd225a541b5ed743a1f2c3c0f22125e4bd65e2')
-sha512sums=('7db850afe9eebd580c7be97f591d8d3f36828387a9aedbd3c5ca48212251f9e650131dd6d81cd487ae3e58212f106abf6ea2a16e710297068778ffd25c8ebbd9')
+sha256sums=('1e561e92ae7aacc2591b36caed89ca6701b30a43af6b046090f48c765b3ace06')
+sha512sums=('c12763350d63a63122fcfbe52d3d17644279f24a8ae3154db0e4924f050c4c32c027a238ea79940e647ab538f8aaa87f2bed139f6404551c27ca637e25ebdd86')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:47:15
  Author: zorun
Revision: 296853

upgpkg: ring-gnome 3:20180216.1.63fd90f-1

Modified:
  ring-gnome/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:46:53 UTC (rev 296852)
+++ PKGBUILD2018-02-21 22:47:15 UTC (rev 296853)
@@ -1,7 +1,7 @@
 # Maintainer: Baptiste Jonglez 
 
 pkgname=ring-gnome
-pkgver=20180212.1.17fec46
+pkgver=20180216.1.63fd90f
 pkgrel=1
 epoch=3
 pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (GNOME client)"
@@ -14,7 +14,7 @@
  "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
  "evolution-data-server" "libnotify" "libcanberra" "libnm")
 makedepends=('git' 'cmake')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=5b2bba5ae57db6721d990f8094498b60bae72b92;)
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=33739222f132d2afb244dd56c8fe94964c7306e4;)
 sha256sums=('SKIP')
 
 build() {


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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:47:45
  Author: zorun
Revision: 296854

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:47:15 UTC (rev 296853)
+++ PKGBUILD2018-02-21 22:47:45 UTC (rev 296854)
@@ -1,43 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ring-gnome
-pkgver=20180212.1.17fec46
-pkgrel=1
-epoch=3
-pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (GNOME client)"
-arch=("x86_64")
-url="https://ring.cx;
-license=('GPL3')
-groups=("ring")
-depends=("libringclient" "ring-daemon"
- "gtk3" "dconf" "clutter" "clutter-gtk" "webkit2gtk" "qrencode"
- "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
- "evolution-data-server" "libnotify" "libcanberra" "libnm")
-makedepends=('git' 'cmake')
-source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=5b2bba5ae57db6721d990f8094498b60bae72b92;)
-sha256sums=('SKIP')
-
-build() {
-  cd "ring-client-gnome"
-
-  msg2 'Building...'
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd "ring-client-gnome/build"
-
-  msg2 'Installing...'
-  make DESTDIR="$pkgdir" install
-
-  msg2 'Cleaning up pkgdir...'
-  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
-  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ring-gnome/repos/community-x86_64/PKGBUILD (from rev 296853, 
ring-gnome/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:47:45 UTC (rev 296854)
@@ -0,0 +1,43 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ring-gnome
+pkgver=20180216.1.63fd90f
+pkgrel=1
+epoch=3
+pkgdesc="Ring is a free and universal communication platform which preserves 
the users' privacy and freedoms (GNOME client)"
+arch=("x86_64")
+url="https://ring.cx;
+license=('GPL3')
+groups=("ring")
+depends=("libringclient" "ring-daemon"
+ "gtk3" "dconf" "clutter" "clutter-gtk" "webkit2gtk" "qrencode"
+ "qt5-base" "gtk-update-icon-cache" "desktop-file-utils"
+ "evolution-data-server" "libnotify" "libcanberra" "libnm")
+makedepends=('git' 'cmake')
+source=("git+https://gerrit-ring.savoirfairelinux.com/ring-client-gnome#commit=33739222f132d2afb244dd56c8fe94964c7306e4;)
+sha256sums=('SKIP')
+
+build() {
+  cd "ring-client-gnome"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd "ring-client-gnome/build"
+
+  msg2 'Installing...'
+  make DESTDIR="$pkgdir" install
+
+  msg2 'Cleaning up pkgdir...'
+  find "$pkgdir" -type d -name .git -exec rm -r '{}' +
+  find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-02-21 Thread Kyle Keen via arch-commits
Date: Thursday, February 22, 2018 @ 02:20:52
  Author: kkeen
Revision: 296860

archrelease: copy trunk to community-x86_64

Added:
  pcb/repos/community-x86_64/PKGBUILD
(from rev 296859, pcb/trunk/PKGBUILD)
Deleted:
  pcb/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-22 02:20:30 UTC (rev 296859)
+++ PKGBUILD2018-02-22 02:20:52 UTC (rev 296860)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Matthias Blankertz 
-# Contributor: Egon Geerardyn 
-# Contributor: kfgz 
-# Contributor: Gaetan Bisson 
-# Contributor: Jared Casper 
-# Contributor: Stefan Husmann 
-
-pkgname=pcb
-epoch=1
-# switched from MMDD to I.J.K
-pkgver=4.0.2
-pkgrel=1
-pkgdesc='Interactive printed circuit board editor'
-url='http://pcb.geda-project.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gtkglext' 'gd')
-optdepends=('tk: additional tools'
-'tcl: additional tools'
-'perl: additional tools'
-   'desktop-file-utils: desktop integration')
-makedepends=('intltool' 'tk')
-source=("http://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('1933b92d0c8b1dbce8fb584dd47c5b8d009d9cfe')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
-  --prefix=/usr \
-  --enable-dbus \
-  --disable-update-mime-database \
-  --disable-update-desktop-database
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -j1 prefix="$pkgdir/usr" install
-
-  rm "$pkgdir/usr/share/info/dir"
-}

Copied: pcb/repos/community-x86_64/PKGBUILD (from rev 296859, 
pcb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-22 02:20:52 UTC (rev 296860)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Matthias Blankertz 
+# Contributor: Egon Geerardyn 
+# Contributor: kfgz 
+# Contributor: Gaetan Bisson 
+# Contributor: Jared Casper 
+# Contributor: Stefan Husmann 
+
+pkgname=pcb
+epoch=1
+# switched from MMDD to I.J.K
+pkgver=4.1.0
+pkgrel=1
+pkgdesc='Interactive printed circuit board editor'
+url='http://pcb.geda-project.org/'
+license=('GPL')
+arch=('x86_64')
+depends=('gtkglext' 'gd')
+optdepends=('tk: additional tools'
+'tcl: additional tools'
+'perl: additional tools'
+   'desktop-file-utils: desktop integration')
+makedepends=('intltool' 'tk')
+source=("https://downloads.sourceforge.net/pcb/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('564185df20fe96a7765edd08361b125c6e282c36')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure \
+  --prefix=/usr \
+  --enable-dbus \
+  --disable-update-mime-database \
+  --disable-update-desktop-database
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -j1 prefix="$pkgdir/usr" install
+
+  rm "$pkgdir/usr/share/info/dir"
+}


[arch-commits] Commit in hledger-web/repos/community-staging-x86_64 (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:02:08
  Author: felixonmars
Revision: 296829

archrelease: copy trunk to community-staging-x86_64

Added:
  hledger-web/repos/community-staging-x86_64/PKGBUILD
(from rev 296828, hledger-web/trunk/PKGBUILD)
Deleted:
  hledger-web/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:01:42 UTC (rev 296828)
+++ PKGBUILD2018-02-21 22:02:08 UTC (rev 296829)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hledger-web
-pkgver=1.5
-pkgrel=62
-pkgdesc="Web interface for the hledger accounting tool"
-url="http://hledger.org;
-license=("GPL")
-arch=('x86_64')
-depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-base-compat' 
'haskell-blaze-html'
- 'haskell-blaze-markup' 'haskell-clientsession' 'haskell-cmdargs' 
'haskell-data-default'
- 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-hunit'
- 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-text' 'haskell-wai'
- 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
- 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
- 'haskell-megaparsec' 'haskell-mtl' 'haskell-parsec')
-makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
-source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3ba0b9e7d03a9d813e41f7f36ca0fa34decf6f04163abea850cb5ff6e322387b60952bfb30f46be817f52b2c79641fba03e62a5d6483b78a7e094c91fbb273a6')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-dev -f-library-only -fthreaded
-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
-runhaskell Setup test
-}
-
-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}"
-rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
-}

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 296828, 
hledger-web/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:02:08 UTC (rev 296829)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.5
+pkgrel=63
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-base-compat' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-clientsession' 'haskell-cmdargs' 
'haskell-data-default'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-hunit'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-text' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec' 'haskell-mtl' 'haskell-parsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3ba0b9e7d03a9d813e41f7f36ca0fa34decf6f04163abea850cb5ff6e322387b60952bfb30f46be817f52b2c79641fba03e62a5d6483b78a7e094c91fbb273a6')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+runhaskell Setup build
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e 

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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:15:16
  Author: felixonmars
Revision: 296839

upgpkg: haskell-shake 0.16.2-3

rebuild with vault,0.3.1.0

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:08:21 UTC (rev 296838)
+++ PKGBUILD2018-02-21 22:15:16 UTC (rev 296839)
@@ -5,7 +5,7 @@
 _hkgname=shake
 pkgname=haskell-shake
 pkgver=0.16.2
-pkgrel=2
+pkgrel=3
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="http://shakebuild.com;
 license=("custom:BSD3")


[arch-commits] Commit in gst-plugins-bad/repos (2 files)

2018-02-21 Thread Maxime Gauduin via arch-commits
Date: Wednesday, February 21, 2018 @ 22:38:26
  Author: alucryd
Revision: 317368

archrelease: copy trunk to staging-x86_64

Added:
  gst-plugins-bad/repos/staging-x86_64/
  gst-plugins-bad/repos/staging-x86_64/PKGBUILD
(from rev 317367, gst-plugins-bad/trunk/PKGBUILD)

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

Copied: gst-plugins-bad/repos/staging-x86_64/PKGBUILD (from rev 317367, 
gst-plugins-bad/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-02-21 22:38:26 UTC (rev 317368)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+
+pkgname=gst-plugins-bad
+pkgver=1.12.4
+pkgrel=4
+pkgdesc="GStreamer Multimedia Framework Bad Plugins"
+url="https://gstreamer.freedesktop.org/;
+arch=(x86_64)
+license=(LGPL)
+depends=(mjpegtools gst-plugins-base-libs curl chromaprint libmms faad2 celt 
libdca libdvdnav
+ libmodplug libgme wayland libofa openjpeg2 libwebp libsrtp gnutls glu 
sbc rtmpdump
+ libgudev graphene schroedinger libexif libdvdread libvdpau libmpeg2 
wildmidi ladspa
+ openal libusb vulkan-icd-loader libfdk-aac faac soundtouch spandsp 
neon
+ webrtc-audio-processing libdc1394 libmpcdec zvbi openexr libbs2b)
+makedepends=(python valgrind gobject-introspection gtk-doc git 
autoconf-archive vulkan-headers
+ gtk3 clutter librsvg libtiger qt5-declarative qt5-x11extras 
qt5-wayland zbar
+ fluidsynth lilv opencv)
+_commit=cbdbd8d4f6893e6042dbf7b8258e23a8d2aaf081  # tags/1.12.4^0
+source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-plugins-bad#commit=$_commit;
+"gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.common.url "$srcdir/gst-common"
+  git submodule update
+
+  # libsrtp2
+  git cherry-pick -n 029e01743f 17121ebc57 e9aa117200
+
+  sed -i 's/cmu_us_kal/&16/g' configure.ac ext/flite/gstflitetestsrc.c
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--libexecdir=/usr/lib \
+--with-package-name="GStreamer Bad Plugins (Arch Linux)" \
+--with-package-origin="https://www.archlinux.org/; \
+--with-gtk=3.0 \
+--enable-experimental --enable-gtk-doc --disable-static
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+check() {
+  cd $pkgname
+  # bad tests are bad
+  #make -k check || :
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in gst-plugins-bad/trunk (PKGBUILD)

2018-02-21 Thread Maxime Gauduin via arch-commits
Date: Wednesday, February 21, 2018 @ 22:38:02
  Author: alucryd
Revision: 317367

upgpkg: gst-plugins-bad 1.12.4-4

Modified:
  gst-plugins-bad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:25:34 UTC (rev 317366)
+++ PKGBUILD2018-02-21 22:38:02 UTC (rev 317367)
@@ -4,7 +4,7 @@
 
 pkgname=gst-plugins-bad
 pkgver=1.12.4
-pkgrel=3
+pkgrel=4
 pkgdesc="GStreamer Multimedia Framework Bad Plugins"
 url="https://gstreamer.freedesktop.org/;
 arch=(x86_64)


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 21:59:57
  Author: felixonmars
Revision: 296827

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 296826, hoogle/trunk/PKGBUILD)
Deleted:
  hoogle/repos/community-staging-x86_64/PKGBUILD

--+
 PKGBUILD |   90 ++---
 1 file changed, 45 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 21:59:30 UTC (rev 296826)
+++ PKGBUILD2018-02-21 21:59:57 UTC (rev 296827)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hoogle
-pkgver=5.0.16
-pkgrel=5
-pkgdesc="Haskell API Search"
-url="http://www.haskell.org/hoogle/;
-license=("custom:BSD3")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-cmdargs' 
'haskell-conduit'
- 'haskell-conduit-extra' 'haskell-connection' 'haskell-extra' 
'haskell-src-exts'
- 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
- 'haskell-mmap' 'haskell-network' 'haskell-network-uri' 
'haskell-old-locale'
- 'haskell-process-extras' 'haskell-resourcet' 'haskell-storable-tuple' 
'haskell-tar'
- 'haskell-text' 'haskell-uniplate' 'haskell-utf8-string' 
'haskell-vector' 'haskell-wai'
- 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('14b0d6290927234be7e6e6548529fef61d44972a21b9ac22815325214241095b61d60e3b95b6f20a5d40bf9386beff4036942a2c61925c745b767f2525b915c9')
-
-build() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--fnetwork-uri
-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}/${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"
-}

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 296826, 
hoogle/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 21:59:57 UTC (rev 296827)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.16
+pkgrel=6
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-connection' 'haskell-extra' 
'haskell-src-exts'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-network-uri' 
'haskell-old-locale'
+ 'haskell-process-extras' 'haskell-resourcet' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-text' 'haskell-uniplate' 'haskell-utf8-string' 
'haskell-vector' 'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('14b0d6290927234be7e6e6548529fef61d44972a21b9ac22815325214241095b61d60e3b95b6f20a5d40bf9386beff4036942a2c61925c745b767f2525b915c9')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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() {
+

[arch-commits] Commit in archlinux-appstream-data/repos/extra-any (PKGBUILD PKGBUILD)

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 22:22:49
  Author: arojas
Revision: 317364

archrelease: copy trunk to extra-any

Added:
  archlinux-appstream-data/repos/extra-any/PKGBUILD
(from rev 317363, archlinux-appstream-data/trunk/PKGBUILD)
Deleted:
  archlinux-appstream-data/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:22:18 UTC (rev 317363)
+++ PKGBUILD2018-02-21 22:22:49 UTC (rev 317364)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas <aro...@archlinux.org>
-
-pkgname=archlinux-appstream-data
-pkgver=20180129
-pkgrel=1
-pkgdesc="Arch Linux application database for AppStream-based software centers"
-arch=(any)
-url="http://www.archlinux.org;
-license=(GPL)
-depends=()
-makedepends=()
-source=()
-noextract=()
-for _repo in core extra community; do
- 
source+=($_repo.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
-  
$_repo-icons-64x64.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
-  
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
- noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
-done
-sha256sums=('4eada9278c7f65e43bf12059dea0ca0d1f7ce4a318d75991f571dc8efbefa0ce'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'7966ca12d0505d19e773146d618f217116e8d8b07357897c800868233a48a4de'
-'4f615f30096f8076efe748bfb230109a48be7b4eb722f3d322df958085a3e643'
-'ae4b25414f4c32e33af5913f7e90116441ad85e3ed80b6d3ae8efc11e9eb1dc1'
-'6a8dbf41c8205e00fe783f1ded710ddc28cfe5797116066013434bcb3d9a430f'
-'77ad1068c2b4d503904c6a3c7ff73ff67ff59da67baab94572dfc1cc9c9129ea'
-'a09479c2b70e2304cb6925abe12a41317bb80a0160881641f6b3903b4ae06a31')
-
-package() {
-  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
-  for _repo in core extra community; do
-   tar -xzf $_repo-icons-64x64.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
-   tar -xzf $_repo-icons-128x128.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
-  done
-  cp *.xml.gz "$pkgdir"/usr/share/app-info/xmls/
-}

Copied: archlinux-appstream-data/repos/extra-any/PKGBUILD (from rev 317363, 
archlinux-appstream-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:22:49 UTC (rev 317364)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Antonio Rojas <aro...@archlinux.org>
+
+pkgname=archlinux-appstream-data
+pkgver=20180221
+pkgrel=1
+pkgdesc="Arch Linux application database for AppStream-based software centers"
+arch=(any)
+url="http://www.archlinux.org;
+license=(GPL)
+depends=()
+makedepends=()
+source=()
+noextract=()
+for _repo in core extra community; do
+ 
source+=($_repo-$pkgver.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
+  
$_repo-icons-64x64-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
+  
$_repo-icons-128x128-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
+ noextract+=($_repo.xml.gz-$pkgver $_repo-icons-{64x64,128x128}-$pkgver.tar.gz)
+done
+sha256sums=('097c29dbe0b418bb63252e8e1f5c70a6bf86d4aad87c9d021979ad154f6418a4'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
+'0b9ad57e3a45c23a66b7b12dc93142bb4e9a416dd5846d5fb6a76433dbe63469'
+'5994c918bf9a1a9a36f489afc986645e6e9905e32f89763cf062f6e6fcd91bf6'
+'15b087c8b4fd797842a6aae52c5a6be660d1dd064c7ae2104b398006e9eeb2f3'
+'9778f42febf769f1d5400dd903092c2194e2b5ca8d00ae3547a41b5e4194824d'
+'b2a5bd97171488ee4e3e8da49715a4f2283d7c9be8b790a7325fb1dd61af8c2a'
+'00c1d1acd81c7dadbbe3be43623a0f3816ecf382e7cd70f5f8a39aad7152cab1')
+
+package() {
+  mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
+  for _repo in core extra community; do
+   tar -xzf $_repo-icons-64x64-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
+   tar -xzf $_repo-icons-128x128-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
+   install -m644 $_repo-$pkgver.xml.gz 
"$pkgdir"/usr/share/app-info/xmls/$_repo.xml.gz
+  done
+}


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

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 22:22:18
  Author: arojas
Revision: 317363

Update

Modified:
  archlinux-appstream-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:19:13 UTC (rev 317362)
+++ PKGBUILD2018-02-21 22:22:18 UTC (rev 317363)
@@ -2,7 +2,7 @@
 # Maintainer: Antonio Rojas <aro...@archlinux.org>
 
 pkgname=archlinux-appstream-data
-pkgver=20180129
+pkgver=20180221
 pkgrel=1
 pkgdesc="Arch Linux application database for AppStream-based software centers"
 arch=(any)
@@ -13,26 +13,26 @@
 source=()
 noextract=()
 for _repo in core extra community; do
- 
source+=($_repo.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
-  
$_repo-icons-64x64.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
-  
$_repo-icons-128x128.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
- noextract+=($_repo.xml.gz $_repo-icons-{64x64,128x128}.tar.gz)
+ 
source+=($_repo-$pkgver.xml.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/Components-x86_64.xml.gz
+  
$_repo-icons-64x64-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-64x64.tar.gz
+  
$_repo-icons-128x128-$pkgver.tar.gz::https://sources.archlinux.org/other/packages/$pkgname/$pkgver/$_repo/icons-128x128.tar.gz)
+ noextract+=($_repo.xml.gz-$pkgver $_repo-icons-{64x64,128x128}-$pkgver.tar.gz)
 done
-sha256sums=('4eada9278c7f65e43bf12059dea0ca0d1f7ce4a318d75991f571dc8efbefa0ce'
+sha256sums=('097c29dbe0b418bb63252e8e1f5c70a6bf86d4aad87c9d021979ad154f6418a4'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
 '7989bb311baa38ef545250282aa065d23281c46dfb8faabe4c653487bdbded5c'
-'7966ca12d0505d19e773146d618f217116e8d8b07357897c800868233a48a4de'
-'4f615f30096f8076efe748bfb230109a48be7b4eb722f3d322df958085a3e643'
-'ae4b25414f4c32e33af5913f7e90116441ad85e3ed80b6d3ae8efc11e9eb1dc1'
-'6a8dbf41c8205e00fe783f1ded710ddc28cfe5797116066013434bcb3d9a430f'
-'77ad1068c2b4d503904c6a3c7ff73ff67ff59da67baab94572dfc1cc9c9129ea'
-'a09479c2b70e2304cb6925abe12a41317bb80a0160881641f6b3903b4ae06a31')
+'0b9ad57e3a45c23a66b7b12dc93142bb4e9a416dd5846d5fb6a76433dbe63469'
+'5994c918bf9a1a9a36f489afc986645e6e9905e32f89763cf062f6e6fcd91bf6'
+'15b087c8b4fd797842a6aae52c5a6be660d1dd064c7ae2104b398006e9eeb2f3'
+'9778f42febf769f1d5400dd903092c2194e2b5ca8d00ae3547a41b5e4194824d'
+'b2a5bd97171488ee4e3e8da49715a4f2283d7c9be8b790a7325fb1dd61af8c2a'
+'00c1d1acd81c7dadbbe3be43623a0f3816ecf382e7cd70f5f8a39aad7152cab1')
 
 package() {
   mkdir -p 
"$pkgdir"/usr/share/app-info/{icons/archlinux-arch-{core,extra,community}/{64x64,128x128},xmls}
   for _repo in core extra community; do
-   tar -xzf $_repo-icons-64x64.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
-   tar -xzf $_repo-icons-128x128.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
+   tar -xzf $_repo-icons-64x64-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/64x64
+   tar -xzf $_repo-icons-128x128-$pkgver.tar.gz -C 
"$pkgdir"/usr/share/app-info/icons/archlinux-arch-$_repo/128x128
+   install -m644 $_repo-$pkgver.xml.gz 
"$pkgdir"/usr/share/app-info/xmls/$_repo.xml.gz
   done
-  cp *.xml.gz "$pkgdir"/usr/share/app-info/xmls/
 }


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:04:16
  Author: felixonmars
Revision: 296831

archrelease: copy trunk to community-staging-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:03:48 UTC (rev 296830)
+++ PKGBUILD2018-02-21 22:04:16 UTC (rev 296831)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgname=hledger-api
-pkgver=1.5
-pkgrel=62
-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"
-}

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 296830, 
hledger-api/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:04:16 UTC (rev 296831)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.5
+pkgrel=63
+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 helm/repos (2 files)

2018-02-21 Thread David Runge via arch-commits
Date: Wednesday, February 21, 2018 @ 22:05:49
  Author: dvzrv
Revision: 296834

archrelease: copy trunk to community-testing-x86_64

Added:
  helm/repos/community-testing-x86_64/
  helm/repos/community-testing-x86_64/PKGBUILD
(from rev 296833, helm/trunk/PKGBUILD)

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

Copied: helm/repos/community-testing-x86_64/PKGBUILD (from rev 296833, 
helm/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-02-21 22:05:49 UTC (rev 296834)
@@ -0,0 +1,29 @@
+# Maintainer: David Runge 
+pkgname=helm
+pkgver=0.9.0
+pkgrel=5
+pkgdesc="A cross-platform, polyphonic synthesizer, available standalone and as 
an LV2 plugin"
+arch=('x86_64')
+url="http://tytel.org/helm/;
+license=('GPL')
+groups=('pro-audio' 'lv2-plugins')
+depends=('alsa-lib' 'curl' 'freetype2' 'hicolor-icon-theme' 'libxinerama' 
'lv2' 'mesa')
+makedepends=('jack' 'libxcursor')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mtytel/${pkgname}/archive/v${pkgver}.tar.gz;)
+sha512sums=('241c6bf3aec422e9ccaf7c7113eec7e30a11baadd30fe8f05f0abfac9c41d0c8a9fb284f0cae49bcaf0d3d08aa952737f6ff3eb7d48c2b2e22c60932738aeaa4')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  sed -e 's/JUCE_INCLUDE_PNGLIB_CODE=0/JUCE_INCLUDE_PNGLIB_CODE=1/g' \
+-i {standalone/builds/linux,builds/linux/{VST,LV2}}/Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make PREFIX="/usr" standalone lv2
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" install_standalone install_lv2
+}


[arch-commits] Commit in x265/repos (staging-x86_64 staging-x86_64/PKGBUILD)

2018-02-21 Thread Maxime Gauduin via arch-commits
Date: Wednesday, February 21, 2018 @ 22:05:46
  Author: alucryd
Revision: 317360

archrelease: copy trunk to staging-x86_64

Added:
  x265/repos/staging-x86_64/
  x265/repos/staging-x86_64/PKGBUILD
(from rev 317359, x265/trunk/PKGBUILD)

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

Copied: x265/repos/staging-x86_64/PKGBUILD (from rev 317359, 
x265/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-02-21 22:05:46 UTC (rev 317360)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: kfgz 
+
+pkgname=x265
+pkgver=2.7
+pkgrel=1
+pkgdesc='Open Source H265/HEVC video encoder'
+arch=('x86_64')
+url='https://bitbucket.org/multicoreware/x265'
+license=('GPL')
+depends=('gcc-libs')
+makedepends=('cmake' 'nasm')
+provides=('libx265.so')
+source=("https://bitbucket.org/multicoreware/x265/downloads/x265_${pkgver}.tar.gz;)
+sha256sums=('d5e75fa62ffe6ed49e691f8eb8ab8c1634ffcc0725dd553c6fdb4d5443b494a2')
+
+prepare() {
+  cd x265_${pkgver}
+
+  for d in 8 10 12; do
+if [[ -d build-$d ]]; then
+  rm -rf build-$d
+fi
+mkdir build-$d
+  done
+}
+
+build() {
+  cd x265_${pkgver}/build-12
+
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DHIGH_BIT_DEPTH='TRUE' \
+-DMAIN12='TRUE' \
+-DEXPORT_C_API='FALSE' \
+-DENABLE_CLI='FALSE' \
+-DENABLE_SHARED='FALSE'
+  make
+
+  cd ../build-10
+
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DHIGH_BIT_DEPTH='TRUE' \
+-DEXPORT_C_API='FALSE' \
+-DENABLE_CLI='FALSE' \
+-DENABLE_SHARED='FALSE'
+  make
+
+  cd ../build-8
+
+  ln -s ../build-10/libx265.a libx265_main10.a
+  ln -s ../build-12/libx265.a libx265_main12.a
+
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DENABLE_SHARED='TRUE' \
+-DENABLE_HDR10_PLUS='TRUE' \
+-DEXTRA_LIB='x265_main10.a;x265_main12.a' \
+-DEXTRA_LINK_FLAGS='-L .' \
+-DLINKED_10BIT='TRUE' \
+-DLINKED_12BIT='TRUE'
+  make
+}
+
+package() {
+  cd x265_${pkgver}/build-8
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2018-02-21 Thread Maxime Gauduin via arch-commits
Date: Wednesday, February 21, 2018 @ 22:05:31
  Author: alucryd
Revision: 317359

upgpkg: x265 2.7-1

Modified:
  x265/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 21:02:26 UTC (rev 317358)
+++ PKGBUILD2018-02-21 22:05:31 UTC (rev 317359)
@@ -4,7 +4,7 @@
 # Contributor: kfgz 
 
 pkgname=x265
-pkgver=2.6
+pkgver=2.7
 pkgrel=1
 pkgdesc='Open Source H265/HEVC video encoder'
 arch=('x86_64')
@@ -11,13 +11,13 @@
 url='https://bitbucket.org/multicoreware/x265'
 license=('GPL')
 depends=('gcc-libs')
-makedepends=('yasm' 'cmake')
+makedepends=('cmake' 'nasm')
 provides=('libx265.so')
 
source=("https://bitbucket.org/multicoreware/x265/downloads/x265_${pkgver}.tar.gz;)
-sha256sums=('1bf0036415996af841884802161065b9e6be74f5f6808ac04831363e2549cdbf')
+sha256sums=('d5e75fa62ffe6ed49e691f8eb8ab8c1634ffcc0725dd553c6fdb4d5443b494a2')
 
 prepare() {
-  cd x265_v${pkgver}
+  cd x265_${pkgver}
 
   for d in 8 10 12; do
 if [[ -d build-$d ]]; then
@@ -28,45 +28,45 @@
 }
 
 build() {
-cd x265_v${pkgver}/build-12
+  cd x265_${pkgver}/build-12
 
-cmake ../source \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DHIGH_BIT_DEPTH='TRUE' \
-  -DMAIN12='TRUE' \
-  -DEXPORT_C_API='FALSE' \
-  -DENABLE_CLI='FALSE' \
-  -DENABLE_SHARED='FALSE'
-make
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DHIGH_BIT_DEPTH='TRUE' \
+-DMAIN12='TRUE' \
+-DEXPORT_C_API='FALSE' \
+-DENABLE_CLI='FALSE' \
+-DENABLE_SHARED='FALSE'
+  make
 
-cd ../build-10
+  cd ../build-10
 
-cmake ../source \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DHIGH_BIT_DEPTH='TRUE' \
-  -DEXPORT_C_API='FALSE' \
-  -DENABLE_CLI='FALSE' \
-  -DENABLE_SHARED='FALSE'
-make
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DHIGH_BIT_DEPTH='TRUE' \
+-DEXPORT_C_API='FALSE' \
+-DENABLE_CLI='FALSE' \
+-DENABLE_SHARED='FALSE'
+  make
 
-cd ../build-8
+  cd ../build-8
 
-ln -s ../build-10/libx265.a libx265_main10.a
-ln -s ../build-12/libx265.a libx265_main12.a
+  ln -s ../build-10/libx265.a libx265_main10.a
+  ln -s ../build-12/libx265.a libx265_main12.a
 
-cmake ../source \
-  -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DENABLE_SHARED='TRUE' \
-  -DENABLE_HDR10_PLUS='TRUE' \
-  -DEXTRA_LIB='x265_main10.a;x265_main12.a' \
-  -DEXTRA_LINK_FLAGS='-L .' \
-  -DLINKED_10BIT='TRUE' \
-  -DLINKED_12BIT='TRUE'
-make
+  cmake ../source \
+-DCMAKE_INSTALL_PREFIX='/usr' \
+-DENABLE_SHARED='TRUE' \
+-DENABLE_HDR10_PLUS='TRUE' \
+-DEXTRA_LIB='x265_main10.a;x265_main12.a' \
+-DEXTRA_LINK_FLAGS='-L .' \
+-DLINKED_10BIT='TRUE' \
+-DLINKED_12BIT='TRUE'
+  make
 }
 
 package() {
-  cd x265_v${pkgver}/build-8
+  cd x265_${pkgver}/build-8
 
   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in haskell-yesod-default/repos/community-staging-x86_64 (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:05:30
  Author: felixonmars
Revision: 296833

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD
(from rev 296832, haskell-yesod-default/trunk/PKGBUILD)
Deleted:
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:05:06 UTC (rev 296832)
+++ PKGBUILD2018-02-21 22:05:30 UTC (rev 296833)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=yesod-default
-pkgname=haskell-yesod-default
-pkgver=1.2.0
-pkgrel=253
-pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
-url="http://www.yesodweb.com/;
-license=("MIT")
-arch=('x86_64')
-depends=('ghc-libs' "haskell-yesod-core")
-makedepends=('ghc')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
-
-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"
-}

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
296832, haskell-yesod-default/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:05:30 UTC (rev 296833)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=254
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+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-yesod-default/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:05:06
  Author: felixonmars
Revision: 296832

upgpkg: haskell-yesod-default 1.2.0-254

rebuild with vault,0.3.1.0

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:04:16 UTC (rev 296831)
+++ PKGBUILD2018-02-21 22:05:06 UTC (rev 296832)
@@ -5,7 +5,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=253
+pkgrel=254
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:06:44
  Author: felixonmars
Revision: 296835

upgpkg: haskell-yesod-auth 1.4.21-76

rebuild with vault,0.3.1.0

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:05:49 UTC (rev 296834)
+++ PKGBUILD2018-02-21 22:06:44 UTC (rev 296835)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.21
-pkgrel=75
+pkgrel=76
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:20:45
  Author: felixonmars
Revision: 296843

upgpkg: haskell-criterion 1.3.0.0-19

rebuild with vault,0.3.1.0

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:18:30 UTC (rev 296842)
+++ PKGBUILD2018-02-21 22:20:45 UTC (rev 296843)
@@ -5,7 +5,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.3.0.0
-pkgrel=18
+pkgrel=19
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("custom:BSD3")


[arch-commits] Commit in haskell-criterion/repos/community-staging-x86_64 (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:21:09
  Author: felixonmars
Revision: 296844

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-criterion/repos/community-staging-x86_64/PKGBUILD
(from rev 296843, haskell-criterion/trunk/PKGBUILD)
Deleted:
  haskell-criterion/repos/community-staging-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:20:45 UTC (rev 296843)
+++ PKGBUILD2018-02-21 22:21:09 UTC (rev 296844)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-_hkgname=criterion
-pkgname=haskell-criterion
-pkgver=1.3.0.0
-pkgrel=18
-pkgdesc="Robust, reliable performance measurement and analysis"
-url="http://www.serpentine.com/criterion;
-license=("custom:BSD3")
-arch=('x86_64')
-depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-cassava' 
'haskell-code-page'
- 'haskell-exceptions' 'haskell-glob' 'haskell-js-flot' 
'haskell-js-jquery'
- 'haskell-microstache' 'haskell-mtl' 'haskell-mwc-random' 
'haskell-optparse-applicative'
- 'haskell-parsec' 'haskell-semigroups' 'haskell-statistics' 
'haskell-text'
- 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
-makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
- 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
-source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
-sha512sums=('1ad1f53b0552d3e981e12d2425c675fa8fdb83a907081e7f564c3ebebd09d7619cf1278db2db6ceeb23902fdea114994e8eca01607d91f1a44933ac01c289588')
-
-build() {
-cd "${srcdir}/${_hkgname}-${pkgver}"
-
-runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
---prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
---dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--f-fast -f-embed-data-files
-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"
-}

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
296843, haskell-criterion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:21:09 UTC (rev 296844)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.3.0.0
+pkgrel=19
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-cassava' 
'haskell-code-page'
+ 'haskell-exceptions' 'haskell-glob' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-microstache' 'haskell-mtl' 'haskell-mwc-random' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-semigroups' 'haskell-statistics' 
'haskell-text'
+ 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1ad1f53b0552d3e981e12d2425c675fa8fdb83a907081e7f564c3ebebd09d7619cf1278db2db6ceeb23902fdea114994e8eca01607d91f1a44933ac01c289588')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast -f-embed-data-files
+runhaskell Setup build
+

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

2018-02-21 Thread Baptiste Jonglez via arch-commits
Date: Wednesday, February 21, 2018 @ 22:38:28
  Author: zorun
Revision: 296848

archrelease: copy trunk to community-x86_64

Added:
  opendht/repos/community-x86_64/PKGBUILD
(from rev 296847, opendht/trunk/PKGBUILD)
Deleted:
  opendht/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 22:37:40 UTC (rev 296847)
+++ PKGBUILD2018-02-21 22:38:28 UTC (rev 296848)
@@ -1,49 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-pkgname=opendht
-pkgver=1.6.0rc1
-pkgrel=1
-epoch=1
-pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
-arch=('x86_64')
-depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
-makedepends=('msgpack-c' 'cmake' 'cython')
-optdepends=('python: to use the Python bindings')
-url="https://github.com/savoirfairelinux/opendht;
-license=('GPL3')
-source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('9c0d46399182e6d701854efa95fd225a541b5ed743a1f2c3c0f22125e4bd65e2')
-sha512sums=('7db850afe9eebd580c7be97f591d8d3f36828387a9aedbd3c5ca48212251f9e650131dd6d81cd487ae3e58212f106abf6ea2a16e710297068778ffd25c8ebbd9')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  msg2 'Building...'
-  mkdir -p build
-  cd build
-  cmake .. \
--DCMAKE_BUILD_TYPE=Release \
--DOPENDHT_STATIC=OFF \
--DOPENDHT_SYSTEMD=ON \
--DOPENDHT_LTO=ON \
--DOPENDHT_PYTHON=ON \
--DOPENDHT_PROXY_SERVER=ON \
--DOPENDHT_PROXY_CLIENT=ON \
--DOPENDHT_PUSH_NOTIFICATIONS=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  msg2 'Installing...'
-  cd build
-  make DESTDIR="$pkgdir" install
-  cd ..
-
-  msg2 'Installing documentation...'
-  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opendht/repos/community-x86_64/PKGBUILD (from rev 296847, 
opendht/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 22:38:28 UTC (rev 296848)
@@ -0,0 +1,49 @@
+# Maintainer: Baptiste Jonglez 
+pkgname=opendht
+pkgver=1.6.0rc2
+pkgrel=1
+epoch=1
+pkgdesc="A C++11 implementation of the Kademlia DHT (Distributed Hash Table)"
+arch=('x86_64')
+depends=('gnutls' 'nettle' 'readline' 'argon2' 'jsoncpp' 'restbed')
+makedepends=('msgpack-c' 'cmake' 'cython')
+optdepends=('python: to use the Python bindings')
+url="https://github.com/savoirfairelinux/opendht;
+license=('GPL3')
+source=("https://github.com/savoirfairelinux/opendht/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('1e561e92ae7aacc2591b36caed89ca6701b30a43af6b046090f48c765b3ace06')
+sha512sums=('c12763350d63a63122fcfbe52d3d17644279f24a8ae3154db0e4924f050c4c32c027a238ea79940e647ab538f8aaa87f2bed139f6404551c27ca637e25ebdd86')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Building...'
+  mkdir -p build
+  cd build
+  cmake .. \
+-DCMAKE_BUILD_TYPE=Release \
+-DOPENDHT_STATIC=OFF \
+-DOPENDHT_SYSTEMD=ON \
+-DOPENDHT_LTO=ON \
+-DOPENDHT_PYTHON=ON \
+-DOPENDHT_PROXY_SERVER=ON \
+-DOPENDHT_PROXY_CLIENT=ON \
+-DOPENDHT_PUSH_NOTIFICATIONS=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  msg2 'Installing...'
+  cd build
+  make DESTDIR="$pkgdir" install
+  cd ..
+
+  msg2 'Installing documentation...'
+  install -D -m644 README.md "${pkgdir}/usr/share/doc/opendht/README.md"
+}
+
+# vim:set ts=2 sw=2 et:


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

2018-02-21 Thread David Runge via arch-commits
Date: Thursday, February 22, 2018 @ 00:44:46
  Author: dvzrv
Revision: 296858

archrelease: copy trunk to community-testing-x86_64

Added:
  qmidinet/repos/community-testing-x86_64/
  qmidinet/repos/community-testing-x86_64/PKGBUILD
(from rev 296857, qmidinet/trunk/PKGBUILD)

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

Copied: qmidinet/repos/community-testing-x86_64/PKGBUILD (from rev 296857, 
qmidinet/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-02-22 00:44:46 UTC (rev 296858)
@@ -0,0 +1,26 @@
+# Maintainer: David Runge 
+pkgname=qmidinet
+pkgver=0.4.3
+pkgrel=2
+pkgdesc="A MIDI Network Gateway via UDP/IP Multicast"
+arch=('x86_64')
+url="http://qmidinet.sourceforge.net/;
+license=('GPL2')
+groups=('pro-audio')
+depends=('alsa-lib' 'hicolor-icon-theme' 'jack' 'qt5-base')
+makedepends=('qt5-tools')
+source=("https://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('17492e07cbc9a40d9dae0bb4dbe0f62edbd9071de8462a728168552a8822040f305a7a921304b4adb3c13f1baf985efe609ff57c18e61e9a76261835fec614b3')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir/" install
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 {AUTHORS,ChangeLog,README,TODO}
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:19:49
  Author: felixonmars
Revision: 296914

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-persistent/repos/community-staging-x86_64/
  haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 296913, haskell-yesod-persistent/trunk/PKGBUILD)

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

Copied: haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 296913, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 06:19:49 UTC (rev 296914)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.3
+pkgrel=68
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+makedepends=('ghc' 'haskell-hspec' 'haskell-wai-extra' 
'haskell-persistent-sqlite' 'haskell-text')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('d609ed1f49d11936fb162eb643006b0e2bebe707a1d94e595d38b568769b30bb507f368fbf2801330f34824609e60e9230db3a24b7ca51b6a13f29b6cbd9af9b')
+
+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 "${srcdir}/${_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-yesod-persistent/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:19:34
  Author: felixonmars
Revision: 296913

upgpkg: haskell-yesod-persistent 1.4.3-68

rebuild with warp,3.2.17

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 06:18:39 UTC (rev 296912)
+++ PKGBUILD2018-02-22 06:19:34 UTC (rev 296913)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.3
-pkgrel=67
+pkgrel=68
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:18:39
  Author: felixonmars
Revision: 296912

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-core/repos/community-staging-x86_64/
  haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD
(from rev 296911, haskell-yesod-core/trunk/PKGBUILD)

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

Copied: haskell-yesod-core/repos/community-staging-x86_64/PKGBUILD (from rev 
296911, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 06:18:39 UTC (rev 296912)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.37.3
+pkgrel=18
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-auto-update" 
"haskell-blaze-builder" "haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-case-insensitive" 
"haskell-cereal"
+ "haskell-clientsession" "haskell-conduit" "haskell-conduit-extra" 
"haskell-cookie"
+ "haskell-data-default" "haskell-deepseq-generics" "haskell-exceptions"
+ "haskell-fast-logger" "haskell-http-types" "haskell-lifted-base" 
"haskell-monad-control"
+ "haskell-monad-logger" "haskell-mtl" "haskell-mwc-random" 
"haskell-old-locale"
+ "haskell-parsec" "haskell-path-pieces" "haskell-primitive" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-semigroups" 
"haskell-shakespeare"
+ "haskell-text" "haskell-transformers-base" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" "haskell-wai" 
"haskell-wai-extra"
+ "haskell-wai-logger" "haskell-warp" "haskell-word8")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('ae7fe47302edccae5172fd9326f0a3851b00e96424b98d8af91438a6fca726eaf90bc8461f71f0d9dbe02c4c5a9c4efcb6be851d738641c998d4898a3e6fc482')
+
+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-yesod-core/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:18:23
  Author: felixonmars
Revision: 296911

upgpkg: haskell-yesod-core 1.4.37.3-18

rebuild with warp,3.2.17

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 06:17:12 UTC (rev 296910)
+++ PKGBUILD2018-02-22 06:18:23 UTC (rev 296911)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.37.3
-pkgrel=17
+pkgrel=18
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:46:34
  Author: felixonmars
Revision: 296945

upgpkg: haskell-aws 0.19-8

rebuild with warp,3.2.17

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 06:44:14 UTC (rev 296944)
+++ PKGBUILD2018-02-22 06:46:34 UTC (rev 296945)
@@ -5,7 +5,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.19
-pkgrel=7
+pkgrel=8
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="https://github.com/aristidb/aws;
 license=("custom:BSD3")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:46:48
  Author: felixonmars
Revision: 296946

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 296945, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 06:46:48 UTC (rev 296946)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.19
+pkgrel=8
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="https://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-blaze-builder' 'haskell-byteable'
+ 'haskell-case-insensitive' 'haskell-cereal' 'haskell-conduit' 
'haskell-conduit-extra'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-http-conduit' 
'haskell-http-types'
+ 'haskell-lifted-base' 'haskell-memory' 'haskell-monad-control' 
'haskell-mtl'
+ 'haskell-network' 'haskell-old-locale' 'haskell-resourcet' 
'haskell-safe'
+ 'haskell-scientific' 'haskell-tagged' 'haskell-text' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-vector' 'haskell-xml-conduit')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-conduit-combinators' 
'haskell-errors'
+ 'haskell-http-client' 'haskell-http-client-tls' 
'haskell-quickcheck-instances'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck'
+ 'haskell-transformers-base')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('048cd01862d7541dbcd932760f1abc35c5915f0cebcfdbc17cec5b8abc20887c933d3c8a3517912a6fdf03f12e1d466a6ff68b45aefe8d73843fc91192b76c53')
+
+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 \
+-f-examples
+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 || warning "Requires AWS credentials to 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 cabal-install/repos (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:58:28
  Author: felixonmars
Revision: 296950

archrelease: copy trunk to community-staging-x86_64

Added:
  cabal-install/repos/community-staging-x86_64/
  cabal-install/repos/community-staging-x86_64/PKGBUILD
(from rev 296949, cabal-install/trunk/PKGBUILD)

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

Copied: cabal-install/repos/community-staging-x86_64/PKGBUILD (from rev 296949, 
cabal-install/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 06:58:28 UTC (rev 296950)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+# Contributor: Vesa Kaihlavirta 
+# Contributor: Arch Haskell Team 
+
+pkgname=cabal-install
+pkgver=2.0.0.1
+pkgrel=15
+pkgdesc="The command-line interface for Cabal and Hackage."
+url="https://hackage.haskell.org/package/cabal-install;
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-async' 'haskell-base16-bytestring' 
'haskell-cryptohash-sha256'
+ 'haskell-echo' 'haskell-edit-distance' 'haskell-hackage-security' 
'haskell-hashable'
+ 'haskell-http' 'haskell-mtl' 'haskell-network' 'haskell-network-uri' 
'haskell-random'
+ 'haskell-stm' 'haskell-tar' 'haskell-zlib')
+makedepends=('ghc' 'haskell-pretty-show' 'haskell-quickcheck' 'haskell-tagged' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/package/cabal-install-${pkgver}/cabal-install-${pkgver}.tar.gz;)
+sha512sums=('136105745e22b83a9ab906ac71ebbf4a5992b1731dd152e88eaa8dfd0d3076ddaca80bf0077c8b59c085c7d2f2fd0a3786e6e4c70a47dc924995f23758952a16')
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/${pkgname}" --enable-tests \
+-fnetwork-uri -f-old-directory -f-old-bytestring 
-f-debug-expensive-assertions -f-debug-conflict-sets \
+-f-debug-tracetree -f-parsec -f-monolithic
+  runhaskell Setup build
+}
+
+check() {
+  cd $pkgname-$pkgver
+  runhaskell Setup test || warning "TODO: pass -dynamic somewhere"
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  runhaskell Setup copy --destdir="${pkgdir}"
+
+  install -Dm644 LICENSE \
+"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 bash-completion/cabal \
+"${pkgdir}/usr/share/bash-completion/completions/cabal"
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:58:15
  Author: felixonmars
Revision: 296949

upgpkg: cabal-install 2.0.0.1-15

rebuild with warp,3.2.17

Modified:
  cabal-install/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 06:47:49 UTC (rev 296948)
+++ PKGBUILD2018-02-22 06:58:15 UTC (rev 296949)
@@ -6,7 +6,7 @@
 
 pkgname=cabal-install
 pkgver=2.0.0.1
-pkgrel=14
+pkgrel=15
 pkgdesc="The command-line interface for Cabal and Hackage."
 url="https://hackage.haskell.org/package/cabal-install;
 license=('custom:BSD3')


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:19:22
  Author: felixonmars
Revision: 296970

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 296969, haskell-yesod-auth/trunk/PKGBUILD)

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

Copied: haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
296969, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:19:22 UTC (rev 296970)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.21
+pkgrel=77
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-authenticate" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" 
"haskell-blaze-html"
+ "haskell-blaze-markup" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptonite" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lifted-base" "haskell-memory" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 
"haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('827cfff9ffb0f533b0cbc68cac53be1a057dde531596b57d823c14a3e737ba7c26394fd33b93dc6ad881ff6cc62e3246807f338c21ebe895be45b856460e7e23')
+
+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 \
+-fnetwork-uri
+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-yesod-auth/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:19:00
  Author: felixonmars
Revision: 296969

upgpkg: haskell-yesod-auth 1.4.21-77

rebuild with warp,3.2.17

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:17:31 UTC (rev 296968)
+++ PKGBUILD2018-02-22 07:19:00 UTC (rev 296969)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.21
-pkgrel=76
+pkgrel=77
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:26:34
  Author: felixonmars
Revision: 296972

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-shake/repos/community-staging-x86_64/PKGBUILD (from rev 296971, 
haskell-shake/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:26:34 UTC (rev 296972)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=shake
+pkgname=haskell-shake
+pkgver=0.16.2
+pkgrel=4
+pkgdesc="Build system library, like Make, but more accurate dependencies."
+url="http://shakebuild.com;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-extra' 'haskell-hashable' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-primitive' 'haskell-random' 'haskell-unordered-containers' 
'haskell-utf8-string')
+makedepends=('ghc' 'haskell-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('cda8b5ecb70c5aaa811c9bae095cdad6e5c1074920b23767bfad9728390ad1bd5e3b369d1924f237d366a573d3e2c3eb45469fc0778ba9b2a228d784eb78d99a')
+
+prepare() {
+cd $_hkgname-$pkgver
+sed -i 's/ghc --make/ghc -dynamic --make/' src/Test/Command.hs
+sed -e 's/runhaskell Setup.hs configure/runhaskell Setup.hs configure 
--enable-executable-dynamic --disable-library-vanilla/' \
+-e 's/ghc -fno-code/ghc -dynamic -fno-code/' \
+-i src/Test/Docs.hs
+sed -i 's/cmd "ghc" flags/cmd "ghc" "-dynamic" flags/' src/Test/Self.hs
+sed -i 's/ghc --make/ghc -dynamic --make/' docs/manual/build.sh
+}
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname"  --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-portable
+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 $_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 darcs/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:40:17
  Author: felixonmars
Revision: 296979

upgpkg: darcs 2.12.5.20170909-32

rebuild with warp,3.2.17

Modified:
  darcs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:37:09 UTC (rev 296978)
+++ PKGBUILD2018-02-22 07:40:17 UTC (rev 296979)
@@ -4,7 +4,7 @@
 
 pkgname=darcs
 pkgver=2.12.5.20170909
-pkgrel=31
+pkgrel=32
 pkgdesc="A distributed, interactive, smart revision control system"
 url="http://darcs.net;
 license=("GPL")


[arch-commits] Commit in perl-xml-libxslt/repos/community-x86_64 (PKGBUILD PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:55:52
  Author: felixonmars
Revision: 297019

archrelease: copy trunk to community-x86_64

Added:
  perl-xml-libxslt/repos/community-x86_64/PKGBUILD
(from rev 297018, perl-xml-libxslt/trunk/PKGBUILD)
Deleted:
  perl-xml-libxslt/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-22 07:55:36 UTC (rev 297018)
+++ PKGBUILD2018-02-22 07:55:52 UTC (rev 297019)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Jonathan Steel 
-# Contributor: Justin "juster" Davis 
-# Contributor: François Charette 
-
-pkgname=perl-xml-libxslt
-pkgver=1.95
-pkgrel=4
-pkgdesc="Interface to the gnome libxslt library"
-arch=('i686' 'x86_64')
-url="http://search.cpan.org/dist/XML-LibXSLT;
-license=('GPL')
-depends=('perl-xml-libxml' 'libxslt')
-checkdepends=('perl-test-pod')
-options=('!emptydirs')
-source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
-md5sums=('adf26f5195e18087c89ef3e7f7d97c43')
-
-build() {
-  cd XML-LibXSLT-$pkgver
-  perl Makefile.PL INSTALLDIRS=vendor
-  make
-}
-
-check() {
-  cd XML-LibXSLT-$pkgver
-  make test
-}
-
-package() {
-  cd XML-LibXSLT-$pkgver
-  make DESTDIR="$pkgdir" install
-# template start; name=perl-binary-module-dependency; version=1;
-if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
-   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
-   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
-   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
-fi
-# template end;
-}

Copied: perl-xml-libxslt/repos/community-x86_64/PKGBUILD (from rev 297018, 
perl-xml-libxslt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-22 07:55:52 UTC (rev 297019)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Jonathan Steel 
+# Contributor: Justin "juster" Davis 
+# Contributor: François Charette 
+
+pkgname=perl-xml-libxslt
+pkgver=1.96
+pkgrel=1
+pkgdesc="Interface to the gnome libxslt library"
+arch=('x86_64')
+url="http://search.cpan.org/dist/XML-LibXSLT;
+license=('GPL')
+depends=('perl-xml-libxml' 'libxslt')
+checkdepends=('perl-test-pod')
+options=('!emptydirs')
+source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
+sha512sums=('7b6e22889c538bbd861c6420cd56893d229676d3afc1cf30e17cae48a4714139769a99a48a99f1dff52864f4989e410303007c07941625bf6bd12a24276c35e6')
+
+build() {
+  cd XML-LibXSLT-$pkgver
+  perl Makefile.PL INSTALLDIRS=vendor
+  make
+}
+
+check() {
+  cd XML-LibXSLT-$pkgver
+  make test
+}
+
+package() {
+  cd XML-LibXSLT-$pkgver
+  make DESTDIR="$pkgdir" install
+# template start; name=perl-binary-module-dependency; version=1;
+if [[ $(find "$pkgdir/usr/lib/perl5/" -name "*.so") ]]; then
+   _perlver_min=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]);')
+   _perlver_max=$(perl -e '$v = $^V->{version}; print 
$v->[0].".".($v->[1]+1);')
+   depends+=("perl>=$_perlver_min" "perl<$_perlver_max")
+fi
+# template end;
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:16:22
  Author: felixonmars
Revision: 296965

upgpkg: hledger-api 1.5-64

rebuild with warp,3.2.17

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:15:06 UTC (rev 296964)
+++ PKGBUILD2018-02-22 07:16:22 UTC (rev 296965)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-api
 pkgver=1.5
-pkgrel=63
+pkgrel=64
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:17:17
  Author: felixonmars
Revision: 296967

upgpkg: haskell-yesod-default 1.2.0-255

rebuild with warp,3.2.17

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:16:37 UTC (rev 296966)
+++ PKGBUILD2018-02-22 07:17:17 UTC (rev 296967)
@@ -5,7 +5,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=254
+pkgrel=255
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:17:31
  Author: felixonmars
Revision: 296968

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-yesod-default/repos/community-staging-x86_64/
  haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD
(from rev 296967, haskell-yesod-default/trunk/PKGBUILD)

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

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
296967, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:17:31 UTC (rev 296968)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=255
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-yesod-core")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+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 hledger-api/repos (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:16:37
  Author: felixonmars
Revision: 296966

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 296965, hledger-api/trunk/PKGBUILD)

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

Copied: hledger-api/repos/community-staging-x86_64/PKGBUILD (from rev 296965, 
hledger-api/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:16:37 UTC (rev 296966)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-api
+pkgver=1.5
+pkgrel=64
+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 zita-resampler/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 22, 2018 @ 07:53:44
  Author: arojas
Revision: 317380

archrelease: copy trunk to extra-x86_64

Added:
  zita-resampler/repos/extra-x86_64/PKGBUILD
(from rev 317379, zita-resampler/trunk/PKGBUILD)
Deleted:
  zita-resampler/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-22 07:53:06 UTC (rev 317379)
+++ PKGBUILD2018-02-22 07:53:44 UTC (rev 317380)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: David Runge 
-# Contributor: speps 
-# Contributor: Philipp Überbacher 
-
-pkgname=zita-resampler
-pkgver=1.6.0
-pkgrel=1
-pkgdesc="A C++ library for resampling audio signals"
-url="https://kokkinizita.linuxaudio.org/linuxaudio/;
-arch=('x86_64')
-license=('GPL3')
-depends=('gcc-libs' 'libsndfile')
-source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2;)
-sha512sums=('fefe01dfc459a7ee0a98965b6e354cfe23b8e18838eeedabe2a6d965e9e413c8bafb9ebb11f8328852f18be20c14443785214b65887e4482aa8d5e6b34f5')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  # FS#36248 - strip march=native
-  sed -e '/native/d' -i {libs,apps}/Makefile
-  # removing local call to ldconfig
-  sed -e '/ldconfig/d' -i libs/Makefile
-}
-
-build() {
-  cd "${pkgname}-${pkgver}/libs"
-  # libs
-  make PREFIX=/usr
-  # create lib link for building apps
-  ln -sv "lib${pkgname}.so.${pkgver}" "lib${pkgname}.so"
-  # apps
-  cd ../apps
-  make PREFIX=/usr LDFLAGS+=" -L../libs" CXXFLAGS+=" -I../libs"
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make -C libs DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
-  # apps
-  install -t "${pkgdir}/usr/bin" -vDm755 apps/zre{sample,tune}
-  # man
-  install -t "${pkgdir}/usr/share/man/man1" -vDm644 apps/zre{sample,tune}.1
-  # docs
-  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
--vDm644 {AUTHORS,README} \
--vDm644 docs/*
-}

Copied: zita-resampler/repos/extra-x86_64/PKGBUILD (from rev 317379, 
zita-resampler/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-22 07:53:44 UTC (rev 317380)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: David Runge 
+# Contributor: speps 
+# Contributor: Philipp Überbacher 
+
+pkgname=zita-resampler
+pkgver=1.6.0
+pkgrel=2
+pkgdesc="A C++ library for resampling audio signals"
+url="https://kokkinizita.linuxaudio.org/linuxaudio/;
+arch=('x86_64')
+license=('GPL3')
+depends=('gcc-libs' 'libsndfile')
+source=("https://kokkinizita.linuxaudio.org/linuxaudio/downloads/${pkgname}-${pkgver}.tar.bz2;)
+sha512sums=('fefe01dfc459a7ee0a98965b6e354cfe23b8e18838eeedabe2a6d965e9e413c8bafb9ebb11f8328852f18be20c14443785214b65887e4482aa8d5e6b34f5')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  # FS#36248 - strip march=native
+  sed -e '/native/d' -i {libs,apps}/Makefile
+  # removing local call to ldconfig
+  sed -e '/ldconfig/d' -i libs/Makefile
+}
+
+build() {
+  cd "${pkgname}-${pkgver}/libs"
+  # libs
+  make PREFIX=/usr
+  # create lib link for building apps
+  ln -sv "lib${pkgname}.so.${pkgver}" "lib${pkgname}.so"
+  # apps
+  cd ../apps
+  make PREFIX=/usr LDFLAGS+=" -L../libs" CXXFLAGS+=" -I../libs"
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make -C libs DESTDIR="$pkgdir/" PREFIX=/usr LIBDIR=lib install
+  # apps
+  install -t "${pkgdir}/usr/bin" -vDm755 apps/zre{sample,tune}
+  # man
+  install -t "${pkgdir}/usr/share/man/man1" -vDm644 apps/zre{sample,tune}.1
+  # docs
+  install -t "${pkgdir}/usr/share/doc/${pkgname}" \
+-vDm644 {AUTHORS,README} \
+-vDm644 docs/*
+  # create library symlinks
+  ldconfig -n "$pkgdir"/usr/lib
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:54:24
  Author: felixonmars
Revision: 297008

upgpkg: eslint 4.18.1-1

Modified:
  eslint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:54:23 UTC (rev 297007)
+++ PKGBUILD2018-02-22 07:54:24 UTC (rev 297008)
@@ -2,7 +2,7 @@
 # Maintainer: Felix Yan 
 
 pkgname=eslint
-pkgver=4.18.0
+pkgver=4.18.1
 pkgrel=1
 pkgdesc='An AST-based pattern checker for JavaScript'
 arch=('any')
@@ -12,7 +12,7 @@
 makedepends=('npm')
 source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
 noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('129da551bcedcd72e0d20354978f08d71bdb405cb542e5b28750bd3d2ca6a66967df78f03abf01dd07ee11c5e93cf138b92c04cc3696854c41374b0d424ceb06')
+sha512sums=('80f49fa524421eb7b518bc4698eebcb593713a52f6cbbc4177de5570b0fe128e12da3b37d58a0cba6dc201020e6b1636e21a9838c92c32f5b7f31bae58a41383')
 
 package() {
   npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz


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

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Thursday, February 22, 2018 @ 07:53:06
  Author: arojas
Revision: 317379

Fix missing soname symlink

Modified:
  zita-resampler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:32:56 UTC (rev 317378)
+++ PKGBUILD2018-02-22 07:53:06 UTC (rev 317379)
@@ -5,7 +5,7 @@
 
 pkgname=zita-resampler
 pkgver=1.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A C++ library for resampling audio signals"
 url="https://kokkinizita.linuxaudio.org/linuxaudio/;
 arch=('x86_64')
@@ -44,4 +44,6 @@
   install -t "${pkgdir}/usr/share/doc/${pkgname}" \
 -vDm644 {AUTHORS,README} \
 -vDm644 docs/*
+  # create library symlinks
+  ldconfig -n "$pkgdir"/usr/lib
 }


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:54:43
  Author: felixonmars
Revision: 297016

archrelease: copy trunk to community-any

Added:
  eslint/repos/community-any/PKGBUILD
(from rev 297013, eslint/trunk/PKGBUILD)
Deleted:
  eslint/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-22 07:54:40 UTC (rev 297015)
+++ PKGBUILD2018-02-22 07:54:43 UTC (rev 297016)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgname=eslint
-pkgver=4.18.0
-pkgrel=1
-pkgdesc='An AST-based pattern checker for JavaScript'
-arch=('any')
-url='http://eslint.org'
-license=('MIT')
-depends=('nodejs' 'acorn')
-makedepends=('npm')
-source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
-noextract=("$pkgname-$pkgver.tgz")
-sha512sums=('129da551bcedcd72e0d20354978f08d71bdb405cb542e5b28750bd3d2ca6a66967df78f03abf01dd07ee11c5e93cf138b92c04cc3696854c41374b0d424ceb06')
-
-package() {
-  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
-  rm -r "$pkgdir"/usr/etc
-
-  # Fix permissions
-  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
-
-  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
-  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  # Experimental dedup
-  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
-  for dep in acorn; do
-rm -r $dep;
-  done
-}

Copied: eslint/repos/community-any/PKGBUILD (from rev 297013, 
eslint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-22 07:54:43 UTC (rev 297016)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgname=eslint
+pkgver=4.18.1
+pkgrel=1
+pkgdesc='An AST-based pattern checker for JavaScript'
+arch=('any')
+url='http://eslint.org'
+license=('MIT')
+depends=('nodejs' 'acorn')
+makedepends=('npm')
+source=("https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz;)
+noextract=("$pkgname-$pkgver.tgz")
+sha512sums=('80f49fa524421eb7b518bc4698eebcb593713a52f6cbbc4177de5570b0fe128e12da3b37d58a0cba6dc201020e6b1636e21a9838c92c32f5b7f31bae58a41383')
+
+package() {
+  npm install -g --user root --prefix "$pkgdir"/usr 
"$srcdir"/$pkgname-$pkgver.tgz
+  rm -r "$pkgdir"/usr/etc
+
+  # Fix permissions
+  find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
+
+  install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
+  ln -s ../../../lib/node_modules/eslint/LICENSE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  # Experimental dedup
+  cd "$pkgdir"/usr/lib/node_modules/$pkgname/node_modules
+  for dep in acorn; do
+rm -r $dep;
+  done
+}


[arch-commits] Commit in perl-xml-libxslt/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:55:36
  Author: felixonmars
Revision: 297018

upgpkg: perl-xml-libxslt 1.96-1

Modified:
  perl-xml-libxslt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:54:44 UTC (rev 297017)
+++ PKGBUILD2018-02-22 07:55:36 UTC (rev 297018)
@@ -5,8 +5,8 @@
 # Contributor: François Charette 
 
 pkgname=perl-xml-libxslt
-pkgver=1.95
-pkgrel=4
+pkgver=1.96
+pkgrel=1
 pkgdesc="Interface to the gnome libxslt library"
 arch=('x86_64')
 url="http://search.cpan.org/dist/XML-LibXSLT;
@@ -15,7 +15,7 @@
 checkdepends=('perl-test-pod')
 options=('!emptydirs')
 source=(http://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$pkgver.tar.gz)
-md5sums=('adf26f5195e18087c89ef3e7f7d97c43')
+sha512sums=('7b6e22889c538bbd861c6420cd56893d229676d3afc1cf30e17cae48a4714139769a99a48a99f1dff52864f4989e410303007c07941625bf6bd12a24276c35e6')
 
 build() {
   cd XML-LibXSLT-$pkgver


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:14:52
  Author: felixonmars
Revision: 296963

upgpkg: hledger-web 1.5-64

rebuild with warp,3.2.17

Modified:
  hledger-web/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:13:33 UTC (rev 296962)
+++ PKGBUILD2018-02-22 07:14:52 UTC (rev 296963)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-web
 pkgver=1.5
-pkgrel=63
+pkgrel=64
 pkgdesc="Web interface for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:15:06
  Author: felixonmars
Revision: 296964

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: hledger-web/repos/community-staging-x86_64/PKGBUILD (from rev 296963, 
hledger-web/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:15:06 UTC (rev 296964)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hledger-web
+pkgver=1.5
+pkgrel=64
+pkgdesc="Web interface for the hledger accounting tool"
+url="http://hledger.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'hledger' 'haskell-hledger-lib' 'haskell-base-compat' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-clientsession' 'haskell-cmdargs' 
'haskell-data-default'
+ 'haskell-hjsmin' 'haskell-http-conduit' 'haskell-http-client' 
'haskell-hunit'
+ 'haskell-conduit-extra' 'haskell-safe' 'haskell-shakespeare' 
'haskell-text' 'haskell-wai'
+ 'haskell-wai-extra' 'haskell-wai-handler-launch' 'haskell-warp' 
'haskell-yesod'
+ 'haskell-yesod-core' 'haskell-yesod-form' 'haskell-yesod-static' 
'haskell-json'
+ 'haskell-megaparsec' 'haskell-mtl' 'haskell-parsec')
+makedepends=('ghc' 'haskell-hspec' 'haskell-yesod-test')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3ba0b9e7d03a9d813e41f7f36ca0fa34decf6f04163abea850cb5ff6e322387b60952bfb30f46be817f52b2c79641fba03e62a5d6483b78a7e094c91fbb273a6')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-dev -f-library-only -fthreaded
+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
+runhaskell Setup test
+}
+
+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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:13:33
  Author: felixonmars
Revision: 296962

archrelease: copy trunk to community-staging-x86_64

Added:
  hoogle/repos/community-staging-x86_64/
  hoogle/repos/community-staging-x86_64/PKGBUILD
(from rev 296961, hoogle/trunk/PKGBUILD)

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

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 296961, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:13:33 UTC (rev 296962)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.16
+pkgrel=7
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-quickcheck' 'haskell-aeson' 'haskell-cmdargs' 
'haskell-conduit'
+ 'haskell-conduit-extra' 'haskell-connection' 'haskell-extra' 
'haskell-src-exts'
+ 'haskell-http-conduit' 'haskell-http-types' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-mmap' 'haskell-network' 'haskell-network-uri' 
'haskell-old-locale'
+ 'haskell-process-extras' 'haskell-resourcet' 'haskell-storable-tuple' 
'haskell-tar'
+ 'haskell-text' 'haskell-uniplate' 'haskell-utf8-string' 
'haskell-vector' 'haskell-wai'
+ 'haskell-wai-logger' 'haskell-warp' 'haskell-warp-tls' 'haskell-zlib')
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('14b0d6290927234be7e6e6548529fef61d44972a21b9ac22815325214241095b61d60e3b95b6f20a5d40bf9386beff4036942a2c61925c745b767f2525b915c9')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+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}/${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 haskell-shake/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:26:19
  Author: felixonmars
Revision: 296971

upgpkg: haskell-shake 0.16.2-4

rebuild with warp,3.2.17

Modified:
  haskell-shake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:19:22 UTC (rev 296970)
+++ PKGBUILD2018-02-22 07:26:19 UTC (rev 296971)
@@ -5,7 +5,7 @@
 _hkgname=shake
 pkgname=haskell-shake
 pkgver=0.16.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Build system library, like Make, but more accurate dependencies."
 url="http://shakebuild.com;
 license=("custom:BSD3")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:40:33
  Author: felixonmars
Revision: 296980

archrelease: copy trunk to community-staging-x86_64

Added:
  darcs/repos/community-staging-x86_64/
  darcs/repos/community-staging-x86_64/PKGBUILD
(from rev 296979, darcs/trunk/PKGBUILD)

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

Copied: darcs/repos/community-staging-x86_64/PKGBUILD (from rev 296979, 
darcs/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:40:33 UTC (rev 296980)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=darcs
+pkgver=2.12.5.20170909
+pkgrel=32
+pkgdesc="A distributed, interactive, smart revision control system"
+url="http://darcs.net;
+license=("GPL")
+arch=('x86_64')
+depends=('curl' 'ghc-libs' 'haskell-async' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-cryptohash' 'haskell-data-ordlist' 'haskell-fgl' 
'haskell-graphviz'
+ 'haskell-hashable' 'haskell-html' 'haskell-http' 'haskell-knob' 
'haskell-mmap'
+ 'haskell-mtl' 'haskell-network' 'haskell-network-uri' 
'haskell-old-time' 'haskell-parsec'
+ 'haskell-sandi' 'haskell-random' 'haskell-regex-applicative' 
'haskell-regex-compat-tdfa'
+ 'haskell-tar' 'haskell-text' 'haskell-unix-compat' 
'haskell-utf8-string' 'haskell-vector'
+ 'haskell-zip-archive' 'haskell-zlib')
+makedepends=('ghc')
+# Fetched from http://darcs.net/reviewed/reviewed.zip
+source=("https://pkgbuild.com/~felixonmars/sources/darcs-2.12.5.20170909.zip;)
+#source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('64f44e9d9727b8f7e00402a8a5dde9b6dc8f103776c4decef90b28af9603830f')
+
+prepare() {
+mv reviewed $pkgname-$pkgver
+sed -e 's/graphviz >= 2999.18.1 && < 2999.19,/graphviz >= 
2999.18.1,/' \
+-e 's/process  >= 1.2.3.0 && < 1.5.0.0,/process  >= 1.2.3.0,/' 
\
+-e 's/time >= 1.5.0.1 && < 1.8,/time >= 1.5.0.1,/' \
+-i $pkgname-$pkgver/darcs.cabal
+}
+
+build() {
+cd $pkgname-$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 \
+-fcurl -fpkgconfig -f-static -fterminfo -fthreaded -fexecutable \
+-f-rts -foptimize -f-warn-as-error -f-libiconv
+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 $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}"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+chmod 644 "${pkgdir}/usr/share/man/man1/darcs.1"
+
+install -Dm644 contrib/darcs_completion 
"${pkgdir}/usr/share/bash-completion/completions/darcs"
+install -Dm644 contrib/_darcs.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_darcs"
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:28:39
  Author: felixonmars
Revision: 296973

upgpkg: haskell-hakyll 4.11.0.0-4

rebuild with warp,3.2.17

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:26:34 UTC (rev 296972)
+++ PKGBUILD2018-02-22 07:28:39 UTC (rev 296973)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.11.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:28:58
  Author: felixonmars
Revision: 296974

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
296973, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:28:58 UTC (rev 296974)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.11.0.0
+pkgrel=4
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-blaze-html' 'haskell-blaze-markup' 
'haskell-cryptohash'
+ 'haskell-data-default' 'haskell-file-embed' 'haskell-fsnotify' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-lrucache' 'haskell-mtl' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-optparse-applicative' 'pandoc' 
'pandoc-citeproc'
+ 'haskell-parsec' 'haskell-random' 'haskell-regex-base' 
'haskell-regex-tdfa'
+ 'haskell-resourcet' 'haskell-scientific' 'haskell-tagsoup' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-vector' 'haskell-wai'
+ 'haskell-wai-app-static' 'haskell-warp' 'haskell-yaml')
+makedepends=('ghc' 'haskell-quickcheck' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('49870a0bc3de15f5842306a93f7c909703860701a7a59c73415b7580084e2b8413084d12f3baa3aff834e3245a8693e6386dc89989c74c2d7e5828fe7baaa4ee')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+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
+LC_CTYPE=en_US.UTF-8 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-criterion/repos (2 files)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:31:08
  Author: felixonmars
Revision: 296976

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-criterion/repos/community-staging-x86_64/PKGBUILD (from rev 
296975, haskell-criterion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:31:08 UTC (rev 296976)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=criterion
+pkgname=haskell-criterion
+pkgver=1.3.0.0
+pkgrel=20
+pkgdesc="Robust, reliable performance measurement and analysis"
+url="http://www.serpentine.com/criterion;
+license=("custom:BSD3")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-aeson' 'haskell-ansi-wl-pprint' 'haskell-cassava' 
'haskell-code-page'
+ 'haskell-exceptions' 'haskell-glob' 'haskell-js-flot' 
'haskell-js-jquery'
+ 'haskell-microstache' 'haskell-mtl' 'haskell-mwc-random' 
'haskell-optparse-applicative'
+ 'haskell-parsec' 'haskell-semigroups' 'haskell-statistics' 
'haskell-text'
+ 'haskell-transformers-compat' 'haskell-vector' 
'haskell-vector-algorithms')
+makedepends=('ghc' 'haskell-base-compat' 'haskell-hunit' 'haskell-quickcheck' 
'haskell-tasty'
+ 'haskell-tasty-hunit' 'haskell-tasty-quickcheck')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('1ad1f53b0552d3e981e12d2425c675fa8fdb83a907081e7f564c3ebebd09d7619cf1278db2db6ceeb23902fdea114994e8eca01607d91f1a44933ac01c289588')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-fast -f-embed-data-files
+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-criterion/trunk (PKGBUILD)

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:30:52
  Author: felixonmars
Revision: 296975

upgpkg: haskell-criterion 1.3.0.0-20

rebuild with warp,3.2.17

Modified:
  haskell-criterion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:28:58 UTC (rev 296974)
+++ PKGBUILD2018-02-22 07:30:52 UTC (rev 296975)
@@ -5,7 +5,7 @@
 _hkgname=criterion
 pkgname=haskell-criterion
 pkgver=1.3.0.0
-pkgrel=19
+pkgrel=20
 pkgdesc="Robust, reliable performance measurement and analysis"
 url="http://www.serpentine.com/criterion;
 license=("custom:BSD3")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:37:09
  Author: felixonmars
Revision: 296978

archrelease: copy trunk to community-staging-x86_64

Added:
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 296977, git-annex/trunk/PKGBUILD)

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

Copied: git-annex/repos/community-staging-x86_64/PKGBUILD (from rev 296977, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 07:37:09 UTC (rev 296978)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20180112
+pkgrel=73
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('x86_64')
+depends=('git' 'rsync' 'ghc-libs' 'haskell-aeson' 'haskell-async' 'haskell-aws'
+ 'haskell-blaze-builder' 'haskell-bloomfilter' 'haskell-byteable' 
'haskell-case-insensitive'
+ 'haskell-clientsession' 'haskell-concurrent-output' 'haskell-conduit' 
'haskell-crypto-api'
+ 'haskell-cryptonite' 'haskell-data-default' 'haskell-dav' 
'haskell-dbus'
+ 'haskell-disk-free-space' 'haskell-dlist' 'haskell-dns' 
'haskell-edit-distance'
+ 'haskell-esqueleto' 'haskell-exceptions' 'haskell-fdo-notify' 
'haskell-feed'
+ 'haskell-hinotify' 'haskell-hslogger' 'haskell-http-client' 
'haskell-http-conduit'
+ 'haskell-http-types' 'haskell-ifelse' 'haskell-magic' 'haskell-memory'
+ 'haskell-monad-control' 'haskell-monad-logger' 'haskell-mountpoints' 
'haskell-mtl'
+ 'haskell-network' 'haskell-network-info' 'haskell-network-multicast' 
'haskell-network-uri'
+ 'haskell-old-locale' 'haskell-optparse-applicative' 
'haskell-path-pieces'
+ 'haskell-persistent' 'haskell-persistent-sqlite' 
'haskell-persistent-template'
+ 'haskell-quickcheck' 'haskell-random' 'haskell-regex-tdfa' 
'haskell-resourcet'
+ 'haskell-safesemaphore' 'haskell-sandi' 'haskell-securemem' 
'haskell-shakespeare'
+ 'haskell-socks' 'haskell-split' 'haskell-stm' 'haskell-stm-chans' 
'haskell-tagsoup'
+ 'haskell-tasty' 'haskell-tasty-hunit' 'haskell-tasty-quickcheck' 
'haskell-tasty-rerun'
+ 'haskell-text' 'haskell-torrent' 'haskell-unix-compat' 
'haskell-unordered-containers'
+ 'haskell-utf8-string' 'haskell-uuid' 'haskell-wai' 
'haskell-wai-extra' 'haskell-warp'
+ 'haskell-warp-tls' 'haskell-yesod' 'haskell-yesod-core'
+ 'haskell-yesod-form' 'haskell-yesod-static')
+makedepends=('chrpath' 'ghc')
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+
+  runhaskell Setup configure -O --prefix=/usr --enable-executable-dynamic 
--disable-library-vanilla \
+--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-f-androidsplice -f-android -fproduction -fpairing -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark -fdbus -fmagicmime
+  runhaskell Setup build
+}
+
+package() {
+  cd git-annex
+  runhaskell Setup copy --destdir="$pkgdir"
+  make GHC="ghc -dynamic" BUILDER=true DESTDIR="$pkgdir" -j1 install-misc
+
+  rm "$pkgdir"/usr/share/doc/git-annex/COPYRIGHT
+  rmdir "$pkgdir"/usr/share/doc/git-annex "$pkgdir"/usr/share/doc
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 07:36:54
  Author: felixonmars
Revision: 296977

upgpkg: git-annex 6.20180112-73

rebuild with warp,3.2.17

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 07:31:08 UTC (rev 296976)
+++ PKGBUILD2018-02-22 07:36:54 UTC (rev 296977)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20180112
-pkgrel=72
+pkgrel=73
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Wednesday, February 21, 2018 @ 22:03:48
  Author: felixonmars
Revision: 296830

upgpkg: hledger-api 1.5-63

rebuild with vault,0.3.1.0

Modified:
  hledger-api/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:02:08 UTC (rev 296829)
+++ PKGBUILD2018-02-21 22:03:48 UTC (rev 296830)
@@ -4,7 +4,7 @@
 
 pkgname=hledger-api
 pkgver=1.5
-pkgrel=62
+pkgrel=63
 pkgdesc="Web API server for the hledger accounting tool"
 url="http://hledger.org;
 license=("GPL")


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

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 23:13:52
  Author: arojas
Revision: 317369

Fix multiple security issues (FS#57485)

Modified:
  sox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 22:38:26 UTC (rev 317368)
+++ PKGBUILD2018-02-21 23:13:52 UTC (rev 317369)
@@ -3,7 +3,7 @@
 
 pkgname=sox
 pkgver=14.4.2
-pkgrel=2
+pkgrel=3
 pkgdesc="The Swiss Army knife of sound processing tools"
 arch=('x86_64')
 url="http://sox.sourceforge.net/;
@@ -18,14 +18,34 @@
 'libpulse: for pulse plugin'
'opusfile: for opus plugin'
 'twolame: for mp3 plugin')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch)
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch
+CVE-2017-15371.patch::https://github.com/mansr/sox/commit/818bdd0.patch
+CVE-2017-11358.patch::https://github.com/mansr/sox/commit/6cb44a4.patch
+CVE-2017-15370.patch::https://github.com/mansr/sox/commit/ef3d8be.patch
+CVE-2017-11332.patch::https://github.com/mansr/sox/commit/7405bca.patch
+CVE-2017-11359.patch::https://github.com/mansr/sox/commit/8b590b3.patch
+CVE-2017-15372.patch::https://github.com/mansr/sox/commit/001c337.patch
+
CVE-2017-15642.patch::https://github.com/mansr/sox/commit/0be259e.patch)
+
 sha1sums=('dc9668256b9d81ef25d672f14f12ec026b0b4087'
-  '9c71fa36596ed127b1bb367cfbab3b52cd2ecb6d')
+  '9c71fa36596ed127b1bb367cfbab3b52cd2ecb6d'
+  'e10b3903906eee6e1ac413c985de8deba1089c6c'
+  '67c701cf7b3b78b167e5c62a2deade5b92c73bf6'
+  '8cf9cda08e3da1d3cf75fa64d17859b9b2a05b73'
+  'dc832d954ea1dcddfdf80719bbcb7b4f187a9901'
+  '293e4b7942a82c686695d968a2e0b0400ba4f534'
+  'd580cfbac8e6562e9150dbd10b36fd66f4011a48'
+  '23b0012c3e214eade8e6fedeb610548f90527ee4')
 
 prepare() {
   cd ${pkgname}-${pkgver}
   sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
   patch -p1 -i "${srcdir}/sox-dynamic.patch"
+  for _cve in 15371 11358 15370 11332 11359 15372 15642; do
+patch -p1 -i ../CVE-2017-$_cve.patch
+  done
+  sed -e '/hcom/d' -i src/tests.sh # test fails with CVE-2017-11358.patch
+
   aclocal
   automake
 }


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

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 23:14:26
  Author: arojas
Revision: 317370

archrelease: copy trunk to extra-x86_64

Added:
  sox/repos/extra-x86_64/PKGBUILD
(from rev 317369, sox/trunk/PKGBUILD)
  sox/repos/extra-x86_64/sox-dynamic.patch
(from rev 317369, sox/trunk/sox-dynamic.patch)
Deleted:
  sox/repos/extra-x86_64/PKGBUILD
  sox/repos/extra-x86_64/sox-dynamic.patch

---+
 PKGBUILD  |  116 ++--
 sox-dynamic.patch |   24 +-
 2 files changed, 80 insertions(+), 60 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-21 23:13:52 UTC (rev 317369)
+++ PKGBUILD2018-02-21 23:14:26 UTC (rev 317370)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgname=sox
-pkgver=14.4.2
-pkgrel=2
-pkgdesc="The Swiss Army knife of sound processing tools"
-arch=('i686' 'x86_64')
-url="http://sox.sourceforge.net/;
-license=('GPL' 'LGPL')
-depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
-makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 
'twolame')
-checkdepends=('time')
-optdepends=('libao: for ao plugin'
-'libmad: for mp3 plugin'
-'libid3tag: for mp3 plugin'
-'wavpack: for wavpack plugin'
-'libpulse: for pulse plugin'
-   'opusfile: for opus plugin'
-'twolame: for mp3 plugin')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch)
-sha1sums=('dc9668256b9d81ef25d672f14f12ec026b0b4087'
-  '9c71fa36596ed127b1bb367cfbab3b52cd2ecb6d')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
-  patch -p1 -i "${srcdir}/sox-dynamic.patch"
-  aclocal
-  automake
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
---with-dyn-default --with-distro="Arch Linux"
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make bindir=. installcheck
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: sox/repos/extra-x86_64/PKGBUILD (from rev 317369, sox/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-02-21 23:14:26 UTC (rev 317370)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=sox
+pkgver=14.4.2
+pkgrel=3
+pkgdesc="The Swiss Army knife of sound processing tools"
+arch=('x86_64')
+url="http://sox.sourceforge.net/;
+license=('GPL' 'LGPL')
+depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
+makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 
'twolame')
+checkdepends=('time')
+optdepends=('libao: for ao plugin'
+'libmad: for mp3 plugin'
+'libid3tag: for mp3 plugin'
+'wavpack: for wavpack plugin'
+'libpulse: for pulse plugin'
+   'opusfile: for opus plugin'
+'twolame: for mp3 plugin')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch
+CVE-2017-15371.patch::https://github.com/mansr/sox/commit/818bdd0.patch
+CVE-2017-11358.patch::https://github.com/mansr/sox/commit/6cb44a4.patch
+CVE-2017-15370.patch::https://github.com/mansr/sox/commit/ef3d8be.patch
+CVE-2017-11332.patch::https://github.com/mansr/sox/commit/7405bca.patch
+CVE-2017-11359.patch::https://github.com/mansr/sox/commit/8b590b3.patch
+CVE-2017-15372.patch::https://github.com/mansr/sox/commit/001c337.patch
+
CVE-2017-15642.patch::https://github.com/mansr/sox/commit/0be259e.patch)
+
+sha1sums=('dc9668256b9d81ef25d672f14f12ec026b0b4087'
+  '9c71fa36596ed127b1bb367cfbab3b52cd2ecb6d'
+  'e10b3903906eee6e1ac413c985de8deba1089c6c'
+  '67c701cf7b3b78b167e5c62a2deade5b92c73bf6'
+  '8cf9cda08e3da1d3cf75fa64d17859b9b2a05b73'
+  'dc832d954ea1dcddfdf80719bbcb7b4f187a9901'
+  '293e4b7942a82c686695d968a2e0b0400ba4f534'
+  'd580cfbac8e6562e9150dbd10b36fd66f4011a48'
+  '23b0012c3e214eade8e6fedeb610548f90527ee4')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
+  patch -p1 -i "${srcdir}/sox-dynamic.patch"
+  for _cve in 15371 11358 15370 11332 11359 15372 15642; do
+patch -p1 -i ../CVE-2017-$_cve.patch
+  done
+  sed -e '/hcom/d' -i src/tests.sh # test fails with CVE-2017-11358.patch
+
+  aclocal
+  automake
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-dyn-default --with-distro="Arch Linux"
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make bindir=. installcheck
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make 

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

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 23:24:00
  Author: arojas
Revision: 296856

archrelease: copy trunk to community-x86_64

Added:
  sox/repos/community-x86_64/
  sox/repos/community-x86_64/PKGBUILD
(from rev 296855, sox/trunk/PKGBUILD)
  sox/repos/community-x86_64/sox-dynamic.patch
(from rev 296855, sox/trunk/sox-dynamic.patch)

---+
 PKGBUILD  |   68 
 sox-dynamic.patch |   12 +
 2 files changed, 80 insertions(+)

Copied: sox/repos/community-x86_64/PKGBUILD (from rev 296855, 
sox/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-02-21 23:24:00 UTC (rev 296856)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=sox
+pkgver=14.4.2
+pkgrel=3
+pkgdesc="The Swiss Army knife of sound processing tools"
+arch=('x86_64')
+url="http://sox.sourceforge.net/;
+license=('GPL' 'LGPL')
+depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
+makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 
'twolame')
+checkdepends=('time')
+optdepends=('libao: for ao plugin'
+'libmad: for mp3 plugin'
+'libid3tag: for mp3 plugin'
+'wavpack: for wavpack plugin'
+'libpulse: for pulse plugin'
+   'opusfile: for opus plugin'
+'twolame: for mp3 plugin')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch
+CVE-2017-15371.patch::https://github.com/mansr/sox/commit/818bdd0.patch
+CVE-2017-11358.patch::https://github.com/mansr/sox/commit/6cb44a4.patch
+CVE-2017-15370.patch::https://github.com/mansr/sox/commit/ef3d8be.patch
+CVE-2017-11332.patch::https://github.com/mansr/sox/commit/7405bca.patch
+CVE-2017-11359.patch::https://github.com/mansr/sox/commit/8b590b3.patch
+CVE-2017-15372.patch::https://github.com/mansr/sox/commit/001c337.patch
+
CVE-2017-15642.patch::https://github.com/mansr/sox/commit/0be259e.patch)
+
+sha1sums=('dc9668256b9d81ef25d672f14f12ec026b0b4087'
+  '9c71fa36596ed127b1bb367cfbab3b52cd2ecb6d'
+  'e10b3903906eee6e1ac413c985de8deba1089c6c'
+  '67c701cf7b3b78b167e5c62a2deade5b92c73bf6'
+  '8cf9cda08e3da1d3cf75fa64d17859b9b2a05b73'
+  'dc832d954ea1dcddfdf80719bbcb7b4f187a9901'
+  '293e4b7942a82c686695d968a2e0b0400ba4f534'
+  'd580cfbac8e6562e9150dbd10b36fd66f4011a48'
+  '23b0012c3e214eade8e6fedeb610548f90527ee4')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
+  patch -p1 -i "${srcdir}/sox-dynamic.patch"
+  for _cve in 15371 11358 15370 11332 11359 15372 15642; do
+patch -p1 -i ../CVE-2017-$_cve.patch
+  done
+  sed -e '/hcom/d' -i src/tests.sh # test fails with CVE-2017-11358.patch
+
+  aclocal
+  automake
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-dyn-default --with-distro="Arch Linux"
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make bindir=. installcheck
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}

Copied: sox/repos/community-x86_64/sox-dynamic.patch (from rev 296855, 
sox/trunk/sox-dynamic.patch)
===
--- community-x86_64/sox-dynamic.patch  (rev 0)
+++ community-x86_64/sox-dynamic.patch  2018-02-21 23:24:00 UTC (rev 296856)
@@ -0,0 +1,12 @@
+diff -Naur sox-14.4.2-orig/src/Makefile.am sox-14.4.2/src/Makefile.am
+--- sox-14.4.2-orig/src/Makefile.am2015-04-08 17:11:09.555343005 -0400
 sox-14.4.2/src/Makefile.am 2015-04-08 17:11:25.115317153 -0400
+@@ -95,7 +95,7 @@
+ 
+ libsox_la_CFLAGS = @WARN_CFLAGS@
+ libsox_la_LDFLAGS = @APP_LDFLAGS@ -version-info @SHLIB_VERSION@ \
+-  -export-symbols-regex 
'^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|fail_errno|filelength|find_(enum_(text|value)|file_extension)|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
++  -export-symbols-regex 
'^(sox_.*|lsx_(error|flush|check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|fail_errno|filelength|find_(enum_(text|value)|file_extension)|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
+ 
+ if HAVE_WIN32_LTDL
+   libsox_la_SOURCES += win32-ltdl.c win32-ltdl.h


[arch-commits] Commit in (5 files)

2018-02-21 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 21, 2018 @ 23:23:49
  Author: arojas
Revision: 296855

extra2community: Moving sox from extra to community

Added:
  sox/
  sox/repos/
  sox/trunk/
  sox/trunk/PKGBUILD
  sox/trunk/sox-dynamic.patch

---+
 PKGBUILD  |   68 
 sox-dynamic.patch |   12 +
 2 files changed, 80 insertions(+)

Added: sox/trunk/PKGBUILD
===
--- sox/trunk/PKGBUILD  (rev 0)
+++ sox/trunk/PKGBUILD  2018-02-21 23:23:49 UTC (rev 296855)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+
+pkgname=sox
+pkgver=14.4.2
+pkgrel=3
+pkgdesc="The Swiss Army knife of sound processing tools"
+arch=('x86_64')
+url="http://sox.sourceforge.net/;
+license=('GPL' 'LGPL')
+depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm')
+makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 
'twolame')
+checkdepends=('time')
+optdepends=('libao: for ao plugin'
+'libmad: for mp3 plugin'
+'libid3tag: for mp3 plugin'
+'wavpack: for wavpack plugin'
+'libpulse: for pulse plugin'
+   'opusfile: for opus plugin'
+'twolame: for mp3 plugin')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 sox-dynamic.patch
+CVE-2017-15371.patch::https://github.com/mansr/sox/commit/818bdd0.patch
+CVE-2017-11358.patch::https://github.com/mansr/sox/commit/6cb44a4.patch
+CVE-2017-15370.patch::https://github.com/mansr/sox/commit/ef3d8be.patch
+CVE-2017-11332.patch::https://github.com/mansr/sox/commit/7405bca.patch
+CVE-2017-11359.patch::https://github.com/mansr/sox/commit/8b590b3.patch
+CVE-2017-15372.patch::https://github.com/mansr/sox/commit/001c337.patch
+
CVE-2017-15642.patch::https://github.com/mansr/sox/commit/0be259e.patch)
+
+sha1sums=('dc9668256b9d81ef25d672f14f12ec026b0b4087'
+  '9c71fa36596ed127b1bb367cfbab3b52cd2ecb6d'
+  'e10b3903906eee6e1ac413c985de8deba1089c6c'
+  '67c701cf7b3b78b167e5c62a2deade5b92c73bf6'
+  '8cf9cda08e3da1d3cf75fa64d17859b9b2a05b73'
+  'dc832d954ea1dcddfdf80719bbcb7b4f187a9901'
+  '293e4b7942a82c686695d968a2e0b0400ba4f534'
+  'd580cfbac8e6562e9150dbd10b36fd66f4011a48'
+  '23b0012c3e214eade8e6fedeb610548f90527ee4')
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  sed -i 's|man1/sox.1 soxeffect.7|man1/sox.1.gz soxeffect.7.gz|' Makefile.in
+  patch -p1 -i "${srcdir}/sox-dynamic.patch"
+  for _cve in 15371 11358 15370 11332 11359 15372 15642; do
+patch -p1 -i ../CVE-2017-$_cve.patch
+  done
+  sed -e '/hcom/d' -i src/tests.sh # test fails with CVE-2017-11358.patch
+
+  aclocal
+  automake
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--with-dyn-default --with-distro="Arch Linux"
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make bindir=. installcheck
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


Property changes on: sox/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: sox/trunk/sox-dynamic.patch
===
--- sox/trunk/sox-dynamic.patch (rev 0)
+++ sox/trunk/sox-dynamic.patch 2018-02-21 23:23:49 UTC (rev 296855)
@@ -0,0 +1,12 @@
+diff -Naur sox-14.4.2-orig/src/Makefile.am sox-14.4.2/src/Makefile.am
+--- sox-14.4.2-orig/src/Makefile.am2015-04-08 17:11:09.555343005 -0400
 sox-14.4.2/src/Makefile.am 2015-04-08 17:11:25.115317153 -0400
+@@ -95,7 +95,7 @@
+ 
+ libsox_la_CFLAGS = @WARN_CFLAGS@
+ libsox_la_LDFLAGS = @APP_LDFLAGS@ -version-info @SHLIB_VERSION@ \
+-  -export-symbols-regex 
'^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|fail_errno|filelength|find_(enum_(text|value)|file_extension)|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
++  -export-symbols-regex 
'^(sox_.*|lsx_(error|flush|check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|fail_errno|filelength|find_(enum_(text|value)|file_extension)|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
+ 
+ if HAVE_WIN32_LTDL
+   libsox_la_SOURCES += win32-ltdl.c win32-ltdl.h


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:29:59
  Author: felixonmars
Revision: 296922

archrelease: copy trunk to community-staging-x86_64

Added:
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 296921, pandoc/trunk/PKGBUILD)

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

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 296921, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 06:29:59 UTC (rev 296922)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=pandoc
+pkgver=2.1.1
+pkgrel=4
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-http' 'haskell-juicypixels' 'haskell-sha' 
'haskell-aeson'
+ 'haskell-aeson-pretty' 'haskell-base64-bytestring' 
'haskell-blaze-html'
+ 'haskell-blaze-markup' 'haskell-case-insensitive' 'haskell-cmark-gfm'
+ 'haskell-data-default' 'haskell-doctemplates' 'haskell-exceptions' 
'haskell-glob'
+ 'haskell-mtl' 'haskell-haddock-library' 'haskell-skylighting' 
'haskell-hslua'
+ 'haskell-hslua-module-text' 'haskell-http-client' 'haskell-syb' 
'haskell-http-client-tls'
+ 'haskell-http-types' 'haskell-safe' 'haskell-split' 'haskell-text' 
'haskell-texmath'
+ 'haskell-network' 'haskell-pandoc-types' 'haskell-parsec' 
'haskell-random'
+ 'haskell-scientific' 'haskell-tagsoup' 'haskell-temporary' 
'haskell-network-uri'
+ 'haskell-unordered-containers' 'haskell-zip-archive' 'haskell-vector' 
'haskell-xml'
+ 'haskell-yaml' 'haskell-zlib')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'pandoc-crossref: for numbering figures, equations, tables and 
cross-references to them with pandoc-crossref filter'
+'texlive-core: for pdf output')
+conflicts=('haskell-pandoc')
+replaces=('haskell-pandoc')
+makedepends=('ghc' 'haskell-diff' 'haskell-tasty' 'haskell-tasty-hunit' 
'haskell-tasty-quickcheck'
+ 'haskell-tasty-golden' 'haskell-quickcheck' 
'haskell-executable-path')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('e9a5616d217606575f4d56d5dccf7e4dcf8fbb65edd2e8d329241f4718a8352d9768e8c4396a465d8da8178b68116536e6ac152595c6bfe3be0b01b62f700538')
+
+prepare() {
+cd "${srcdir}/$pkgname-${pkgver}"
+# TODO: find a better solution
+sed -i "s|let env' = dynlibEnv ++ |let env' = dynlibEnv ++ 
[(\"LD_LIBRARY_PATH\", \"$PWD/dist/build\")] ++ |" test/Tests/Command.hs
+
+sed -i 's/tasty >= 0.11 && < 0.13,/tasty >= 0.11,/' $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/${pkgbase}" 
--datasubdir="$pkgname" --enable-tests \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -f-trypandoc -f-embed_data_files 
-f-weigh-pandoc -f-static
+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 "${srcdir}/${pkgname}-${pkgver}"
+LC_CTYPE=en_US.UTF-8 runhaskell Setup test
+}
+
+package() {
+cd "${srcdir}/${pkgbase}-${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}/COPYING.md"
+}


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:29:44
  Author: felixonmars
Revision: 296921

upgpkg: pandoc 2.1.1-4

rebuild with warp,3.2.17

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-22 06:26:46 UTC (rev 296920)
+++ PKGBUILD2018-02-22 06:29:44 UTC (rev 296921)
@@ -4,7 +4,7 @@
 
 pkgname=pandoc
 pkgver=2.1.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2018-02-21 Thread Felix Yan via arch-commits
Date: Thursday, February 22, 2018 @ 06:40:13
  Author: felixonmars
Revision: 296936

archrelease: copy trunk to community-staging-x86_64

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

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

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 296935, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-02-22 06:40:13 UTC (rev 296936)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=194
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('x86_64')
+depends=('ghc-libs' "haskell-aeson" "haskell-blaze-html" "haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default-class" 
"haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-resourcet" 
"haskell-semigroups"
+ "haskell-shakespeare" "haskell-streaming-commons" "haskell-text"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-wai-logger"
+ "haskell-warp" "haskell-yaml" "haskell-yesod-core" 
"haskell-yesod-form"
+ "haskell-yesod-persistent")
+makedepends=('ghc')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('267c8780b27cc0ae8199f80b3063683fb2cd62eeb9696c4b155a298fb035e6e9')
+
+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"
+}


  1   2   3   4   >