[arch-commits] Commit in dbus-c++/repos/community-i686 (6 files)

2017-06-12 Thread Baptiste Jonglez
Date: Monday, June 12, 2017 @ 21:55:41
  Author: zorun
Revision: 236572

archrelease: copy trunk to community-i686

Added:
  dbus-c++/repos/community-i686/PKGBUILD
(from rev 236571, dbus-c++/trunk/PKGBUILD)
  dbus-c++/repos/community-i686/disable-threading.patch
(from rev 236571, dbus-c++/trunk/disable-threading.patch)
  dbus-c++/repos/community-i686/fix-writechar.patch
(from rev 236571, dbus-c++/trunk/fix-writechar.patch)
  dbus-c++/repos/community-i686/gcc47.patch
(from rev 236571, dbus-c++/trunk/gcc47.patch)
Deleted:
  dbus-c++/repos/community-i686/disable-threading.patch
  dbus-c++/repos/community-i686/fix-writechar.patch

-+
 PKGBUILD|   49 +
 disable-threading.patch |   90 +++---
 fix-writechar.patch |   18 -
 gcc47.patch |   10 +
 4 files changed, 113 insertions(+), 54 deletions(-)

Copied: dbus-c++/repos/community-i686/PKGBUILD (from rev 236571, 
dbus-c++/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 21:55:41 UTC (rev 236572)
@@ -0,0 +1,49 @@
+# Maintainer: Ray Rashif 
+# Contributor: Xavier D. 
+# Contributor: Zarra 
+
+pkgname=dbus-c++
+_pkgname=lib$pkgname
+pkgver=0.9.0
+pkgrel=7
+pkgdesc="A C++ API for D-BUS"
+url="http://sourceforge.net/projects/dbus-cplusplus/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus>=1.2.0' 'glib2')
+makedepends=('autoconf' 'automake' 'libtool')
+source=("http://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/$pkgver/libdbus-c%2B%2B-$pkgver.tar.gz;
+ 'gcc47.patch'
+'disable-threading.patch'
+'fix-writechar.patch')
+sha256sums=('bc11ac297b3cb010be904c72789695543ee3fdf3d75cdc8225fd371385af4e61'
+'9d504faf769026dcaabca94c7645373fcadf43ef93c8263c6a85e905798f07c9'
+'38730ee73fe4de320fceab6619579b55861b6b8e0f6d8069a9ddf3d1ad1266c0'
+'34ada5bf31918c63558d0fb3fff63e0f1596f25082ff22e84117927ad7236fce')
+ 
+prepare() {
+cd "$srcdir/$_pkgname-$pkgver"
+patch -Np0 -i "$srcdir/gcc47.patch"
+patch -Np1 -i "$srcdir/disable-threading.patch"
+patch -Np1 -i "$srcdir/fix-writechar.patch"
+}
+
+build() {
+cd "$srcdir/$_pkgname-$pkgver"
+
+export LDFLAGS+=" -lexpat -lpthread" # -lpthread needed for i686
+
+./autogen.sh --prefix=/usr \
+ --disable-static \
+ --enable-glib \
+ --disable-ecore
+make
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: disable-threading.patch
===
--- disable-threading.patch 2017-06-12 21:53:50 UTC (rev 236571)
+++ disable-threading.patch 2017-06-12 21:55:41 UTC (rev 236572)
@@ -1,45 +0,0 @@
 libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h.threading  2017-02-15 
13:40:53.796004263 +
-+++ libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h2017-02-15 
13:40:46.907000493 +
-@@ -188,6 +188,7 @@
- /* classes for multithreading support
- */
- 
-+#if 0
- class DXXAPI Mutex
- {
- public:
-@@ -243,9 +244,11 @@
- typedef bool (*CondVarWaitTimeoutFn)(CondVar *cv, Mutex *mx, int timeout);
- typedef void (*CondVarWakeOneFn)(CondVar *cv);
- typedef void (*CondVarWakeAllFn)(CondVar *cv);
-+#endif
- 
- void DXXAPI _init_threading();
- 
-+#if 0
- void DXXAPI _init_threading(
-   MutexNewFn, MutexFreeFn, MutexLockFn, MutexUnlockFn,
-   CondVarNewFn, CondVarFreeFn, CondVarWaitFn, CondVarWaitTimeoutFn, 
CondVarWakeOneFn, CondVarWakeAllFn
-@@ -312,6 +315,7 @@
- cv->wake_all();
-   }
- };
-+#endif
- 
- } /* namespace DBus */
- 
 libdbus-c++-0.9.0/src/dispatcher.cpp.threading 2017-02-15 
13:48:22.627249868 +
-+++ libdbus-c++-0.9.0/src/dispatcher.cpp   2017-02-15 13:48:29.164253445 
+
-@@ -253,6 +253,7 @@
- #endif//DBUS_HAS_THREADS_INIT_DEFAULT
- }
- 
-+#if 0
- void DBus::_init_threading(
-   MutexNewFn m1,
-   MutexFreeFn m2,
-@@ -318,3 +319,4 @@
- #endif//DBUS_HAS_RECURSIVE_MUTEX
-   dbus_threads_init();
- }
-+#endif

Copied: dbus-c++/repos/community-i686/disable-threading.patch (from rev 236571, 
dbus-c++/trunk/disable-threading.patch)
===
--- disable-threading.patch (rev 0)
+++ disable-threading.patch 2017-06-12 21:55:41 UTC (rev 236572)
@@ -0,0 +1,45 @@
+--- libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h.threading  2017-02-15 
13:40:53.796004263 +
 libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h2017-02-15 
13:40:46.907000493 +
+@@ -188,6 +188,7 @@
+ /* classes for multithreading support
+ */
+ 
++#if 0
+ class DXXAPI Mutex
+ {
+ public:
+@@ -243,9 +244,11 @@
+ typedef bool 

[arch-commits] Commit in dbus-c++/repos (10 files)

2017-06-12 Thread Baptiste Jonglez
Date: Monday, June 12, 2017 @ 21:53:50
  Author: zorun
Revision: 236571

archrelease: copy trunk to community-i686, community-x86_64

Added:
  dbus-c++/repos/community-i686/disable-threading.patch
(from rev 236570, dbus-c++/trunk/disable-threading.patch)
  dbus-c++/repos/community-i686/fix-writechar.patch
(from rev 236570, dbus-c++/trunk/fix-writechar.patch)
  dbus-c++/repos/community-x86_64/PKGBUILD
(from rev 236570, dbus-c++/trunk/PKGBUILD)
  dbus-c++/repos/community-x86_64/disable-threading.patch
(from rev 236570, dbus-c++/trunk/disable-threading.patch)
  dbus-c++/repos/community-x86_64/fix-writechar.patch
(from rev 236570, dbus-c++/trunk/fix-writechar.patch)
  dbus-c++/repos/community-x86_64/gcc47.patch
(from rev 236570, dbus-c++/trunk/gcc47.patch)
Deleted:
  dbus-c++/repos/community-i686/PKGBUILD
  dbus-c++/repos/community-i686/gcc47.patch
  dbus-c++/repos/community-x86_64/PKGBUILD
  dbus-c++/repos/community-x86_64/gcc47.patch

--+
 /PKGBUILD|   49 +
 /gcc47.patch |   10 +
 community-i686/PKGBUILD  |   39 ---
 community-i686/disable-threading.patch   |   45 ++
 community-i686/fix-writechar.patch   |9 +
 community-i686/gcc47.patch   |   10 -
 community-x86_64/PKGBUILD|   39 ---
 community-x86_64/disable-threading.patch |   45 ++
 community-x86_64/fix-writechar.patch |9 +
 community-x86_64/gcc47.patch |   10 -
 10 files changed, 167 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 21:53:01 UTC (rev 236570)
+++ community-i686/PKGBUILD 2017-06-12 21:53:50 UTC (rev 236571)
@@ -1,39 +0,0 @@
-# Maintainer: Ray Rashif 
-# Contributor: Xavier D. 
-# Contributor: Zarra 
-
-pkgname=dbus-c++
-_pkgname=lib$pkgname
-pkgver=0.9.0
-pkgrel=6
-pkgdesc="A C++ API for D-BUS"
-url="http://sourceforge.net/projects/dbus-cplusplus/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus>=1.2.0' 'glib2')
-makedepends=('autoconf' 'automake' 'libtool')
-source=("http://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/$pkgver/libdbus-c%2B%2B-$pkgver.tar.gz;
- 'gcc47.patch')
-md5sums=('e752116f523fa88ef041e63d3dee4de2'
- '9319b402b15f37d881b51bc758368900')
-
-build() {
-cd "$srcdir/$_pkgname-$pkgver"
-
-patch -Np0 -i "$srcdir/gcc47.patch"
-export LDFLAGS+=" -lexpat -lpthread" # -lpthread needed for i686
-
-./autogen.sh --prefix=/usr \
- --disable-static \
- --enable-glib \
- --disable-ecore
-make
-}
-
-package() {
-  cd "$srcdir/$_pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dbus-c++/repos/community-i686/disable-threading.patch (from rev 236570, 
dbus-c++/trunk/disable-threading.patch)
===
--- community-i686/disable-threading.patch  (rev 0)
+++ community-i686/disable-threading.patch  2017-06-12 21:53:50 UTC (rev 
236571)
@@ -0,0 +1,45 @@
+--- libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h.threading  2017-02-15 
13:40:53.796004263 +
 libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h2017-02-15 
13:40:46.907000493 +
+@@ -188,6 +188,7 @@
+ /* classes for multithreading support
+ */
+ 
++#if 0
+ class DXXAPI Mutex
+ {
+ public:
+@@ -243,9 +244,11 @@
+ typedef bool (*CondVarWaitTimeoutFn)(CondVar *cv, Mutex *mx, int timeout);
+ typedef void (*CondVarWakeOneFn)(CondVar *cv);
+ typedef void (*CondVarWakeAllFn)(CondVar *cv);
++#endif
+ 
+ void DXXAPI _init_threading();
+ 
++#if 0
+ void DXXAPI _init_threading(
+   MutexNewFn, MutexFreeFn, MutexLockFn, MutexUnlockFn,
+   CondVarNewFn, CondVarFreeFn, CondVarWaitFn, CondVarWaitTimeoutFn, 
CondVarWakeOneFn, CondVarWakeAllFn
+@@ -312,6 +315,7 @@
+ cv->wake_all();
+   }
+ };
++#endif
+ 
+ } /* namespace DBus */
+ 
+--- libdbus-c++-0.9.0/src/dispatcher.cpp.threading 2017-02-15 
13:48:22.627249868 +
 libdbus-c++-0.9.0/src/dispatcher.cpp   2017-02-15 13:48:29.164253445 
+
+@@ -253,6 +253,7 @@
+ #endif//DBUS_HAS_THREADS_INIT_DEFAULT
+ }
+ 
++#if 0
+ void DBus::_init_threading(
+   MutexNewFn m1,
+   MutexFreeFn m2,
+@@ -318,3 +319,4 @@
+ #endif//DBUS_HAS_RECURSIVE_MUTEX
+   dbus_threads_init();
+ }
++#endif

Copied: dbus-c++/repos/community-i686/fix-writechar.patch (from rev 236570, 
dbus-c++/trunk/fix-writechar.patch)
===
--- community-i686/fix-writechar.patch  (rev 0)
+++ community-i686/fix-writechar.patch  

[arch-commits] Commit in dbus-c++/trunk (3 files)

2017-06-12 Thread Baptiste Jonglez
Date: Monday, June 12, 2017 @ 21:53:01
  Author: zorun
Revision: 236570

upgpkg: dbus-c++ 0.9.0-7

Fix build with GCC 7

Added:
  dbus-c++/trunk/disable-threading.patch
  dbus-c++/trunk/fix-writechar.patch
Modified:
  dbus-c++/trunk/PKGBUILD

-+
 PKGBUILD|   20 +++-
 disable-threading.patch |   45 +
 fix-writechar.patch |9 +
 3 files changed, 69 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 21:18:28 UTC (rev 236569)
+++ PKGBUILD2017-06-12 21:53:01 UTC (rev 236570)
@@ -5,7 +5,7 @@
 pkgname=dbus-c++
 _pkgname=lib$pkgname
 pkgver=0.9.0
-pkgrel=6
+pkgrel=7
 pkgdesc="A C++ API for D-BUS"
 url="http://sourceforge.net/projects/dbus-cplusplus/;
 arch=('i686' 'x86_64')
@@ -13,14 +13,24 @@
 depends=('dbus>=1.2.0' 'glib2')
 makedepends=('autoconf' 'automake' 'libtool')
 
source=("http://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/$pkgver/libdbus-c%2B%2B-$pkgver.tar.gz;
- 'gcc47.patch')
-md5sums=('e752116f523fa88ef041e63d3dee4de2'
- '9319b402b15f37d881b51bc758368900')
+ 'gcc47.patch'
+'disable-threading.patch'
+'fix-writechar.patch')
+sha256sums=('bc11ac297b3cb010be904c72789695543ee3fdf3d75cdc8225fd371385af4e61'
+'9d504faf769026dcaabca94c7645373fcadf43ef93c8263c6a85e905798f07c9'
+'38730ee73fe4de320fceab6619579b55861b6b8e0f6d8069a9ddf3d1ad1266c0'
+'34ada5bf31918c63558d0fb3fff63e0f1596f25082ff22e84117927ad7236fce')
+ 
+prepare() {
+cd "$srcdir/$_pkgname-$pkgver"
+patch -Np0 -i "$srcdir/gcc47.patch"
+patch -Np1 -i "$srcdir/disable-threading.patch"
+patch -Np1 -i "$srcdir/fix-writechar.patch"
+}
 
 build() {
 cd "$srcdir/$_pkgname-$pkgver"
 
-patch -Np0 -i "$srcdir/gcc47.patch"
 export LDFLAGS+=" -lexpat -lpthread" # -lpthread needed for i686
 
 ./autogen.sh --prefix=/usr \

Added: disable-threading.patch
===
--- disable-threading.patch (rev 0)
+++ disable-threading.patch 2017-06-12 21:53:01 UTC (rev 236570)
@@ -0,0 +1,45 @@
+--- libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h.threading  2017-02-15 
13:40:53.796004263 +
 libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h2017-02-15 
13:40:46.907000493 +
+@@ -188,6 +188,7 @@
+ /* classes for multithreading support
+ */
+ 
++#if 0
+ class DXXAPI Mutex
+ {
+ public:
+@@ -243,9 +244,11 @@
+ typedef bool (*CondVarWaitTimeoutFn)(CondVar *cv, Mutex *mx, int timeout);
+ typedef void (*CondVarWakeOneFn)(CondVar *cv);
+ typedef void (*CondVarWakeAllFn)(CondVar *cv);
++#endif
+ 
+ void DXXAPI _init_threading();
+ 
++#if 0
+ void DXXAPI _init_threading(
+   MutexNewFn, MutexFreeFn, MutexLockFn, MutexUnlockFn,
+   CondVarNewFn, CondVarFreeFn, CondVarWaitFn, CondVarWaitTimeoutFn, 
CondVarWakeOneFn, CondVarWakeAllFn
+@@ -312,6 +315,7 @@
+ cv->wake_all();
+   }
+ };
++#endif
+ 
+ } /* namespace DBus */
+ 
+--- libdbus-c++-0.9.0/src/dispatcher.cpp.threading 2017-02-15 
13:48:22.627249868 +
 libdbus-c++-0.9.0/src/dispatcher.cpp   2017-02-15 13:48:29.164253445 
+
+@@ -253,6 +253,7 @@
+ #endif//DBUS_HAS_THREADS_INIT_DEFAULT
+ }
+ 
++#if 0
+ void DBus::_init_threading(
+   MutexNewFn m1,
+   MutexFreeFn m2,
+@@ -318,3 +319,4 @@
+ #endif//DBUS_HAS_RECURSIVE_MUTEX
+   dbus_threads_init();
+ }
++#endif

Added: fix-writechar.patch
===
--- fix-writechar.patch (rev 0)
+++ fix-writechar.patch 2017-06-12 21:53:01 UTC (rev 236570)
@@ -0,0 +1,9 @@
+--- libdbus-c++-0.9.0/src/pipe.cpp.writechar   2017-02-16 11:07:13.591950169 
+
 libdbus-c++-0.9.0/src/pipe.cpp 2017-02-16 11:04:17.158796092 +
+@@ -83,5 +83,5 @@
+ void Pipe::signal()
+ {
+   // TODO: ignoring return of read/write generates warning; maybe relevant 
for eventloop work...
+-  ::write(_fd_write, '\0', 1);
++  ::write(_fd_write, "", 1);
+ }


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

2017-06-12 Thread Christian Hesse
Date: Monday, June 12, 2017 @ 21:25:30
  Author: eworm
Revision: 298716

install all perl modules to vendor directory

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 20:45:03 UTC (rev 298715)
+++ PKGBUILD2017-06-12 21:25:30 UTC (rev 298716)
@@ -117,6 +117,9 @@
   sed -i 's|#![ ]*/usr/bin/python$|#!/usr/bin/python2|' \
 "$pkgdir"/usr/share/git/svn-fe/svnrdump_sim.py
 
+  # perl modules from contrib/ install to site dir... move to vendor
+  mv "$pkgdir"/usr/share/perl5/site_perl/Git/* 
"$pkgdir"/usr/share/perl5/vendor_perl/Git/
+  rm -rf "$pkgdir"/usr/share/perl5/site_perl
   # remove perllocal.pod, .packlist, and empty directories.
   rm -rf "$pkgdir"/usr/lib/perl5
 


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

2017-06-12 Thread Antonio Rojas
Date: Monday, June 12, 2017 @ 21:18:28
  Author: arojas
Revision: 236569

Bring back Cremona database detection fix

Modified:
  sagemath/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 20:49:05 UTC (rev 236568)
+++ PKGBUILD2017-06-12 21:18:28 UTC (rev 236569)
@@ -88,6 +88,9 @@
   patch -p1 -i ../latte-count.patch
 # make 'sage -notebook=jupyter' work with our python3 jupyter-notebook package
   patch -p1 -i ../sagemath-python3-notebook.patch
+# fix Cremona database detection
+  sed -e 
"s|is_package_installed('database_cremona_ellcurve')|os.path.exists('/usr/share/sage/cremona/cremona.db')|"
 \
+   -i src/sage/databases/cremona.py
 
 # Upstream patches  
 # fix build against libfes 0.2 http://trac.sagemath.org/ticket/15209


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

2017-06-12 Thread Evangelos Foutras
Date: Monday, June 12, 2017 @ 20:48:47
  Author: foutrelis
Revision: 236567

upgpkg: shorewall 5.1.4.2-1

New upstream release.

Modified:
  shorewall/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 20:37:04 UTC (rev 236566)
+++ PKGBUILD2017-06-12 20:48:47 UTC (rev 236567)
@@ -5,7 +5,7 @@
 # Contributor: FUBAR 
 
 pkgname=('shorewall' 'shorewall6' 'shorewall-core')
-pkgver=5.1.4.1
+pkgver=5.1.4.2
 pkgrel=1
 _v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
 _v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
@@ -15,11 +15,11 @@
 
source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
 
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
 
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
-sha256sums=('c561dd91c4b88ef087a6d172bafb4ac5d01c0055c47b855568536a0c422ff232'
+sha256sums=('df3ff7199c2fdf031030221b9aa23d2b80e4cafa1fe663ddedeaf901b6d013b1'
 'SKIP'
-'e3da805b4aa1e8c483f1bb451cb47a869e1977b213a86145a82d42e9bc12ea36'
+'0934ed42b5dafeab294dc004e72c7361820a4485bdc5005cfdaf3fd628adaea0'
 'SKIP'
-'3d1446f7e437104c8f8c7257ccdbddfc0dc7df3ea68b80274c11dd94cc1c8629'
+'19a8790fcd60a5ea77e306f219d68920bb3f9287610cd53825776153df13bba0'
 'SKIP')
 validpgpkeys=('7BDE11F3F2B42E2E52828F8AE368BD09153D38B1')
 


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

2017-06-12 Thread Evangelos Foutras
Date: Monday, June 12, 2017 @ 20:49:05
  Author: foutrelis
Revision: 236568

archrelease: copy trunk to community-any

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

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

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

Copied: shorewall/repos/community-any/PKGBUILD (from rev 236567, 
shorewall/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 20:49:05 UTC (rev 236568)
@@ -0,0 +1,79 @@
+# $Id$
+# Maintainer: Evangelos Foutras 
+# Contributor: Malte Rabenseifner 
+# Contributor: Andrea Scarpino 
+# Contributor: FUBAR 
+
+pkgname=('shorewall' 'shorewall6' 'shorewall-core')
+pkgver=5.1.4.2
+pkgrel=1
+_v1=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{1\}\)') # 5.x
+_v2=$(expr $pkgver : '\([0-9]\+\(\.[0-9]\+\)\{2\}\)') # 5.x.x
+arch=('any')
+url="http://www.shorewall.net/;
+license=('GPL')
+source=(http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/$pkgname-$pkgver.tar.bz2{,.asc}
+
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall6-$pkgver.tar.bz2{,.asc}
+
http://www.shorewall.net/pub/$pkgname/$_v1/$pkgname-$_v2/shorewall-core-$pkgver.tar.bz2{,.asc})
+sha256sums=('df3ff7199c2fdf031030221b9aa23d2b80e4cafa1fe663ddedeaf901b6d013b1'
+'SKIP'
+'0934ed42b5dafeab294dc004e72c7361820a4485bdc5005cfdaf3fd628adaea0'
+'SKIP'
+

[arch-commits] Commit in ffmpeg2.8/repos (4 files)

2017-06-12 Thread Maxime Gauduin
Date: Monday, June 12, 2017 @ 20:45:03
  Author: alucryd
Revision: 298715

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  ffmpeg2.8/repos/extra-i686/PKGBUILD
(from rev 298714, ffmpeg2.8/trunk/PKGBUILD)
  ffmpeg2.8/repos/extra-x86_64/PKGBUILD
(from rev 298714, ffmpeg2.8/trunk/PKGBUILD)
Deleted:
  ffmpeg2.8/repos/extra-i686/PKGBUILD
  ffmpeg2.8/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |  186 
 extra-i686/PKGBUILD   |   93 
 extra-x86_64/PKGBUILD |   93 
 3 files changed, 186 insertions(+), 186 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-12 20:44:40 UTC (rev 298714)
+++ extra-i686/PKGBUILD 2017-06-12 20:45:03 UTC (rev 298715)
@@ -1,93 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Ionut Biru 
-# Contributor: Tom Newsom 
-# Contributor: Paul Mattal 
-
-pkgname=ffmpeg2.8
-pkgver=2.8.11
-pkgrel=9
-pkgdesc='Complete solution to record, convert and stream audio and video'
-arch=('i686' 'x86_64')
-url='https://ffmpeg.org/'
-license=('GPL3')
-depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'gnutls' 'gsm' 'lame'
- 'libass' 'libbluray' 'libmodplug' 'libpulse' 'libsoxr' 'libssh'
- 'libtheora' 'libva' 'libvdpau' 'libwebp' 'opencore-amr' 'openjpeg'
- 'opus' 'schroedinger' 'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib'
- 'libdcadec.so' 'libvidstab.so' 'libvorbis.so' 'libvorbisenc.so'
- 'libvpx.so' 'libx264.so' 'libx265.so')
-makedepends=('hardening-wrapper' 'ladspa' 'libvdpau' 'libx264' '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=("http://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc})
-validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
-sha256sums=('38aa3aec93c480b34d33f3648aff9278581d151488b521995c084258613e1fe6'
-'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/ffmpeg2.8.conf
-}
-
-# vim: ts=2 sw=2 et:
-

Copied: ffmpeg2.8/repos/extra-i686/PKGBUILD (from rev 298714, 
ffmpeg2.8/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-06-12 20:45:03 UTC (rev 298715)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Ionut Biru 
+# Contributor: Tom Newsom 
+# Contributor: Paul Mattal 
+
+pkgname=ffmpeg2.8
+pkgver=2.8.12
+pkgrel=1
+pkgdesc='Complete solution to record, convert and stream audio and video'
+arch=('i686' 'x86_64')
+url='https://ffmpeg.org/'
+license=('GPL3')
+depends=('alsa-lib' 'bzip2' 'fontconfig' 'fribidi' 'gnutls' 'gsm' 'lame'
+ 'libass' 'libbluray' 'libmodplug' 'libpulse' 'libsoxr' 'libssh'
+ 'libtheora' 'libva' 'libvdpau' 'libwebp' 'opencore-amr' 'openjpeg'
+ 'opus' 'schroedinger' 'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib'
+ 'libdcadec.so' 'libvidstab.so' 'libvorbis.so' 'libvorbisenc.so'
+ 

[arch-commits] Commit in ffmpeg2.8/trunk (PKGBUILD)

2017-06-12 Thread Maxime Gauduin
Date: Monday, June 12, 2017 @ 20:44:40
  Author: alucryd
Revision: 298714

upgpkg: ffmpeg2.8 2.8.12-1

Modified:
  ffmpeg2.8/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 19:22:49 UTC (rev 298713)
+++ PKGBUILD2017-06-12 20:44:40 UTC (rev 298714)
@@ -6,8 +6,8 @@
 # Contributor: Paul Mattal 
 
 pkgname=ffmpeg2.8
-pkgver=2.8.11
-pkgrel=9
+pkgver=2.8.12
+pkgrel=1
 pkgdesc='Complete solution to record, convert and stream audio and video'
 arch=('i686' 'x86_64')
 url='https://ffmpeg.org/'
@@ -25,7 +25,7 @@
   'libswscale.so')
 source=("http://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.xz"{,.asc})
 validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel
-sha256sums=('38aa3aec93c480b34d33f3648aff9278581d151488b521995c084258613e1fe6'
+sha256sums=('6213f18a8bb93415724c40a1840a4591458c2949575978b9cf43d7b6a71283bd'
 'SKIP')
 
 build() {


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

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:37:04
  Author: heftig
Revision: 236566

archrelease: copy trunk to community-i686, community-x86_64

Added:
  
cdemu-daemon/repos/community-i686/0001-Patch-system-daemon-for-Arch-friendliness.patch
(from rev 236565, 
cdemu-daemon/trunk/0001-Patch-system-daemon-for-Arch-friendliness.patch)
  cdemu-daemon/repos/community-i686/PKGBUILD
(from rev 236565, cdemu-daemon/trunk/PKGBUILD)
  cdemu-daemon/repos/community-i686/cdemu-daemon.install
(from rev 236565, cdemu-daemon/trunk/cdemu-daemon.install)
  
cdemu-daemon/repos/community-x86_64/0001-Patch-system-daemon-for-Arch-friendliness.patch
(from rev 236565, 
cdemu-daemon/trunk/0001-Patch-system-daemon-for-Arch-friendliness.patch)
  cdemu-daemon/repos/community-x86_64/PKGBUILD
(from rev 236565, cdemu-daemon/trunk/PKGBUILD)
  cdemu-daemon/repos/community-x86_64/cdemu-daemon.install
(from rev 236565, cdemu-daemon/trunk/cdemu-daemon.install)
Deleted:
  cdemu-daemon/repos/community-i686/PKGBUILD
  cdemu-daemon/repos/community-i686/cdemu-daemon.install
  cdemu-daemon/repos/community-i686/system-arch.patch
  cdemu-daemon/repos/community-x86_64/PKGBUILD
  cdemu-daemon/repos/community-x86_64/cdemu-daemon.install
  cdemu-daemon/repos/community-x86_64/system-arch.patch

---+
 /PKGBUILD |  106 
+++
 /cdemu-daemon.install |   72 

 community-i686/0001-Patch-system-daemon-for-Arch-friendliness.patch   |  151 
++
 community-i686/PKGBUILD   |   54 
---
 community-i686/cdemu-daemon.install   |   42 --
 community-i686/system-arch.patch  |  124 

 community-x86_64/0001-Patch-system-daemon-for-Arch-friendliness.patch |  151 
++
 community-x86_64/PKGBUILD |   54 
---
 community-x86_64/cdemu-daemon.install |   42 --
 community-x86_64/system-arch.patch|  124 

 10 files changed, 480 insertions(+), 440 deletions(-)

Copied: 
cdemu-daemon/repos/community-i686/0001-Patch-system-daemon-for-Arch-friendliness.patch
 (from rev 236565, 
cdemu-daemon/trunk/0001-Patch-system-daemon-for-Arch-friendliness.patch)
===
--- community-i686/0001-Patch-system-daemon-for-Arch-friendliness.patch 
(rev 0)
+++ community-i686/0001-Patch-system-daemon-for-Arch-friendliness.patch 
2017-06-12 20:37:04 UTC (rev 236566)
@@ -0,0 +1,151 @@
+From 17d054bc9fb02bbb557f9de68e29e715a17f3ee6 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 12 Jun 2017 22:22:51 +0200
+Subject: [PATCH] Patch system daemon for Arch-friendliness
+
+---
+ cdemu-daemon/CMakeLists.txt | 15 ++-
+ cdemu-daemon/system/cdemu-daemon-dbus.conf  |  9 +++--
+ cdemu-daemon/system/cdemu-daemon-system.sh  |  6 +++---
+ cdemu-daemon/system/cdemu-daemon.conf   |  8 
+ cdemu-daemon/system/cdemu-daemon.service.in | 10 ++
+ cdemu-daemon/system/net.sf.cdemu.CDEmuDaemon.service.in |  4 ++--
+ 6 files changed, 44 insertions(+), 8 deletions(-)
+ create mode 100644 cdemu-daemon/system/cdemu-daemon.conf
+ create mode 100644 cdemu-daemon/system/cdemu-daemon.service.in
+
+diff --git a/cdemu-daemon/CMakeLists.txt b/cdemu-daemon/CMakeLists.txt
+index 76feb818d09a57af..c6abd56b82484b6f 100644
+--- a/cdemu-daemon/CMakeLists.txt
 b/cdemu-daemon/CMakeLists.txt
+@@ -15,7 +15,7 @@ set (CDEMU_DAEMON_INTERFACE_VERSION_MINOR 0)
+ include (GNUInstallDirs)
+ 
+ # Options
+-option (SYSTEM_BUS_SERVICE "Install CDEmu daemon as D-Bus system bus service" 
off)
++option (SYSTEM_BUS_SERVICE "Install CDEmu daemon as D-Bus system bus service" 
on)
+ option (SESSION_BUS_SERVICE "Install CDEmu daemon as D-Bus session bus 
service" on)
+ 
+ # If install prefix is /usr, override the sysconf dir to be /etc instead of 
/usr/etc
+@@ -45,6 +45,10 @@ configure_file (
+ ${PROJECT_SOURCE_DIR}/system/net.sf.cdemu.CDEmuDaemon.service.in
+ ${PROJECT_BINARY_DIR}/system/net.sf.cdemu.CDEmuDaemon.service
+ )
++configure_file (
++${PROJECT_SOURCE_DIR}/system/cdemu-daemon.service.in
++${PROJECT_BINARY_DIR}/system/cdemu-daemon.service
++)
+ 
+ # Global definitions
+ add_definitions (-std=c99) # We're compiling using C99
+@@ -121,13 +125,22 @@ if (SYSTEM_BUS_SERVICE)
+ DESTINATION ${CMAKE_INSTALL_LIBEXECDIR}
+ )
+ install (
++FILES ${PROJECT_BINARY_DIR}/system/cdemu-daemon.service
++DESTINATION ${CMAKE_INSTALL_LIBDIR}/systemd/system/
++)
++install (
+ FILES 

[arch-commits] Commit in cdemu-client/repos/community-any (4 files)

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:36:39
  Author: heftig
Revision: 236565

archrelease: copy trunk to community-any

Added:
  cdemu-client/repos/community-any/PKGBUILD
(from rev 236564, cdemu-client/trunk/PKGBUILD)
  cdemu-client/repos/community-any/fixes.diff
(from rev 236564, cdemu-client/trunk/fixes.diff)
Deleted:
  cdemu-client/repos/community-any/PKGBUILD
  cdemu-client/repos/community-any/fixes.diff

+
 PKGBUILD   |   76 +--
 fixes.diff |   41 ++-
 2 files changed, 52 insertions(+), 65 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-12 20:36:24 UTC (rev 236564)
+++ PKGBUILD2017-06-12 20:36:39 UTC (rev 236565)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mateusz Herych 
-# Contributor: Charles Lindsay 
-
-pkgname=cdemu-client
-pkgver=3.0.4
-pkgrel=3
-pkgdesc="Simple command-line client for controlling cdemu-daemon"
-arch=(any)
-url="http://cdemu.sourceforge.net/;
-license=(GPL)
-depends=(python-gobject cdemu-daemon)
-makedepends=(intltool cmake)
-conflicts=('cdemu')
-source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-fixes.diff)
-sha256sums=('e415a98672ac1ed908dab2ba43a94bc0af7653c470a87d6d9338a59d9856fd86'
-'f918450e3eff8123b830817fe763702f123f8ad6d0186798aa2defa8f0f9782f')
-
-prepare() {
-  mkdir build
-  cd $pkgname-$pkgver
-  patch -Np2 -i ../fixes.diff
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: cdemu-client/repos/community-any/PKGBUILD (from rev 236564, 
cdemu-client/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 20:36:39 UTC (rev 236565)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=cdemu-client
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="Simple command-line client for controlling cdemu-daemon"
+arch=(any)
+url="http://cdemu.sourceforge.net/;
+license=(GPL)
+depends=(python-gobject cdemu-daemon)
+makedepends=(intltool cmake)
+conflicts=('cdemu')
+source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
+fixes.diff)
+sha256sums=('336a078b0b1f70de81d7ee92ee3e3a1e1957843accc4e90a876aeef28648d868'
+'908f919e779832eb05013cb0e3ecb49795afddaa4aa8cb946ec78c3218acf534')
+
+prepare() {
+  mkdir build
+  cd $pkgname-$pkgver
+  patch -Np2 -i ../fixes.diff
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: fixes.diff
===
--- fixes.diff  2017-06-12 20:36:24 UTC (rev 236564)
+++ fixes.diff  2017-06-12 20:36:39 UTC (rev 236565)
@@ -1,27 +0,0 @@
-diff --git i/cdemu-client/CMakeLists.txt w/cdemu-client/CMakeLists.txt
-index cdcff25232886440..5296229538cd64bf 100644
 i/cdemu-client/CMakeLists.txt
-+++ w/cdemu-client/CMakeLists.txt
-@@ -38,7 +38,8 @@ install (
- 
- install (
- FILES data/cdemu-bash-completion.sh
--DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/bash_completion.d
-+DESTINATION ${CMAKE_INSTALL_DATADIR}/bash-completion/completions
-+RENAME cdemu
- )
- 
- install (
-diff --git i/cdemu-client/src/cdemu w/cdemu-client/src/cdemu
-index 85bdcc5f30cdffef..a3fa132492266a7a 100755
 i/cdemu-client/src/cdemu
-+++ w/cdemu-client/src/cdemu
-@@ -116,7 +116,7 @@ class cmd_load (object):
- 
- def __call__ (self, proxy, arguments):
- # We need to pass absolute filenames to daemon
--filenames = map(os.path.abspath, arguments.image_file)
-+filenames = [os.path.abspath(f) for f in arguments.image_file]
- 
- # Gather parser parameters into a dictionary
- parser_params = {}

Copied: cdemu-client/repos/community-any/fixes.diff (from rev 236564, 
cdemu-client/trunk/fixes.diff)
===
--- fixes.diff  (rev 0)
+++ fixes.diff  2017-06-12 20:36:39 UTC (rev 236565)
@@ -0,0 +1,14 @@
+diff --git i/cdemu-client/CMakeLists.txt w/cdemu-client/CMakeLists.txt
+index cdcff25232886440..5296229538cd64bf 100644
+--- i/cdemu-client/CMakeLists.txt
 w/cdemu-client/CMakeLists.txt
+@@ -38,7 +38,8 @@ install (
+ 
+ install (
+ FILES data/cdemu-bash-completion.sh
+-DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/bash_completion.d
++DESTINATION 

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

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:36:24
  Author: heftig
Revision: 236564

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libmirage/repos/community-i686/PKGBUILD
(from rev 236563, libmirage/trunk/PKGBUILD)
  libmirage/repos/community-x86_64/PKGBUILD
(from rev 236563, libmirage/trunk/PKGBUILD)
Deleted:
  libmirage/repos/community-i686/PKGBUILD
  libmirage/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   72 
 community-i686/PKGBUILD   |   36 --
 community-x86_64/PKGBUILD |   36 --
 3 files changed, 72 insertions(+), 72 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 20:35:31 UTC (rev 236563)
+++ community-i686/PKGBUILD 2017-06-12 20:36:24 UTC (rev 236564)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mateusz Herych 
-# Contributor: Charles Lindsay 
-
-pkgname=libmirage
-pkgver=3.0.5
-pkgrel=1
-pkgdesc="CD-ROM image (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) access 
library"
-arch=(i686 x86_64)
-url="http://cdemu.sourceforge.net/;
-license=(GPL)
-depends=(glib2 libsndfile libsamplerate zlib bzip2 xz shared-mime-info)
-makedepends=(gtk-doc gobject-introspection cmake)
-source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2)
-sha256sums=('225af44a447e4cc968ca1fa09c0939f5674072a0f91d71c73cd3aab83ded8e07')
-
-prepare() {
-  mkdir build
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DPOST_INSTALL_HOOKS:BOOL=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libmirage/repos/community-i686/PKGBUILD (from rev 236563, 
libmirage/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-12 20:36:24 UTC (rev 236564)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=libmirage
+pkgver=3.1.0
+pkgrel=1
+pkgdesc="CD-ROM image (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) access 
library"
+arch=(i686 x86_64)
+url="http://cdemu.sourceforge.net/;
+license=(GPL)
+depends=(glib2 libsndfile libsamplerate zlib bzip2 xz shared-mime-info)
+makedepends=(gtk-doc gobject-introspection cmake intltool)
+source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2)
+sha256sums=('b67ecc1056cf1986321d637f1a52cb36b0f5bec4fac08fd9c71075dcb7dd7363')
+
+prepare() {
+  mkdir build
+  cd $pkgname-$pkgver
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DPOST_INSTALL_HOOKS:BOOL=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-12 20:35:31 UTC (rev 236563)
+++ community-x86_64/PKGBUILD   2017-06-12 20:36:24 UTC (rev 236564)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Mateusz Herych 
-# Contributor: Charles Lindsay 
-
-pkgname=libmirage
-pkgver=3.0.5
-pkgrel=1
-pkgdesc="CD-ROM image (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) access 
library"
-arch=(i686 x86_64)
-url="http://cdemu.sourceforge.net/;
-license=(GPL)
-depends=(glib2 libsndfile libsamplerate zlib bzip2 xz shared-mime-info)
-makedepends=(gtk-doc gobject-introspection cmake)
-source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2)
-sha256sums=('225af44a447e4cc968ca1fa09c0939f5674072a0f91d71c73cd3aab83ded8e07')
-
-prepare() {
-  mkdir build
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DPOST_INSTALL_HOOKS:BOOL=OFF
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-}

Copied: libmirage/repos/community-x86_64/PKGBUILD (from rev 236563, 
libmirage/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-06-12 20:36:24 UTC (rev 236564)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Mateusz Herych 
+# Contributor: Charles 

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

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:35:31
  Author: heftig
Revision: 236563

3.1.0-1

Added:
  cdemu-daemon/trunk/0001-Patch-system-daemon-for-Arch-friendliness.patch
(from rev 236562, cdemu-daemon/trunk/system-arch.patch)
Modified:
  cdemu-daemon/trunk/PKGBUILD
  cdemu-daemon/trunk/cdemu-daemon.install
Deleted:
  cdemu-daemon/trunk/system-arch.patch

--+
 0001-Patch-system-daemon-for-Arch-friendliness.patch |  151 +
 PKGBUILD |   15 -
 cdemu-daemon.install |6 
 system-arch.patch|  124 -
 4 files changed, 158 insertions(+), 138 deletions(-)

Copied: cdemu-daemon/trunk/0001-Patch-system-daemon-for-Arch-friendliness.patch 
(from rev 236562, cdemu-daemon/trunk/system-arch.patch)
===
--- 0001-Patch-system-daemon-for-Arch-friendliness.patch
(rev 0)
+++ 0001-Patch-system-daemon-for-Arch-friendliness.patch2017-06-12 
20:35:31 UTC (rev 236563)
@@ -0,0 +1,151 @@
+From 17d054bc9fb02bbb557f9de68e29e715a17f3ee6 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Mon, 12 Jun 2017 22:22:51 +0200
+Subject: [PATCH] Patch system daemon for Arch-friendliness
+
+---
+ cdemu-daemon/CMakeLists.txt | 15 ++-
+ cdemu-daemon/system/cdemu-daemon-dbus.conf  |  9 +++--
+ cdemu-daemon/system/cdemu-daemon-system.sh  |  6 +++---
+ cdemu-daemon/system/cdemu-daemon.conf   |  8 
+ cdemu-daemon/system/cdemu-daemon.service.in | 10 ++
+ cdemu-daemon/system/net.sf.cdemu.CDEmuDaemon.service.in |  4 ++--
+ 6 files changed, 44 insertions(+), 8 deletions(-)
+ create mode 100644 cdemu-daemon/system/cdemu-daemon.conf
+ create mode 100644 cdemu-daemon/system/cdemu-daemon.service.in
+
+diff --git a/cdemu-daemon/CMakeLists.txt b/cdemu-daemon/CMakeLists.txt
+index 76feb818d09a57af..c6abd56b82484b6f 100644
+--- a/cdemu-daemon/CMakeLists.txt
 b/cdemu-daemon/CMakeLists.txt
+@@ -15,7 +15,7 @@ set (CDEMU_DAEMON_INTERFACE_VERSION_MINOR 0)
+ include (GNUInstallDirs)
+ 
+ # Options
+-option (SYSTEM_BUS_SERVICE "Install CDEmu daemon as D-Bus system bus service" 
off)
++option (SYSTEM_BUS_SERVICE "Install CDEmu daemon as D-Bus system bus service" 
on)
+ option (SESSION_BUS_SERVICE "Install CDEmu daemon as D-Bus session bus 
service" on)
+ 
+ # If install prefix is /usr, override the sysconf dir to be /etc instead of 
/usr/etc
+@@ -45,6 +45,10 @@ configure_file (
+ ${PROJECT_SOURCE_DIR}/system/net.sf.cdemu.CDEmuDaemon.service.in
+ ${PROJECT_BINARY_DIR}/system/net.sf.cdemu.CDEmuDaemon.service
+ )
++configure_file (
++${PROJECT_SOURCE_DIR}/system/cdemu-daemon.service.in
++${PROJECT_BINARY_DIR}/system/cdemu-daemon.service
++)
+ 
+ # Global definitions
+ add_definitions (-std=c99) # We're compiling using C99
+@@ -121,13 +125,22 @@ if (SYSTEM_BUS_SERVICE)
+ DESTINATION ${CMAKE_INSTALL_LIBEXECDIR}
+ )
+ install (
++FILES ${PROJECT_BINARY_DIR}/system/cdemu-daemon.service
++DESTINATION ${CMAKE_INSTALL_LIBDIR}/systemd/system/
++)
++install (
+ FILES ${PROJECT_BINARY_DIR}/system/net.sf.cdemu.CDEmuDaemon.service
+ DESTINATION ${CMAKE_INSTALL_DATADIR}/dbus-1/system-services/
+ )
+ install (
+ FILES system/cdemu-daemon-dbus.conf
+ DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/dbus-1/system.d
+ )
++install (
++FILES system/cdemu-daemon.conf
++RENAME cdemu-daemon
++DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/conf.d
++)
+ endif ()
+ 
+ # Translations; we use the version provided by our FindIntlTool.cmake
+diff --git a/cdemu-daemon/system/cdemu-daemon-dbus.conf 
b/cdemu-daemon/system/cdemu-daemon-dbus.conf
+index c450d78cf03bce6a..e86b62cf0437a9fd 100644
+--- a/cdemu-daemon/system/cdemu-daemon-dbus.conf
 b/cdemu-daemon/system/cdemu-daemon-dbus.conf
+@@ -11,8 +11,13 @@
+ 
+ 
+ 
+-
+-
++
++
++
++
++
++
++
+ 
+ 
+ 
+diff --git a/cdemu-daemon/system/cdemu-daemon-system.sh 
b/cdemu-daemon/system/cdemu-daemon-system.sh
+index d9ab60aaff559400..735c24442a82e8bc 100755
+--- a/cdemu-daemon/system/cdemu-daemon-system.sh
 b/cdemu-daemon/system/cdemu-daemon-system.sh
+@@ -1,15 +1,15 @@
+ #!/bin/sh
+ # Starts the CDEmu daemon instance on D-Bus *system* bus. Optional
+ # configuration (number of devices, audio driver, log file) are read
+-# from /etc/sysconfig/cdemu-daemon
++# from /etc/conf.d/cdemu-daemon
+ 
+ # Default settings
+ NUM_DEVICES=1
+ AUDIO_DRIVER=null
+-LOG_FILE=/tmp/cdemu-daemon.log
++LOG_FILE=/var/log/cdemu-daemon.log
+ 
+ # Read the settings
+-CONFIG_FILE=/etc/sysconfig/cdemu-daemon
++CONFIG_FILE=/etc/conf.d/cdemu-daemon
+ 
+ if [ 

[arch-commits] Commit in cdemu-client/trunk (PKGBUILD fixes.diff)

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:33:36
  Author: heftig
Revision: 236562

3.1.0-1

Modified:
  cdemu-client/trunk/PKGBUILD
  cdemu-client/trunk/fixes.diff

+
 PKGBUILD   |8 
 fixes.diff |   13 -
 2 files changed, 4 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 20:18:19 UTC (rev 236561)
+++ PKGBUILD2017-06-12 20:33:36 UTC (rev 236562)
@@ -4,8 +4,8 @@
 # Contributor: Charles Lindsay 
 
 pkgname=cdemu-client
-pkgver=3.0.4
-pkgrel=3
+pkgver=3.1.0
+pkgrel=1
 pkgdesc="Simple command-line client for controlling cdemu-daemon"
 arch=(any)
 url="http://cdemu.sourceforge.net/;
@@ -15,8 +15,8 @@
 conflicts=('cdemu')
 source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
 fixes.diff)
-sha256sums=('e415a98672ac1ed908dab2ba43a94bc0af7653c470a87d6d9338a59d9856fd86'
-'f918450e3eff8123b830817fe763702f123f8ad6d0186798aa2defa8f0f9782f')
+sha256sums=('336a078b0b1f70de81d7ee92ee3e3a1e1957843accc4e90a876aeef28648d868'
+'908f919e779832eb05013cb0e3ecb49795afddaa4aa8cb946ec78c3218acf534')
 
 prepare() {
   mkdir build

Modified: fixes.diff
===
--- fixes.diff  2017-06-12 20:18:19 UTC (rev 236561)
+++ fixes.diff  2017-06-12 20:33:36 UTC (rev 236562)
@@ -12,16 +12,3 @@
  )
  
  install (
-diff --git i/cdemu-client/src/cdemu w/cdemu-client/src/cdemu
-index 85bdcc5f30cdffef..a3fa132492266a7a 100755
 i/cdemu-client/src/cdemu
-+++ w/cdemu-client/src/cdemu
-@@ -116,7 +116,7 @@ class cmd_load (object):
- 
- def __call__ (self, proxy, arguments):
- # We need to pass absolute filenames to daemon
--filenames = map(os.path.abspath, arguments.image_file)
-+filenames = [os.path.abspath(f) for f in arguments.image_file]
- 
- # Gather parser parameters into a dictionary
- parser_params = {}


[arch-commits] Commit in vhba-module/repos (10 files)

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:18:19
  Author: heftig
Revision: 236561

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  vhba-module/repos/community-testing-i686/
  vhba-module/repos/community-testing-i686/60-vhba.rules
(from rev 236560, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-i686/PKGBUILD
(from rev 236560, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-i686/dkms.conf
(from rev 236560, vhba-module/trunk/dkms.conf)
  vhba-module/repos/community-testing-i686/vhba-module.install
(from rev 236560, vhba-module/trunk/vhba-module.install)
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 236560, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 236560, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/dkms.conf
(from rev 236560, vhba-module/trunk/dkms.conf)
  vhba-module/repos/community-testing-x86_64/vhba-module.install
(from rev 236560, vhba-module/trunk/vhba-module.install)

--+
 community-testing-i686/60-vhba.rules |1 
 community-testing-i686/PKGBUILD  |   50 +
 community-testing-i686/dkms.conf |9 
 community-testing-i686/vhba-module.install   |   15 +++
 community-testing-x86_64/60-vhba.rules   |1 
 community-testing-x86_64/PKGBUILD|   50 +
 community-testing-x86_64/dkms.conf   |9 
 community-testing-x86_64/vhba-module.install |   15 +++
 8 files changed, 150 insertions(+)

Copied: vhba-module/repos/community-testing-i686/60-vhba.rules (from rev 
236560, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-i686/60-vhba.rules(rev 0)
+++ community-testing-i686/60-vhba.rules2017-06-12 20:18:19 UTC (rev 
236561)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-i686/PKGBUILD (from rev 236560, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-06-12 20:18:19 UTC (rev 236561)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
+_extramodules=extramodules-4.11-ARCH
+pkgrel=1
+pkgdesc="Kernel module that emulates SCSI devices"
+url="http://cdemu.sourceforge.net/;
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12' linux)
+source=("http://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
+
+prepare() {
+  cd $pkgbase-$pkgver
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
+}
+
+package_vhba-module() {
+  depends=('linux>=4.11' 'linux<4.12')
+  install=vhba-module.install
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 vhba.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+}
+
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-i686/dkms.conf (from rev 236560, 
vhba-module/trunk/dkms.conf)
===
--- community-testing-i686/dkms.conf(rev 0)
+++ community-testing-i686/dkms.conf2017-06-12 20:18:19 UTC (rev 236561)
@@ -0,0 +1,9 @@
+PACKAGE_NAME="vhba-module"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KERNELRELEASE=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="vhba"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/scsi"

Copied: vhba-module/repos/community-testing-i686/vhba-module.install (from rev 
236560, vhba-module/trunk/vhba-module.install)
===
--- community-testing-i686/vhba-module.install  (rev 0)
+++ 

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

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:17:09
  Author: heftig
Revision: 236560

20170610-1

Added:
  vhba-module/trunk/dkms.conf
Modified:
  vhba-module/trunk/PKGBUILD
  vhba-module/trunk/vhba-module.install
Deleted:
  vhba-module/trunk/0001-VHBA-compatibility-fix-for-upcoming-kernel-4.11.patch

+
 0001-VHBA-compatibility-fix-for-upcoming-kernel-4.11.patch |   41 ---
 PKGBUILD   |   59 +--
 dkms.conf  |9 +
 vhba-module.install|   14 --
 4 files changed, 44 insertions(+), 79 deletions(-)

Deleted: 0001-VHBA-compatibility-fix-for-upcoming-kernel-4.11.patch
===
--- 0001-VHBA-compatibility-fix-for-upcoming-kernel-4.11.patch  2017-06-12 
20:12:17 UTC (rev 236559)
+++ 0001-VHBA-compatibility-fix-for-upcoming-kernel-4.11.patch  2017-06-12 
20:17:09 UTC (rev 236560)
@@ -1,41 +0,0 @@
-From 7dc0d29a3ef6e45455f537c8187791446ca7e1e5 Mon Sep 17 00:00:00 2001
-From: Rok Mandeljc 
-Date: Sun, 26 Mar 2017 17:09:42 +0200
-Subject: [PATCH] VHBA: compatibility fix for upcoming kernel 4.11
-
-As per Bug #104, from 4.11-rc2 on, we need to include linux/sched/signal.h
-instead of linux/sched.h

- vhba-module/vhba.c | 7 ++-
- 1 file changed, 6 insertions(+), 1 deletion(-)
-
-diff --git a/vhba-module/vhba.c b/vhba-module/vhba.c
-index 4a14a10e955000bb..ff30e4cb51b61ec6 100644
 a/vhba-module/vhba.c
-+++ b/vhba-module/vhba.c
-@@ -18,16 +18,21 @@
-  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-  */
- 
-+#include 
-+
- #include 
- #include 
- #include 
- #include 
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
-+#include 
-+#else
- #include 
-+#endif
- #include 
- #include 
- #include 
- #include 
--#include 
- #ifdef CONFIG_COMPAT
- #include 
- #endif
--- 
-2.12.2
-

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 20:12:17 UTC (rev 236559)
+++ PKGBUILD2017-06-12 20:17:09 UTC (rev 236560)
@@ -3,45 +3,48 @@
 # Contributor: Mateusz Herych 
 # Contributor: Charles Lindsay 
 
-pkgname=vhba-module
-pkgver=20161009
+pkgbase=vhba-module
+pkgname=(vhba-module vhba-module-dkms)
+pkgver=20170610
 _extramodules=extramodules-4.11-ARCH
-pkgrel=13
+pkgrel=1
 pkgdesc="Kernel module that emulates SCSI devices"
-arch=('i686' 'x86_64')
 url="http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux>=4.11' 'linux<4.12')
-makedepends=('linux-headers>=4.11' 'linux-headers<4.12')
-options=(!makeflags)
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-0001-VHBA-compatibility-fix-for-upcoming-kernel-4.11.patch
-'60-vhba.rules')
-sha256sums=('cd062d8bd61ccb8137622f837a0dadb771cc935981d8bccb2ad4de0bd11f33d9'
-'a756b78865bfc1ea7eda447cd209035f9da7982174d03e643af3441d50ab3e08'
-'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b')
+arch=(i686 x86_64)
+license=(GPL)
+makedepends=('linux-headers>=4.11' 'linux-headers<4.12' linux)
+source=("http://downloads.sourceforge.net/cdemu/$pkgbase-$pkgver.tar.bz2;
+60-vhba.rules dkms.conf)
+sha256sums=('7970c93f989d9c4f2629371bf5ee7a76f95e4c12342c3320ddc528d0df02d9ec'
+'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b'
+'8cab0ebb4fee72069d63616b0983f105b98d1261e72e9bef5509a6e60bc382a7')
 
 prepare() {
-  cd $pkgname-$pkgver
-  patch -Np2 -i ../0001-VHBA-compatibility-fix-for-upcoming-kernel-4.11.patch
+  cd $pkgbase-$pkgver
 }
 
 build() {
-  cd $pkgname-$pkgver
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  make KDIR=/usr/lib/modules/$_kernver/build
+  cd $pkgbase-$pkgver
+  make KERNELRELEASE="$(cat /usr/lib/modules/$_extramodules/version)"
 }
 
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
-  install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
+package_vhba-module() {
+  depends=('linux>=4.11' 'linux<4.12')
+  install=vhba-module.install
 
-  cd $startdir
-  cp -f $install ${install}.pkg
-  true && install=${install}.pkg
-  sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/lib/modules/$_extramodules" -m644 vhba.ko
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
 }
 
+package_vhba-module-dkms() {
+  depends=(dkms)
+  provides=("vhba-module=$pkgver-$pkgrel")
+  conflicts=(vhba-module)
+
+  cd $pkgbase-$pkgver
+  install -Dt "$pkgdir/usr/src/$pkgbase-$pkgver" -m644 Makefile vhba.c 
../dkms.conf
+  install -Dt "$pkgdir/usr/lib/udev/rules.d" -m644 ../60-vhba.rules
+}
+
 # vim:set ts=2 sw=2 et:

Added: dkms.conf

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

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 20:12:17
  Author: heftig
Revision: 236559

3.1.0-1

Modified:
  libmirage/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 19:27:08 UTC (rev 236558)
+++ PKGBUILD2017-06-12 20:12:17 UTC (rev 236559)
@@ -4,7 +4,7 @@
 # Contributor: Charles Lindsay 
 
 pkgname=libmirage
-pkgver=3.0.5
+pkgver=3.1.0
 pkgrel=1
 pkgdesc="CD-ROM image (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) access 
library"
 arch=(i686 x86_64)
@@ -11,9 +11,9 @@
 url="http://cdemu.sourceforge.net/;
 license=(GPL)
 depends=(glib2 libsndfile libsamplerate zlib bzip2 xz shared-mime-info)
-makedepends=(gtk-doc gobject-introspection cmake)
+makedepends=(gtk-doc gobject-introspection cmake intltool)
 source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2)
-sha256sums=('225af44a447e4cc968ca1fa09c0939f5674072a0f91d71c73cd3aab83ded8e07')
+sha256sums=('b67ecc1056cf1986321d637f1a52cb36b0f5bec4fac08fd9c71075dcb7dd7363')
 
 prepare() {
   mkdir build


[arch-commits] Commit in backuppc/repos (32 files)

2017-06-12 Thread Sébastien Luttringer
Date: Monday, June 12, 2017 @ 19:27:08
  Author: seblu
Revision: 236558

archrelease: copy trunk to community-x86_64, community-i686

Added:
  backuppc/repos/community-i686/PKGBUILD
(from rev 236557, backuppc/trunk/PKGBUILD)
  backuppc/repos/community-i686/backuppc.httpd
(from rev 236557, backuppc/trunk/backuppc.httpd)
  backuppc/repos/community-i686/backuppc.install
(from rev 236557, backuppc/trunk/backuppc.install)
  backuppc/repos/community-i686/backuppc.profile.csh
(from rev 236557, backuppc/trunk/backuppc.profile.csh)
  backuppc/repos/community-i686/backuppc.profile.sh
(from rev 236557, backuppc/trunk/backuppc.profile.sh)
  backuppc/repos/community-i686/backuppc.service
(from rev 236557, backuppc/trunk/backuppc.service)
  backuppc/repos/community-i686/backuppc.sysusers
(from rev 236557, backuppc/trunk/backuppc.sysusers)
  backuppc/repos/community-i686/backuppc.tmpfiles
(from rev 236557, backuppc/trunk/backuppc.tmpfiles)
  backuppc/repos/community-x86_64/PKGBUILD
(from rev 236557, backuppc/trunk/PKGBUILD)
  backuppc/repos/community-x86_64/backuppc.httpd
(from rev 236557, backuppc/trunk/backuppc.httpd)
  backuppc/repos/community-x86_64/backuppc.install
(from rev 236557, backuppc/trunk/backuppc.install)
  backuppc/repos/community-x86_64/backuppc.profile.csh
(from rev 236557, backuppc/trunk/backuppc.profile.csh)
  backuppc/repos/community-x86_64/backuppc.profile.sh
(from rev 236557, backuppc/trunk/backuppc.profile.sh)
  backuppc/repos/community-x86_64/backuppc.service
(from rev 236557, backuppc/trunk/backuppc.service)
  backuppc/repos/community-x86_64/backuppc.sysusers
(from rev 236557, backuppc/trunk/backuppc.sysusers)
  backuppc/repos/community-x86_64/backuppc.tmpfiles
(from rev 236557, backuppc/trunk/backuppc.tmpfiles)
Deleted:
  backuppc/repos/community-i686/PKGBUILD
  backuppc/repos/community-i686/backuppc.httpd
  backuppc/repos/community-i686/backuppc.install
  backuppc/repos/community-i686/backuppc.profile.csh
  backuppc/repos/community-i686/backuppc.profile.sh
  backuppc/repos/community-i686/backuppc.service
  backuppc/repos/community-i686/backuppc.sysusers
  backuppc/repos/community-i686/backuppc.tmpfiles
  backuppc/repos/community-x86_64/PKGBUILD
  backuppc/repos/community-x86_64/backuppc.httpd
  backuppc/repos/community-x86_64/backuppc.install
  backuppc/repos/community-x86_64/backuppc.profile.csh
  backuppc/repos/community-x86_64/backuppc.profile.sh
  backuppc/repos/community-x86_64/backuppc.service
  backuppc/repos/community-x86_64/backuppc.sysusers
  backuppc/repos/community-x86_64/backuppc.tmpfiles

---+
 /PKGBUILD |  262 
 /backuppc.httpd   |   42 +
 /backuppc.install |   46 +
 /backuppc.profile.csh |2 
 /backuppc.profile.sh  |6 
 /backuppc.service |   22 ++
 /backuppc.sysusers|2 
 /backuppc.tmpfiles|2 
 community-i686/PKGBUILD   |  129 ---
 community-i686/backuppc.httpd |   21 --
 community-i686/backuppc.install   |   23 --
 community-i686/backuppc.profile.csh   |1 
 community-i686/backuppc.profile.sh|3 
 community-i686/backuppc.service   |   11 -
 community-i686/backuppc.sysusers  |1 
 community-i686/backuppc.tmpfiles  |1 
 community-x86_64/PKGBUILD |  129 ---
 community-x86_64/backuppc.httpd   |   21 --
 community-x86_64/backuppc.install |   23 --
 community-x86_64/backuppc.profile.csh |1 
 community-x86_64/backuppc.profile.sh  |3 
 community-x86_64/backuppc.service |   11 -
 community-x86_64/backuppc.sysusers|1 
 community-x86_64/backuppc.tmpfiles|1 
 24 files changed, 384 insertions(+), 380 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 19:25:17 UTC (rev 236557)
+++ community-i686/PKGBUILD 2017-06-12 19:27:08 UTC (rev 236558)
@@ -1,129 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgname=backuppc
-pkgver=4.1.3
-_xsver=0.54
-_rbpcver=3.0.9.7
-pkgrel=2
-pkgdesc='Enterprise-grade system for backing up Linux, Windows and MacOS PCs'
-url='https://github.com/backuppc/backuppc/'
-license=('GPL2')
-arch=('x86_64' 'i686')
-makedepends=('git')
-depends=('glibc' 'popt' 'perl' 'par2cmdline' 'perl-archive-zip' 
'perl-io-dirent'
- 'perl-file-listing' 'perl-time-modules' 'perl-cgi' 'perl-xml-rss')
-optdepends=('openssh: ssh transfert support'
-'rsync: rsync transfert support'
-'smbclient: smb/cifs transfert support'
-'rrdtool: graphs of the pool usage ')
-source=("https://github.com/backuppc/backuppc/releases/download/$pkgver/BackupPC-$pkgver.tar.gz;
-

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

2017-06-12 Thread Sébastien Luttringer
Date: Monday, June 12, 2017 @ 19:25:17
  Author: seblu
Revision: 236557

upgpkg: backuppc 4.1.3-3

- fix FS#54424
- bump rsync to 3.0.9.8
- bump xs to 0.56

Modified:
  backuppc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 18:52:59 UTC (rev 236556)
+++ PKGBUILD2017-06-12 19:25:17 UTC (rev 236557)
@@ -3,9 +3,9 @@
 
 pkgname=backuppc
 pkgver=4.1.3
-_xsver=0.54
-_rbpcver=3.0.9.7
-pkgrel=2
+_xsver=0.56
+_rbpcver=3.0.9.8
+pkgrel=3
 pkgdesc='Enterprise-grade system for backing up Linux, Windows and MacOS PCs'
 url='https://github.com/backuppc/backuppc/'
 license=('GPL2')
@@ -32,8 +32,8 @@
 "etc/httpd/conf/extra/$pkgname.conf"
 "etc/$pkgname/$pkgname.users")
 md5sums=('a6df71ba828723ccaf1282bd24bca318'
- '412295cb6cfe8a0dcb9fd5cf93645ea0'
- 'b5680e57298026283287f672e9151b85'
+ 'a5d1c55970cb0291ef6841d60d32c1e7'
+ 'e18122758348301b1862c60f20a7e42b'
  '9d798d275eb737bcfd035d5277b6b4ce'
  'd90840387358e5dd230cace0b2d6b53a'
  'bda3ec3f4c75521c6869279eb16af2f8'
@@ -68,13 +68,13 @@
 
   msg2 'backuppc-xs'
   cd "$srcdir"/BackupPC-XS-$_xsver
-  perl Makefile.PL
+  perl Makefile.PL INSTALLDIRS=vendor
   make -j1 # parallel build fail
   make install DESTDIR="$pkgdir"
 
   msg2 'backuppc'
   cd "$srcdir"/BackupPC-$pkgver
-  export PERLLIB="$pkgdir/usr/lib/perl5/site_perl/"
+  export PERLLIB="$pkgdir/usr/lib/perl5/vendor_perl/"
   perl configure.pl \
 --batch \
 --no-set-perms \
@@ -123,7 +123,9 @@
   chmod 750 -R var/lib/$pkgname
   chmod 640 etc/$pkgname/{config.pl,hosts}
   # no /run
-  rm -r "$pkgdir"/run
+  rm -rv "$pkgdir"/run
+  # no core_perl directory
+  rm -rv "$pkgdir"/usr/lib/perl5/core_perl
 }
 
 # vim:set ts=2 sw=2 et:


[arch-commits] Commit in gnome-tweak-tool/repos/extra-any (PKGBUILD PKGBUILD)

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 19:22:49
  Author: heftig
Revision: 298713

archrelease: copy trunk to extra-any

Added:
  gnome-tweak-tool/repos/extra-any/PKGBUILD
(from rev 298712, gnome-tweak-tool/trunk/PKGBUILD)
Deleted:
  gnome-tweak-tool/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-12 19:22:23 UTC (rev 298712)
+++ PKGBUILD2017-06-12 19:22:49 UTC (rev 298713)
@@ -1,40 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=gnome-tweak-tool
-pkgver=3.24.0+3+g01bffca
-pkgrel=1
-pkgdesc="Customize advanced GNOME 3 options"
-arch=(any)
-url="https://wiki.gnome.org/Apps/GnomeTweakTool;
-license=(GPL)
-depends=(gnome-settings-daemon python2-gobject)
-makedepends=(intltool gnome-common git)
-groups=(gnome-extra)
-_commit=01bffca3a608572a6f253f6cff0dd57dca3f9b9d  # gnome-3-24
-source=("git+https://git.gnome.org/browse/gnome-tweak-tool#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  sed -i '1s|python$|&2|' gnome-tweak-tool
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr 
--libexecdir=/usr/lib/$pkgname
-  make
-}
-
-package() {
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-tweak-tool/repos/extra-any/PKGBUILD (from rev 298712, 
gnome-tweak-tool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 19:22:49 UTC (rev 298713)
@@ -0,0 +1,39 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=gnome-tweak-tool
+pkgver=3.24.1
+pkgrel=1
+pkgdesc="Customize advanced GNOME 3 options"
+arch=(any)
+url="https://wiki.gnome.org/Apps/GnomeTweakTool;
+license=(GPL)
+depends=(gnome-settings-daemon python2-gobject)
+makedepends=(intltool gnome-common git)
+groups=(gnome-extra)
+_commit=c2d12aa59a74739051a9ddbd131059e76cd67d74  # tags/3.24.1^0
+source=("git+https://git.gnome.org/browse/gnome-tweak-tool#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr 
--libexecdir=/usr/lib/$pkgname
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-06-12 Thread Jan Steffens
Date: Monday, June 12, 2017 @ 19:22:23
  Author: heftig
Revision: 298712

3.24.1-1

Modified:
  gnome-tweak-tool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 19:06:43 UTC (rev 298711)
+++ PKGBUILD2017-06-12 19:22:23 UTC (rev 298712)
@@ -2,7 +2,7 @@
 # Contributor: Ionut Biru 
 
 pkgname=gnome-tweak-tool
-pkgver=3.24.0+3+g01bffca
+pkgver=3.24.1
 pkgrel=1
 pkgdesc="Customize advanced GNOME 3 options"
 arch=(any)
@@ -11,7 +11,7 @@
 depends=(gnome-settings-daemon python2-gobject)
 makedepends=(intltool gnome-common git)
 groups=(gnome-extra)
-_commit=01bffca3a608572a6f253f6cff0dd57dca3f9b9d  # gnome-3-24
+_commit=c2d12aa59a74739051a9ddbd131059e76cd67d74  # tags/3.24.1^0
 source=("git+https://git.gnome.org/browse/gnome-tweak-tool#commit=$_commit;)
 sha256sums=('SKIP')
 
@@ -22,7 +22,6 @@
 
 prepare() {
   cd $pkgname
-  sed -i '1s|python$|&2|' gnome-tweak-tool
   NOCONFIGURE=1 ./autogen.sh
 }
 


[arch-commits] Commit in (dbus-c++)

2017-06-12 Thread Bartłomiej Piotrowski
Date: Monday, June 12, 2017 @ 19:06:43
  Author: bpiotrowski
Revision: 298711

drop to community

Deleted:
  dbus-c++/


[arch-commits] Commit in dbus-c++/repos (6 files)

2017-06-12 Thread Bartłomiej Piotrowski
Date: Monday, June 12, 2017 @ 18:52:59
  Author: bpiotrowski
Revision: 236556

archrelease: copy trunk to community-i686, community-x86_64

Added:
  dbus-c++/repos/community-i686/
  dbus-c++/repos/community-i686/PKGBUILD
(from rev 236555, dbus-c++/trunk/PKGBUILD)
  dbus-c++/repos/community-i686/gcc47.patch
(from rev 236555, dbus-c++/trunk/gcc47.patch)
  dbus-c++/repos/community-x86_64/
  dbus-c++/repos/community-x86_64/PKGBUILD
(from rev 236555, dbus-c++/trunk/PKGBUILD)
  dbus-c++/repos/community-x86_64/gcc47.patch
(from rev 236555, dbus-c++/trunk/gcc47.patch)

--+
 community-i686/PKGBUILD  |   39 +++
 community-i686/gcc47.patch   |   10 ++
 community-x86_64/PKGBUILD|   39 +++
 community-x86_64/gcc47.patch |   10 ++
 4 files changed, 98 insertions(+)

Copied: dbus-c++/repos/community-i686/PKGBUILD (from rev 236555, 
dbus-c++/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-12 18:52:59 UTC (rev 236556)
@@ -0,0 +1,39 @@
+# Maintainer: Ray Rashif 
+# Contributor: Xavier D. 
+# Contributor: Zarra 
+
+pkgname=dbus-c++
+_pkgname=lib$pkgname
+pkgver=0.9.0
+pkgrel=6
+pkgdesc="A C++ API for D-BUS"
+url="http://sourceforge.net/projects/dbus-cplusplus/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus>=1.2.0' 'glib2')
+makedepends=('autoconf' 'automake' 'libtool')
+source=("http://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/$pkgver/libdbus-c%2B%2B-$pkgver.tar.gz;
+ 'gcc47.patch')
+md5sums=('e752116f523fa88ef041e63d3dee4de2'
+ '9319b402b15f37d881b51bc758368900')
+
+build() {
+cd "$srcdir/$_pkgname-$pkgver"
+
+patch -Np0 -i "$srcdir/gcc47.patch"
+export LDFLAGS+=" -lexpat -lpthread" # -lpthread needed for i686
+
+./autogen.sh --prefix=/usr \
+ --disable-static \
+ --enable-glib \
+ --disable-ecore
+make
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dbus-c++/repos/community-i686/gcc47.patch (from rev 236555, 
dbus-c++/trunk/gcc47.patch)
===
--- community-i686/gcc47.patch  (rev 0)
+++ community-i686/gcc47.patch  2017-06-12 18:52:59 UTC (rev 236556)
@@ -0,0 +1,10 @@
+--- src/eventloop-integration.cpp.orig 2012-05-09 11:22:09.683290763 +0200
 src/eventloop-integration.cpp  2012-05-09 11:22:44.313288912 +0200
+@@ -38,6 +38,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ using namespace DBus;
+ using namespace std;

Copied: dbus-c++/repos/community-x86_64/PKGBUILD (from rev 236555, 
dbus-c++/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-06-12 18:52:59 UTC (rev 236556)
@@ -0,0 +1,39 @@
+# Maintainer: Ray Rashif 
+# Contributor: Xavier D. 
+# Contributor: Zarra 
+
+pkgname=dbus-c++
+_pkgname=lib$pkgname
+pkgver=0.9.0
+pkgrel=6
+pkgdesc="A C++ API for D-BUS"
+url="http://sourceforge.net/projects/dbus-cplusplus/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus>=1.2.0' 'glib2')
+makedepends=('autoconf' 'automake' 'libtool')
+source=("http://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/$pkgver/libdbus-c%2B%2B-$pkgver.tar.gz;
+ 'gcc47.patch')
+md5sums=('e752116f523fa88ef041e63d3dee4de2'
+ '9319b402b15f37d881b51bc758368900')
+
+build() {
+cd "$srcdir/$_pkgname-$pkgver"
+
+patch -Np0 -i "$srcdir/gcc47.patch"
+export LDFLAGS+=" -lexpat -lpthread" # -lpthread needed for i686
+
+./autogen.sh --prefix=/usr \
+ --disable-static \
+ --enable-glib \
+ --disable-ecore
+make
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dbus-c++/repos/community-x86_64/gcc47.patch (from rev 236555, 
dbus-c++/trunk/gcc47.patch)
===
--- community-x86_64/gcc47.patch(rev 0)
+++ community-x86_64/gcc47.patch2017-06-12 18:52:59 UTC (rev 236556)
@@ -0,0 +1,10 @@
+--- src/eventloop-integration.cpp.orig 2012-05-09 11:22:09.683290763 +0200
 src/eventloop-integration.cpp  2012-05-09 11:22:44.313288912 +0200
+@@ -38,6 +38,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ using namespace DBus;
+ using namespace std;


[arch-commits] Commit in (5 files)

2017-06-12 Thread Bartłomiej Piotrowski
Date: Monday, June 12, 2017 @ 18:52:55
  Author: bpiotrowski
Revision: 236555

extra2community: Moving dbus-c++ from extra to community

Added:
  dbus-c++/
  dbus-c++/repos/
  dbus-c++/trunk/
  dbus-c++/trunk/PKGBUILD
  dbus-c++/trunk/gcc47.patch

-+
 PKGBUILD|   39 +++
 gcc47.patch |   10 ++
 2 files changed, 49 insertions(+)

Added: dbus-c++/trunk/PKGBUILD
===
--- dbus-c++/trunk/PKGBUILD (rev 0)
+++ dbus-c++/trunk/PKGBUILD 2017-06-12 18:52:55 UTC (rev 236555)
@@ -0,0 +1,39 @@
+# Maintainer: Ray Rashif 
+# Contributor: Xavier D. 
+# Contributor: Zarra 
+
+pkgname=dbus-c++
+_pkgname=lib$pkgname
+pkgver=0.9.0
+pkgrel=6
+pkgdesc="A C++ API for D-BUS"
+url="http://sourceforge.net/projects/dbus-cplusplus/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus>=1.2.0' 'glib2')
+makedepends=('autoconf' 'automake' 'libtool')
+source=("http://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/$pkgver/libdbus-c%2B%2B-$pkgver.tar.gz;
+ 'gcc47.patch')
+md5sums=('e752116f523fa88ef041e63d3dee4de2'
+ '9319b402b15f37d881b51bc758368900')
+
+build() {
+cd "$srcdir/$_pkgname-$pkgver"
+
+patch -Np0 -i "$srcdir/gcc47.patch"
+export LDFLAGS+=" -lexpat -lpthread" # -lpthread needed for i686
+
+./autogen.sh --prefix=/usr \
+ --disable-static \
+ --enable-glib \
+ --disable-ecore
+make
+}
+
+package() {
+  cd "$srcdir/$_pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: dbus-c++/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: dbus-c++/trunk/gcc47.patch
===
--- dbus-c++/trunk/gcc47.patch  (rev 0)
+++ dbus-c++/trunk/gcc47.patch  2017-06-12 18:52:55 UTC (rev 236555)
@@ -0,0 +1,10 @@
+--- src/eventloop-integration.cpp.orig 2012-05-09 11:22:09.683290763 +0200
 src/eventloop-integration.cpp  2012-05-09 11:22:44.313288912 +0200
+@@ -38,6 +38,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ using namespace DBus;
+ using namespace std;


[arch-commits] Commit in (libffado)

2017-06-12 Thread Bartłomiej Piotrowski
Date: Monday, June 12, 2017 @ 18:50:58
  Author: bpiotrowski
Revision: 298710

extra2community: Moving libffado from extra to community

Deleted:
  libffado/


[arch-commits] Commit in libffado/repos (14 files)

2017-06-12 Thread Bartłomiej Piotrowski
Date: Monday, June 12, 2017 @ 18:50:36
  Author: bpiotrowski
Revision: 236554

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libffado/repos/community-i686/
  libffado/repos/community-i686/PKGBUILD
(from rev 236553, libffado/trunk/PKGBUILD)
  libffado/repos/community-i686/cpuinfo-parsing.patch
(from rev 236553, libffado/trunk/cpuinfo-parsing.patch)
  libffado/repos/community-i686/gcc-warnings.patch
(from rev 236553, libffado/trunk/gcc-warnings.patch)
  libffado/repos/community-i686/gcc6.patch
(from rev 236553, libffado/trunk/gcc6.patch)
  libffado/repos/community-i686/libxml++3.patch
(from rev 236553, libffado/trunk/libxml++3.patch)
  libffado/repos/community-i686/python2-qt.patch
(from rev 236553, libffado/trunk/python2-qt.patch)
  libffado/repos/community-x86_64/
  libffado/repos/community-x86_64/PKGBUILD
(from rev 236553, libffado/trunk/PKGBUILD)
  libffado/repos/community-x86_64/cpuinfo-parsing.patch
(from rev 236553, libffado/trunk/cpuinfo-parsing.patch)
  libffado/repos/community-x86_64/gcc-warnings.patch
(from rev 236553, libffado/trunk/gcc-warnings.patch)
  libffado/repos/community-x86_64/gcc6.patch
(from rev 236553, libffado/trunk/gcc6.patch)
  libffado/repos/community-x86_64/libxml++3.patch
(from rev 236553, libffado/trunk/libxml++3.patch)
  libffado/repos/community-x86_64/python2-qt.patch
(from rev 236553, libffado/trunk/python2-qt.patch)

+
 community-i686/PKGBUILD|   65 
 community-i686/cpuinfo-parsing.patch   |   20 
 community-i686/gcc-warnings.patch  | 2208 +++
 community-i686/gcc6.patch  |   19 
 community-i686/libxml++3.patch |  252 +++
 community-i686/python2-qt.patch|  241 +++
 community-x86_64/PKGBUILD  |   65 
 community-x86_64/cpuinfo-parsing.patch |   20 
 community-x86_64/gcc-warnings.patch| 2208 +++
 community-x86_64/gcc6.patch|   19 
 community-x86_64/libxml++3.patch   |  252 +++
 community-x86_64/python2-qt.patch  |  241 +++
 12 files changed, 5610 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 236553:236554 to see the changes.


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

2017-06-12 Thread Antonio Rojas
Date: Monday, June 12, 2017 @ 18:43:08
  Author: arojas
Revision: 236552

Fix typo (FS#54426)

Modified:
  flite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 18:17:40 UTC (rev 236551)
+++ PKGBUILD2017-06-12 18:43:08 UTC (rev 236552)
@@ -4,7 +4,7 @@
 pkgname=flite
 pkgver=2.0.0
 pkgrel=3
-pkgdesc="A lighweight speech synthesis engine"
+pkgdesc="A lightweight speech synthesis engine"
 arch=(i686 x86_64)
 url="http://cmuflite.org;
 license=(custom)


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

2017-06-12 Thread Sven-Hendrik Haase
Date: Monday, June 12, 2017 @ 18:17:28
  Author: svenstaro
Revision: 236550

upgpkg: pypy3 5.8.0-1

Modified:
  pypy3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 18:01:09 UTC (rev 236549)
+++ PKGBUILD2017-06-12 18:17:28 UTC (rev 236550)
@@ -2,7 +2,7 @@
 # Maintainer: Sven-Hendrik Haase 
 
 pkgname=pypy3
-pkgver=5.7.1
+pkgver=5.8.0
 pkgrel=1
 pkgdesc="A Python3 implementation written in Python, JIT enabled"
 url="http://pypy.org;
@@ -13,9 +13,17 @@
 'tk: tk module')
 options=(!buildflags)
 license=('custom:MIT')
-source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;)
-sha512sums=('f8ead8214ad7d89fe80e24d97b13ece7f2c80b2f11446257a2eab0e3025fc7d8fec26474b0e9eb2b2e3ccd629532dd062829459361b601add12e40793bd5aa60')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;
+
"opensslfix.patch::https://bitbucket.org/pypy/pypy/commits/29c9a89359e4cd684f586ceaf8d99ff28fd8aa6d/raw;)
+sha512sums=('d78b4c899a5643028664365ed973a7b292a8e5b3989cc75203cd381ea3cda7dd73121c574726e23dca86e8364fcfcf42c372c9deee438c805f30d6e1c4ac115a'
+
'2860e20c3fba647c9857046d8808c2f3f88e34b29087dffb59c387f98b48b86f28f0d0c802b02885606716586e5536820e3ea75777ba37b2a458e65da04997cd')
 
+prepare() {
+  cd pypy3-v${pkgver}-src
+
+  patch -Np1 < ${srcdir}/opensslfix.patch
+}
+
 build() {
   cd pypy3-v${pkgver}-src/pypy/goal
 


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

2017-06-12 Thread Sven-Hendrik Haase
Date: Monday, June 12, 2017 @ 18:17:40
  Author: svenstaro
Revision: 236551

archrelease: copy trunk to community-x86_64

Added:
  pypy3/repos/community-x86_64/PKGBUILD
(from rev 236550, pypy3/trunk/PKGBUILD)
Deleted:
  pypy3/repos/community-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-12 18:17:28 UTC (rev 236550)
+++ PKGBUILD2017-06-12 18:17:40 UTC (rev 236551)
@@ -1,52 +0,0 @@
-# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
-# Maintainer: Sven-Hendrik Haase 
-
-pkgname=pypy3
-pkgver=5.7.1
-pkgrel=1
-pkgdesc="A Python3 implementation written in Python, JIT enabled"
-url="http://pypy.org;
-arch=('x86_64')
-depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
-makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
-optdepends=('sqlite: sqlite module'
-'tk: tk module')
-options=(!buildflags)
-license=('custom:MIT')
-source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;)
-sha512sums=('f8ead8214ad7d89fe80e24d97b13ece7f2c80b2f11446257a2eab0e3025fc7d8fec26474b0e9eb2b2e3ccd629532dd062829459361b601add12e40793bd5aa60')
-
-build() {
-  cd pypy3-v${pkgver}-src/pypy/goal
-
-  python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
-
-  # Compile binary modules
-  PYTHONPATH=../.. ./pypy3-c ../tool/build_cffi_imports.py
-}
-
-package() {
-  cd pypy3-v${pkgver}-src
-
-  # Prepare installation
-  python2 pypy/tool/release/package.py --archive-name pypy --targetdir .
-  mkdir unpacked
-  tar xf pypy.tar.bz2 -C unpacked
-
-  # Install pypy
-  cd unpacked
-  install -Dm755 pypy/bin/pypy3 "${pkgdir}"/opt/pypy3/bin/pypy3
-  install -Dm755 pypy/bin/libpypy3-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
-  cp -r pypy/include pypy/lib_pypy pypy/lib-python pypy/site-packages 
"${pkgdir}"/opt/pypy3
-  cd ..
-
-  # Install symlink
-  mkdir -p "${pkgdir}"/usr/bin
-  ln -s /opt/pypy3/bin/pypy3 "${pkgdir}"/usr/bin/pypy3
-
-  # Install misc stuff
-  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
-  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
-  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
-}
-# vim: ts=2 sw=2 et:

Copied: pypy3/repos/community-x86_64/PKGBUILD (from rev 236550, 
pypy3/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 18:17:40 UTC (rev 236551)
@@ -0,0 +1,60 @@
+# $Id: PKGBUILD 95035 2013-08-04 09:44:24Z svenstaro $
+# Maintainer: Sven-Hendrik Haase 
+
+pkgname=pypy3
+pkgver=5.8.0
+pkgrel=1
+pkgdesc="A Python3 implementation written in Python, JIT enabled"
+url="http://pypy.org;
+arch=('x86_64')
+depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib')
+makedepends=('python2' 'sqlite' 'tk' 'python2-pycparser')
+optdepends=('sqlite: sqlite module'
+'tk: tk module')
+options=(!buildflags)
+license=('custom:MIT')
+source=("https://bitbucket.org/pypy/pypy/downloads/pypy3-v${pkgver}-src.tar.bz2;
+
"opensslfix.patch::https://bitbucket.org/pypy/pypy/commits/29c9a89359e4cd684f586ceaf8d99ff28fd8aa6d/raw;)
+sha512sums=('d78b4c899a5643028664365ed973a7b292a8e5b3989cc75203cd381ea3cda7dd73121c574726e23dca86e8364fcfcf42c372c9deee438c805f30d6e1c4ac115a'
+
'2860e20c3fba647c9857046d8808c2f3f88e34b29087dffb59c387f98b48b86f28f0d0c802b02885606716586e5536820e3ea75777ba37b2a458e65da04997cd')
+
+prepare() {
+  cd pypy3-v${pkgver}-src
+
+  patch -Np1 < ${srcdir}/opensslfix.patch
+}
+
+build() {
+  cd pypy3-v${pkgver}-src/pypy/goal
+
+  python2 ../../rpython/bin/rpython -Ojit --shared targetpypystandalone
+
+  # Compile binary modules
+  PYTHONPATH=../.. ./pypy3-c ../tool/build_cffi_imports.py
+}
+
+package() {
+  cd pypy3-v${pkgver}-src
+
+  # Prepare installation
+  python2 pypy/tool/release/package.py --archive-name pypy --targetdir .
+  mkdir unpacked
+  tar xf pypy.tar.bz2 -C unpacked
+
+  # Install pypy
+  cd unpacked
+  install -Dm755 pypy/bin/pypy3 "${pkgdir}"/opt/pypy3/bin/pypy3
+  install -Dm755 pypy/bin/libpypy3-c.so "${pkgdir}"/usr/lib/libpypy3-c.so
+  cp -r pypy/include pypy/lib_pypy pypy/lib-python pypy/site-packages 
"${pkgdir}"/opt/pypy3
+  cd ..
+
+  # Install symlink
+  mkdir -p "${pkgdir}"/usr/bin
+  ln -s /opt/pypy3/bin/pypy3 "${pkgdir}"/usr/bin/pypy3
+
+  # Install misc stuff
+  install -Dm644 README.rst "${pkgdir}"/opt/pypy3/README.rst
+  install -Dm644 LICENSE "${pkgdir}"/opt/pypy3/LICENSE
+  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/pypy3/LICENSE
+}
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in mate-panel/repos (4 files)

2017-06-12 Thread Antonio Rojas
Date: Monday, June 12, 2017 @ 18:01:09
  Author: arojas
Revision: 236549

archrelease: copy trunk to community-i686, community-x86_64

Added:
  mate-panel/repos/community-i686/PKGBUILD
(from rev 236548, mate-panel/trunk/PKGBUILD)
  mate-panel/repos/community-x86_64/PKGBUILD
(from rev 236548, mate-panel/trunk/PKGBUILD)
Deleted:
  mate-panel/repos/community-i686/PKGBUILD
  mate-panel/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   72 
 community-i686/PKGBUILD   |   36 --
 community-x86_64/PKGBUILD |   36 --
 3 files changed, 72 insertions(+), 72 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 18:00:30 UTC (rev 236548)
+++ community-i686/PKGBUILD 2017-06-12 18:01:09 UTC (rev 236549)
@@ -1,36 +0,0 @@
-# Contributor: Martin Wimpress 
-
-pkgname=mate-panel
-pkgver=1.18.2
-pkgrel=1
-pkgdesc="The MATE Panel"
-url="http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus-glib' 'libwnck3' 'libcanberra' 'libmateweather' 'libsm' 
'mate-menus' 'mate-desktop')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-groups=('mate')
-conflicts=('mate-panel-gtk3')
-replaces=('mate-panel-gtk3')
-sha1sums=('844e211e5bbf2109e310cb64397b8eae2eaae8de')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-introspection
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-panel/repos/community-i686/PKGBUILD (from rev 236548, 
mate-panel/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-12 18:01:09 UTC (rev 236549)
@@ -0,0 +1,36 @@
+# Contributor: Martin Wimpress 
+
+pkgname=mate-panel
+pkgver=1.18.3
+pkgrel=1
+pkgdesc="The MATE Panel"
+url="http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('dbus-glib' 'libwnck3' 'libcanberra' 'libmateweather' 'libsm' 
'mate-menus' 'mate-desktop')
+makedepends=('intltool' 'itstool' 'gobject-introspection')
+source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+groups=('mate')
+conflicts=('mate-panel-gtk3')
+replaces=('mate-panel-gtk3')
+sha1sums=('9307cdfa2e34cf18c4863e73023c562d42cef150')
+
+build() {
+cd ${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname} \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-introspection
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=656231
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd ${pkgname}-${pkgver}
+make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-12 18:00:30 UTC (rev 236548)
+++ community-x86_64/PKGBUILD   2017-06-12 18:01:09 UTC (rev 236549)
@@ -1,36 +0,0 @@
-# Contributor: Martin Wimpress 
-
-pkgname=mate-panel
-pkgver=1.18.2
-pkgrel=1
-pkgdesc="The MATE Panel"
-url="http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('dbus-glib' 'libwnck3' 'libcanberra' 'libmateweather' 'libsm' 
'mate-menus' 'mate-desktop')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
-source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-groups=('mate')
-conflicts=('mate-panel-gtk3')
-replaces=('mate-panel-gtk3')
-sha1sums=('844e211e5bbf2109e310cb64397b8eae2eaae8de')
-
-build() {
-cd ${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname} \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-introspection
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=656231
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-make DESTDIR="${pkgdir}" install
-}

Copied: mate-panel/repos/community-x86_64/PKGBUILD (from rev 236548, 
mate-panel/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-06-12 18:01:09 UTC (rev 236549)
@@ -0,0 +1,36 @@
+# Contributor: Martin Wimpress 
+
+pkgname=mate-panel

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

2017-06-12 Thread Antonio Rojas
Date: Monday, June 12, 2017 @ 18:00:30
  Author: arojas
Revision: 236548

Update to 1.18.3

Modified:
  mate-panel/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 17:08:36 UTC (rev 236547)
+++ PKGBUILD2017-06-12 18:00:30 UTC (rev 236548)
@@ -1,7 +1,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-panel
-pkgver=1.18.2
+pkgver=1.18.3
 pkgrel=1
 pkgdesc="The MATE Panel"
 url="http://mate-desktop.org;
@@ -13,7 +13,7 @@
 groups=('mate')
 conflicts=('mate-panel-gtk3')
 replaces=('mate-panel-gtk3')
-sha1sums=('844e211e5bbf2109e310cb64397b8eae2eaae8de')
+sha1sums=('9307cdfa2e34cf18c4863e73023c562d42cef150')
 
 build() {
 cd ${pkgname}-${pkgver}


[arch-commits] Commit in wxgtk/repos (8 files)

2017-06-12 Thread Antonio Rojas
Date: Monday, June 12, 2017 @ 17:53:00
  Author: arojas
Revision: 298707

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  wxgtk/repos/extra-i686/PKGBUILD
(from rev 298706, wxgtk/trunk/PKGBUILD)
  wxgtk/repos/extra-i686/make-abicheck-non-fatal.patch
(from rev 298706, wxgtk/trunk/make-abicheck-non-fatal.patch)
  wxgtk/repos/extra-x86_64/PKGBUILD
(from rev 298706, wxgtk/trunk/PKGBUILD)
  wxgtk/repos/extra-x86_64/make-abicheck-non-fatal.patch
(from rev 298706, wxgtk/trunk/make-abicheck-non-fatal.patch)
Deleted:
  wxgtk/repos/extra-i686/PKGBUILD
  wxgtk/repos/extra-i686/make-abicheck-non-fatal.patch
  wxgtk/repos/extra-x86_64/PKGBUILD
  wxgtk/repos/extra-x86_64/make-abicheck-non-fatal.patch

+
 /PKGBUILD  |  190 +++
 /make-abicheck-non-fatal.patch |   30 
 extra-i686/PKGBUILD|   91 
 extra-i686/make-abicheck-non-fatal.patch   |   15 --
 extra-x86_64/PKGBUILD  |   91 
 extra-x86_64/make-abicheck-non-fatal.patch |   15 --
 6 files changed, 220 insertions(+), 212 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-06-12 17:52:23 UTC (rev 298706)
+++ extra-i686/PKGBUILD 2017-06-12 17:53:00 UTC (rev 298707)
@@ -1,91 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-
-pkgbase=wxgtk
-pkgname=(wxgtk2 wxgtk3 wxgtk-common)
-pkgver=3.0.3.1
-pkgrel=5
-arch=('i686' 'x86_64')
-url="https://wxwidgets.org;
-license=('custom:wxWindows')
-makedepends=('gst-plugins-base' 'gconf' 'webkitgtk2' 'glu' 'webkit2gtk' 
'libnotify')
-options=('!emptydirs')
-source=(https://github.com/wxWidgets/wxWidgets/releases/download/v$pkgver/wxWidgets-$pkgver.tar.bz2
-make-abicheck-non-fatal.patch 
wxgtk-webkit2gtk.patch::"https://github.com/wxWidgets/wxWidgets/commit/ec6e54bc.patch;)
-sha1sums=('ea785822d0f1c3290707bda6da570e596b3ec85a'
-  'dfe38650c655395b90bf082b5734c4093508bfa3'
-  'c9d013552b3078d7a9700df897333c2960207b0f')
-
-prepare() {
-  cd wxWidgets-${pkgver}
-
-  # C++ ABI check is too strict and breaks with GCC 5.1
-  # https://bugzilla.redhat.com/show_bug.cgi?id=1200611
-  patch -Np1 -i ../make-abicheck-non-fatal.patch
-
-  # Support webkit2gtk
-  sed -e 's|setup0.h|setup.h|g' -i ../wxgtk-webkit2gtk.patch
-  patch -p1 -i ../wxgtk-webkit2gtk.patch
-
-  cd ..
-  cp -r wxWidgets-${pkgver} wxWidgets-${pkgver}-gtk3
-}
-
-build() {
-  cd wxWidgets-${pkgver}
-  ./autogen.sh
-  ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl 
--enable-unicode \
---enable-graphics_ctx --enable-mediactrl --enable-webview 
--with-regex=builtin \
---with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
---disable-precomp-headers
-  make
-  make -C locale allmo
-
-  cd ../wxWidgets-${pkgver}-gtk3
-  ./autogen.sh
-  ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=3 --with-opengl 
--enable-unicode \
---enable-graphics_ctx --enable-mediactrl --enable-webview 
--with-regex=builtin \
---with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
---disable-precomp-headers
-  make
-}
-
-package_wxgtk-common() {
-  pkgdesc='Common libraries and headers for wxgtk2 and wxgtk3'
-  depends=('zlib' 'gcc-libs' 'expat')
-
-  cd wxWidgets-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -r "$pkgdir"/usr/{bin/wx-config,lib/{wx,libwx_gtk*}}
-
-  install -D -m644 docs/licence.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_wxgtk2() {
-  pkgdesc='GTK+2 implementation of wxWidgets API for GUI'
-  depends=('gtk2' 'gst-plugins-base-libs' 'libsm' 'wxgtk-common' 'libnotify')
-  optdepends=('webkitgtk2: for webview support')
-  conflicts=('wxgtk')
-  provides=('wxgtk')
-  replaces=('wxgtk')
-
-  cd wxWidgets-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  rm -r "$pkgdir"/usr/{include,share,lib/libwx_base*,bin/wxrc*}
-  
-  install -D -m644 docs/licence.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_wxgtk3() {
-  pkgdesc='GTK+3 implementation of wxWidgets API for GUI'
-  depends=('gtk3' 'gst-plugins-base-libs' 'libsm' 'wxgtk-common' 'libnotify')
-  optdepends=('webkit2gtk: for webview support')
-  conflicts=('wxgtk<3.0.3.1-2')
-
-  cd wxWidgets-${pkgver}-gtk3
-  make DESTDIR="${pkgdir}" install  
-  rm -r "$pkgdir"/usr/{include,share,lib/libwx_base*,bin/wxrc*}
-  mv "$pkgdir"/usr/bin/wx-config{,-gtk3}
-   
-  install -D -m644 docs/licence.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: wxgtk/repos/extra-i686/PKGBUILD (from rev 298706, wxgtk/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-06-12 17:53:00 UTC (rev 298707)
@@ -0,0 +1,95 @@
+# $Id$
+# Maintainer: Eric Bélanger 

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

2017-06-12 Thread Antonio Rojas
Date: Monday, June 12, 2017 @ 17:52:23
  Author: arojas
Revision: 298706

Fix wxgtk2 webview regression after webkit2gtk port (FS#54419)

Modified:
  wxgtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:18:20 UTC (rev 298705)
+++ PKGBUILD2017-06-12 17:52:23 UTC (rev 298706)
@@ -4,7 +4,7 @@
 pkgbase=wxgtk
 pkgname=(wxgtk2 wxgtk3 wxgtk-common)
 pkgver=3.0.3.1
-pkgrel=5
+pkgrel=6
 arch=('i686' 'x86_64')
 url="https://wxwidgets.org;
 license=('custom:wxWindows')
@@ -11,10 +11,12 @@
 makedepends=('gst-plugins-base' 'gconf' 'webkitgtk2' 'glu' 'webkit2gtk' 
'libnotify')
 options=('!emptydirs')
 
source=(https://github.com/wxWidgets/wxWidgets/releases/download/v$pkgver/wxWidgets-$pkgver.tar.bz2
-make-abicheck-non-fatal.patch 
wxgtk-webkit2gtk.patch::"https://github.com/wxWidgets/wxWidgets/commit/ec6e54bc.patch;)
+make-abicheck-non-fatal.patch 
wxgtk-webkit2gtk.patch::"https://github.com/wxWidgets/wxWidgets/commit/ec6e54bc.patch;
+
wxgtk2-fix-webview.patch::"https://github.com/wxWidgets/wxWidgets/commit/fd247cca.patch;)
 sha1sums=('ea785822d0f1c3290707bda6da570e596b3ec85a'
   'dfe38650c655395b90bf082b5734c4093508bfa3'
-  'c9d013552b3078d7a9700df897333c2960207b0f')
+  'c9d013552b3078d7a9700df897333c2960207b0f'
+  '550c368a68eec8b6c32c61da289df76e4dd5a798')
 
 prepare() {
   cd wxWidgets-${pkgver}
@@ -26,6 +28,8 @@
   # Support webkit2gtk
   sed -e 's|setup0.h|setup.h|g' -i ../wxgtk-webkit2gtk.patch
   patch -p1 -i ../wxgtk-webkit2gtk.patch
+  # fix webview after webkit2gtk port
+  patch -p1 -i ../wxgtk2-fix-webview.patch
 
   cd ..
   cp -r wxWidgets-${pkgver} wxWidgets-${pkgver}-gtk3


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

2017-06-12 Thread Jaroslav Lichtblau
Date: Monday, June 12, 2017 @ 17:08:36
  Author: jlichtblau
Revision: 236547

archrelease: copy trunk to community-i686, community-x86_64

Added:
  wxsqlite3/repos/community-i686/PKGBUILD
(from rev 236546, wxsqlite3/trunk/PKGBUILD)
  wxsqlite3/repos/community-x86_64/PKGBUILD
(from rev 236546, wxsqlite3/trunk/PKGBUILD)
Deleted:
  wxsqlite3/repos/community-i686/PKGBUILD
  wxsqlite3/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 17:08:21 UTC (rev 236546)
+++ community-i686/PKGBUILD 2017-06-12 17:08:36 UTC (rev 236547)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Maintainer : Jaroslav Lichtblau 
-# Contributor: napa3um 
-# Contributor: Scott Furry 
-
-pkgname=wxsqlite3
-pkgver=3.5.3
-pkgrel=1
-pkgdesc="wxWidgets wrapper for SQLite3"
-arch=('i686' 'x86_64')
-url="http://utelle.github.io/wxsqlite3;
-license=('custom:wxWindows')
-depends=('wxgtk')
-source=($pkgname-$pkgver.tar.gz::https://github.com/utelle/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('4a538b20cb694b821fe842b17bcb9ee0f5a2c666ff12c33d77c6d5abce2e1118')
-
-build() {
-  cd $pkgname-$pkgver
-
-  autoreconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-# license
-  install -Dm644 LICENCE.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: wxsqlite3/repos/community-i686/PKGBUILD (from rev 236546, 
wxsqlite3/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-12 17:08:36 UTC (rev 236547)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer : speps 
+# Maintainer : Jaroslav Lichtblau 
+# Contributor: napa3um 
+# Contributor: Scott Furry 
+
+pkgname=wxsqlite3
+pkgver=3.5.5
+pkgrel=1
+pkgdesc="wxWidgets wrapper for SQLite3"
+arch=('i686' 'x86_64')
+url="http://utelle.github.io/wxsqlite3;
+license=('custom:wxWindows')
+depends=('wxgtk3')
+source=($pkgname-$pkgver.tar.gz::https://github.com/utelle/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('303aba23d5d3349335f6a9e56a35f0c55641b4af9c330f7074def71384e49303')
+
+build() {
+  cd $pkgname-$pkgver
+
+  autoreconf
+  ./configure --with-wx-config=/usr/bin/wx-config-gtk3 --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="${pkgdir}" install
+
+# license
+  install -Dm644 LICENCE.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-12 17:08:21 UTC (rev 236546)
+++ community-x86_64/PKGBUILD   2017-06-12 17:08:36 UTC (rev 236547)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer : speps 
-# Maintainer : Jaroslav Lichtblau 
-# Contributor: napa3um 
-# Contributor: Scott Furry 
-
-pkgname=wxsqlite3
-pkgver=3.5.3
-pkgrel=1
-pkgdesc="wxWidgets wrapper for SQLite3"
-arch=('i686' 'x86_64')
-url="http://utelle.github.io/wxsqlite3;
-license=('custom:wxWindows')
-depends=('wxgtk')
-source=($pkgname-$pkgver.tar.gz::https://github.com/utelle/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('4a538b20cb694b821fe842b17bcb9ee0f5a2c666ff12c33d77c6d5abce2e1118')
-
-build() {
-  cd $pkgname-$pkgver
-
-  autoreconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="${pkgdir}" install
-
-# license
-  install -Dm644 LICENCE.txt "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: wxsqlite3/repos/community-x86_64/PKGBUILD (from rev 236546, 
wxsqlite3/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-06-12 17:08:36 UTC (rev 236547)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer : speps 
+# Maintainer : Jaroslav Lichtblau 
+# Contributor: napa3um 
+# Contributor: Scott Furry 
+
+pkgname=wxsqlite3
+pkgver=3.5.5
+pkgrel=1
+pkgdesc="wxWidgets wrapper for SQLite3"
+arch=('i686' 'x86_64')
+url="http://utelle.github.io/wxsqlite3;
+license=('custom:wxWindows')
+depends=('wxgtk3')
+source=($pkgname-$pkgver.tar.gz::https://github.com/utelle/$pkgname/archive/v$pkgver.tar.gz)
+sha256sums=('303aba23d5d3349335f6a9e56a35f0c55641b4af9c330f7074def71384e49303')
+
+build() {
+  cd $pkgname-$pkgver
+
+  autoreconf
+ 

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

2017-06-12 Thread Jaroslav Lichtblau
Date: Monday, June 12, 2017 @ 17:08:21
  Author: jlichtblau
Revision: 236546

upgpkg: wxsqlite3 3.5.5-1 - new upstream release

Modified:
  wxsqlite3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 17:07:45 UTC (rev 236545)
+++ PKGBUILD2017-06-12 17:08:21 UTC (rev 236546)
@@ -5,21 +5,21 @@
 # Contributor: Scott Furry 
 
 pkgname=wxsqlite3
-pkgver=3.5.3
+pkgver=3.5.5
 pkgrel=1
 pkgdesc="wxWidgets wrapper for SQLite3"
 arch=('i686' 'x86_64')
 url="http://utelle.github.io/wxsqlite3;
 license=('custom:wxWindows')
-depends=('wxgtk')
+depends=('wxgtk3')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/utelle/$pkgname/archive/v$pkgver.tar.gz)
-sha256sums=('4a538b20cb694b821fe842b17bcb9ee0f5a2c666ff12c33d77c6d5abce2e1118')
+sha256sums=('303aba23d5d3349335f6a9e56a35f0c55641b4af9c330f7074def71384e49303')
 
 build() {
   cd $pkgname-$pkgver
 
   autoreconf
-  ./configure --prefix=/usr
+  ./configure --with-wx-config=/usr/bin/wx-config-gtk3 --prefix=/usr
   make
 }
 


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

2017-06-12 Thread Jaroslav Lichtblau
Date: Monday, June 12, 2017 @ 17:07:45
  Author: jlichtblau
Revision: 236545

archrelease: copy trunk to community-any

Added:
  youtube-dl/repos/community-any/PKGBUILD
(from rev 236544, youtube-dl/trunk/PKGBUILD)
Deleted:
  youtube-dl/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-12 17:07:35 UTC (rev 236544)
+++ PKGBUILD2017-06-12 17:07:45 UTC (rev 236545)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger 
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=youtube-dl
-pkgver=2017.06.05
-pkgrel=1
-pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
-arch=('any')
-url="http://rg3.github.io/youtube-dl/;
-license=('custom')
-depends=('python' 'python-setuptools')
-optdepends=('ffmpeg: for video post-processing'
-'rtmpdump: for rtmp streams support'
-'atomicparsley: for embedding thumbnails into m4a files')
-source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('b54ca848490285909d0830c04c19376c2d78da74d8de0056387b11ba34234e8c'
-'SKIP')
-validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
-  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
-
-prepare() {
-  cd ${pkgname}
-  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
-  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
-}
-
-package() {
-  cd ${pkgname}
-  python setup.py install --root="${pkgdir}/" --optimize=1
-  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
- "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
-  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: youtube-dl/repos/community-any/PKGBUILD (from rev 236544, 
youtube-dl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 17:07:45 UTC (rev 236545)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Eric Bélanger 
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=youtube-dl
+pkgver=2017.06.12
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/;
+license=('custom')
+depends=('python' 'python-setuptools')
+optdepends=('ffmpeg: for video post-processing'
+'rtmpdump: for rtmp streams support'
+'atomicparsley: for embedding thumbnails into m4a files')
+source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
+sha256sums=('3cacd4aaaffd07eecd54eaea84b2a0537df3e5fc7bd5cd3bc96fa34dc8438ddc'
+'SKIP')
+validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
+  'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 
+
+prepare() {
+  cd ${pkgname}
+  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+  sed -i 's|etc/fish/completions|share/fish/completions|' setup.py
+}
+
+package() {
+  cd ${pkgname}
+  python setup.py install --root="${pkgdir}/" --optimize=1
+  mv 
"${pkgdir}/usr/share/bash-completion/completions/youtube-dl.bash-completion" \
+ "${pkgdir}/usr/share/bash-completion/completions/youtube-dl"
+  install -Dm644 youtube-dl.zsh 
"${pkgdir}/usr/share/zsh/site-functions/_youtube-dl"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}


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

2017-06-12 Thread Jaroslav Lichtblau
Date: Monday, June 12, 2017 @ 17:07:35
  Author: jlichtblau
Revision: 236544

upgpkg: youtube-dl 2017.06.12-1 - new upstream release

Modified:
  youtube-dl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 16:22:45 UTC (rev 236543)
+++ PKGBUILD2017-06-12 17:07:35 UTC (rev 236544)
@@ -3,7 +3,7 @@
 # Maintainer: Jaroslav Lichtblau 
 
 pkgname=youtube-dl
-pkgver=2017.06.05
+pkgver=2017.06.12
 pkgrel=1
 pkgdesc="A small command-line program to download videos from YouTube.com and 
a few more sites"
 arch=('any')
@@ -14,7 +14,7 @@
 'rtmpdump: for rtmp streams support'
 'atomicparsley: for embedding thumbnails into m4a files')
 
source=(http://youtube-dl.org/downloads/${pkgver}/${pkgname}-${pkgver}.tar.gz{,.sig})
-sha256sums=('b54ca848490285909d0830c04c19376c2d78da74d8de0056387b11ba34234e8c'
+sha256sums=('3cacd4aaaffd07eecd54eaea84b2a0537df3e5fc7bd5cd3bc96fa34dc8438ddc'
 'SKIP')
 validpgpkeys=('7D33D762FD6C35130481347FDB4B54CBA4826A18'  # Philipp Hagemeister
   'ED7F5BF46B3BBED81C87368E2C393E0F18A9236D') # Sergey M. 


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

2017-06-12 Thread Alexander Rødseth
Date: Monday, June 12, 2017 @ 16:22:39
  Author: arodseth
Revision: 236542

archrelease: copy trunk to community-x86_64, community-i686

Added:
  mosh/repos/community-i686/PKGBUILD
(from rev 236541, mosh/trunk/PKGBUILD)
  mosh/repos/community-x86_64/PKGBUILD
(from rev 236541, mosh/trunk/PKGBUILD)
Deleted:
  mosh/repos/community-i686/PKGBUILD
  mosh/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 16:21:06 UTC (rev 236541)
+++ community-i686/PKGBUILD 2017-06-12 16:22:39 UTC (rev 236542)
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
-# Maintainer: Alexander F Rødseth 
-# Contributor: Christian Neukirchen 
-# Contributor: Thomas Weißschuh 
-
-pkgname=mosh
-pkgver=1.3.0
-pkgrel=3
-pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
-arch=('x86_64' 'i686')
-url='https://mosh.mit.edu/'
-license=('GPL3')
-depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
-source=("https://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz;)
-sha256sums=('320e12f461e55d71566597976bd9440ba6c5265fa68fbf614c6f1c8401f93376')
-options=('!emptydirs')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-  install -Dm644 "$pkgname-$pkgver/conf/bash-completion/completions/$pkgname" \
-"$pkgdir/usr/share/bash-completion/completions/$pkgname"
-}
-
-# getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
-# vim:set ts=2 sw=2 et:

Copied: mosh/repos/community-i686/PKGBUILD (from rev 236541, 
mosh/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-12 16:22:39 UTC (rev 236542)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
+# Maintainer: Alexander F Rødseth 
+# Contributor: Christian Neukirchen 
+# Contributor: Thomas Weißschuh 
+
+pkgname=mosh
+pkgver=1.3.0
+pkgrel=4
+pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
+arch=('x86_64' 'i686')
+url='https://mosh.org/'
+license=('GPL3')
+depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
+source=("https://mosh.org/$pkgname-$pkgver.tar.gz;)
+sha256sums=('320e12f461e55d71566597976bd9440ba6c5265fa68fbf614c6f1c8401f93376')
+options=('!emptydirs')
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+  install -Dm644 "$pkgname-$pkgver/conf/bash-completion/completions/$pkgname" \
+"$pkgdir/usr/share/bash-completion/completions/$pkgname"
+}
+
+# getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-12 16:21:06 UTC (rev 236541)
+++ community-x86_64/PKGBUILD   2017-06-12 16:22:39 UTC (rev 236542)
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 68685 2012-03-31 16:54:07Z arodseth $
-# Maintainer: Alexander F Rødseth 
-# Contributor: Christian Neukirchen 
-# Contributor: Thomas Weißschuh 
-
-pkgname=mosh
-pkgver=1.3.0
-pkgrel=3
-pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
-arch=('x86_64' 'i686')
-url='https://mosh.mit.edu/'
-license=('GPL3')
-depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
-source=("https://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz;)
-sha256sums=('320e12f461e55d71566597976bd9440ba6c5265fa68fbf614c6f1c8401f93376')
-options=('!emptydirs')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-  install -Dm644 "$pkgname-$pkgver/conf/bash-completion/completions/$pkgname" \
-"$pkgdir/usr/share/bash-completion/completions/$pkgname"
-}
-
-# getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
-# vim:set ts=2 sw=2 et:

Copied: mosh/repos/community-x86_64/PKGBUILD (from rev 236541, 
mosh/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-06-12 16:22:39 UTC (rev 236542)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 68685 

[arch-commits] Commit in trickle/repos (6 files)

2017-06-12 Thread Jaroslav Lichtblau
Date: Monday, June 12, 2017 @ 16:22:45
  Author: jlichtblau
Revision: 236543

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  trickle/repos/community-staging-i686/
  trickle/repos/community-staging-i686/PKGBUILD
(from rev 236541, trickle/trunk/PKGBUILD)
  trickle/repos/community-staging-i686/fix-crasher.patch
(from rev 236541, trickle/trunk/fix-crasher.patch)
  trickle/repos/community-staging-x86_64/
  trickle/repos/community-staging-x86_64/PKGBUILD
(from rev 236542, trickle/trunk/PKGBUILD)
  trickle/repos/community-staging-x86_64/fix-crasher.patch
(from rev 236542, trickle/trunk/fix-crasher.patch)

+
 community-staging-i686/PKGBUILD|   42 +
 community-staging-i686/fix-crasher.patch   |   86 +++
 community-staging-x86_64/PKGBUILD  |   42 +
 community-staging-x86_64/fix-crasher.patch |   86 +++
 4 files changed, 256 insertions(+)

Copied: trickle/repos/community-staging-i686/PKGBUILD (from rev 236541, 
trickle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 16:22:45 UTC (rev 236543)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor Romain Bouchaud-Leduc 
+
+pkgname=trickle
+pkgver=1.07
+pkgrel=9
+pkgdesc="Lightweight userspace bandwidth shaper"
+arch=('i686' 'x86_64')
+url="http://monkey.org/~marius/trickle;
+license=('BSD')
+depends=('libevent')
+source=("http://monkey.org/~marius/trickle/${pkgname}-${pkgver}.tar.gz;
+"fix-crasher.patch")
+md5sums=('860ebc4abbbd82957c20a28bd9390d7d'
+ 'a072091bce131e9f7229bff85ed5858c')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  
+  # FS#27549
+  sed -i 's|^_select(int|select(int|' trickle-overload.c
+
+  # FS#35872
+  patch -Np1 -i "${srcdir}/fix-crasher.patch"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  
+  ./configure --prefix=/usr \
+  --mandir=/usr/share/man
+  sed -i "s|.*in_addr_t.*||g" config.h
+  make -j1
+}
+
+package(){
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Copied: trickle/repos/community-staging-i686/fix-crasher.patch (from rev 
236541, trickle/trunk/fix-crasher.patch)
===
--- community-staging-i686/fix-crasher.patch(rev 0)
+++ community-staging-i686/fix-crasher.patch2017-06-12 16:22:45 UTC (rev 
236543)
@@ -0,0 +1,86 @@
+diff --git a/trickle-overload.c b/trickle-overload.c
+index e72eb0c..9254e89 100644
+--- a/trickle-overload.c
 b/trickle-overload.c
+@@ -393,18 +393,14 @@ struct _pollfd {
+ }
+ 
+ static struct delay *
+-select_shift(struct delayhead *dhead, struct timeval *inittv,
++select_shift(struct delayhead *dhead, struct timeval *difftv,
+ struct timeval **delaytv)
+ {
+-  struct timeval curtv, difftv;
+   struct delay *d;
+   struct sockdesc *sd;
+ 
+-  gettimeofday(, NULL);
+-  timersub(, inittv, );
+-
+   TAILQ_FOREACH(d, dhead, next) {
+-  if (timercmp(>delaytv, , >))
++  if (timercmp(>delaytv, difftv, >))
+   break;
+   sd = d->sd;
+ 
+@@ -413,7 +409,7 @@ struct _pollfd {
+   }
+ 
+   if (d != NULL)
+-  timersub(>delaytv, , *delaytv);
++  timersub(>delaytv, difftv, *delaytv);
+   else 
+   *delaytv = NULL;
+ 
+@@ -431,8 +427,8 @@ struct _pollfd {
+ {
+   struct sockdesc *sd;
+   fd_set *fdsets[] = { wfds, rfds }, *fds;
+-  struct timeval *delaytv, *selecttv = NULL, *timeout = NULL, _timeout,
+-  inittv, curtv, difftv;
++  struct timeval *delaytv, _delaytv, *selecttv = NULL, *timeout = NULL,
++  _timeout, inittv, curtv, difftv;
+   short which;
+   struct delayhead dhead;
+   struct delay *d, *_d;
+@@ -462,15 +458,18 @@ struct _pollfd {
+   FD_ISSET(sd->sock, fds) &&
+   select_delay(, sd, which)) {
+   FD_CLR(sd->sock, fds);
+-  nfds--;
+   }
+ 
+   gettimeofday(, NULL);
+   curtv = inittv;
+   d = TAILQ_FIRST();
+-  delaytv = d != NULL ? >delaytv : NULL;
++  if (d != NULL) {
++  _delaytv = d->delaytv;
++  delaytv = &_delaytv;
++  } else
++  delaytv = NULL;
++  timersub(, , );
+  again:
+-  timersub(, , );
+   selecttv = NULL;
+ 
+   if (delaytv != NULL)
+@@ -498,15 +497,15 @@ struct _pollfd {
+ #endif /* DEBUG */
+ 
+   if (ret == 0 && delaytv != NULL && selecttv == delaytv) {
+- 

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

2017-06-12 Thread Alexander Rødseth
Date: Monday, June 12, 2017 @ 16:21:06
  Author: arodseth
Revision: 236541

upgpkg: mosh 1.3.0-4

Modified:
  mosh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 15:00:45 UTC (rev 236540)
+++ PKGBUILD2017-06-12 16:21:06 UTC (rev 236541)
@@ -5,13 +5,13 @@
 
 pkgname=mosh
 pkgver=1.3.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Mobile shell, surviving disconnects with local echo and line editing'
 arch=('x86_64' 'i686')
-url='https://mosh.mit.edu/'
+url='https://mosh.org/'
 license=('GPL3')
 depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 
'libutempter')
-source=("https://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz;)
+source=("https://mosh.org/$pkgname-$pkgver.tar.gz;)
 sha256sums=('320e12f461e55d71566597976bd9440ba6c5265fa68fbf614c6f1c8401f93376')
 options=('!emptydirs')
 
@@ -30,4 +30,4 @@
 }
 
 # getver: raw.githubusercontent.com/mobile-shell/mosh/master/ChangeLog
-# vim:set ts=2 sw=2 et:
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in nginx-mod-geoip2 (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 15:00:45
  Author: mtorromeo
Revision: 236540

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-geoip2/repos/
  nginx-mod-geoip2/repos/community-i686/
  nginx-mod-geoip2/repos/community-i686/PKGBUILD
(from rev 236539, nginx-mod-geoip2/trunk/PKGBUILD)
  nginx-mod-geoip2/repos/community-x86_64/
  nginx-mod-geoip2/repos/community-x86_64/PKGBUILD
(from rev 236539, nginx-mod-geoip2/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-geoip2/repos/community-i686/PKGBUILD (from rev 236539, 
nginx-mod-geoip2/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 15:00:45 UTC (rev 236540)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-geoip2
+pkgver=2.0
+pkgrel=1
+
+_modname="ngx_http_geoip2_module"
+_nginxver=1.12.0
+
+pkgdesc="Nginx GeoIP2 module"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'libmaxminddb')
+url="https://github.com/leev/ngx_http_geoip2_module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/leev/ngx_http_geoip2_module/archive/$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'ebb4652c4f9a2e1ee31fddefc4c93ff78e651a4b2727d3453d026bccbd708d99')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-geoip2/repos/community-x86_64/PKGBUILD (from rev 236539, 
nginx-mod-geoip2/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 15:00:45 UTC (rev 236540)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-geoip2
+pkgver=2.0
+pkgrel=1
+
+_modname="ngx_http_geoip2_module"
+_nginxver=1.12.0
+
+pkgdesc="Nginx GeoIP2 module"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'libmaxminddb')
+url="https://github.com/leev/ngx_http_geoip2_module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/leev/ngx_http_geoip2_module/archive/$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'ebb4652c4f9a2e1ee31fddefc4c93ff78e651a4b2727d3453d026bccbd708d99')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


[arch-commits] Commit in (3 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 15:00:31
  Author: mtorromeo
Revision: 236539

Add nginx-mod-geoip2

Added:
  nginx-mod-geoip2/
  nginx-mod-geoip2/trunk/
  nginx-mod-geoip2/trunk/PKGBUILD

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

Added: nginx-mod-geoip2/trunk/PKGBUILD
===
--- nginx-mod-geoip2/trunk/PKGBUILD (rev 0)
+++ nginx-mod-geoip2/trunk/PKGBUILD 2017-06-12 15:00:31 UTC (rev 236539)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-geoip2
+pkgver=2.0
+pkgrel=1
+
+_modname="ngx_http_geoip2_module"
+_nginxver=1.12.0
+
+pkgdesc="Nginx GeoIP2 module"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'libmaxminddb')
+url="https://github.com/leev/ngx_http_geoip2_module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/leev/ngx_http_geoip2_module/archive/$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'ebb4652c4f9a2e1ee31fddefc4c93ff78e651a4b2727d3453d026bccbd708d99')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


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


[arch-commits] Commit in libmaxminddb (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 14:57:23
  Author: mtorromeo
Revision: 236538

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libmaxminddb/repos/
  libmaxminddb/repos/community-i686/
  libmaxminddb/repos/community-i686/PKGBUILD
(from rev 236537, libmaxminddb/trunk/PKGBUILD)
  libmaxminddb/repos/community-x86_64/
  libmaxminddb/repos/community-x86_64/PKGBUILD
(from rev 236537, libmaxminddb/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   44 
 community-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: libmaxminddb/repos/community-i686/PKGBUILD (from rev 236537, 
libmaxminddb/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 14:57:23 UTC (rev 236538)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: frank AT apsu DOT be
+
+pkgname=(libmaxminddb mmdblookup)
+
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="MaxMind GeoIP2 database - split package with library and utilities"
+license=('Apache')
+arch=('i686' 'x86_64')
+url="http://dev.maxmind.com/geoip/geoip2/downloadable/;
+optdepends=('geoip2-database: IP geolocation databases')
+source=("https://github.com/maxmind/libmaxminddb/releases/download/$pkgver/libmaxminddb-$pkgver.tar.gz;)
+sha256sums=('9fa2b3341c9c88117f58454dfb2dd104915a337d93c8a9a735931a63b37f7bfa')
+
+build() {
+   cd "$srcdir"/libmaxminddb-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make check
+}
+
+package_libmaxminddb() {
+   pkgdesc="MaxMindDB GeoIP2 database library"
+   depends=('glibc')
+
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make PREFIX=/usr DESTDIR="$pkgdir" install
+   rm -rf "$pkgdir"/usr/{bin,share/man/man1}
+}
+
+package_mmdblookup() {
+   pkgdesc="MaxMindDB GeoIP2 lookup utility"
+   depends=('libmaxminddb')
+
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make PREFIX=/usr DESTDIR="$pkgdir" install
+   rm -rf "$pkgdir"/usr/{lib,include,share/man/man3}
+}

Copied: libmaxminddb/repos/community-x86_64/PKGBUILD (from rev 236537, 
libmaxminddb/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 14:57:23 UTC (rev 236538)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: frank AT apsu DOT be
+
+pkgname=(libmaxminddb mmdblookup)
+
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="MaxMind GeoIP2 database - split package with library and utilities"
+license=('Apache')
+arch=('i686' 'x86_64')
+url="http://dev.maxmind.com/geoip/geoip2/downloadable/;
+optdepends=('geoip2-database: IP geolocation databases')
+source=("https://github.com/maxmind/libmaxminddb/releases/download/$pkgver/libmaxminddb-$pkgver.tar.gz;)
+sha256sums=('9fa2b3341c9c88117f58454dfb2dd104915a337d93c8a9a735931a63b37f7bfa')
+
+build() {
+   cd "$srcdir"/libmaxminddb-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make check
+}
+
+package_libmaxminddb() {
+   pkgdesc="MaxMindDB GeoIP2 database library"
+   depends=('glibc')
+
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make PREFIX=/usr DESTDIR="$pkgdir" install
+   rm -rf "$pkgdir"/usr/{bin,share/man/man1}
+}
+
+package_mmdblookup() {
+   pkgdesc="MaxMindDB GeoIP2 lookup utility"
+   depends=('libmaxminddb')
+
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make PREFIX=/usr DESTDIR="$pkgdir" install
+   rm -rf "$pkgdir"/usr/{lib,include,share/man/man3}
+}


[arch-commits] Commit in geoip2-database (4 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 14:55:01
  Author: mtorromeo
Revision: 236537

archrelease: copy trunk to community-any

Added:
  geoip2-database/repos/
  geoip2-database/repos/community-any/
  geoip2-database/repos/community-any/PKGBUILD
(from rev 236536, geoip2-database/trunk/PKGBUILD)
  geoip2-database/repos/community-any/check-last-modified.sh
(from rev 236536, geoip2-database/trunk/check-last-modified.sh)

+
 PKGBUILD   |   39 +++
 check-last-modified.sh |   23 +++
 2 files changed, 62 insertions(+)

Copied: geoip2-database/repos/community-any/PKGBUILD (from rev 236536, 
geoip2-database/trunk/PKGBUILD)
===
--- repos/community-any/PKGBUILD(rev 0)
+++ repos/community-any/PKGBUILD2017-06-12 14:55:01 UTC (rev 236537)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname='geoip2-database'
+pkgver=20170611
+pkgrel=1
+pkgdesc="GeoLite2 IP geolocation databases compiled by MaxMind"
+arch=('any')
+url="https://dev.maxmind.com/geoip/geoip2/geolite2/;
+license=('custom:OPEN DATA LICENSE')
+source=(GeoLite2-City-$pkgver.tar.gz::http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz
+
GeoLite2-Country-$pkgver.tar.gz::http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz
+
GeoLite2-ASN-$pkgver.tar.gz::http://geolite.maxmind.com/download/geoip/database/GeoLite2-ASN.tar.gz)
+noextract=(GeoLite2-City-$pkgver.tar.gz
+   GeoLite2-Country-$pkgver.tar.gz
+   GeoLite2-ASN-$pkgver.tar.gz)
+sha256sums=('bc47ba58873a542046e974c7dbf5205f30ca207bf5dc5ed6b0223d70b93cb49e'
+'d76206e55cdaff823dbd09e376bf8089ee0b4ee618dcbd634e9c1cb461499068'
+'c8c2cd9c18902b6d27bf7a41c8008d82c6800861497beacd3c276ed661fe3939')
+
+prepare() {
+  cd "$srcdir"
+
+  for _db in GeoLite2-{City,Country,ASN}; do
+tar --strip-components=1 -xf $_db-$pkgver.tar.gz --wildcards "*/$_db.mmdb"
+  done
+
+  tar --strip-components=1 -xf GeoLite2-ASN-$pkgver.tar.gz --wildcards 
"*/COPYRIGHT.txt" "*/LICENSE.txt"
+}
+
+package() {
+  cd "$srcdir"
+
+  install -d "$pkgdir/usr/share/GeoIP"
+  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoLite2-{City,Country,ASN}.mmdb
+
+  install -Dm644 COPYRIGHT.txt 
"$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT.txt"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}

Copied: geoip2-database/repos/community-any/check-last-modified.sh (from rev 
236536, geoip2-database/trunk/check-last-modified.sh)
===
--- repos/community-any/check-last-modified.sh  (rev 0)
+++ repos/community-any/check-last-modified.sh  2017-06-12 14:55:01 UTC (rev 
236537)
@@ -0,0 +1,23 @@
+#!/bin/bash -e
+
+# Unicode characters taken from pactree.c
+UNICODE_IS_FUN="\u2514\u2500"
+
+verbose=0
+if [[ $1 == -v ]]; then
+   verbose=1
+fi
+
+URLS=(http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz
+  
http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz
+  http://geolite.maxmind.com/download/geoip/database/GeoLite2-ASN.tar.gz)
+
+for url in ${URLS[@]}; do
+   last_mod=$(curl -sI $url | grep -i ^Last-Modified: | cut -d' ' -f2- | 
tr -d '\r')
+   echo "$last_mod (${url##*/})"
+
+   if ((verbose)); then
+   build_id=$(curl -s $url | gzip -cd | grep -aoE '[0-9]{8} Build 
[0-9]*')
+   echo -e "${UNICODE_IS_FUN}$build_id"
+   fi
+done


[arch-commits] Commit in (3 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 14:54:13
  Author: mtorromeo
Revision: 236536

Add libmaxminddb and mmdblookup

Added:
  libmaxminddb/
  libmaxminddb/trunk/
  libmaxminddb/trunk/PKGBUILD

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

Added: libmaxminddb/trunk/PKGBUILD
===
--- libmaxminddb/trunk/PKGBUILD (rev 0)
+++ libmaxminddb/trunk/PKGBUILD 2017-06-12 14:54:13 UTC (rev 236536)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: frank AT apsu DOT be
+
+pkgname=(libmaxminddb mmdblookup)
+
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="MaxMind GeoIP2 database - split package with library and utilities"
+license=('Apache')
+arch=('i686' 'x86_64')
+url="http://dev.maxmind.com/geoip/geoip2/downloadable/;
+optdepends=('geoip2-database: IP geolocation databases')
+source=("https://github.com/maxmind/libmaxminddb/releases/download/$pkgver/libmaxminddb-$pkgver.tar.gz;)
+sha256sums=('9fa2b3341c9c88117f58454dfb2dd104915a337d93c8a9a735931a63b37f7bfa')
+
+build() {
+   cd "$srcdir"/libmaxminddb-$pkgver
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make check
+}
+
+package_libmaxminddb() {
+   pkgdesc="MaxMindDB GeoIP2 database library"
+   depends=('glibc')
+
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make PREFIX=/usr DESTDIR="$pkgdir" install
+   rm -rf "$pkgdir"/usr/{bin,share/man/man1}
+}
+
+package_mmdblookup() {
+   pkgdesc="MaxMindDB GeoIP2 lookup utility"
+   depends=('libmaxminddb')
+
+   cd "$srcdir"/libmaxminddb-$pkgver
+   make PREFIX=/usr DESTDIR="$pkgdir" install
+   rm -rf "$pkgdir"/usr/{lib,include,share/man/man3}
+}


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


[arch-commits] Commit in (4 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 14:48:25
  Author: mtorromeo
Revision: 236535

Add geoip2-database

Added:
  geoip2-database/
  geoip2-database/trunk/
  geoip2-database/trunk/PKGBUILD
  geoip2-database/trunk/check-last-modified.sh

+
 PKGBUILD   |   39 +++
 check-last-modified.sh |   23 +++
 2 files changed, 62 insertions(+)

Added: geoip2-database/trunk/PKGBUILD
===
--- geoip2-database/trunk/PKGBUILD  (rev 0)
+++ geoip2-database/trunk/PKGBUILD  2017-06-12 14:48:25 UTC (rev 236535)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname='geoip2-database'
+pkgver=20170611
+pkgrel=1
+pkgdesc="GeoLite2 IP geolocation databases compiled by MaxMind"
+arch=('any')
+url="https://dev.maxmind.com/geoip/geoip2/geolite2/;
+license=('custom:OPEN DATA LICENSE')
+source=(GeoLite2-City-$pkgver.tar.gz::http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz
+
GeoLite2-Country-$pkgver.tar.gz::http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz
+
GeoLite2-ASN-$pkgver.tar.gz::http://geolite.maxmind.com/download/geoip/database/GeoLite2-ASN.tar.gz)
+noextract=(GeoLite2-City-$pkgver.tar.gz
+   GeoLite2-Country-$pkgver.tar.gz
+   GeoLite2-ASN-$pkgver.tar.gz)
+sha256sums=('bc47ba58873a542046e974c7dbf5205f30ca207bf5dc5ed6b0223d70b93cb49e'
+'d76206e55cdaff823dbd09e376bf8089ee0b4ee618dcbd634e9c1cb461499068'
+'c8c2cd9c18902b6d27bf7a41c8008d82c6800861497beacd3c276ed661fe3939')
+
+prepare() {
+  cd "$srcdir"
+
+  for _db in GeoLite2-{City,Country,ASN}; do
+tar --strip-components=1 -xf $_db-$pkgver.tar.gz --wildcards "*/$_db.mmdb"
+  done
+
+  tar --strip-components=1 -xf GeoLite2-ASN-$pkgver.tar.gz --wildcards 
"*/COPYRIGHT.txt" "*/LICENSE.txt"
+}
+
+package() {
+  cd "$srcdir"
+
+  install -d "$pkgdir/usr/share/GeoIP"
+  install -m644 -t "$pkgdir/usr/share/GeoIP" GeoLite2-{City,Country,ASN}.mmdb
+
+  install -Dm644 COPYRIGHT.txt 
"$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT.txt"
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}

Added: geoip2-database/trunk/check-last-modified.sh
===
--- geoip2-database/trunk/check-last-modified.sh
(rev 0)
+++ geoip2-database/trunk/check-last-modified.sh2017-06-12 14:48:25 UTC 
(rev 236535)
@@ -0,0 +1,23 @@
+#!/bin/bash -e
+
+# Unicode characters taken from pactree.c
+UNICODE_IS_FUN="\u2514\u2500"
+
+verbose=0
+if [[ $1 == -v ]]; then
+   verbose=1
+fi
+
+URLS=(http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz
+  
http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz
+  http://geolite.maxmind.com/download/geoip/database/GeoLite2-ASN.tar.gz)
+
+for url in ${URLS[@]}; do
+   last_mod=$(curl -sI $url | grep -i ^Last-Modified: | cut -d' ' -f2- | 
tr -d '\r')
+   echo "$last_mod (${url##*/})"
+
+   if ((verbose)); then
+   build_id=$(curl -s $url | gzip -cd | grep -aoE '[0-9]{8} Build 
[0-9]*')
+   echo -e "${UNICODE_IS_FUN}$build_id"
+   fi
+done


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:36:39
  Author: felixonmars
Revision: 236468

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   54 
 community-staging-x86_64/PKGBUILD |   54 
 2 files changed, 108 insertions(+)

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 236467, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 14:36:39 UTC (rev 236468)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170519
+pkgrel=29
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "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-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-default" "haskell-yesod-form"
+ "haskell-yesod-static")
+source=("git+https://git.joeyh.name/git/git-annex.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+build() {
+  cd git-annex
+  
+  runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/$pkgname" \
+-fnetwork-uri -fconcurrentoutput -ftorrentparser \
+-ftestsuite -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 DESTDIR="$pkgdir" 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 236467, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 14:36:39 UTC (rev 236468)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170519
+pkgrel=29
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('git' 'rsync' 'libxml2' 'gsasl' 'file')
+makedepends=("ghc=8.0.1" "git" "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" 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:36:18
  Author: felixonmars
Revision: 236467

upgpkg: git-annex 6.20170519-29

rebuild with monad-control,1.0.2.0

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 14:28:13 UTC (rev 236466)
+++ PKGBUILD2017-06-12 14:36:18 UTC (rev 236467)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170519
-pkgrel=28
+pkgrel=29
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:28:13
  Author: felixonmars
Revision: 236466

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-12 14:27:57 UTC (rev 236465)
+++ PKGBUILD2017-06-12 14:28:13 UTC (rev 236466)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-
-pkgbase=python-keystoneclient
-pkgname=(python-keystoneclient python2-keystoneclient)
-pkgver=3.10.0
-pkgrel=1
-pkgdesc="Client Library for OpenStack Identity"
-arch=('any')
-url="http://docs.openstack.org/developer/python-keystoneclient;
-license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-iso8601' 'python2-iso8601' 'python-prettytable' 
'python2-prettytable'
- 'python-debtcollector' 'python2-debtcollector' 
'python-keystoneauth1'
- 'python2-keystoneauth1' 'python-positional' 'python2-positional' 
'python-oslo-utils'
- 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n'
- 'python-oslo-serialization' 'python2-oslo-serialization' 
'python-oslo-config'
- 'python2-oslo-config' 'python-requests' 'python2-requests' 
'python-stevedore'
- 'python2-stevedore')
-checkdepends=('python-oslotest' 'python2-oslotest' 'python-testresources' 
'python2-testresources'
-  'python-requests-mock' 'python2-requests-mock' 
'python-pycodestyle'
-  'python2-pycodestyle' 'python-lxml' 'python2-lxml')
-source=("git+https://git.openstack.org/openstack/python-keystoneclient#tag=$pkgver;)
-md5sums=('SKIP')
-
-prepare() {
-  cp -a python-keystoneclient{,-py2}
-}
-
-build() {
-  cd "$srcdir"/python-keystoneclient
-  python setup.py build
-
-  cd "$srcdir"/python-keystoneclient-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/python-keystoneclient
-  python setup.py testr
-
-  cd "$srcdir"/python-keystoneclient-py2
-  PYTHON=python2 python2 setup.py testr
-}
-
-package_python-keystoneclient() {
-  depends=('python-six' 'python-pbr' 'python-iso8601' 'python-prettytable' 
'python-debtcollector'
-   'python-keystoneauth1' 'python-positional' 'python-oslo-utils' 
'python-oslo-i18n'
-   'python-oslo-serialization' 'python-oslo-config' 'python-requests' 
'python-stevedore')
-
-  cd "$srcdir"/python-keystoneclient
-  python setup.py install --root="$pkgdir/" --optimize=1
-}
-
-package_python2-keystoneclient() {
-  depends=('python2-six' 'python2-pbr' 'python2-iso8601' 'python2-prettytable' 
'python2-debtcollector'
-   'python2-keystoneauth1' 'python2-positional' 'python2-oslo-utils' 
'python2-oslo-i18n'
-   'python2-oslo-serialization' 'python2-oslo-config' 
'python2-requests' 'python2-stevedore')
-
-  cd "$srcdir"/python-keystoneclient-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-keystoneclient/repos/community-any/PKGBUILD (from rev 236465, 
python-keystoneclient/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 14:28:13 UTC (rev 236466)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+pkgbase=python-keystoneclient
+pkgname=(python-keystoneclient python2-keystoneclient)
+pkgver=3.11.0
+pkgrel=1
+pkgdesc="Client Library for OpenStack Identity"
+arch=('any')
+url="http://docs.openstack.org/developer/python-keystoneclient;
+license=('Apache')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-iso8601'
+ 'python2-iso8601' 'python-prettytable' 'python2-prettytable' 
'python-debtcollector'
+ 'python2-debtcollector' 'python-keystoneauth1' 
'python2-keystoneauth1'
+ 'python-positional' 'python2-positional' 'python-oslo-utils' 
'python2-oslo-utils'
+ 'python-oslo-i18n' 'python2-oslo-i18n' 'python-oslo-serialization'
+ 'python2-oslo-serialization' 'python-oslo-config' 
'python2-oslo-config'
+ 'python-requests' 'python2-requests' 'python-stevedore' 
'python2-stevedore')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-testresources' 
'python2-testresources'
+  'python-requests-mock' 'python2-requests-mock' 
'python-pycodestyle'
+  'python2-pycodestyle' 'python-lxml' 'python2-lxml')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-keystoneclient/archive/$pkgver.tar.gz;)

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:27:57
  Author: felixonmars
Revision: 236465

upgpkg: python-keystoneclient 3.11.0-1

Modified:
  python-keystoneclient/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 14:22:33 UTC (rev 236464)
+++ PKGBUILD2017-06-12 14:27:57 UTC (rev 236465)
@@ -3,43 +3,44 @@
 
 pkgbase=python-keystoneclient
 pkgname=(python-keystoneclient python2-keystoneclient)
-pkgver=3.10.0
+pkgver=3.11.0
 pkgrel=1
 pkgdesc="Client Library for OpenStack Identity"
 arch=('any')
 url="http://docs.openstack.org/developer/python-keystoneclient;
 license=('Apache')
-makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr'
- 'python-iso8601' 'python2-iso8601' 'python-prettytable' 
'python2-prettytable'
- 'python-debtcollector' 'python2-debtcollector' 
'python-keystoneauth1'
- 'python2-keystoneauth1' 'python-positional' 'python2-positional' 
'python-oslo-utils'
- 'python2-oslo-utils' 'python-oslo-i18n' 'python2-oslo-i18n'
- 'python-oslo-serialization' 'python2-oslo-serialization' 
'python-oslo-config'
- 'python2-oslo-config' 'python-requests' 'python2-requests' 
'python-stevedore'
- 'python2-stevedore')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pbr' 
'python2-pbr' 'python-iso8601'
+ 'python2-iso8601' 'python-prettytable' 'python2-prettytable' 
'python-debtcollector'
+ 'python2-debtcollector' 'python-keystoneauth1' 
'python2-keystoneauth1'
+ 'python-positional' 'python2-positional' 'python-oslo-utils' 
'python2-oslo-utils'
+ 'python-oslo-i18n' 'python2-oslo-i18n' 'python-oslo-serialization'
+ 'python2-oslo-serialization' 'python-oslo-config' 
'python2-oslo-config'
+ 'python-requests' 'python2-requests' 'python-stevedore' 
'python2-stevedore')
 checkdepends=('python-oslotest' 'python2-oslotest' 'python-testresources' 
'python2-testresources'
   'python-requests-mock' 'python2-requests-mock' 
'python-pycodestyle'
   'python2-pycodestyle' 'python-lxml' 'python2-lxml')
-source=("git+https://git.openstack.org/openstack/python-keystoneclient#tag=$pkgver;)
-md5sums=('SKIP')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/openstack/python-keystoneclient/archive/$pkgver.tar.gz;)
+sha512sums=('97a8c0dfa2275ef1eb80fbd12e257f4c6b129ed98c5744cd254809ca0d94beeb1bb32f7f712d9ebcc9c7c5940556bb8f401c789e61a973cbc30872279c0d30ab')
 
 prepare() {
-  cp -a python-keystoneclient{,-py2}
+  cp -a python-keystoneclient-$pkgver{,-py2}
+
+  export PBR_VERSION=$pkgver
 }
 
 build() {
-  cd "$srcdir"/python-keystoneclient
+  cd "$srcdir"/python-keystoneclient-$pkgver
   python setup.py build
 
-  cd "$srcdir"/python-keystoneclient-py2
+  cd "$srcdir"/python-keystoneclient-$pkgver-py2
   python2 setup.py build
 }
 
 check() {
-  cd "$srcdir"/python-keystoneclient
+  cd "$srcdir"/python-keystoneclient-$pkgver
   python setup.py testr
 
-  cd "$srcdir"/python-keystoneclient-py2
+  cd "$srcdir"/python-keystoneclient-$pkgver-py2
   PYTHON=python2 python2 setup.py testr
 }
 
@@ -48,8 +49,8 @@
'python-keystoneauth1' 'python-positional' 'python-oslo-utils' 
'python-oslo-i18n'
'python-oslo-serialization' 'python-oslo-config' 'python-requests' 
'python-stevedore')
 
-  cd "$srcdir"/python-keystoneclient
-  python setup.py install --root="$pkgdir/" --optimize=1
+  cd "$srcdir"/python-keystoneclient-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
 }
 
 package_python2-keystoneclient() {
@@ -57,8 +58,8 @@
'python2-keystoneauth1' 'python2-positional' 'python2-oslo-utils' 
'python2-oslo-i18n'
'python2-oslo-serialization' 'python2-oslo-config' 
'python2-requests' 'python2-stevedore')
 
-  cd "$srcdir"/python-keystoneclient-py2
-  python2 setup.py install --root="$pkgdir/" --optimize=1
+  cd "$srcdir"/python-keystoneclient-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
 }
 
 # vim:set ts=2 sw=2 et:


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

2017-06-12 Thread Jonathan Steel
Date: Monday, June 12, 2017 @ 14:21:58
  Author: jsteel
Revision: 236463

upgpkg: pidgin-sipe 1.22.1-1

Modified:
  pidgin-sipe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 14:20:32 UTC (rev 236462)
+++ PKGBUILD2017-06-12 14:21:58 UTC (rev 236463)
@@ -7,8 +7,8 @@
 # Contributor: Anthony 
 
 pkgname=pidgin-sipe
-pkgver=1.22.0
-pkgrel=2
+pkgver=1.22.1
+pkgrel=1
 pkgdesc="Third-party Pidgin plugin for Microsoft Office 365/Lync/LCS/OCS"
 arch=('i686' 'x86_64')
 license=('GPL2')
@@ -17,7 +17,7 @@
 makedepends=('intltool')
 optdepends=('krb5: Kerberos support')
 
source=(http://downloads.sourceforge.net/project/sipe/sipe/$pkgname-$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('999c2bd3ec38f13cc64c55cbb5190eba')
+md5sums=('64efc512182eaaba14dc79091532bb2c')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in pidgin-sipe/repos (4 files)

2017-06-12 Thread Jonathan Steel
Date: Monday, June 12, 2017 @ 14:22:33
  Author: jsteel
Revision: 236464

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pidgin-sipe/repos/community-i686/PKGBUILD
(from rev 236463, pidgin-sipe/trunk/PKGBUILD)
  pidgin-sipe/repos/community-x86_64/PKGBUILD
(from rev 236463, pidgin-sipe/trunk/PKGBUILD)
Deleted:
  pidgin-sipe/repos/community-i686/PKGBUILD
  pidgin-sipe/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   68 
 community-i686/PKGBUILD   |   34 --
 community-x86_64/PKGBUILD |   34 --
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 14:21:58 UTC (rev 236463)
+++ community-i686/PKGBUILD 2017-06-12 14:22:33 UTC (rev 236464)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: Gicu Gorodenco 
-# Contributor: MaLiK 
-# Contributor: dpevp 
-# Contributor: Magnus Therning 
-# Contributor: Anthony 
-
-pkgname=pidgin-sipe
-pkgver=1.22.0
-pkgrel=2
-pkgdesc="Third-party Pidgin plugin for Microsoft Office 365/Lync/LCS/OCS"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://sipe.sourceforge.net/;
-depends=('gmime' 'libpurple')
-makedepends=('intltool')
-optdepends=('krb5: Kerberos support')
-source=(http://downloads.sourceforge.net/project/sipe/sipe/$pkgname-$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('999c2bd3ec38f13cc64c55cbb5190eba')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --disable-telepathy
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: pidgin-sipe/repos/community-i686/PKGBUILD (from rev 236463, 
pidgin-sipe/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-12 14:22:33 UTC (rev 236464)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Gicu Gorodenco 
+# Contributor: MaLiK 
+# Contributor: dpevp 
+# Contributor: Magnus Therning 
+# Contributor: Anthony 
+
+pkgname=pidgin-sipe
+pkgver=1.22.1
+pkgrel=1
+pkgdesc="Third-party Pidgin plugin for Microsoft Office 365/Lync/LCS/OCS"
+arch=('i686' 'x86_64')
+license=('GPL2')
+url="http://sipe.sourceforge.net/;
+depends=('gmime' 'libpurple')
+makedepends=('intltool')
+optdepends=('krb5: Kerberos support')
+source=(http://downloads.sourceforge.net/project/sipe/sipe/$pkgname-$pkgver/$pkgname-$pkgver.tar.bz2)
+md5sums=('64efc512182eaaba14dc79091532bb2c')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --disable-telepathy
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-12 14:21:58 UTC (rev 236463)
+++ community-x86_64/PKGBUILD   2017-06-12 14:22:33 UTC (rev 236464)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jonathan Steel 
-# Contributor: Gicu Gorodenco 
-# Contributor: MaLiK 
-# Contributor: dpevp 
-# Contributor: Magnus Therning 
-# Contributor: Anthony 
-
-pkgname=pidgin-sipe
-pkgver=1.22.0
-pkgrel=2
-pkgdesc="Third-party Pidgin plugin for Microsoft Office 365/Lync/LCS/OCS"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://sipe.sourceforge.net/;
-depends=('gmime' 'libpurple')
-makedepends=('intltool')
-optdepends=('krb5: Kerberos support')
-source=(http://downloads.sourceforge.net/project/sipe/sipe/$pkgname-$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('999c2bd3ec38f13cc64c55cbb5190eba')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --disable-telepathy
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR="$pkgdir" install
-}

Copied: pidgin-sipe/repos/community-x86_64/PKGBUILD (from rev 236463, 
pidgin-sipe/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-06-12 14:22:33 UTC (rev 236464)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jonathan Steel 
+# Contributor: Gicu Gorodenco 
+# Contributor: MaLiK 
+# Contributor: dpevp 
+# Contributor: Magnus Therning 
+# Contributor: Anthony 
+
+pkgname=pidgin-sipe
+pkgver=1.22.1
+pkgrel=1
+pkgdesc="Third-party Pidgin plugin for Microsoft Office 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:20:32
  Author: felixonmars
Revision: 236462

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: haskell-yesod-static/repos/community-staging-i686/PKGBUILD (from rev 
236461, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 14:20:32 UTC (rev 236462)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3
+pkgrel=5
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-css-text" 
"haskell-data-default"
+ "haskell-exceptions" "haskell-file-embed" "haskell-hashable" 
"haskell-hjsmin"
+ "haskell-http-types" "haskell-mime-types" "haskell-old-time" 
"haskell-resourcet"
+ "haskell-text" "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-wai"
+ "haskell-wai-app-static" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('50f8115e0f0a4495e27ea13aa8cbf4ec6bc596f6a758338ae0f4b4aaf9a5161dbca77ba1770467e830c0ef8984a5375d0c53b282ce5572d731c3887050472a8a')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-static/repos/community-staging-x86_64/PKGBUILD (from rev 
236461, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 14:20:32 UTC (rev 236462)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.3
+pkgrel=5
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-async" "haskell-attoparsec" 
"haskell-base64-bytestring"
+ "haskell-blaze-builder" "haskell-byteable" "haskell-conduit" 
"haskell-conduit-extra"
+ "haskell-cryptohash" "haskell-cryptohash-conduit" "haskell-css-text" 
"haskell-data-default"
+ "haskell-exceptions" "haskell-file-embed" "haskell-hashable" 
"haskell-hjsmin"
+ "haskell-http-types" "haskell-mime-types" "haskell-old-time" 
"haskell-resourcet"
+ "haskell-text" "haskell-unix-compat" "haskell-unordered-containers" 
"haskell-wai"
+ "haskell-wai-app-static" "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:18:49
  Author: felixonmars
Revision: 236461

upgpkg: haskell-yesod-static 1.5.3-5

rebuild with monad-control,1.0.2.0

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 14:14:47 UTC (rev 236460)
+++ PKGBUILD2017-06-12 14:18:49 UTC (rev 236461)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.3
-pkgrel=4
+pkgrel=5
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:14:25
  Author: felixonmars
Revision: 236459

upgpkg: haskell-yesod-auth 1.4.17.2-6

rebuild with monad-control,1.0.2.0

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 14:07:48 UTC (rev 236458)
+++ PKGBUILD2017-06-12 14:14:25 UTC (rev 236459)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.17.2
-pkgrel=5
+pkgrel=6
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:14:47
  Author: felixonmars
Revision: 236460

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   51 
 community-staging-x86_64/PKGBUILD |   51 
 2 files changed, 102 insertions(+)

Copied: haskell-yesod-auth/repos/community-staging-i686/PKGBUILD (from rev 
236459, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 14:14:47 UTC (rev 236460)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17.2
+pkgrel=6
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "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")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('14f93e1683f5c727f3628ed3d7e685a58f9c39d6189049a7d2d179bf54ce6baf973f3c8d241c17f9324a719d01df35f109448df8356db5d71bc846dda244e4db')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-auth/repos/community-staging-x86_64/PKGBUILD (from rev 
236459, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 14:14:47 UTC (rev 236460)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17.2
+pkgrel=6
+pkgdesc="Authentication for Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "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" 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:07:26
  Author: felixonmars
Revision: 236457

upgpkg: haskell-yesod 1.4.5-62

rebuild with monad-control,1.0.2.0

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 14:04:17 UTC (rev 236456)
+++ PKGBUILD2017-06-12 14:07:26 UTC (rev 236457)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.5
-pkgrel=61
+pkgrel=62
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:07:48
  Author: felixonmars
Revision: 236458

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: haskell-yesod/repos/community-staging-i686/PKGBUILD (from rev 236457, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 14:07:48 UTC (rev 236458)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=62
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "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")
+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-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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/repos/community-staging-x86_64/PKGBUILD (from rev 236457, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 14:07:48 UTC (rev 236458)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=62
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "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")
+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-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:04:17
  Author: felixonmars
Revision: 236456

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   47 
 community-staging-x86_64/PKGBUILD |   47 
 2 files changed, 94 insertions(+)

Copied: haskell-yesod-form/repos/community-staging-i686/PKGBUILD (from rev 
236455, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 14:04:17 UTC (rev 236456)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.12
+pkgrel=22
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('757bea3ccde33b0df426df2d4e0391804fbc0df741f2a5f04547cb51e7b04508826b8a23c5788f51b83c26c3ebc0ca39739b74c8acecdc6ca040b2c055b99eb2')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd $_hkgname-$pkgver
+
+install -D -m744 register.sh   
"$pkgdir"/usr/share/haskell/register/$pkgname.sh
+install -D -m744 unregister.sh 
"$pkgdir"/usr/share/haskell/unregister/$pkgname.sh
+install -d -m755 "$pkgdir"/usr/share/doc/ghc/html/libraries
+ln -s /usr/share/doc/$pkgname/html 
"$pkgdir"/usr/share/doc/ghc/html/libraries/${_hkgname}
+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-form/repos/community-staging-x86_64/PKGBUILD (from rev 
236455, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 14:04:17 UTC (rev 236456)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.12
+pkgrel=22
+pkgdesc="Form handling support for Yesod Web Framework"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-blaze-html" "haskell-blaze-markup" "haskell-byteable"
+ "haskell-data-default" "haskell-email-validate" "haskell-network-uri"
+ "haskell-persistent" "haskell-resourcet" "haskell-semigroups"
+ "haskell-shakespeare" "haskell-text" "haskell-wai" 
"haskell-xss-sanitize"
+ "haskell-yesod-core" "haskell-yesod-persistent")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('757bea3ccde33b0df426df2d4e0391804fbc0df741f2a5f04547cb51e7b04508826b8a23c5788f51b83c26c3ebc0ca39739b74c8acecdc6ca040b2c055b99eb2')
+
+build() {
+cd $_hkgname-$pkgver
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir=/usr/share/doc/$pkgname \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+LC_CTYPE=en_US.UTF-8 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 14:03:56
  Author: felixonmars
Revision: 236455

upgpkg: haskell-yesod-form 1.4.12-22

rebuild with monad-control,1.0.2.0

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:59:32 UTC (rev 236454)
+++ PKGBUILD2017-06-12 14:03:56 UTC (rev 236455)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.12
-pkgrel=21
+pkgrel=22
 pkgdesc="Form handling support for Yesod Web Framework"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:59:32
  Author: felixonmars
Revision: 236454

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   43 
 community-staging-x86_64/PKGBUILD |   43 
 2 files changed, 86 insertions(+)

Copied: haskell-yesod-persistent/repos/community-staging-i686/PKGBUILD (from 
rev 236453, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:59:32 UTC (rev 236454)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=56
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d938894209e27a7f2a6e41906a9db02cf5c66df2236a864361571ba4e63b1056')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-persistent/repos/community-staging-x86_64/PKGBUILD (from 
rev 236453, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:59:32 UTC (rev 236454)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=56
+pkgdesc="Some helpers for using Persistent from Yesod."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-conduit" 
"haskell-persistent"
+ "haskell-persistent-template" "haskell-resource-pool" 
"haskell-resourcet"
+ "haskell-yesod-core")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d938894209e27a7f2a6e41906a9db02cf5c66df2236a864361571ba4e63b1056')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:59:09
  Author: felixonmars
Revision: 236453

upgpkg: haskell-yesod-persistent 1.4.2-56

rebuild with monad-control,1.0.2.0

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:56:48 UTC (rev 236452)
+++ PKGBUILD2017-06-12 13:59:09 UTC (rev 236453)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.2
-pkgrel=55
+pkgrel=56
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:56:48
  Author: felixonmars
Revision: 236452

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   41 
 community-staging-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: haskell-yesod-default/repos/community-staging-i686/PKGBUILD (from rev 
236451, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:56:48 UTC (rev 236452)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=160
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-yesod-core")
+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-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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 
236451, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:56:48 UTC (rev 236452)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=160
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-yesod-core")
+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-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:56:26
  Author: felixonmars
Revision: 236451

upgpkg: haskell-yesod-default 1.2.0-160

rebuild with monad-control,1.0.2.0

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:53:55 UTC (rev 236450)
+++ PKGBUILD2017-06-12 13:56:26 UTC (rev 236451)
@@ -5,7 +5,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=159
+pkgrel=160
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:53:55
  Author: felixonmars
Revision: 236450

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   51 
 community-staging-x86_64/PKGBUILD |   51 
 2 files changed, 102 insertions(+)

Copied: haskell-yesod-core/repos/community-staging-i686/PKGBUILD (from rev 
236449, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:53:55 UTC (rev 236450)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.35
+pkgrel=6
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "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")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('e26358aa6f6695e7edff3a603bfd6ba2148f58089e35f1e70bf451b38beb22c9f8e1b039488a37953b2f3027d4204643fee7dc704adb7916add4c582dafa77aa')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-core/repos/community-staging-x86_64/PKGBUILD (from rev 
236449, haskell-yesod-core/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:53:55 UTC (rev 236450)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-core
+pkgname=haskell-yesod-core
+pkgver=1.4.35
+pkgrel=6
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "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"
+ 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:53:32
  Author: felixonmars
Revision: 236449

upgpkg: haskell-yesod-core 1.4.35-6

rebuild with monad-control,1.0.2.0

Modified:
  haskell-yesod-core/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:51:32 UTC (rev 236448)
+++ PKGBUILD2017-06-12 13:53:32 UTC (rev 236449)
@@ -5,7 +5,7 @@
 _hkgname=yesod-core
 pkgname=haskell-yesod-core
 pkgver=1.4.35
-pkgrel=5
+pkgrel=6
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-06-12 Thread Jonathan Steel
Date: Monday, June 12, 2017 @ 13:51:32
  Author: jsteel
Revision: 236448

archrelease: copy trunk to community-any

Added:
  aws-cli/repos/community-any/PKGBUILD
(from rev 236447, aws-cli/trunk/PKGBUILD)
Deleted:
  aws-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-12 13:51:25 UTC (rev 236447)
+++ PKGBUILD2017-06-12 13:51:32 UTC (rev 236448)
@@ -1,34 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Alper KANAT 
-
-pkgname=aws-cli
-pkgver=1.11.101
-pkgrel=1
-pkgdesc='Universal Command Line Interface for Amazon Web Services'
-arch=('any')
-url="https://github.com/aws/aws-cli;
-license=('Apache')
-depends=('python-botocore' 'python-dateutil' 'python-jmespath'
- 'python-colorama' 'python-docutils' 'python-rsa'
- 'python-s3transfer' 'python-yaml')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('687b4a992d5bbe85dc7d2f9916d8cc4c')
-
-build() {
-  cd $pkgname-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
-
-  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
-}

Copied: aws-cli/repos/community-any/PKGBUILD (from rev 236447, 
aws-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 13:51:32 UTC (rev 236448)
@@ -0,0 +1,34 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Alper KANAT 
+
+pkgname=aws-cli
+pkgver=1.11.102
+pkgrel=1
+pkgdesc='Universal Command Line Interface for Amazon Web Services'
+arch=('any')
+url="https://github.com/aws/aws-cli;
+license=('Apache')
+depends=('python-botocore' 'python-dateutil' 'python-jmespath'
+ 'python-colorama' 'python-docutils' 'python-rsa'
+ 'python-s3transfer' 'python-yaml')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('e21476a95756f27b17144cb0e87bb0c3')
+
+build() {
+  cd $pkgname-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 bin/aws_bash_completer 
"$pkgdir"/usr/share/bash-completion/completions/aws
+
+  rm -f "$pkgdir"/usr/bin/{aws.cmd,aws_bash_completer}
+}


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

2017-06-12 Thread Jonathan Steel
Date: Monday, June 12, 2017 @ 13:51:25
  Author: jsteel
Revision: 236447

upgpkg: aws-cli 1.11.102-1

Modified:
  aws-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:51:18 UTC (rev 236446)
+++ PKGBUILD2017-06-12 13:51:25 UTC (rev 236447)
@@ -3,7 +3,7 @@
 # Contributor: Alper KANAT 
 
 pkgname=aws-cli
-pkgver=1.11.101
+pkgver=1.11.102
 pkgrel=1
 pkgdesc='Universal Command Line Interface for Amazon Web Services'
 arch=('any')
@@ -14,7 +14,7 @@
  'python-s3transfer' 'python-yaml')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('687b4a992d5bbe85dc7d2f9916d8cc4c')
+md5sums=('e21476a95756f27b17144cb0e87bb0c3')
 
 build() {
   cd $pkgname-$pkgver


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

2017-06-12 Thread Jonathan Steel
Date: Monday, June 12, 2017 @ 13:51:09
  Author: jsteel
Revision: 236445

upgpkg: python-botocore 1.5.65-1

Modified:
  python-botocore/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:47:30 UTC (rev 236444)
+++ PKGBUILD2017-06-12 13:51:09 UTC (rev 236445)
@@ -4,7 +4,7 @@
 # Contributor: Chris Fordham
 
 pkgname=python-botocore
-pkgver=1.5.64
+pkgver=1.5.65
 pkgrel=1
 pkgdesc='A low-level interface to a growing number of Amazon Web Services'
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('python-dateutil' 'python-jmespath' 'python-docutils')
 makedepends=('python-setuptools')
 source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('691542550109c69885ae32333d1542fb')
+md5sums=('dd4f5d9a423916d9ef6866cf64667e54')
 
 build() {
   cd botocore-$pkgver


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

2017-06-12 Thread Jonathan Steel
Date: Monday, June 12, 2017 @ 13:51:18
  Author: jsteel
Revision: 236446

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-12 13:51:09 UTC (rev 236445)
+++ PKGBUILD2017-06-12 13:51:18 UTC (rev 236446)
@@ -1,30 +0,0 @@
-# Maintainer: Jonathan Steel 
-# Contributor: Chris Severance aur.severach AatT spamgourmet.com
-# Contributor: Ainola
-# Contributor: Chris Fordham
-
-pkgname=python-botocore
-pkgver=1.5.64
-pkgrel=1
-pkgdesc='A low-level interface to a growing number of Amazon Web Services'
-arch=('any')
-url="https://github.com/boto/botocore;
-license=('Apache')
-depends=('python-dateutil' 'python-jmespath' 'python-docutils')
-makedepends=('python-setuptools')
-source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
-md5sums=('691542550109c69885ae32333d1542fb')
-
-build() {
-  cd botocore-$pkgver
-
-  python setup.py build
-}
-
-package() {
-  cd botocore-$pkgver
-
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-botocore/repos/community-any/PKGBUILD (from rev 236445, 
python-botocore/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-12 13:51:18 UTC (rev 236446)
@@ -0,0 +1,30 @@
+# Maintainer: Jonathan Steel 
+# Contributor: Chris Severance aur.severach AatT spamgourmet.com
+# Contributor: Ainola
+# Contributor: Chris Fordham
+
+pkgname=python-botocore
+pkgver=1.5.65
+pkgrel=1
+pkgdesc='A low-level interface to a growing number of Amazon Web Services'
+arch=('any')
+url="https://github.com/boto/botocore;
+license=('Apache')
+depends=('python-dateutil' 'python-jmespath' 'python-docutils')
+makedepends=('python-setuptools')
+source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
+md5sums=('dd4f5d9a423916d9ef6866cf64667e54')
+
+build() {
+  cd botocore-$pkgver
+
+  python setup.py build
+}
+
+package() {
+  cd botocore-$pkgver
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:47:08
  Author: felixonmars
Revision: 236443

upgpkg: haskell-dav 1.3.1-113

rebuild with monad-control,1.0.2.0

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:46:40 UTC (rev 236442)
+++ PKGBUILD2017-06-12 13:47:08 UTC (rev 236443)
@@ -5,7 +5,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.1
-pkgrel=112
+pkgrel=113
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV;
 license=("GPL3")


[arch-commits] Commit in nginx-mod-srcache (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:46:40
  Author: mtorromeo
Revision: 236442

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-srcache/repos/
  nginx-mod-srcache/repos/community-i686/
  nginx-mod-srcache/repos/community-i686/PKGBUILD
(from rev 236441, nginx-mod-srcache/trunk/PKGBUILD)
  nginx-mod-srcache/repos/community-x86_64/
  nginx-mod-srcache/repos/community-x86_64/PKGBUILD
(from rev 236441, nginx-mod-srcache/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-srcache/repos/community-i686/PKGBUILD (from rev 236441, 
nginx-mod-srcache/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:46:40 UTC (rev 236442)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-srcache
+pkgver=0.31
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx module for transparent subrequest-based caching layout for 
arbitrary locations'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/srcache-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'3f9729e73a8340926fa9d9fc15707c2f287cd27b6a9fe42e83f660ca48a5972d')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}

Copied: nginx-mod-srcache/repos/community-x86_64/PKGBUILD (from rev 236441, 
nginx-mod-srcache/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:46:40 UTC (rev 236442)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-srcache
+pkgver=0.31
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx module for transparent subrequest-based caching layout for 
arbitrary locations'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/srcache-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'3f9729e73a8340926fa9d9fc15707c2f287cd27b6a9fe42e83f660ca48a5972d')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}


[arch-commits] Commit in haskell-dav/repos (4 files)

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:47:30
  Author: felixonmars
Revision: 236444

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-dav/repos/community-staging-i686/
  haskell-dav/repos/community-staging-i686/PKGBUILD
(from rev 236443, haskell-dav/trunk/PKGBUILD)
  haskell-dav/repos/community-staging-x86_64/
  haskell-dav/repos/community-staging-x86_64/PKGBUILD
(from rev 236443, haskell-dav/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: haskell-dav/repos/community-staging-i686/PKGBUILD (from rev 236443, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:47:30 UTC (rev 236444)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=113
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-dav/repos/community-staging-x86_64/PKGBUILD (from rev 236443, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:47:30 UTC (rev 236444)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=113
+pkgdesc="RFC 4918 WebDAV support"
+url="http://floss.scru.org/hDAV;
+license=("GPL3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-data-default" 
"haskell-exceptions"
+ "haskell-haskeline" "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-lens" "haskell-mtl" "haskell-network" "haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-transformers-base" 
"haskell-transformers-compat"
+ "haskell-utf8-string" "haskell-xml-conduit" "haskell-xml-hamlet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('5c80faa58f8bbfb4bbdf7f3db6f23a3a4d26a199831ceb27dd5f69fef21bc009')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri -f-mtl-compat
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i 

[arch-commits] Commit in nginx-mod-redis2 (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:46:15
  Author: mtorromeo
Revision: 236441

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-redis2/repos/
  nginx-mod-redis2/repos/community-i686/
  nginx-mod-redis2/repos/community-i686/PKGBUILD
(from rev 236440, nginx-mod-redis2/trunk/PKGBUILD)
  nginx-mod-redis2/repos/community-x86_64/
  nginx-mod-redis2/repos/community-x86_64/PKGBUILD
(from rev 236440, nginx-mod-redis2/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-redis2/repos/community-i686/PKGBUILD (from rev 236440, 
nginx-mod-redis2/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:46:15 UTC (rev 236441)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-redis2
+pkgver=0.14
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx upstream module for the Redis 2.0 protocol'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/redis2-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'d830e072fcb4acee8490ba3e38eee6034fd884a954d17ad4efeb397032c58a71')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}

Copied: nginx-mod-redis2/repos/community-x86_64/PKGBUILD (from rev 236440, 
nginx-mod-redis2/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:46:15 UTC (rev 236441)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-redis2
+pkgver=0.14
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx upstream module for the Redis 2.0 protocol'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/redis2-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'d830e072fcb4acee8490ba3e38eee6034fd884a954d17ad4efeb397032c58a71')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}


[arch-commits] Commit in nginx-mod-redis (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:45:49
  Author: mtorromeo
Revision: 236440

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-redis/repos/
  nginx-mod-redis/repos/community-i686/
  nginx-mod-redis/repos/community-i686/PKGBUILD
(from rev 236439, nginx-mod-redis/trunk/PKGBUILD)
  nginx-mod-redis/repos/community-x86_64/
  nginx-mod-redis/repos/community-x86_64/PKGBUILD
(from rev 236439, nginx-mod-redis/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-redis/repos/community-i686/PKGBUILD (from rev 236439, 
nginx-mod-redis/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:45:49 UTC (rev 236440)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-redis
+pkgver=0.3.8
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx module for redis caching'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://www.nginx.com/resources/wiki/modules/redis/;
+license=('CUSTOM')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   https://people.freebsd.org/~osa/ngx_http_redis-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'95d0ed7be40da2efc3d72e52e5e272d2c34463583b7078e8fd6d55004934')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../ngx_http_redis-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/ngx_http_redis-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-redis/repos/community-x86_64/PKGBUILD (from rev 236439, 
nginx-mod-redis/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:45:49 UTC (rev 236440)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-redis
+pkgver=0.3.8
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx module for redis caching'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://www.nginx.com/resources/wiki/modules/redis/;
+license=('CUSTOM')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   https://people.freebsd.org/~osa/ngx_http_redis-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'95d0ed7be40da2efc3d72e52e5e272d2c34463583b7078e8fd6d55004934')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../ngx_http_redis-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/ngx_http_redis-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


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

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:45:39
  Author: mtorromeo
Revision: 236439

upgpkg: nginx-mod-redis 0.3.8-1

Modified:
  nginx-mod-redis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:45:13 UTC (rev 236438)
+++ PKGBUILD2017-06-12 13:45:39 UTC (rev 236439)
@@ -1,11 +1,11 @@
 # $Id$
 # Maintainer: Massimiliano Torromeo 
 
-pkgname=nginx-mainline-mod-redis
+pkgname=nginx-mod-redis
 pkgver=0.3.8
 pkgrel=1
 
-_modname="${pkgname#nginx-mainline-mod-}"
+_modname="${pkgname#nginx-mod-}"
 _nginxver=1.12.0
 
 pkgdesc='Nginx module for redis caching'


[arch-commits] Commit in nginx-mod-passenger (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:45:13
  Author: mtorromeo
Revision: 236438

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-passenger/repos/
  nginx-mod-passenger/repos/community-i686/
  nginx-mod-passenger/repos/community-i686/PKGBUILD
(from rev 236437, nginx-mod-passenger/trunk/PKGBUILD)
  nginx-mod-passenger/repos/community-x86_64/
  nginx-mod-passenger/repos/community-x86_64/PKGBUILD
(from rev 236437, nginx-mod-passenger/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-passenger/repos/community-i686/PKGBUILD (from rev 236437, 
nginx-mod-passenger/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:45:13 UTC (rev 236438)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-passenger
+pkgver=5.1.4
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc="Fast and robust web server and application server for Ruby, Python 
and Node.js"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'ruby')
+url="https://www.phusionpassenger.com;
+license=('MIT')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/phusion/passenger/archive/release-$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'8e96a39eb7a07a8455fc3d22337e1981e77c67477796b8d54094c2dbcf4e61c8')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') 
--add-dynamic-module=../$_modname-release-$pkgver/src/nginx_module
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-release-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-passenger/repos/community-x86_64/PKGBUILD (from rev 236437, 
nginx-mod-passenger/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:45:13 UTC (rev 236438)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-passenger
+pkgver=5.1.4
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc="Fast and robust web server and application server for Ruby, Python 
and Node.js"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'ruby')
+url="https://www.phusionpassenger.com;
+license=('MIT')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/phusion/passenger/archive/release-$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'8e96a39eb7a07a8455fc3d22337e1981e77c67477796b8d54094c2dbcf4e61c8')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') 
--add-dynamic-module=../$_modname-release-$pkgver/src/nginx_module
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-release-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


[arch-commits] Commit in haskell-xml-hamlet/repos (4 files)

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:43:43
  Author: felixonmars
Revision: 236437

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-xml-hamlet/repos/community-staging-i686/
  haskell-xml-hamlet/repos/community-staging-i686/PKGBUILD
(from rev 236436, haskell-xml-hamlet/trunk/PKGBUILD)
  haskell-xml-hamlet/repos/community-staging-x86_64/
  haskell-xml-hamlet/repos/community-staging-x86_64/PKGBUILD
(from rev 236436, haskell-xml-hamlet/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   42 
 community-staging-x86_64/PKGBUILD |   42 
 2 files changed, 84 insertions(+)

Copied: haskell-xml-hamlet/repos/community-staging-i686/PKGBUILD (from rev 
236436, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:43:43 UTC (rev 236437)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.4.1
+pkgrel=30
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-parsec" "haskell-shakespeare" "haskell-text"
+ "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('7df390f59599a0b16831c3f2cbb13ad0bebb92faa4a350fc6ae613bfba4ec2bb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-xml-hamlet/repos/community-staging-x86_64/PKGBUILD (from rev 
236436, haskell-xml-hamlet/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:43:43 UTC (rev 236437)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=xml-hamlet
+pkgname=haskell-xml-hamlet
+pkgver=0.4.1
+pkgrel=30
+pkgdesc="Hamlet-style quasiquoter for XML content"
+url="http://www.yesodweb.com/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-parsec" "haskell-shakespeare" "haskell-text"
+ "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('7df390f59599a0b16831c3f2cbb13ad0bebb92faa4a350fc6ae613bfba4ec2bb')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:43:20
  Author: felixonmars
Revision: 236436

upgpkg: haskell-xml-hamlet 0.4.1-30

rebuild with monad-control,1.0.2.0

Modified:
  haskell-xml-hamlet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:41:23 UTC (rev 236435)
+++ PKGBUILD2017-06-12 13:43:20 UTC (rev 236436)
@@ -5,7 +5,7 @@
 _hkgname=xml-hamlet
 pkgname=haskell-xml-hamlet
 pkgver=0.4.1
-pkgrel=29
+pkgrel=30
 pkgdesc="Hamlet-style quasiquoter for XML content"
 url="http://www.yesodweb.com/;
 license=("custom:BSD3")


[arch-commits] Commit in nginx-mod-pagespeed (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:41:23
  Author: mtorromeo
Revision: 236435

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-pagespeed/repos/
  nginx-mod-pagespeed/repos/community-i686/
  nginx-mod-pagespeed/repos/community-i686/PKGBUILD
(from rev 236434, nginx-mod-pagespeed/trunk/PKGBUILD)
  nginx-mod-pagespeed/repos/community-x86_64/
  nginx-mod-pagespeed/repos/community-x86_64/PKGBUILD
(from rev 236434, nginx-mod-pagespeed/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   46 
 community-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: nginx-mod-pagespeed/repos/community-i686/PKGBUILD (from rev 236434, 
nginx-mod-pagespeed/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:41:23 UTC (rev 236435)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-pagespeed
+pkgver=1.11.33.4
+pkgrel=1
+
+_modname="ngx_pagespeed"
+
+_nginxver=1.12.0
+_pagespeedver=latest-stable
+
+pkgdesc="PageSpeed module for nginx"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://modpagespeed.com;
+license=('Apache')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/pagespeed/ngx_pagespeed/archive/$_pagespeedver/$_modname-$_pagespeedver.tar.gz
+   
pagespeed-$pkgver.tar.gz::https://dl.google.com/dl/page-speed/psol/$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'5b8bebc3124ba55388fcb97ee8f6009bd5d061c48bf274a04f6c99b7364e1f85'
+'97408b04bf7395ab34d7b5baed95ae3dc928746213ca02590773b66a7697a7dc')
+
+prepare() {
+   cd "$srcdir"/$_modname-$_pagespeedver
+   ln -s ../psol
+   sed -r 's@^pagespeed_libs="(\$psol_binary.*)"@pagespeed_libs="\1 
-Wl,-z,noexecstack"@' -i config
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$_pagespeedver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-pagespeed/repos/community-x86_64/PKGBUILD (from rev 236434, 
nginx-mod-pagespeed/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:41:23 UTC (rev 236435)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-pagespeed
+pkgver=1.11.33.4
+pkgrel=1
+
+_modname="ngx_pagespeed"
+
+_nginxver=1.12.0
+_pagespeedver=latest-stable
+
+pkgdesc="PageSpeed module for nginx"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://modpagespeed.com;
+license=('Apache')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/pagespeed/ngx_pagespeed/archive/$_pagespeedver/$_modname-$_pagespeedver.tar.gz
+   
pagespeed-$pkgver.tar.gz::https://dl.google.com/dl/page-speed/psol/$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'5b8bebc3124ba55388fcb97ee8f6009bd5d061c48bf274a04f6c99b7364e1f85'
+'97408b04bf7395ab34d7b5baed95ae3dc928746213ca02590773b66a7697a7dc')
+
+prepare() {
+   cd "$srcdir"/$_modname-$_pagespeedver
+   ln -s ../psol
+   sed -r 's@^pagespeed_libs="(\$psol_binary.*)"@pagespeed_libs="\1 
-Wl,-z,noexecstack"@' -i config
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$_pagespeedver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


[arch-commits] Commit in nginx-mod-njs (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:40:39
  Author: mtorromeo
Revision: 236434

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-njs/repos/
  nginx-mod-njs/repos/community-i686/
  nginx-mod-njs/repos/community-i686/PKGBUILD
(from rev 236433, nginx-mod-njs/trunk/PKGBUILD)
  nginx-mod-njs/repos/community-x86_64/
  nginx-mod-njs/repos/community-x86_64/PKGBUILD
(from rev 236433, nginx-mod-njs/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-njs/repos/community-i686/PKGBUILD (from rev 236433, 
nginx-mod-njs/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:40:39 UTC (rev 236434)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-njs
+pkgver=0.1.10 # http://hg.nginx.org/njs/tags
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='nginScript module for nginx'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="http://nginx.org/en/docs/njs_about.html;
+license=('CUSTOM')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   njs-$pkgver.tar.gz::http://hg.nginx.org/njs/archive/$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'17658ef9efa127f13b4d2541a69ddb4359267c63a11c19beda1d3220d4a2fe0d')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../njs-$pkgver/nginx
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/njs-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-njs/repos/community-x86_64/PKGBUILD (from rev 236433, 
nginx-mod-njs/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:40:39 UTC (rev 236434)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-njs
+pkgver=0.1.10 # http://hg.nginx.org/njs/tags
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='nginScript module for nginx'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="http://nginx.org/en/docs/njs_about.html;
+license=('CUSTOM')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   njs-$pkgver.tar.gz::http://hg.nginx.org/njs/archive/$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'17658ef9efa127f13b4d2541a69ddb4359267c63a11c19beda1d3220d4a2fe0d')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../njs-$pkgver/nginx
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/njs-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


[arch-commits] Commit in nginx-mod-ndk-set-misc (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:40:10
  Author: mtorromeo
Revision: 236433

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-ndk-set-misc/repos/
  nginx-mod-ndk-set-misc/repos/community-i686/
  nginx-mod-ndk-set-misc/repos/community-i686/PKGBUILD
(from rev 236432, nginx-mod-ndk-set-misc/trunk/PKGBUILD)
  nginx-mod-ndk-set-misc/repos/community-x86_64/
  nginx-mod-ndk-set-misc/repos/community-x86_64/PKGBUILD
(from rev 236432, nginx-mod-ndk-set-misc/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   55 
 community-x86_64/PKGBUILD |   55 
 2 files changed, 110 insertions(+)

Copied: nginx-mod-ndk-set-misc/repos/community-i686/PKGBUILD (from rev 236432, 
nginx-mod-ndk-set-misc/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:40:10 UTC (rev 236433)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+_nginxver=1.12.0
+_setmiscver=0.31
+_ndkver=0.3.0
+
+pkgbase=nginx-mod-ndk-set-misc
+pkgname=(nginx-mod-ndk nginx-mod-set-misc)
+pkgver=$_setmiscver+$_ndkver
+pkgrel=1
+
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/set-misc-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/set-misc-nginx-module/archive/v$_setmiscver/set-misc-$_setmiscver.tar.gz
+   
https://github.com/simpl/ngx_devel_kit/archive/v$_ndkver/ngx_devel_kit-$_ndkver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'97946a68937b50ab8637e1a90a13198fe376d801dc3e7447052e43c28e9ee7de'
+'88e05a99a8a7419066f5ae75966fb1efc409bad4522d14986da074554ae61619')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') \
+ --add-dynamic-module=../ngx_devel_kit-$_ndkver \
+ --add-dynamic-module=../set-misc-nginx-module-$_setmiscver
+   make modules
+}
+
+package_nginx-mod-ndk() {
+   pkgdesc="Nginx module that adds additional generic tools that module 
developers can use in their own modules"
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   install -Dm755 ndk_http_module.so 
"$pkgdir"/usr/lib/nginx/modules/ndk_http_module.so
+
+   cd "$srcdir"/ngx_devel_kit-$_ndkver
+   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_nginx-mod-set-misc() {
+   pkgdesc="Nginx module that adds various set_xxx directives"
+   depends=("nginx=$_nginxver" 'nginx-mod-ndk')
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   install -Dm755 ngx_http_set_misc_module.so 
"$pkgdir"/usr/lib/nginx/modules/ngx_http_set_misc_module.so
+
+   install -Dm644 
"$srcdir"/set-misc-nginx-module-$_setmiscver/README.markdown \
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}

Copied: nginx-mod-ndk-set-misc/repos/community-x86_64/PKGBUILD (from rev 
236432, nginx-mod-ndk-set-misc/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:40:10 UTC (rev 236433)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+_nginxver=1.12.0
+_setmiscver=0.31
+_ndkver=0.3.0
+
+pkgbase=nginx-mod-ndk-set-misc
+pkgname=(nginx-mod-ndk nginx-mod-set-misc)
+pkgver=$_setmiscver+$_ndkver
+pkgrel=1
+
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/set-misc-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/set-misc-nginx-module/archive/v$_setmiscver/set-misc-$_setmiscver.tar.gz
+   
https://github.com/simpl/ngx_devel_kit/archive/v$_ndkver/ngx_devel_kit-$_ndkver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'97946a68937b50ab8637e1a90a13198fe376d801dc3e7447052e43c28e9ee7de'
+'88e05a99a8a7419066f5ae75966fb1efc409bad4522d14986da074554ae61619')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') \
+ --add-dynamic-module=../ngx_devel_kit-$_ndkver \
+ --add-dynamic-module=../set-misc-nginx-module-$_setmiscver
+   make modules
+}
+
+package_nginx-mod-ndk() {
+   pkgdesc="Nginx module that adds additional generic tools that module 
developers can use in their own modules"
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   install -Dm755 ndk_http_module.so 

[arch-commits] Commit in haskell-authenticate/repos (4 files)

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:40:02
  Author: felixonmars
Revision: 236432

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-authenticate/repos/community-staging-i686/
  haskell-authenticate/repos/community-staging-i686/PKGBUILD
(from rev 236431, haskell-authenticate/trunk/PKGBUILD)
  haskell-authenticate/repos/community-staging-x86_64/
  haskell-authenticate/repos/community-staging-x86_64/PKGBUILD
(from rev 236431, haskell-authenticate/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: haskell-authenticate/repos/community-staging-i686/PKGBUILD (from rev 
236431, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:40:02 UTC (rev 236432)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=93
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-http-conduit"
+ "haskell-http-types" "haskell-monad-control" "haskell-network-uri"
+ "haskell-resourcet" "haskell-tagstream-conduit" "haskell-text"
+ "haskell-unordered-containers" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-authenticate/repos/community-staging-x86_64/PKGBUILD (from rev 
236431, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:40:02 UTC (rev 236432)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=93
+pkgdesc="Authentication methods for Haskell web applications."
+url="http://github.com/yesodweb/authenticate;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-http-conduit"
+ "haskell-http-types" "haskell-monad-control" "haskell-network-uri"
+ "haskell-resourcet" "haskell-tagstream-conduit" "haskell-text"
+ "haskell-unordered-containers" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fnetwork-uri
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* 

[arch-commits] Commit in nginx-mod-naxsi (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:39:42
  Author: mtorromeo
Revision: 236431

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-naxsi/repos/
  nginx-mod-naxsi/repos/community-i686/
  nginx-mod-naxsi/repos/community-i686/PKGBUILD
(from rev 236429, nginx-mod-naxsi/trunk/PKGBUILD)
  nginx-mod-naxsi/repos/community-x86_64/
  nginx-mod-naxsi/repos/community-x86_64/PKGBUILD
(from rev 236429, nginx-mod-naxsi/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-naxsi/repos/community-i686/PKGBUILD (from rev 236429, 
nginx-mod-naxsi/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:39:42 UTC (rev 236431)
@@ -0,0 +1,39 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-naxsi
+pkgver=0.55.3
+pkgrel=1
+
+_modname=naxsi
+_nginxver=1.12.0
+
+pkgdesc='Nginx Anti XSS & SQL Injection'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/nbs-system/naxsi;
+license=('GPL3')
+backup=('etc/nginx/naxsi_core.rules')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/nbs-system/$_modname/archive/$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'0b3c95d250772dc89ad8b49e47c1e024c5ae2c76c0cffa445e9fe05c4dd13495')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver/naxsi_src
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   cd "$srcdir"/$_modname-$pkgver
+   install -Dm644 naxsi_config/naxsi_core.rules 
"$pkgdir"/etc/nginx/naxsi_core.rules
+}

Copied: nginx-mod-naxsi/repos/community-x86_64/PKGBUILD (from rev 236429, 
nginx-mod-naxsi/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:39:42 UTC (rev 236431)
@@ -0,0 +1,39 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-naxsi
+pkgver=0.55.3
+pkgrel=1
+
+_modname=naxsi
+_nginxver=1.12.0
+
+pkgdesc='Nginx Anti XSS & SQL Injection'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/nbs-system/naxsi;
+license=('GPL3')
+backup=('etc/nginx/naxsi_core.rules')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/nbs-system/$_modname/archive/$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'0b3c95d250772dc89ad8b49e47c1e024c5ae2c76c0cffa445e9fe05c4dd13495')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver/naxsi_src
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   cd "$srcdir"/$_modname-$pkgver
+   install -Dm644 naxsi_config/naxsi_core.rules 
"$pkgdir"/etc/nginx/naxsi_core.rules
+}


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:39:39
  Author: felixonmars
Revision: 236430

upgpkg: haskell-authenticate 1.3.3.2-93

rebuild with monad-control,1.0.2.0

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:39:15 UTC (rev 236429)
+++ PKGBUILD2017-06-12 13:39:39 UTC (rev 236430)
@@ -5,7 +5,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.3.2
-pkgrel=92
+pkgrel=93
 pkgdesc="Authentication methods for Haskell web applications."
 url="http://github.com/yesodweb/authenticate;
 license=("MIT")


[arch-commits] Commit in nginx-mod-memc (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:39:15
  Author: mtorromeo
Revision: 236429

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-memc/repos/
  nginx-mod-memc/repos/community-i686/
  nginx-mod-memc/repos/community-i686/PKGBUILD
(from rev 236428, nginx-mod-memc/trunk/PKGBUILD)
  nginx-mod-memc/repos/community-x86_64/
  nginx-mod-memc/repos/community-x86_64/PKGBUILD
(from rev 236428, nginx-mod-memc/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   39 +++
 community-x86_64/PKGBUILD |   39 +++
 2 files changed, 78 insertions(+)

Copied: nginx-mod-memc/repos/community-i686/PKGBUILD (from rev 236428, 
nginx-mod-memc/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:39:15 UTC (rev 236429)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-memc
+pkgver=0.18
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Extended version of the standard memcached module for nginx'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/memc-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'4e280d1dcb8b312bc7875604c1e35b17879279126d3d5fbf482aa9cc7c11276d')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}

Copied: nginx-mod-memc/repos/community-x86_64/PKGBUILD (from rev 236428, 
nginx-mod-memc/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:39:15 UTC (rev 236429)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-memc
+pkgver=0.18
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Extended version of the standard memcached module for nginx'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/memc-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'4e280d1dcb8b312bc7875604c1e35b17879279126d3d5fbf482aa9cc7c11276d')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}


[arch-commits] Commit in nginx-mod-headers-more/repos (4 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:38:49
  Author: mtorromeo
Revision: 236428

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-headers-more/repos/community-i686/PKGBUILD
(from rev 236427, nginx-mod-headers-more/trunk/PKGBUILD)
  nginx-mod-headers-more/repos/community-x86_64/PKGBUILD
(from rev 236427, nginx-mod-headers-more/trunk/PKGBUILD)
Deleted:
  nginx-mod-headers-more/repos/community-i686/PKGBUILD
  nginx-mod-headers-more/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 community-i686/PKGBUILD   |   39 --
 community-x86_64/PKGBUILD |   39 --
 3 files changed, 78 insertions(+), 78 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-12 13:38:22 UTC (rev 236427)
+++ community-i686/PKGBUILD 2017-06-12 13:38:49 UTC (rev 236428)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=nginx-mod-headers-more
-pkgver=0.32
-pkgrel=1
-
-_modname="${pkgname#nginx-mod-}"
-_nginxver=1.12.0
-
-pkgdesc="Nginx module to set and clear input and output headers"
-arch=('i686' 'x86_64')
-depends=('nginx')
-url="https://github.com/openresty/headers-more-nginx-module;
-license=('BSD')
-
-source=(
-   http://nginx.org/download/nginx-$_nginxver.tar.gz
-   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
-)
-
-sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
-'c6d9dab8ea1fc997031007e2e8f47cced01417e203cd88d53a9fe9f6ae138720')
-
-build() {
-   cd "$srcdir"/nginx-$_nginxver
-   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
-   make modules
-}
-
-package() {
-   cd "$srcdir"/nginx-$_nginxver/objs
-   for mod in *.so; do
-   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
-   done
-
-   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
-  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
-}

Copied: nginx-mod-headers-more/repos/community-i686/PKGBUILD (from rev 236427, 
nginx-mod-headers-more/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-12 13:38:49 UTC (rev 236428)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-headers-more
+pkgver=0.32
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc="Nginx module to set and clear input and output headers"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/headers-more-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'c6d9dab8ea1fc997031007e2e8f47cced01417e203cd88d53a9fe9f6ae138720')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   install -Dm644 "$srcdir"/$_modname-nginx-module-$pkgver/README.markdown 
\
+  "$pkgdir"/usr/share/licenses/$pkgname/README.markdown
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-12 13:38:22 UTC (rev 236427)
+++ community-x86_64/PKGBUILD   2017-06-12 13:38:49 UTC (rev 236428)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-
-pkgname=nginx-mod-headers-more
-pkgver=0.32
-pkgrel=1
-
-_modname="${pkgname#nginx-mod-}"
-_nginxver=1.12.0
-
-pkgdesc="Nginx module to set and clear input and output headers"
-arch=('i686' 'x86_64')
-depends=('nginx')
-url="https://github.com/openresty/headers-more-nginx-module;
-license=('BSD')
-
-source=(
-   http://nginx.org/download/nginx-$_nginxver.tar.gz
-   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
-)
-
-sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
-'c6d9dab8ea1fc997031007e2e8f47cced01417e203cd88d53a9fe9f6ae138720')
-
-build() {
-   cd "$srcdir"/nginx-$_nginxver
-   ./configure $(nginx -V 

[arch-commits] Commit in nginx-mod-echo (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:38:22
  Author: mtorromeo
Revision: 236427

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-echo/repos/
  nginx-mod-echo/repos/community-i686/
  nginx-mod-echo/repos/community-i686/PKGBUILD
(from rev 236426, nginx-mod-echo/trunk/PKGBUILD)
  nginx-mod-echo/repos/community-x86_64/
  nginx-mod-echo/repos/community-x86_64/PKGBUILD
(from rev 236426, nginx-mod-echo/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   46 
 community-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: nginx-mod-echo/repos/community-i686/PKGBUILD (from rev 236426, 
nginx-mod-echo/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:38:22 UTC (rev 236427)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-echo
+pkgver=0.60
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx module that provides directives "echo", "sleep", "time" and 
more'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/echo-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+   
$pkgname-nginx-1.12.patch::https://patch-diff.githubusercontent.com/raw/openresty/echo-nginx-module/pull/65.patch
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'1077da2229ac7d0a0215e9e6817e297c10697e095010d88f1adbd1add1ce9f4e'
+'1d2cb5f3977cd6ee0a5ae5958ac4cca79cf5ecc097e68b72cf03a2e9f48e51ed')
+
+prepare() {
+   cd $_modname-nginx-module-$pkgver
+   patch -p1 -i "$srcdir"/$pkgname-nginx-1.12.patch
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir/"$_modname-nginx-module-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-echo/repos/community-x86_64/PKGBUILD (from rev 236426, 
nginx-mod-echo/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:38:22 UTC (rev 236427)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-echo
+pkgver=0.60
+pkgrel=1
+
+_modname="${pkgname#nginx-mod-}"
+_nginxver=1.12.0
+
+pkgdesc='Nginx module that provides directives "echo", "sleep", "time" and 
more'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/openresty/echo-nginx-module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/openresty/$_modname-nginx-module/archive/v$pkgver/$_modname-$pkgver.tar.gz
+   
$pkgname-nginx-1.12.patch::https://patch-diff.githubusercontent.com/raw/openresty/echo-nginx-module/pull/65.patch
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'1077da2229ac7d0a0215e9e6817e297c10697e095010d88f1adbd1add1ce9f4e'
+'1d2cb5f3977cd6ee0a5ae5958ac4cca79cf5ecc097e68b72cf03a2e9f48e51ed')
+
+prepare() {
+   cd $_modname-nginx-module-$pkgver
+   patch -p1 -i "$srcdir"/$pkgname-nginx-1.12.patch
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-nginx-module-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir/"$_modname-nginx-module-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


[arch-commits] Commit in nginx-mod-brotli (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:37:54
  Author: mtorromeo
Revision: 236426

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-brotli/repos/
  nginx-mod-brotli/repos/community-i686/
  nginx-mod-brotli/repos/community-i686/PKGBUILD
(from rev 236425, nginx-mod-brotli/trunk/PKGBUILD)
  nginx-mod-brotli/repos/community-x86_64/
  nginx-mod-brotli/repos/community-x86_64/PKGBUILD
(from rev 236425, nginx-mod-brotli/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   52 
 community-x86_64/PKGBUILD |   52 
 2 files changed, 104 insertions(+)

Copied: nginx-mod-brotli/repos/community-i686/PKGBUILD (from rev 236425, 
nginx-mod-brotli/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:37:54 UTC (rev 236426)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+_nginxver=1.12.0
+pkgname=nginx-mod-brotli
+pkgver=$_nginxver
+pkgrel=1
+
+_modname="ngx_${pkgname#nginx-mod-}"
+
+# https://github.com/google/ngx_brotli
+# https://github.com/google/ngx_brotli/tree/master/deps
+_modver=bfd2885b2da4d763fed18f49216bb935223cd34b
+_brotliver=222564a95d9ab58865a096b8d9f7324ea5f2e03e
+
+pkgdesc="Brotli compression filter module for nginx"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/google/ngx_brotli;
+license=('CUSTOM')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/google/$_modname/archive/$_modver/$_modname-$_modver.tar.gz
+   
https://github.com/google/brotli/archive/$_brotliver/brotli-$_brotliver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'3a5348d484554f3d1787d06961fc7886fda44d17264ab7e6cdf1f4a8fa04231e'
+'4299a2a86f0b931e80dd548be17fcaa5a6c158a0727f497f22cbb365668af0fe')
+
+prepare() {
+   cd "$srcdir"/$_modname-$_modver/deps
+   rm -rf brotli
+   ln -s ../../brotli-$_brotliver brotli
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$_modver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-$_modver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-brotli/repos/community-x86_64/PKGBUILD (from rev 236425, 
nginx-mod-brotli/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:37:54 UTC (rev 236426)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+_nginxver=1.12.0
+pkgname=nginx-mod-brotli
+pkgver=$_nginxver
+pkgrel=1
+
+_modname="ngx_${pkgname#nginx-mod-}"
+
+# https://github.com/google/ngx_brotli
+# https://github.com/google/ngx_brotli/tree/master/deps
+_modver=bfd2885b2da4d763fed18f49216bb935223cd34b
+_brotliver=222564a95d9ab58865a096b8d9f7324ea5f2e03e
+
+pkgdesc="Brotli compression filter module for nginx"
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/google/ngx_brotli;
+license=('CUSTOM')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/google/$_modname/archive/$_modver/$_modname-$_modver.tar.gz
+   
https://github.com/google/brotli/archive/$_brotliver/brotli-$_brotliver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'3a5348d484554f3d1787d06961fc7886fda44d17264ab7e6cdf1f4a8fa04231e'
+'4299a2a86f0b931e80dd548be17fcaa5a6c158a0727f497f22cbb365668af0fe')
+
+prepare() {
+   cd "$srcdir"/$_modname-$_modver/deps
+   rm -rf brotli
+   ln -s ../../brotli-$_brotliver brotli
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$_modver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-$_modver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in ngx_*.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


[arch-commits] Commit in nginx-mod-auth-pam (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:37:22
  Author: mtorromeo
Revision: 236425

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-auth-pam/repos/
  nginx-mod-auth-pam/repos/community-i686/
  nginx-mod-auth-pam/repos/community-i686/PKGBUILD
(from rev 236424, nginx-mod-auth-pam/trunk/PKGBUILD)
  nginx-mod-auth-pam/repos/community-x86_64/
  nginx-mod-auth-pam/repos/community-x86_64/PKGBUILD
(from rev 236424, nginx-mod-auth-pam/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   46 
 community-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: nginx-mod-auth-pam/repos/community-i686/PKGBUILD (from rev 236424, 
nginx-mod-auth-pam/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:37:22 UTC (rev 236425)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-auth-pam
+pkgver=1.5.1
+pkgrel=1
+
+_modname=ngx_http_auth_pam_module
+_nginxver=1.12.0
+
+pkgdesc='Nginx module to use PAM for simple http authentication'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'pam')
+url="https://github.com/sto/ngx_http_auth_pam_module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/sto/$_modname/archive/v$pkgver/$_modname-$pkgver.tar.gz
+   
$_modname-critlog.patch::https://patch-diff.githubusercontent.com/raw/sto/ngx_http_auth_pam_module/pull/11.patch
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'77676842919134af88a7b4bfca4470223e3a00d287d17c0dbdc9a114a685b6e7'
+'1a59787672cf9c6768cb77c31f19a870eaf556c7b28c8c22a22cf8a7013b93af')
+
+prepare() {
+   cd "$srcdir"/$_modname-$pkgver
+   patch -p1 -i "$srcdir"/$_modname-critlog.patch
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-auth-pam/repos/community-x86_64/PKGBUILD (from rev 236424, 
nginx-mod-auth-pam/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:37:22 UTC (rev 236425)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-auth-pam
+pkgver=1.5.1
+pkgrel=1
+
+_modname=ngx_http_auth_pam_module
+_nginxver=1.12.0
+
+pkgdesc='Nginx module to use PAM for simple http authentication'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'pam')
+url="https://github.com/sto/ngx_http_auth_pam_module;
+license=('BSD')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/sto/$_modname/archive/v$pkgver/$_modname-$pkgver.tar.gz
+   
$_modname-critlog.patch::https://patch-diff.githubusercontent.com/raw/sto/ngx_http_auth_pam_module/pull/11.patch
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'77676842919134af88a7b4bfca4470223e3a00d287d17c0dbdc9a114a685b6e7'
+'1a59787672cf9c6768cb77c31f19a870eaf556c7b28c8c22a22cf8a7013b93af')
+
+prepare() {
+   cd "$srcdir"/$_modname-$pkgver
+   patch -p1 -i "$srcdir"/$_modname-critlog.patch
+}
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver
+   make modules
+}
+
+package() {
+   install -Dm644 "$srcdir"/$_modname-$pkgver/LICENSE \
+  "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


[arch-commits] Commit in haskell-tagstream-conduit/repos (4 files)

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:36:59
  Author: felixonmars
Revision: 236424

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-tagstream-conduit/repos/community-staging-i686/
  haskell-tagstream-conduit/repos/community-staging-i686/PKGBUILD
(from rev 236423, haskell-tagstream-conduit/trunk/PKGBUILD)
  haskell-tagstream-conduit/repos/community-staging-x86_64/
  haskell-tagstream-conduit/repos/community-staging-x86_64/PKGBUILD
(from rev 236423, haskell-tagstream-conduit/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: haskell-tagstream-conduit/repos/community-staging-i686/PKGBUILD (from 
rev 236423, haskell-tagstream-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:36:59 UTC (rev 236424)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tagstream-conduit
+pkgname=haskell-tagstream-conduit
+pkgver=0.5.5.3
+pkgrel=77
+pkgdesc="Streamlined html tag parser"
+url="http://github.com/yihuang/tagstream-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-attoparsec" "haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-conduit-extra"
+ "haskell-data-default" "haskell-resourcet" "haskell-text"
+ "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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-tagstream-conduit/repos/community-staging-x86_64/PKGBUILD (from 
rev 236423, haskell-tagstream-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:36:59 UTC (rev 236424)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tagstream-conduit
+pkgname=haskell-tagstream-conduit
+pkgver=0.5.5.3
+pkgrel=77
+pkgdesc="Streamlined html tag parser"
+url="http://github.com/yihuang/tagstream-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-attoparsec" "haskell-blaze-builder"
+ "haskell-case-insensitive" "haskell-conduit" "haskell-conduit-extra"
+ "haskell-data-default" "haskell-resourcet" "haskell-text"
+ "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:36:33
  Author: felixonmars
Revision: 236423

upgpkg: haskell-tagstream-conduit 0.5.5.3-77

rebuild with monad-control,1.0.2.0

Modified:
  haskell-tagstream-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:35:40 UTC (rev 236422)
+++ PKGBUILD2017-06-12 13:36:33 UTC (rev 236423)
@@ -5,7 +5,7 @@
 _hkgname=tagstream-conduit
 pkgname=haskell-tagstream-conduit
 pkgver=0.5.5.3
-pkgrel=76
+pkgrel=77
 pkgdesc="Streamlined html tag parser"
 url="http://github.com/yihuang/tagstream-conduit;
 license=("custom:BSD3")


[arch-commits] Commit in nginx-mod-modsecurity (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:35:40
  Author: mtorromeo
Revision: 236422

archrelease: copy trunk to community-i686, community-x86_64

Added:
  nginx-mod-modsecurity/repos/
  nginx-mod-modsecurity/repos/community-i686/
  nginx-mod-modsecurity/repos/community-i686/PKGBUILD
(from rev 236421, nginx-mod-modsecurity/trunk/PKGBUILD)
  nginx-mod-modsecurity/repos/community-x86_64/
  nginx-mod-modsecurity/repos/community-x86_64/PKGBUILD
(from rev 236421, nginx-mod-modsecurity/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   38 ++
 community-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: nginx-mod-modsecurity/repos/community-i686/PKGBUILD (from rev 236421, 
nginx-mod-modsecurity/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:35:40 UTC (rev 236422)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-modsecurity
+pkgver=20170403
+pkgrel=1
+_commit=3de175b
+
+_modname=ModSecurity-nginx
+_nginxver=1.12.0
+
+pkgdesc='ModSecurity v3 Nginx Connector (module for mainline nginx)'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'libmodsecurity')
+makedepends=('git')
+url="https://github.com/SpiderLabs/ModSecurity-nginx;
+license=('GPL3')
+
+source=(
+   "http://nginx.org/download/nginx-$_nginxver.tar.gz;
+   
"git+https://github.com/SpiderLabs/ModSecurity-nginx.git#commit=$_commit;
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'SKIP')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}

Copied: nginx-mod-modsecurity/repos/community-x86_64/PKGBUILD (from rev 236421, 
nginx-mod-modsecurity/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:35:40 UTC (rev 236422)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-modsecurity
+pkgver=20170403
+pkgrel=1
+_commit=3de175b
+
+_modname=ModSecurity-nginx
+_nginxver=1.12.0
+
+pkgdesc='ModSecurity v3 Nginx Connector (module for mainline nginx)'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'libmodsecurity')
+makedepends=('git')
+url="https://github.com/SpiderLabs/ModSecurity-nginx;
+license=('GPL3')
+
+source=(
+   "http://nginx.org/download/nginx-$_nginxver.tar.gz;
+   
"git+https://github.com/SpiderLabs/ModSecurity-nginx.git#commit=$_commit;
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'SKIP')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:33:39
  Author: felixonmars
Revision: 236421

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   49 
 community-staging-x86_64/PKGBUILD |   49 
 2 files changed, 98 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 236420, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:33:39 UTC (rev 236421)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.7.0
+pkgrel=3
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('33c0ef353fce4eb98fb90b09e6a1e06f677306de47c88629d438de648a21de19b03e8bff696cc0535db74aef9906871849596a96be165e40198eab9d3e02a5ce')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-fcheckexternal -fwatchserver -fpreviewserver
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+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 
236420, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:33:39 UTC (rev 236421)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.7.0
+pkgrel=3
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cryptohash"
+ "haskell-data-default" "haskell-fsnotify" "haskell-http-conduit" 
"haskell-http-types"
+ "haskell-lrucache" "haskell-mtl" "haskell-network" 
"haskell-network-uri"
+ "haskell-optparse-applicative" "haskell-pandoc" 
"haskell-pandoc-citeproc" "haskell-parsec"
+ "haskell-random" "haskell-regex-base" "haskell-regex-tdfa" 
"haskell-resourcet"
+ "haskell-scientific" "haskell-system-filepath" "haskell-tagsoup" 
"haskell-text"
+ "haskell-time-locale-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-app-static" "haskell-warp" "haskell-yaml")

[arch-commits] Commit in libmodsecurity (5 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:32:48
  Author: mtorromeo
Revision: 236419

archrelease: copy trunk to community-i686, community-x86_64

Added:
  libmodsecurity/repos/
  libmodsecurity/repos/community-i686/
  libmodsecurity/repos/community-i686/PKGBUILD
(from rev 236418, libmodsecurity/trunk/PKGBUILD)
  libmodsecurity/repos/community-x86_64/
  libmodsecurity/repos/community-x86_64/PKGBUILD
(from rev 236418, libmodsecurity/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   33 +
 community-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: libmodsecurity/repos/community-i686/PKGBUILD (from rev 236418, 
libmodsecurity/trunk/PKGBUILD)
===
--- repos/community-i686/PKGBUILD   (rev 0)
+++ repos/community-i686/PKGBUILD   2017-06-12 13:32:48 UTC (rev 236419)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=libmodsecurity
+pkgver=20170611
+pkgrel=1
+_commit=20134ef242f374fd37f3224ea98cecded9abd2e2
+
+pkgdesc='ModSecurity v3 library component'
+arch=('i686' 'x86_64')
+depends=('yajl' 'curl' 'libxml2' 'pcre' 'geoip')
+makedepends=('git')
+url="https://github.com/SpiderLabs/ModSecurity/tree/v3/master;
+license=('APACHE')
+source=("git+https://github.com/SpiderLabs/ModSecurity.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+   cd "$srcdir"/ModSecurity
+   git submodule update --init
+}
+
+build() {
+   cd "$srcdir"/ModSecurity
+   ./build.sh
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir"/ModSecurity
+   make DESTDIR="$pkgdir" install
+}

Copied: libmodsecurity/repos/community-x86_64/PKGBUILD (from rev 236418, 
libmodsecurity/trunk/PKGBUILD)
===
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2017-06-12 13:32:48 UTC (rev 236419)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=libmodsecurity
+pkgver=20170611
+pkgrel=1
+_commit=20134ef242f374fd37f3224ea98cecded9abd2e2
+
+pkgdesc='ModSecurity v3 library component'
+arch=('i686' 'x86_64')
+depends=('yajl' 'curl' 'libxml2' 'pcre' 'geoip')
+makedepends=('git')
+url="https://github.com/SpiderLabs/ModSecurity/tree/v3/master;
+license=('APACHE')
+source=("git+https://github.com/SpiderLabs/ModSecurity.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+   cd "$srcdir"/ModSecurity
+   git submodule update --init
+}
+
+build() {
+   cd "$srcdir"/ModSecurity
+   ./build.sh
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir"/ModSecurity
+   make DESTDIR="$pkgdir" install
+}


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:33:16
  Author: felixonmars
Revision: 236420

upgpkg: haskell-hakyll 4.9.7.0-3

rebuild with monad-control,1.0.2.0

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:32:48 UTC (rev 236419)
+++ PKGBUILD2017-06-12 13:33:16 UTC (rev 236420)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.7.0
-pkgrel=2
+pkgrel=3
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:26:00
  Author: felixonmars
Revision: 236418

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

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

---+
 community-staging-i686/PKGBUILD   |   58 
 community-staging-x86_64/PKGBUILD |   58 
 2 files changed, 116 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 236416, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-12 13:26:00 UTC (rev 236418)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=68
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-xml-conduit" "haskell-yaml")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('6e6b0a89a831f9bfaa33dc0f3dff1792ee1626a5e66e1bd34da9447cd3c7de51')
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-debug -f-test_citeproc -funicode_collation -f-embed_data_files 
-fbibutils
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+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_pandoc-citeproc() {
+depends=('pandoc' 'icu')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_haskell-pandoc-citeproc() {
+pkgdesc="Supports using pandoc with citeproc (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-citeproc')
+
+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"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgbase}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgbase}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc-citeproc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD (from rev 
236416, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-12 13:26:00 UTC (rev 236418)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.10.4.1
+pkgrel=68
+pkgdesc="Supports using pandoc with citeproc"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-attoparsec"
+ "haskell-data-default" "haskell-hs-bibutils" "haskell-mtl"
+ "haskell-old-locale" "haskell-pandoc" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-rfc5051" "haskell-setenv" "haskell-split" "haskell-syb"
+ "haskell-tagsoup" "haskell-temporary" "haskell-text" 
"haskell-text-icu"
+ 

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

2017-06-12 Thread Felix Yan
Date: Monday, June 12, 2017 @ 13:25:34
  Author: felixonmars
Revision: 236416

upgpkg: pandoc-citeproc 0.10.4.1-68

rebuild with monad-control,1.0.2.0

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-06-12 13:24:36 UTC (rev 236415)
+++ PKGBUILD2017-06-12 13:25:34 UTC (rev 236416)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.10.4.1
-pkgrel=67
+pkgrel=68
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


[arch-commits] Commit in (3 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:26:00
  Author: mtorromeo
Revision: 236417

Add nginx-mod-naxsi

Added:
  nginx-mod-naxsi/
  nginx-mod-naxsi/trunk/
  nginx-mod-naxsi/trunk/PKGBUILD

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

Added: nginx-mod-naxsi/trunk/PKGBUILD
===
--- nginx-mod-naxsi/trunk/PKGBUILD  (rev 0)
+++ nginx-mod-naxsi/trunk/PKGBUILD  2017-06-12 13:26:00 UTC (rev 236417)
@@ -0,0 +1,39 @@
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-naxsi
+pkgver=0.55.3
+pkgrel=1
+
+_modname=naxsi
+_nginxver=1.12.0
+
+pkgdesc='Nginx Anti XSS & SQL Injection'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver")
+url="https://github.com/nbs-system/naxsi;
+license=('GPL3')
+backup=('etc/nginx/naxsi_core.rules')
+
+source=(
+   http://nginx.org/download/nginx-$_nginxver.tar.gz
+   
https://github.com/nbs-system/$_modname/archive/$pkgver/$_modname-$pkgver.tar.gz
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'0b3c95d250772dc89ad8b49e47c1e024c5ae2c76c0cffa445e9fe05c4dd13495')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname-$pkgver/naxsi_src
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+
+   cd "$srcdir"/$_modname-$pkgver
+   install -Dm644 naxsi_config/naxsi_core.rules 
"$pkgdir"/etc/nginx/naxsi_core.rules
+}


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


[arch-commits] Commit in (6 files)

2017-06-12 Thread Massimiliano Torromeo
Date: Monday, June 12, 2017 @ 13:23:17
  Author: mtorromeo
Revision: 236413

Add nginx-mod-modsecurity

Added:
  libmodsecurity/
  libmodsecurity/trunk/
  libmodsecurity/trunk/PKGBUILD
  nginx-mod-modsecurity/
  nginx-mod-modsecurity/trunk/
  nginx-mod-modsecurity/trunk/PKGBUILD

--+
 libmodsecurity/trunk/PKGBUILD|   33 
 nginx-mod-modsecurity/trunk/PKGBUILD |   38 +
 2 files changed, 71 insertions(+)

Added: libmodsecurity/trunk/PKGBUILD
===
--- libmodsecurity/trunk/PKGBUILD   (rev 0)
+++ libmodsecurity/trunk/PKGBUILD   2017-06-12 13:23:17 UTC (rev 236413)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=libmodsecurity
+pkgver=20170611
+pkgrel=1
+_commit=20134ef242f374fd37f3224ea98cecded9abd2e2
+
+pkgdesc='ModSecurity v3 library component'
+arch=('i686' 'x86_64')
+depends=('yajl' 'curl' 'libxml2' 'pcre' 'geoip')
+makedepends=('git')
+url="https://github.com/SpiderLabs/ModSecurity/tree/v3/master;
+license=('APACHE')
+source=("git+https://github.com/SpiderLabs/ModSecurity.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+prepare() {
+   cd "$srcdir"/ModSecurity
+   git submodule update --init
+}
+
+build() {
+   cd "$srcdir"/ModSecurity
+   ./build.sh
+   ./configure --prefix=/usr
+   make
+}
+
+package() {
+   cd "$srcdir"/ModSecurity
+   make DESTDIR="$pkgdir" install
+}


Property changes on: libmodsecurity/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: nginx-mod-modsecurity/trunk/PKGBUILD
===
--- nginx-mod-modsecurity/trunk/PKGBUILD(rev 0)
+++ nginx-mod-modsecurity/trunk/PKGBUILD2017-06-12 13:23:17 UTC (rev 
236413)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+
+pkgname=nginx-mod-modsecurity
+pkgver=20170403
+pkgrel=1
+_commit=3de175b
+
+_modname=ModSecurity-nginx
+_nginxver=1.12.0
+
+pkgdesc='ModSecurity v3 Nginx Connector (module for mainline nginx)'
+arch=('i686' 'x86_64')
+depends=("nginx=$_nginxver" 'libmodsecurity')
+makedepends=('git')
+url="https://github.com/SpiderLabs/ModSecurity-nginx;
+license=('GPL3')
+
+source=(
+   "http://nginx.org/download/nginx-$_nginxver.tar.gz;
+   
"git+https://github.com/SpiderLabs/ModSecurity-nginx.git#commit=$_commit;
+)
+
+sha256sums=('b4222e26fdb620a8d3c3a3a8b955e08b713672e1bc5198d1e4f462308a795b30'
+'SKIP')
+
+build() {
+   cd "$srcdir"/nginx-$_nginxver
+   ./configure $(nginx -V 2>&1 | grep 'configure arguments' | sed -r 
's@^[^:]+: @@') --add-dynamic-module=../$_modname
+   make modules
+}
+
+package() {
+   cd "$srcdir"/nginx-$_nginxver/objs
+   for mod in *.so; do
+   install -Dm755 $mod "$pkgdir"/usr/lib/nginx/modules/$mod
+   done
+}


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


  1   2   3   >