[arch-commits] Commit in arm-none-eabi-gcc/repos (6 files)

2017-05-09 Thread Anatol Pomozov
Date: Wednesday, May 10, 2017 @ 05:57:03
  Author: anatolik
Revision: 227657

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

Added:
  arm-none-eabi-gcc/repos/community-testing-i686/
  arm-none-eabi-gcc/repos/community-testing-i686/PKGBUILD
(from rev 227656, arm-none-eabi-gcc/trunk/PKGBUILD)
  
arm-none-eabi-gcc/repos/community-testing-i686/enable-with-multilib-list-for-arm.patch
(from rev 227656, 
arm-none-eabi-gcc/trunk/enable-with-multilib-list-for-arm.patch)
  arm-none-eabi-gcc/repos/community-testing-x86_64/
  arm-none-eabi-gcc/repos/community-testing-x86_64/PKGBUILD
(from rev 227656, arm-none-eabi-gcc/trunk/PKGBUILD)
  
arm-none-eabi-gcc/repos/community-testing-x86_64/enable-with-multilib-list-for-arm.patch
(from rev 227656, 
arm-none-eabi-gcc/trunk/enable-with-multilib-list-for-arm.patch)

--+
 community-testing-i686/PKGBUILD  |  127 +
 community-testing-i686/enable-with-multilib-list-for-arm.patch   |  215 
++
 community-testing-x86_64/PKGBUILD|  127 +
 community-testing-x86_64/enable-with-multilib-list-for-arm.patch |  215 
++
 4 files changed, 684 insertions(+)

Copied: arm-none-eabi-gcc/repos/community-testing-i686/PKGBUILD (from rev 
227656, arm-none-eabi-gcc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-10 05:57:03 UTC (rev 227657)
@@ -0,0 +1,127 @@
+# Maintainer: Anatol Pomozov 
+# Contributor: Martin Schmölzer 
+
+_target=arm-none-eabi
+pkgname=$_target-gcc
+pkgver=7.1.0
+_islver=0.18
+pkgrel=1
+_snapshot=7-20170504
+pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
+arch=(i686 x86_64)
+url='http://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils zlib libmpc)
+makedepends=(gmp mpfr $_target-newlib)
+optdepends=('arm-none-eabi-newlib: Standard C library optimized for embedded 
systems')
+options=(!emptydirs !strip)
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.bz2
+ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.bz2
+http://isl.gforge.inria.fr/isl-$_islver.tar.bz2
+enable-with-multilib-list-for-arm.patch)
+sha256sums=('0a179b9fe8e90215d7b2385c40a2e36ba7f823193531847eb7fcff866df556ba'
+'6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b'
+'9447a8fd40d7c1e238b8e9790b739492de5feaa489d61f4ecdab863e5ea1975a')
+
+if [ -n "$_snapshot" ]; then
+  _basedir=gcc-$_snapshot
+else
+  _basedir=gcc-$pkgver
+fi
+
+prepare() {
+  cd $_basedir
+
+  # link isl for in-tree builds
+  ln -s ../isl-$_islver isl
+
+  echo $pkgver > gcc/BASE-VER
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+  patch -p1 < $srcdir/enable-with-multilib-list-for-arm.patch
+
+  mkdir $srcdir/build-{gcc,gcc-nano}
+}
+
+_build_gcc() {
+  $srcdir/$_basedir/configure \
+--target=$_target \
+--prefix=/usr \
+--with-sysroot=/usr/$_target \
+--with-native-system-header-dir=/include \
+--libexecdir=/usr/lib \
+--enable-languages=c,c++ \
+--enable-plugins \
+--disable-decimal-float \
+--disable-libffi \
+--disable-libgomp \
+--disable-libmudflap \
+--disable-libquadmath \
+--disable-libssp \
+--disable-libstdcxx-pch \
+--disable-nls \
+--disable-shared \
+--disable-threads \
+--disable-tls \
+--with-gnu-as \
+--with-gnu-ld \
+--with-system-zlib \
+--with-newlib \
+--with-headers=/usr/$_target/include \
+--with-python-dir=share/gcc-arm-none-eabi \
+--with-gmp \
+--with-mpfr \
+--with-mpc \
+--with-isl \
+--with-libelf \
+--enable-gnu-indirect-function \
+--with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' 
\
+--with-pkgversion='Arch Repository' \
+--with-bugurl='https://bugs.archlinux.org/' \
+--with-multilib-list=armv6-m,armv7-m,armv7e-m,armv7-r
+
+  make INHIBIT_LIBC_CFLAGS='-DUSE_TM_CLONE_REGISTRY=0'
+}
+
+build() {
+  cd $srcdir/build-gcc
+  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+  _build_gcc
+
+  # Build libstdc++ without exceptions support (the 'nano' variant)
+  cd $srcdir/build-gcc-nano
+  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'
+  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections 
-fno-exceptions'  
+  _build_gcc
+}
+
+package() {
+  cd $srcdir/build-gcc
+  make DESTDIR="$pkgdir" install -j1
+
+  cd $srcdir/build-gcc-nano
+  make 

[arch-commits] Commit in arm-none-eabi-gcc/trunk (2 files)

2017-05-09 Thread Anatol Pomozov
Date: Wednesday, May 10, 2017 @ 05:56:30
  Author: anatolik
Revision: 227656

upgpkg: arm-none-eabi-gcc 7.1.0-1

Modified:
  arm-none-eabi-gcc/trunk/PKGBUILD
  arm-none-eabi-gcc/trunk/enable-with-multilib-list-for-arm.patch

-+
 PKGBUILD|8 +-
 enable-with-multilib-list-for-arm.patch |   96 +-
 2 files changed, 59 insertions(+), 45 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-10 04:52:02 UTC (rev 227655)
+++ PKGBUILD2017-05-10 05:56:30 UTC (rev 227656)
@@ -3,10 +3,10 @@
 
 _target=arm-none-eabi
 pkgname=$_target-gcc
-pkgver=6.3.1
+pkgver=7.1.0
 _islver=0.18
 pkgrel=1
-_snapshot=6-20170330
+_snapshot=7-20170504
 pkgdesc='The GNU Compiler Collection - cross compiler for ARM EABI 
(bare-metal) target'
 arch=(i686 x86_64)
 url='http://gcc.gnu.org/'
@@ -19,9 +19,9 @@
 ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.bz2
 http://isl.gforge.inria.fr/isl-$_islver.tar.bz2
 enable-with-multilib-list-for-arm.patch)
-sha256sums=('455f97464a1923ce7eb4233ee4ab85fa53e391f188b13047d5f68f50f55d8e97'
+sha256sums=('0a179b9fe8e90215d7b2385c40a2e36ba7f823193531847eb7fcff866df556ba'
 '6b8b0fd7f81d0a957beb3679c81bbb34ccc7568d5682844d8924424a0dadcb1b'
-'ee8c74097c1ff01918bda9acf9b45783fd3ba3a4c493e9e9255fa3c2130bf690')
+'9447a8fd40d7c1e238b8e9790b739492de5feaa489d61f4ecdab863e5ea1975a')
 
 if [ -n "$_snapshot" ]; then
   _basedir=gcc-$_snapshot

Modified: enable-with-multilib-list-for-arm.patch
===
--- enable-with-multilib-list-for-arm.patch 2017-05-10 04:52:02 UTC (rev 
227655)
+++ enable-with-multilib-list-for-arm.patch 2017-05-10 05:56:30 UTC (rev 
227656)
@@ -1,14 +1,14 @@
-commit 605db6de62e8144a1b8f721c05f40d879f70625b
+commit 71587241301d28b68bbe2f41c5eb2856053c750c
 Author: Anatol Pomozov 
-Date:   Fri Jan 30 06:23:17 2015 -0800
+Date:   Tue May 9 21:19:27 2017 -0700
 
 ARM patch 
https://gcc.gnu.org/ml/gcc-patches/2012-05/msg00083/enable-with-multilib-list-for-arm.patch
 
 diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 4ab7405..6e1ea2c 100644
+index f675e073ecc..cced5329b47 100644
 --- a/gcc/Makefile.in
 +++ b/gcc/Makefile.in
-@@ -535,6 +535,7 @@ lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt 
$(srcdir)/common.opt
+@@ -558,6 +558,7 @@ lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt 
$(srcdir)/common.opt
  lang_specs_files=@lang_specs_files@
  lang_tree_files=@lang_tree_files@
  target_cpu_default=@target_cpu_default@
@@ -17,10 +17,10 @@
  extra_modes_file=@extra_modes_file@
  extra_opt_files=@extra_opt_files@
 diff --git a/gcc/config.gcc b/gcc/config.gcc
-index cb08a5c..7bded02 100644
+index b8bb4d65825..713e35b62af 100644
 --- a/gcc/config.gcc
 +++ b/gcc/config.gcc
-@@ -1072,7 +1072,7 @@ arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems*)
+@@ -1140,7 +1140,7 @@ arm*-*-eabi* | arm*-*-symbianelf* | arm*-*-rtems* | 
arm*-*-fuchsia*)
case ${target} in
arm*-*-eabi*)
  tm_file="$tm_file newlib-stdint.h"
@@ -28,17 +28,17 @@
 +tmake_file="${tmake_file} arm/t-bpabi arm/t-mlibs"
  use_gcc_stdint=wrap
  ;;
-   arm*-*-rtems*)
-@@ -3684,42 +3684,6 @@ case "${target}" in
+   arm*-*-fuchsia*)
+@@ -3787,56 +3787,6 @@ case "${target}" in
+   echo "Switch \"--with-tune\" may not be used with 
switch \"--with-cpu\""  1>&2
exit 1
fi
- 
+-
 -  # Add extra multilibs
 -  if test "x$with_multilib_list" != x; then
 -  arm_multilibs=`echo $with_multilib_list | sed -e 's/,/ 
/g'`
--  for arm_multilib in ${arm_multilibs}; do
--  case ${arm_multilib} in
--  aprofile)
+-  case ${arm_multilibs} in
+-  aprofile)
 -  # Note that arm/t-aprofile is a
 -  # stand-alone make file fragment to be
 -  # used only with itself.  We do not
@@ -45,29 +45,43 @@
 -  # specifically use the
 -  # TM_MULTILIB_OPTION framework because
 -  # this shorthand is more
--  # pragmatic. Additionally it is only
--  # designed to work without any
--  # with-cpu, with-arch with-mode
--  # with-fpu or with-float options.
--  if test "x$with_arch" != x \
--  || test "x$with_cpu" != x \
--  || test "x$with_float" != x \
-- 

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

2017-05-09 Thread Kyle Keen
Date: Wednesday, May 10, 2017 @ 04:52:02
  Author: kkeen
Revision: 227655

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

Added:
  gerbv/repos/community-i686/ChangeLog
(from rev 227654, gerbv/trunk/ChangeLog)
  gerbv/repos/community-i686/PKGBUILD
(from rev 227654, gerbv/trunk/PKGBUILD)
  gerbv/repos/community-i686/reautopointissues.diff
(from rev 227654, gerbv/trunk/reautopointissues.diff)
  gerbv/repos/community-x86_64/ChangeLog
(from rev 227654, gerbv/trunk/ChangeLog)
  gerbv/repos/community-x86_64/PKGBUILD
(from rev 227654, gerbv/trunk/PKGBUILD)
  gerbv/repos/community-x86_64/reautopointissues.diff
(from rev 227654, gerbv/trunk/reautopointissues.diff)
Deleted:
  gerbv/repos/community-i686/ChangeLog
  gerbv/repos/community-i686/PKGBUILD
  gerbv/repos/community-i686/reautopointissues.diff
  gerbv/repos/community-x86_64/ChangeLog
  gerbv/repos/community-x86_64/PKGBUILD
  gerbv/repos/community-x86_64/reautopointissues.diff

-+
 /ChangeLog  |   86 
 /PKGBUILD   |   82 
 /reautopointissues.diff | 8236 ++
 community-i686/ChangeLog|   39 
 community-i686/PKGBUILD |   41 
 community-i686/reautopointissues.diff   | 4118 ---
 community-x86_64/ChangeLog  |   39 
 community-x86_64/PKGBUILD   |   41 
 community-x86_64/reautopointissues.diff | 4118 ---
 9 files changed, 8404 insertions(+), 8396 deletions(-)

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


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

2017-05-09 Thread Kyle Keen
Date: Wednesday, May 10, 2017 @ 04:51:25
  Author: kkeen
Revision: 227654

upgpkg: gerbv 2.6.2-1

Modified:
  gerbv/trunk/ChangeLog
  gerbv/trunk/PKGBUILD

---+
 ChangeLog |4 
 PKGBUILD  |8 
 2 files changed, 8 insertions(+), 4 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2017-05-10 04:14:52 UTC (rev 227653)
+++ ChangeLog   2017-05-10 04:51:25 UTC (rev 227654)
@@ -1,3 +1,7 @@
+2017-05-10 Kyle Keen 
+   * 2.6.2-1
+   - Version bump
+
 2016-04-28 Kyle Keen 
* 2.6.1-4
- Install hook rebuild

Modified: PKGBUILD
===
--- PKGBUILD2017-05-10 04:14:52 UTC (rev 227653)
+++ PKGBUILD2017-05-10 04:51:25 UTC (rev 227654)
@@ -4,8 +4,8 @@
 # Contributor: Stefan Husmann 
 
 pkgname=gerbv
-pkgver=2.6.1
-pkgrel=4
+pkgver=2.6.2
+pkgrel=1
 pkgdesc="An open source Gerber file (RS-274X only) viewer"
 #url="http://gerbv.gpleda.org/;
 url="http://gerbv.geda-project.org/;
@@ -18,7 +18,7 @@
 changelog=ChangeLog
 source=("http://downloads.sourceforge.net/gerbv/$pkgname-$pkgver.tar.gz;
 "reautopointissues.diff")
-md5sums=('9a8af19574025fb15f987c3df610f8ae'
+md5sums=('40f259d948ec91cd11e7d8b2829fa9f1'
  '55c3aac2af1f99a88dfa7b1508594e49')
 
 build ()
@@ -25,7 +25,7 @@
 {
   cd "$srcdir/$pkgname-$pkgver"
   # remove patches on 2.6.2
-  patch -Np1 -i ../reautopointissues.diff
+  #patch -Np1 -i ../reautopointissues.diff
   ./autogen.sh
   sed -i 's|am_aux_dir=`cd $ac_aux_dir|am_aux_dir=`cd $srcdir|' configure
   ./configure --prefix=/usr \


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

2017-05-09 Thread Jiachen Yang
Date: Wednesday, May 10, 2017 @ 04:14:52
  Author: farseerfc
Revision: 227653

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

Added:
  powerline/repos/community-testing-i686/
  powerline/repos/community-testing-i686/PKGBUILD
(from rev 227652, powerline/trunk/PKGBUILD)
  powerline/repos/community-testing-x86_64/
  powerline/repos/community-testing-x86_64/PKGBUILD
(from rev 227651, powerline/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |  176 
 community-testing-x86_64/PKGBUILD |  176 
 2 files changed, 352 insertions(+)

Copied: powerline/repos/community-testing-i686/PKGBUILD (from rev 227652, 
powerline/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-10 04:14:52 UTC (rev 227653)
@@ -0,0 +1,176 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Swift Geek
+# AUR Maintainer: Timothée Ravier 
+# AUR Maintainer: Stefan Tatschner 
+# Contributor: Swift Geek
+# Contributor: Pablo Olmos de Aguilera C. pablo+aur at odac dot co
+
+_pkgname="powerline"
+pkgbase="powerline"
+pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
+pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
+pkgver=2.6
+pkgrel=1
+url="https://github.com/${_pkgname}/${_pkgname};
+license=('MIT')
+arch=('x86_64' 'i686')
+makedepends=(
+'python2-setuptools'
+'python-setuptools'
+'python-sphinx'
+)
+source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz;)
+sha512sums=('a4c72a6239b9c2f4db2b511647529eae008cfdd783b9a2ebe6bf7fe625e82801ff4da1887d6efa4b785966d46fac15ec4540aa2bd180722fd76fcd2873a074c0')
+
+
+
+prepare() {
+# fix https://bugs.archlinux.org/task/48358
+cd ${srcdir}/${_pkgname}-${pkgver}
+find scripts -type f -iname "powerline-*" -print0 | xargs -0 sed -i 
"1s/env //"
+find ${_pkgname}/bindings -type f -iname "*.py" -print0 | xargs -0 sed -i 
"1s/env //"
+
+
+cp -r ${srcdir}/${_pkgname}-${pkgver}{,-py2}
+# prepare python2 scripts
+cd ${srcdir}/${_pkgname}-${pkgver}-py2
+find scripts -type f -iname "powerline-*" -print0 | xargs -0 sed -i 
"1s/python/python2/"
+find ${_pkgname}/bindings -type f -iname "*.py" -print0 | xargs -0 sed -i 
"1s/python/python2/"
+}
+
+build(){
+# build main pages
+cd ${srcdir}/${_pkgname}-${pkgver}/docs
+make man
+
+# build C client
+cd ${srcdir}/${_pkgname}-${pkgver}
+python setup.py build
+
+cd ${srcdir}/${_pkgname}-${pkgver}-py2
+python2 setup.py build
+}
+
+
+## FIXME Currently test will fail with dividers and other errors
+#check(){
+#cd ${srcdir}/${_pkgname}-${pkgver}
+#LC_ALL=C python setup.py test
+#cd ${srcdir}/${_pkgname}-${pkgver}-py2
+#LC_ALL=C python2 setup.py test
+#}
+
+package_powerline(){
+depends=('python-powerline')
+conflicts=('powerline2' 'python-powerline<=2.3-1')
+replaces=('python-powerline<=2.3-1')
+
+cd ${srcdir}/${_pkgname}-${pkgver}/scripts
+install -Dm755 powerline "${pkgdir}/usr/bin/powerline"
+install -Dm755 powerline-config "${pkgdir}/usr/bin/powerline-config"
+install -Dm755 powerline-daemon "${pkgdir}/usr/bin/powerline-daemon"
+install -Dm755 powerline-lint "${pkgdir}/usr/bin/powerline-lint"
+install -Dm755 powerline-render "${pkgdir}/usr/bin/powerline-render"
+
+# license is installed by powerline-common
+}
+
+package_powerline2(){
+depends=('python2-powerline')
+conflicts=('powerline' 'python2-powerline<=2.3-1')
+provides=('powerline')
+replaces=('python2-powerline<=2.3-1')
+
+cd ${srcdir}/${_pkgname}-${pkgver}-py2/scripts
+install -Dm755 powerline{,-config,-daemon,-lint,-render} -t 
"${pkgdir}/usr/bin/"
+
+install -dm755 "${pkgdir}/usr/share/licenses/"
+ln -s "/usr/share/licenses/${_pkgname}" 
"${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+
+package_python-powerline() {
+pkgdesc='python library for powerline'
+depends=('python>=3.2' 'powerline-common')
+optdepends=('python-psutil: improved system information'
+'python-pygit2: improved git support'
+'powerline-vim: vim plugin'
+'powerline-fonts: patched fonts for powerline'
+)
+
+# install by redirect scripts and binaries
+cd ${srcdir}/${_pkgname}-${pkgver}
+python setup.py install --skip-build --root="${pkgdir}" --install-data=tmp 
--install-scripts=tmp --optimize=1
+# remove redirected scripts and binaries
+rm -rf "${pkgdir}/tmp" 
+
+install -dm755 

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

2017-05-09 Thread Anatol Pomozov
Date: Wednesday, May 10, 2017 @ 04:14:18
  Author: anatolik
Revision: 227652

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

Added:
  avr-gcc/repos/community-testing-i686/
  avr-gcc/repos/community-testing-i686/PKGBUILD
(from rev 227651, avr-gcc/trunk/PKGBUILD)
  avr-gcc/repos/community-testing-x86_64/
  avr-gcc/repos/community-testing-x86_64/PKGBUILD
(from rev 227651, avr-gcc/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |  106 
 community-testing-x86_64/PKGBUILD |  106 
 2 files changed, 212 insertions(+)

Copied: avr-gcc/repos/community-testing-i686/PKGBUILD (from rev 227651, 
avr-gcc/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-05-10 04:14:18 UTC (rev 227652)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: schuay 
+# Contributor: Brad Fanella 
+# Contributor: Corrado Primier 
+# Contributor: danst0 
+
+# Build order: avr-binutils -> avr-gcc -> avr-libc
+
+pkgname=avr-gcc
+pkgver=7.1.0
+pkgrel=1
+_snapshot=7-20170504
+_islver=0.18
+pkgdesc='The GNU AVR Compiler Collection'
+arch=(i686 x86_64)
+license=(GPL LGPL FDL custom)
+url='http://gcc.gnu.org/'
+depends=(avr-binutils gcc-libs libmpc)
+optdepends=('avr-libc: Standard C library for Atmel AVR development')
+options=(!emptydirs !strip)
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2
+   )
+sha1sums=('32a04c55957106324ab024798812c432e83c9c2b'
+  'bbffc5a2b05e4f0c97e882f96c448504491dc4ed')
+
+if [ -n "${_snapshot}" ]; then
+  _basedir=gcc-${_snapshot}
+else
+  _basedir=gcc-${pkgver}
+fi
+
+build() {
+cd ${srcdir}/${_basedir} 
+
+# link isl for in-tree build
+ln -s ../isl-${_islver} isl
+
+# https://bugs.archlinux.org/task/34629
+# hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+
+echo ${pkgver} > gcc/BASE-VER
+
+cd ${srcdir}
+mkdir gcc-build && cd gcc-build
+
+export CFLAGS_FOR_TARGET='-O2 -pipe'
+export CXXFLAGS_FOR_TARGET='-O2 -pipe'
+
+# --disable-linker-build-id   https://bugs.archlinux.org/task/34902
+# --disable-__cxa_atexit   https://bugs.archlinux.org/task/50848
+${srcdir}/${_basedir}/configure \
+--disable-install-libiberty \
+--disable-libssp \
+--disable-libstdcxx-pch \
+--disable-libunwind-exceptions \
+--disable-linker-build-id \
+--disable-nls \
+--disable-werror \
+--disable-__cxa_atexit \
+--enable-checking=release \
+--enable-clocale=gnu \
+--enable-gnu-unique-object \
+--enable-gold \
+--enable-languages=c,c++ \
+--enable-ld=default \
+--enable-lto \
+--enable-plugin \
+--enable-shared \
+--infodir=/usr/share/info \
+--libdir=/usr/lib \
+--libexecdir=/usr/lib \
+--mandir=/usr/share/man \
+--prefix=/usr \
+--target=avr \
+--with-as=/usr/bin/avr-as \
+--with-gnu-as \
+--with-gnu-ld \
+--with-ld=/usr/bin/avr-ld \
+--with-plugin-ld=ld.gold \
+--with-system-zlib \
+--with-isl \
+--enable-gnu-indirect-function
+
+make
+}
+
+package() {
+cd ${srcdir}/gcc-build
+
+make -j1 DESTDIR=${pkgdir} install
+
+# Strip debug symbols from libraries; without this, the package size 
balloons to ~500MB.
+find ${pkgdir}/usr/lib -type f -name "*.a" \
+-exec /usr/bin/avr-strip --strip-debug '{}' \;
+
+# Install Runtime Library Exception
+install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
+${pkgdir}/usr/share/licenses/avr-gcc/RUNTIME.LIBRARY.EXCEPTION
+
+rm -r ${pkgdir}/usr/share/man/man7
+rm -r ${pkgdir}/usr/share/info
+rm ${pkgdir}/usr/lib/libcc1.*
+}

Copied: avr-gcc/repos/community-testing-x86_64/PKGBUILD (from rev 227651, 
avr-gcc/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-05-10 04:14:18 UTC (rev 227652)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: schuay 
+# Contributor: Brad Fanella 
+# 

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

2017-05-09 Thread Anatol Pomozov
Date: Wednesday, May 10, 2017 @ 04:13:22
  Author: anatolik
Revision: 227650

upgpkg: avr-gcc 7.1.0-1

Modified:
  avr-gcc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-10 03:46:04 UTC (rev 227649)
+++ PKGBUILD2017-05-10 04:13:22 UTC (rev 227650)
@@ -7,9 +7,9 @@
 # Build order: avr-binutils -> avr-gcc -> avr-libc
 
 pkgname=avr-gcc
-pkgver=6.3.0
+pkgver=7.1.0
 pkgrel=1
-_snapshot=6-20161222
+_snapshot=7-20170504
 _islver=0.18
 pkgdesc='The GNU AVR Compiler Collection'
 arch=(i686 x86_64)
@@ -22,7 +22,7 @@
 
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
 http://isl.gforge.inria.fr/isl-${_islver}.tar.bz2
)
-sha1sums=('167709c559d0656463f47e47a841921dae2d9ab9'
+sha1sums=('32a04c55957106324ab024798812c432e83c9c2b'
   'bbffc5a2b05e4f0c97e882f96c448504491dc4ed')
 
 if [ -n "${_snapshot}" ]; then


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

2017-05-09 Thread Jiachen Yang
Date: Wednesday, May 10, 2017 @ 04:13:29
  Author: farseerfc
Revision: 227651

upgpkg: powerline 2.6-1

powerline 2.6

Modified:
  powerline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-10 04:13:22 UTC (rev 227650)
+++ PKGBUILD2017-05-10 04:13:29 UTC (rev 227651)
@@ -9,7 +9,7 @@
 pkgbase="powerline"
 pkgname=("powerline" "powerline2" "python-powerline" "python2-powerline" 
"powerline-common" "powerline-vim" "powerline-fonts")
 pkgdesc='Statusline plugin for vim, and provides statuslines and prompts for 
several other applications, including zsh, bash, tmux, IPython, Awesome, i3 and 
Qtile'
-pkgver=2.5.2
+pkgver=2.6
 pkgrel=1
 url="https://github.com/${_pkgname}/${_pkgname};
 license=('MIT')
@@ -20,7 +20,7 @@
 'python-sphinx'
 )
 
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/${_pkgname}/${_pkgname}/archive/${pkgver}.tar.gz;)
-sha512sums=('ef85092de4b8c4f70fe2b41c54b2d7844f0d2b4decec78f51d49ccedbfce21a68e26c87ebf24e355bbc7eac2c7b60201edd16a28dc220cd526216a6659d0eb1d')
+sha512sums=('a4c72a6239b9c2f4db2b511647529eae008cfdd783b9a2ebe6bf7fe625e82801ff4da1887d6efa4b785966d46fac15ec4540aa2bd180722fd76fcd2873a074c0')
 
 
 


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:59:56
  Author: felixonmars
Revision: 227595

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

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

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

Copied: hoogle/repos/community-staging-i686/PKGBUILD (from rev 227594, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 21:59:56 UTC (rev 227595)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.12
+pkgrel=2
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" 
"haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d40c13674ad113079b23386d2fc5ae3a61dc79012e88f4e1bc2e2123106412b96cc32955e94ec0f294451feadd5bd06ad5b03ab1a40dd7172c5344bdd520e225')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}

Copied: hoogle/repos/community-staging-x86_64/PKGBUILD (from rev 227594, 
hoogle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 21:59:56 UTC (rev 227595)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hoogle
+pkgver=5.0.12
+pkgrel=2
+pkgdesc="Haskell API Search"
+url="http://www.haskell.org/hoogle/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-quickcheck" "haskell-aeson" 
"haskell-cmdargs" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-connection" "haskell-extra" 
"haskell-src-exts"
+ "haskell-http-conduit" "haskell-http-types" "haskell-js-flot" 
"haskell-js-jquery"
+ "haskell-mmap" "haskell-network" "haskell-network-uri" 
"haskell-old-locale"
+ "haskell-process-extras" "haskell-resourcet" "haskell-tar" 
"haskell-text"
+ "haskell-uniplate" "haskell-utf8-string" "haskell-vector" 
"haskell-wai"
+ "haskell-wai-logger" "haskell-warp" "haskell-warp-tls" 
"haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('d40c13674ad113079b23386d2fc5ae3a61dc79012e88f4e1bc2e2123106412b96cc32955e94ec0f294451feadd5bd06ad5b03ab1a40dd7172c5344bdd520e225')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" --datasubdir="$pkgname" \
+-fnetwork-uri
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:59:23
  Author: felixonmars
Revision: 227594

upgpkg: hoogle 5.0.12-2

rebuild with foundation,0.0.9

Modified:
  hoogle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 21:54:29 UTC (rev 227593)
+++ PKGBUILD2017-05-09 21:59:23 UTC (rev 227594)
@@ -4,7 +4,7 @@
 
 pkgname=hoogle
 pkgver=5.0.12
-pkgrel=1
+pkgrel=2
 pkgdesc="Haskell API Search"
 url="http://www.haskell.org/hoogle/;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:54:29
  Author: felixonmars
Revision: 227593

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 227592, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 227592, 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 227592, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 21:54:29 UTC (rev 227593)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170321
+pkgrel=41
+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-missingh" "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-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;)
+sha256sums=('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 227592, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 21:54:29 UTC (rev 227593)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20170321
+pkgrel=41
+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" 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:53:57
  Author: felixonmars
Revision: 227592

upgpkg: git-annex 6.20170321-41

rebuild with foundation,0.0.9

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 21:37:55 UTC (rev 227591)
+++ PKGBUILD2017-05-09 21:53:57 UTC (rev 227592)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20170321
-pkgrel=40
+pkgrel=41
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:37:55
  Author: felixonmars
Revision: 227591

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

Added:
  haskell-warp-tls/repos/community-staging-i686/
  haskell-warp-tls/repos/community-staging-i686/PKGBUILD
(from rev 227590, haskell-warp-tls/trunk/PKGBUILD)
  haskell-warp-tls/repos/community-staging-x86_64/
  haskell-warp-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 227590, haskell-warp-tls/trunk/PKGBUILD)

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

Copied: haskell-warp-tls/repos/community-staging-i686/PKGBUILD (from rev 
227590, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 21:37:55 UTC (rev 227591)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.3
+pkgrel=23
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" "haskell-wai" 
"haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5c4c871fee62021a7b3b22d1f2af3543843a0c54632da6f7be9ef58e65fa292')
+
+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-warp-tls/repos/community-staging-x86_64/PKGBUILD (from rev 
227590, haskell-warp-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 21:37:55 UTC (rev 227591)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=warp-tls
+pkgname=haskell-warp-tls
+pkgver=3.2.3
+pkgrel=23
+pkgdesc="HTTP over TLS support for Warp via the TLS package"
+url="http://github.com/yesodweb/wai;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-cryptonite" "haskell-data-default-class" 
"haskell-network"
+ "haskell-streaming-commons" "haskell-tls" "haskell-wai" 
"haskell-warp")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5c4c871fee62021a7b3b22d1f2af3543843a0c54632da6f7be9ef58e65fa292')
+
+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 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:37:27
  Author: felixonmars
Revision: 227590

upgpkg: haskell-warp-tls 3.2.3-23

rebuild with foundation,0.0.9

Modified:
  haskell-warp-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 21:33:54 UTC (rev 227589)
+++ PKGBUILD2017-05-09 21:37:27 UTC (rev 227590)
@@ -5,7 +5,7 @@
 _hkgname=warp-tls
 pkgname=haskell-warp-tls
 pkgver=3.2.3
-pkgrel=22
+pkgrel=23
 pkgdesc="HTTP over TLS support for Warp via the TLS package"
 url="http://github.com/yesodweb/wai;
 license=("MIT")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:33:54
  Author: felixonmars
Revision: 227589

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

Added:
  stack/repos/community-staging-i686/
  stack/repos/community-staging-i686/PKGBUILD
(from rev 227588, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/stack.install
(from rev 227588, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 227588, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/stack.install
(from rev 227588, stack/trunk/stack.install)

+
 community-staging-i686/PKGBUILD|   87 +++
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   87 +++
 community-staging-x86_64/stack.install |4 +
 4 files changed, 182 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 227588, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 21:33:54 UTC (rev 227589)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.4.0
+pkgrel=45
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-annotated-wl-pprint" 
"haskell-ansi-terminal"
+ "haskell-async" "haskell-attoparsec" "haskell-base-compat" 
"haskell-base64-bytestring"
+ "haskell-binary-tagged" "haskell-blaze-builder" "haskell-clock" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptonite" 
"haskell-cryptonite-conduit"
+ "haskell-either" "haskell-errors" "haskell-exceptions" 
"haskell-extra"
+ "haskell-fast-logger" "haskell-file-embed" "haskell-filelock" 
"haskell-fsnotify"
+ "haskell-generic-deriving" "haskell-gitrev" 
"haskell-hackage-security"
+ "haskell-hashable" "haskell-hastache" "haskell-hit" 
"haskell-http-client"
+ "haskell-http-client-tls" "haskell-http-conduit" 
"haskell-http-types" "haskell-hpack"
+ "haskell-lifted-async" "haskell-lifted-base" "haskell-memory" 
"haskell-microlens"
+ "haskell-microlens-mtl" "haskell-monad-control" 
"haskell-monad-logger"
+ "haskell-monad-unlift" "haskell-mtl" "haskell-network-uri" 
"haskell-open-browser"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-path-io" "haskell-persistent" "haskell-persistent-sqlite"
+ "haskell-persistent-template" "haskell-pid1" 
"haskell-project-template"
+ "haskell-regex-applicative-text" "haskell-resourcet" 
"haskell-retry" "haskell-safe"
+ "haskell-safe-exceptions" "haskell-semigroups" "haskell-split" 
"haskell-stm"
+ "haskell-store" "haskell-streaming-commons" "haskell-tar" 
"haskell-temporary"
+ "haskell-text" "haskell-text-binary" "haskell-text-metrics" 
"haskell-tls"
+ "haskell-transformers-base" "haskell-unicode-transforms" 
"haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-vector" 
"haskell-vector-binary-instances"
+ "haskell-yaml" "haskell-zip-archive" "haskell-zlib")
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/commercialhaskell/stack/archive/v$pkgver.tar.gz;
+
"store-0.4.patch::https://github.com/commercialhaskell/stack/commit/d3637126b9045b266d2e53387e183915cb4a912d.patch;)
+sha256sums=('595d311ad117e41ad908b7065743917542b40f343d1334673e98171ee74d36e6'
+'63d0f620dcbde3a7f236aadab32f5fa3e2b93741dcf462392624bb30b6b49c16')
+
+prepare() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+patch -p1 -i ../store-0.4.patch
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static 
-f-hide-dependency-versions
+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_stack() {
+depends=('gmp' 'libffi' 'zlib')
+optdepends=('ghc')
+install="stack.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 21:33:24
  Author: felixonmars
Revision: 227588

upgpkg: stack 1.4.0-45

rebuild with foundation,0.0.9

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 20:45:59 UTC (rev 227587)
+++ PKGBUILD2017-05-09 21:33:24 UTC (rev 227588)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.4.0
-pkgrel=44
+pkgrel=45
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 21:26:12
  Author: arojas
Revision: 295513

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

Added:
  unrar/repos/extra-i686/PKGBUILD
(from rev 295512, unrar/trunk/PKGBUILD)
  unrar/repos/extra-i686/unrar-5.3.4-soname.patch
(from rev 295512, unrar/trunk/unrar-5.3.4-soname.patch)
  unrar/repos/extra-x86_64/PKGBUILD
(from rev 295512, unrar/trunk/PKGBUILD)
  unrar/repos/extra-x86_64/unrar-5.3.4-soname.patch
(from rev 295512, unrar/trunk/unrar-5.3.4-soname.patch)
Deleted:
  unrar/repos/extra-i686/PKGBUILD
  unrar/repos/extra-i686/unrar-5.3.4-soname.patch
  unrar/repos/extra-x86_64/PKGBUILD
  unrar/repos/extra-x86_64/unrar-5.3.4-soname.patch

---+
 /PKGBUILD |  100 
 /unrar-5.3.4-soname.patch |   22 +++
 extra-i686/PKGBUILD   |   50 
 extra-i686/unrar-5.3.4-soname.patch   |   11 ---
 extra-x86_64/PKGBUILD |   50 
 extra-x86_64/unrar-5.3.4-soname.patch |   11 ---
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-09 21:25:47 UTC (rev 295512)
+++ extra-i686/PKGBUILD 2017-05-09 21:26:12 UTC (rev 295513)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: dorphell 
-
-pkgbase=unrar
-pkgname=('unrar' 'libunrar')
-pkgver=5.4.5
-pkgrel=1
-epoch=1
-arch=('i686' 'x86_64')
-url="http://www.rarlab.com/rar_add.htm;
-license=('custom')
-makedepends=('hardening-wrapper')
-source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;
-'unrar-5.3.4-soname.patch')
-md5sums=('588b3fadc04eea7372cbfe98e4709aee'
- 'cd9a5291db0379d73148872cf6e6d3ce')
-
-prepare() {
-  cd "${srcdir}/${pkgbase}"
-  patch -Np1 -i "${srcdir}/unrar-5.3.4-soname.patch"
-}
-
-build() {
-  cd "${srcdir}/${pkgbase}"
-  cp -a ${srcdir}/unrar ${srcdir}/libunrar
-  make -C "${srcdir}"/libunrar lib libversion=${pkgver} CXXFLAGS="-fPIC 
${CXXFLAGS}"
-  make CXXFLAGS="-fPIC ${CXXFLAGS}" STRIP="true"
-}
-
-package_unrar() {
-  pkgdesc="The RAR uncompression program"
-  depends=('gcc-libs')
-  cd "${srcdir}/${pkgbase}"
-  install -Dm755 unrar "${pkgdir}/usr/bin/unrar"
-  # install license
-  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_libunrar() {
-  pkgdesc="Library and header file for applications that use libunrar"
-  depends=('gcc-libs')
-  cd "${srcdir}/libunrar"
-  install -Dm755 libunrar.so.${pkgver} 
"${pkgdir}/usr/lib/libunrar.so.${pkgver}"
-  install -Dm644 dll.hpp "${pkgdir}/usr/include/unrar/dll.hpp"
-  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so.5"
-  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so"
-  # install license
-  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: unrar/repos/extra-i686/PKGBUILD (from rev 295512, unrar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-09 21:26:12 UTC (rev 295513)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: dorphell 
+
+pkgbase=unrar
+pkgname=('unrar' 'libunrar')
+pkgver=5.5.3
+pkgrel=1
+epoch=1
+arch=('i686' 'x86_64')
+url="http://www.rarlab.com/rar_add.htm;
+license=('custom')
+makedepends=('hardening-wrapper')
+source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;
+'unrar-5.3.4-soname.patch')
+md5sums=('21aacd1ce6c3e07f89801c78dbc31c01'
+ '8c0f28fc9e0c5a974396e82cf053a46b')
+
+prepare() {
+  cd "${srcdir}/${pkgbase}"
+  patch -Np1 -i "${srcdir}/unrar-5.3.4-soname.patch"
+}
+
+build() {
+  cd "${srcdir}/${pkgbase}"
+  cp -a ${srcdir}/unrar ${srcdir}/libunrar
+  make -C "${srcdir}"/libunrar lib libversion=${pkgver} CXXFLAGS="-fPIC 
${CXXFLAGS}"
+  make CXXFLAGS="-fPIC ${CXXFLAGS}" STRIP="true"
+}
+
+package_unrar() {
+  pkgdesc="The RAR uncompression program"
+  depends=('gcc-libs')
+  cd "${srcdir}/${pkgbase}"
+  install -Dm755 unrar "${pkgdir}/usr/bin/unrar"
+  # install license
+  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+
+package_libunrar() {
+  pkgdesc="Library and header file for applications that use libunrar"
+  depends=('gcc-libs')
+  cd "${srcdir}/libunrar"
+  install -Dm755 libunrar.so.${pkgver} 
"${pkgdir}/usr/lib/libunrar.so.${pkgver}"
+  install -Dm644 dll.hpp "${pkgdir}/usr/include/unrar/dll.hpp"
+  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so.5"
+  ln -s libunrar.so.${pkgver} "${pkgdir}/usr/lib/libunrar.so"
+  # install license
+  install -Dm644 license.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: extra-i686/unrar-5.3.4-soname.patch

[arch-commits] Commit in unrar/trunk (PKGBUILD unrar-5.3.4-soname.patch)

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 21:25:47
  Author: arojas
Revision: 295512

Update to 5.5.3

Modified:
  unrar/trunk/PKGBUILD
  unrar/trunk/unrar-5.3.4-soname.patch

--+
 PKGBUILD |6 +++---
 unrar-5.3.4-soname.patch |8 
 2 files changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 21:03:05 UTC (rev 295511)
+++ PKGBUILD2017-05-09 21:25:47 UTC (rev 295512)
@@ -4,7 +4,7 @@
 
 pkgbase=unrar
 pkgname=('unrar' 'libunrar')
-pkgver=5.4.5
+pkgver=5.5.3
 pkgrel=1
 epoch=1
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 makedepends=('hardening-wrapper')
 source=("http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;
 'unrar-5.3.4-soname.patch')
-md5sums=('588b3fadc04eea7372cbfe98e4709aee'
- 'cd9a5291db0379d73148872cf6e6d3ce')
+md5sums=('21aacd1ce6c3e07f89801c78dbc31c01'
+ '8c0f28fc9e0c5a974396e82cf053a46b')
 
 prepare() {
   cd "${srcdir}/${pkgbase}"

Modified: unrar-5.3.4-soname.patch
===
--- unrar-5.3.4-soname.patch2017-05-09 21:03:05 UTC (rev 295511)
+++ unrar-5.3.4-soname.patch2017-05-09 21:25:47 UTC (rev 295512)
@@ -1,11 +1,11 @@
 --- a/makefile 2013-04-29 16:27:05.0 +0200
 +++ b/makefile 2013-10-01 22:07:29.611485989 +0200
-@@ -133,7 +133,7 @@
- lib:  CXXFLAGS+=$(LIBFLAGS)
+@@ -146,7 +146,7 @@
  lib:  clean $(OBJECTS) $(LIB_OBJ)
@rm -f libunrar.so
+   @rm -f libunrar.a
 -  $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
 +  $(LINK) -shared -Wl,-soname,libunrar.so.$(libversion) -o 
libunrar.so.$(libversion) $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
- 
+   $(AR) rcs libunrar.a $(OBJECTS) $(LIB_OBJ)
+
  install-unrar:
-   install -D unrar $(DESTDIR)/bin/unrar


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

2017-05-09 Thread Jan Steffens
Date: Tuesday, May 9, 2017 @ 21:03:05
  Author: heftig
Revision: 295511

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

Added:
  webkit2gtk/repos/extra-i686/PKGBUILD
(from rev 295510, webkit2gtk/trunk/PKGBUILD)
  webkit2gtk/repos/extra-i686/icu59.patch
(from rev 295510, webkit2gtk/trunk/icu59.patch)
  webkit2gtk/repos/extra-x86_64/PKGBUILD
(from rev 295510, webkit2gtk/trunk/PKGBUILD)
  webkit2gtk/repos/extra-x86_64/icu59.patch
(from rev 295510, webkit2gtk/trunk/icu59.patch)
Deleted:
  
webkit2gtk/repos/extra-i686/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch
  
webkit2gtk/repos/extra-i686/0001-Show-a-log-message-when-an-invalid-message-is-receiv.patch
  webkit2gtk/repos/extra-i686/PKGBUILD
  webkit2gtk/repos/extra-i686/icu59.patch
  
webkit2gtk/repos/extra-x86_64/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch
  
webkit2gtk/repos/extra-x86_64/0001-Show-a-log-message-when-an-invalid-message-is-receiv.patch
  webkit2gtk/repos/extra-x86_64/PKGBUILD
  webkit2gtk/repos/extra-x86_64/icu59.patch

--+
 /PKGBUILD| 
 112 ++
 /icu59.patch | 
  76 +
 extra-i686/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch   | 
 390 --
 extra-i686/0001-Show-a-log-message-when-an-invalid-message-is-receiv.patch   | 
  38 
 extra-i686/PKGBUILD  | 
  62 -
 extra-i686/icu59.patch   | 
  38 
 extra-x86_64/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch | 
 390 --
 extra-x86_64/0001-Show-a-log-message-when-an-invalid-message-is-receiv.patch | 
  38 
 extra-x86_64/PKGBUILD| 
  62 -
 extra-x86_64/icu59.patch | 
  38 
 10 files changed, 188 insertions(+), 1056 deletions(-)

Deleted: 
extra-i686/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch
===
--- extra-i686/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch  
2017-05-09 21:02:09 UTC (rev 295510)
+++ extra-i686/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch  
2017-05-09 21:03:05 UTC (rev 295511)
@@ -1,390 +0,0 @@
-From 70c605847496766b0ca59bee03ecadb74e54a159 Mon Sep 17 00:00:00 2001
-From: "carlo...@webkit.org"
- 
-Date: Tue, 4 Apr 2017 16:12:17 +
-Subject: [PATCH] Merge r214319 - [JSC] MachineThreads does not consider
- situation that one thread has multiple VMs
- https://bugs.webkit.org/show_bug.cgi?id=169819
-
-Reviewed by Mark Lam.
-
-The Linux port of PlatformThread suspend/resume mechanism relies on having a 
thread
-specific singleton thread data, and was relying on MachineThreads::Thread to 
be this
-thread specific singleton. But because MachineThreads::Thread is not a thread 
specific
-singleton, we can get a deadlock in the GTK port's DatabaseProcess.
-
-This patch fixes this issue by moving per thread data from 
MachineThreads::Thread to
-MachineThreads::ThreadData, where there will only be one instance of
-MachineThreads::ThreadData per thread. Each MachineThreads::Thread will now 
point to
-the same MachineThreads::ThreadData for any given thread.
-
-* heap/MachineStackMarker.cpp:
-(pthreadSignalHandlerSuspendResume):
-(JSC::threadData):
-(JSC::MachineThreads::Thread::Thread):
-(JSC::MachineThreads::Thread::createForCurrentThread):
-(JSC::MachineThreads::Thread::operator==):
-(JSC::MachineThreads::ThreadData::ThreadData):
-(JSC::MachineThreads::ThreadData::~ThreadData):
-(JSC::MachineThreads::ThreadData::suspend):
-(JSC::MachineThreads::ThreadData::resume):
-(JSC::MachineThreads::ThreadData::getRegisters):
-(JSC::MachineThreads::ThreadData::Registers::stackPointer):
-(JSC::MachineThreads::ThreadData::Registers::framePointer):
-(JSC::MachineThreads::ThreadData::Registers::instructionPointer):
-(JSC::MachineThreads::ThreadData::Registers::llintPC):
-(JSC::MachineThreads::ThreadData::freeRegisters):
-(JSC::MachineThreads::ThreadData::captureStack):
-(JSC::MachineThreads::tryCopyOtherThreadStacks):
-(JSC::MachineThreads::Thread::~Thread): Deleted.
-(JSC::MachineThreads::Thread::suspend): Deleted.
-(JSC::MachineThreads::Thread::resume): Deleted.
-(JSC::MachineThreads::Thread::getRegisters): Deleted.
-(JSC::MachineThreads::Thread::Registers::stackPointer): Deleted.
-(JSC::MachineThreads::Thread::Registers::framePointer): Deleted.
-(JSC::MachineThreads::Thread::Registers::instructionPointer): Deleted.
-(JSC::MachineThreads::Thread::Registers::llintPC): Deleted.
-(JSC::MachineThreads::Thread::freeRegisters): Deleted.
-(JSC::MachineThreads::Thread::captureStack): Deleted.
-* 

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

2017-05-09 Thread Jan Steffens
Date: Tuesday, May 9, 2017 @ 21:02:09
  Author: heftig
Revision: 295510

Enable XMLRPC tests

Added:
  libsoup/trunk/0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch
Modified:
  libsoup/trunk/PKGBUILD

-+
 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch |  114 
++
 PKGBUILD|7 
 2 files changed, 119 insertions(+), 2 deletions(-)

Added: 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch
===
--- 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch 
(rev 0)
+++ 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch 
2017-05-09 21:02:09 UTC (rev 295510)
@@ -0,0 +1,114 @@
+From 22fae95aff7073da55b2a79055292d320475439b Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" 
+Date: Tue, 9 May 2017 22:54:16 +0200
+Subject: [PATCH] Configure PHP to load the XMLRPC extension if present
+
+This is needed when the system PHP configuration does not already load
+the extension.
+---
+ configure.ac| 7 ++-
+ tests/Makefile.am   | 8 +++-
+ tests/httpd.conf.in | 2 ++
+ tests/php.ini.in| 1 +
+ 4 files changed, 16 insertions(+), 2 deletions(-)
+ create mode 100644 tests/php.ini.in
+
+diff --git a/configure.ac b/configure.ac
+index 3df131e67d586522..868b00e7f091a70e 100644
+--- a/configure.ac
 b/configure.ac
+@@ -272,22 +272,26 @@ if test "$have_apache" = 1; then
+ 
+ if test "$have_php" = yes; then
+   AC_MSG_CHECKING([for php-xmlrpc])
+-  if $PHP --rf xmlrpc_server_create | grep -q "does not exist"; then
++  if $PHP -d extension=xmlrpc.so --rf xmlrpc_server_create | grep -q 
"does not exist"; then
+   have_php_xmlrpc=no
++  IF_HAVE_PHP_XMLRPC=";"
+   else
+   have_php_xmlrpc=yes
++  IF_HAVE_PHP_XMLRPC=""
+   AC_DEFINE(HAVE_PHP_XMLRPC, 1, [Have php-xmlrpc])
+   fi
+   AC_MSG_RESULT($have_php_xmlrpc)
++  AC_SUBST(IF_HAVE_PHP_XMLRPC)
+ fi
+ 
+ if test -f "$APACHE_MODULE_DIR/mod_unixd.so"; then
+   IF_HAVE_MOD_UNIXD=""
+ else
+   IF_HAVE_MOD_UNIXD="#"
+ fi
+ AC_SUBST(IF_HAVE_MOD_UNIXD)
+ fi
++AM_CONDITIONAL(HAVE_PHP, test "$have_php" = yes)
+ 
+ AC_PATH_PROG(CURL, curl, no)
+ if test "$CURL" != no; then
+@@ -415,6 +419,7 @@ AC_CONFIG_FILES([
+   po/Makefile
+   tests/Makefile
+   tests/httpd.conf
++  tests/php.ini
+   examples/Makefile
+   docs/Makefile
+   docs/reference/Makefile
+diff --git a/tests/Makefile.am b/tests/Makefile.am
+index 81a72cbc5ffd9739..d2986975be11eca2 100644
+--- a/tests/Makefile.am
 b/tests/Makefile.am
+@@ -73,24 +73,30 @@ test_data +=   \
+   httpd.conf
+ endif
+ 
++if HAVE_PHP
++test_data +=  \
++  php.ini
++endif
++
+ RESOURCES = $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) 
--generate-dependencies $(srcdir)/soup-tests.gresource.xml)
+ 
+ soup-tests.gresource: soup-tests.gresource.xml $(RESOURCES)
+   $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) 
$<
+ 
+ EXTRA_DIST +=  \
+   htdigest \
+   htpasswd \
+   httpd.conf.in\
+   index.txt\
+   libsoup.supp \
++  php.ini.in   \
+   soup-tests.gresource.xml \
+   test-cert.pem\
+   test-key.pem \
+   xmlrpc-server.php\
+   $(RESOURCES)
+ 
+-DISTCLEANFILES += soup-tests.gresource httpd.conf
++DISTCLEANFILES += soup-tests.gresource httpd.conf php.ini
+ 
+ TESTS_ENVIRONMENT += SOUP_TESTS_IN_MAKE_CHECK=1
+ 
+diff --git a/tests/httpd.conf.in b/tests/httpd.conf.in
+index b818c12d198e6618..31c36674a9c5d8c2 100644
+--- a/tests/httpd.conf.in
 b/tests/httpd.conf.in
+@@ -31,6 +31,8 @@ LoadModule proxy_connect_module 
@APACHE_MODULE_DIR@/mod_proxy_connect.so
+ LoadModule ssl_module   @APACHE_SSL_MODULE_DIR@/mod_ssl.so
+ @IF_HAVE_MOD_UNIXD@LoadModule unixd_module 
@APACHE_SSL_MODULE_DIR@/mod_unixd.so
+ 
++@IF_HAVE_PHP@PHPIniDir .
++
+ DirectoryIndex index.txt
+ TypesConfig /dev/null
+ AddType application/x-httpd-php .php
+diff --git a/tests/php.ini.in b/tests/php.ini.in
+new file mode 100644
+index ..779c022323b2f55f
+--- /dev/null
 b/tests/php.ini.in
+@@ -0,0 +1 @@
++@IF_HAVE_PHP_XMLRPC@extension=xmlrpc.so
+-- 
+2.12.2
+

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 20:58:19 UTC (rev 295509)
+++ PKGBUILD2017-05-09 21:02:09 UTC (rev 295510)
@@ -12,8 +12,10 @@
 makedepends=(intltool gobject-introspection python vala git gtk-doc)
 checkdepends=(apache php-apache)
 _commit=d6e006deed3a1f55b7a2bedded613a212fe9a16a  # tags/2.58.1^0

[arch-commits] Commit in webkit2gtk/trunk (3 files)

2017-05-09 Thread Jan Steffens
Date: Tuesday, May 9, 2017 @ 20:58:19
  Author: heftig
Revision: 295509

2.16.2-1

Modified:
  webkit2gtk/trunk/PKGBUILD
Deleted:
  
webkit2gtk/trunk/0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch
  
webkit2gtk/trunk/0001-Show-a-log-message-when-an-invalid-message-is-receiv.patch

-+
 0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch |  390 
--
 0001-Show-a-log-message-when-an-invalid-message-is-receiv.patch |   38 
 PKGBUILD|   12 
 3 files changed, 3 insertions(+), 437 deletions(-)

Deleted: 0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch
===
--- 0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch 
2017-05-09 20:52:03 UTC (rev 295508)
+++ 0001-Merge-r214319-JSC-MachineThreads-does-not-consider-s.patch 
2017-05-09 20:58:19 UTC (rev 295509)
@@ -1,390 +0,0 @@
-From 70c605847496766b0ca59bee03ecadb74e54a159 Mon Sep 17 00:00:00 2001
-From: "carlo...@webkit.org"
- 
-Date: Tue, 4 Apr 2017 16:12:17 +
-Subject: [PATCH] Merge r214319 - [JSC] MachineThreads does not consider
- situation that one thread has multiple VMs
- https://bugs.webkit.org/show_bug.cgi?id=169819
-
-Reviewed by Mark Lam.
-
-The Linux port of PlatformThread suspend/resume mechanism relies on having a 
thread
-specific singleton thread data, and was relying on MachineThreads::Thread to 
be this
-thread specific singleton. But because MachineThreads::Thread is not a thread 
specific
-singleton, we can get a deadlock in the GTK port's DatabaseProcess.
-
-This patch fixes this issue by moving per thread data from 
MachineThreads::Thread to
-MachineThreads::ThreadData, where there will only be one instance of
-MachineThreads::ThreadData per thread. Each MachineThreads::Thread will now 
point to
-the same MachineThreads::ThreadData for any given thread.
-
-* heap/MachineStackMarker.cpp:
-(pthreadSignalHandlerSuspendResume):
-(JSC::threadData):
-(JSC::MachineThreads::Thread::Thread):
-(JSC::MachineThreads::Thread::createForCurrentThread):
-(JSC::MachineThreads::Thread::operator==):
-(JSC::MachineThreads::ThreadData::ThreadData):
-(JSC::MachineThreads::ThreadData::~ThreadData):
-(JSC::MachineThreads::ThreadData::suspend):
-(JSC::MachineThreads::ThreadData::resume):
-(JSC::MachineThreads::ThreadData::getRegisters):
-(JSC::MachineThreads::ThreadData::Registers::stackPointer):
-(JSC::MachineThreads::ThreadData::Registers::framePointer):
-(JSC::MachineThreads::ThreadData::Registers::instructionPointer):
-(JSC::MachineThreads::ThreadData::Registers::llintPC):
-(JSC::MachineThreads::ThreadData::freeRegisters):
-(JSC::MachineThreads::ThreadData::captureStack):
-(JSC::MachineThreads::tryCopyOtherThreadStacks):
-(JSC::MachineThreads::Thread::~Thread): Deleted.
-(JSC::MachineThreads::Thread::suspend): Deleted.
-(JSC::MachineThreads::Thread::resume): Deleted.
-(JSC::MachineThreads::Thread::getRegisters): Deleted.
-(JSC::MachineThreads::Thread::Registers::stackPointer): Deleted.
-(JSC::MachineThreads::Thread::Registers::framePointer): Deleted.
-(JSC::MachineThreads::Thread::Registers::instructionPointer): Deleted.
-(JSC::MachineThreads::Thread::Registers::llintPC): Deleted.
-(JSC::MachineThreads::Thread::freeRegisters): Deleted.
-(JSC::MachineThreads::Thread::captureStack): Deleted.
-* heap/MachineStackMarker.h:
-(JSC::MachineThreads::Thread::operator!=):
-(JSC::MachineThreads::Thread::suspend):
-(JSC::MachineThreads::Thread::resume):
-(JSC::MachineThreads::Thread::getRegisters):
-(JSC::MachineThreads::Thread::freeRegisters):
-(JSC::MachineThreads::Thread::captureStack):
-(JSC::MachineThreads::Thread::platformThread):
-(JSC::MachineThreads::Thread::stackBase):
-(JSC::MachineThreads::Thread::stackEnd):
-* runtime/SamplingProfiler.cpp:
-(JSC::FrameWalker::isValidFramePointer):
-* runtime/VMTraps.cpp:
-(JSC::findActiveVMAndStackBounds):
-
-git-svn-id: 
http://svn.webkit.org/repository/webkit/releases/WebKitGTK/webkit-2.16@214882 
268f45cc-cd09-0410-ab3c-d52691b4dbfc

- Source/JavaScriptCore/heap/MachineStackMarker.cpp  | 73 +-
- Source/JavaScriptCore/heap/MachineStackMarker.h| 41 +---
- Source/JavaScriptCore/runtime/SamplingProfiler.cpp |  4 +-
- 4 files changed, 137 insertions(+), 41 deletions(-)
-
-diff --git a/Source/JavaScriptCore/heap/MachineStackMarker.cpp 
b/Source/JavaScriptCore/heap/MachineStackMarker.cpp
-index 65eb0cf0d9b..5fea745d2ad 100644
 a/Source/JavaScriptCore/heap/MachineStackMarker.cpp
-+++ b/Source/JavaScriptCore/heap/MachineStackMarker.cpp
-@@ -33,6 +33,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- 
- #if OS(DARWIN)
-@@ -69,14 +70,14 @@
- // We use SIGUSR2 to suspend and resume machine threads in JavaScriptCore.
- static const int SigThreadSuspendResume = SIGUSR2;
- 

[arch-commits] Commit in mpd/repos (16 files)

2017-05-09 Thread Gaëtan Bisson
Date: Tuesday, May 9, 2017 @ 20:52:03
  Author: bisson
Revision: 295508

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

Added:
  mpd/repos/extra-i686/PKGBUILD
(from rev 295507, mpd/trunk/PKGBUILD)
  mpd/repos/extra-i686/conf
(from rev 295507, mpd/trunk/conf)
  mpd/repos/extra-i686/install
(from rev 295507, mpd/trunk/install)
  mpd/repos/extra-i686/tmpfiles.d
(from rev 295507, mpd/trunk/tmpfiles.d)
  mpd/repos/extra-x86_64/PKGBUILD
(from rev 295507, mpd/trunk/PKGBUILD)
  mpd/repos/extra-x86_64/conf
(from rev 295507, mpd/trunk/conf)
  mpd/repos/extra-x86_64/install
(from rev 295507, mpd/trunk/install)
  mpd/repos/extra-x86_64/tmpfiles.d
(from rev 295507, mpd/trunk/tmpfiles.d)
Deleted:
  mpd/repos/extra-i686/PKGBUILD
  mpd/repos/extra-i686/conf
  mpd/repos/extra-i686/install
  mpd/repos/extra-i686/tmpfiles.d
  mpd/repos/extra-x86_64/PKGBUILD
  mpd/repos/extra-x86_64/conf
  mpd/repos/extra-x86_64/install
  mpd/repos/extra-x86_64/tmpfiles.d

-+
 /PKGBUILD   |  120 ++
 /conf   |   12 
 /install|   10 +++
 /tmpfiles.d |2 
 extra-i686/PKGBUILD |   60 ---
 extra-i686/conf |6 --
 extra-i686/install  |5 -
 extra-i686/tmpfiles.d   |1 
 extra-x86_64/PKGBUILD   |   60 ---
 extra-x86_64/conf   |6 --
 extra-x86_64/install|5 -
 extra-x86_64/tmpfiles.d |1 
 12 files changed, 144 insertions(+), 144 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-05-09 20:51:15 UTC (rev 295507)
+++ extra-i686/PKGBUILD 2017-05-09 20:52:03 UTC (rev 295508)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: Angel Velasquez 
-# Contributor: Andrea Scarpino 
-# Contributor: Damir Perisa 
-# Contributor: Ben 
-
-pkgname=mpd
-pkgver=0.20.6
-pkgrel=2
-pkgdesc='Flexible, powerful, server-side application for playing music'
-url='https://www.musicpd.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 
'faad2'
- 'sqlite' 'jack' 'libmms' 'wavpack' 'avahi' 'libid3tag' 'yajl' 
'libmpdclient'
- 'icu' 'libupnp' 'libnfs' 'libsamplerate' 'libsoxr' 'smbclient' 
'libcdio-paranoia'
- 'libgme')
-makedepends=('boost' 'doxygen')
-validpgpkeys=('0392335A78083894A4301C43236E8A58C6DB4512')
-#source=("https://www.musicpd.org/download/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-source=("https://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-'tmpfiles.d'
-'conf')
-sha256sums=('f4055e1189e5cc00e83706b2e0b5ead924ced0303e073d7802ee9f9a8eba4b47'
-'SKIP'
-'c1683ba35774c85e16c70e89f7e2ed1c09619512b1a273daabbd5e34d40439bd'
-'f40f68205834ca53cea3372e930bfe6c2f9ecc9df3b1605df2fec63a658b2e03')
-
-backup=('etc/mpd.conf')
-install=install
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   ./configure \
-   --prefix=/usr \
-   --sysconfdir=/etc \
-   --enable-cdio-paranoia \
-   --enable-libmpdclient \
-   --enable-jack \
-   --enable-soundcloud \
-   --enable-pipe-output \
-   --enable-pulse \
-   --disable-sidplay \
-   --with-systemduserunitdir=/usr/lib/systemd/user \
-   --with-systemdsystemunitdir=/usr/lib/systemd/system \
-
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}" install
-   install -Dm644 ../conf "${pkgdir}"/etc/mpd.conf
-   install -Dm644 ../tmpfiles.d "${pkgdir}"/usr/lib/tmpfiles.d/mpd.conf
-   install -d -g 45 -o 45 "${pkgdir}"/var/lib/mpd{,/playlists}
-
-   sed '/\[Service\]/a User=mpd' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
-   sed '/WantedBy=/c WantedBy=default.target' -i 
"${pkgdir}"/usr/lib/systemd/system/mpd.service
-}

Copied: mpd/repos/extra-i686/PKGBUILD (from rev 295507, mpd/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-05-09 20:52:03 UTC (rev 295508)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Gaetan Bisson 
+# Contributor: Angel Velasquez 
+# Contributor: Andrea Scarpino 
+# Contributor: Damir Perisa 
+# Contributor: Ben 
+
+pkgname=mpd
+pkgver=0.20.6
+pkgrel=3
+pkgdesc='Flexible, powerful, server-side application for playing music'
+url='https://www.musicpd.org/'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('libao' 

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

2017-05-09 Thread Gaëtan Bisson
Date: Tuesday, May 9, 2017 @ 20:51:15
  Author: bisson
Revision: 295507

upstream update

Modified:
  mpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:56:18 UTC (rev 295506)
+++ PKGBUILD2017-05-09 20:51:15 UTC (rev 295507)
@@ -7,7 +7,7 @@
 
 pkgname=mpd
 pkgver=0.20.6
-pkgrel=2
+pkgrel=3
 pkgdesc='Flexible, powerful, server-side application for playing music'
 url='https://www.musicpd.org/'
 license=('GPL')


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:45:59
  Author: felixonmars
Revision: 227587

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

Added:
  purescript/repos/community-staging-i686/
  purescript/repos/community-staging-i686/PKGBUILD
(from rev 227586, purescript/trunk/PKGBUILD)
  purescript/repos/community-staging-x86_64/
  purescript/repos/community-staging-x86_64/PKGBUILD
(from rev 227586, purescript/trunk/PKGBUILD)

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

Copied: purescript/repos/community-staging-i686/PKGBUILD (from rev 227586, 
purescript/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 20:45:59 UTC (rev 227587)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.11.4
+pkgrel=4
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-aeson-pretty"
+ "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-base-compat"
+ "haskell-blaze-html" "haskell-bower-json" "haskell-boxes" 
"haskell-cheapskate"
+ "haskell-clock" "haskell-data-ordlist" "haskell-dlist" 
"haskell-edit-distance"
+ "haskell-file-embed" "haskell-fsnotify" "haskell-glob" 
"haskell-http-client"
+ "haskell-http-types" "haskell-language-javascript" "haskell-lens" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parallel" "haskell-parsec"
+ "haskell-pattern-arrows" "haskell-pipes" "haskell-pipes-http" 
"haskell-protolude"
+ "haskell-regex-tdfa" "haskell-safe" "haskell-semigroups" 
"haskell-sourcemap"
+ "haskell-spdx" "haskell-split" "haskell-stm" "haskell-syb" 
"haskell-text"
+ "haskell-transformers-base" "haskell-transformers-compat"
+ "haskell-unordered-containers" "haskell-utf8-string" 
"haskell-vector" "haskell-wai"
+ "haskell-wai-websockets" "haskell-warp" "haskell-websockets")
+optdepends=('pulp: for development environment')
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('95beb7bd3e9ed69ecc82044065a25c77fc2693fd0597701eb9cfabb8e8901aa9716857a4fc50084da04253df51d7c9664f9f6b9e9e0d3d038864b12e869ef099')
+
+prepare() {
+sed -i 's/aeson >=1.0 && <1.1/aeson >=1.0/' 
${pkgname}-${pkgver}/${pkgname}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgbase" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-frelease
+LC_CTYPE=en_US.UTF-8 runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}

Copied: purescript/repos/community-staging-x86_64/PKGBUILD (from rev 227586, 
purescript/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 20:45:59 UTC (rev 227587)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=purescript
+pkgver=0.11.4
+pkgrel=4
+pkgdesc="PureScript Programming Language Compiler"
+url="http://www.purescript.org/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "haskell-aeson" "haskell-aeson-better-errors" 
"haskell-aeson-pretty"
+ "haskell-ansi-terminal" "haskell-ansi-wl-pprint" 
"haskell-base-compat"
+ "haskell-blaze-html" "haskell-bower-json" "haskell-boxes" 
"haskell-cheapskate"
+ "haskell-clock" "haskell-data-ordlist" "haskell-dlist" 
"haskell-edit-distance"
+ "haskell-file-embed" "haskell-fsnotify" "haskell-glob" 
"haskell-http-client"
+ "haskell-http-types" "haskell-language-javascript" "haskell-lens" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-network"
+ "haskell-optparse-applicative" "haskell-parallel" "haskell-parsec"
+ "haskell-pattern-arrows" 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:45:33
  Author: felixonmars
Revision: 227586

upgpkg: purescript 0.11.4-4

rebuild with foundation,0.0.9

Modified:
  purescript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 20:44:44 UTC (rev 227585)
+++ PKGBUILD2017-05-09 20:45:33 UTC (rev 227586)
@@ -4,7 +4,7 @@
 
 pkgname=purescript
 pkgver=0.11.4
-pkgrel=3
+pkgrel=4
 pkgdesc="PureScript Programming Language Compiler"
 url="http://www.purescript.org/;
 license=("custom:BSD3")


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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 20:44:44
  Author: arojas
Revision: 227585

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-09 20:43:59 UTC (rev 227584)
+++ community-i686/PKGBUILD 2017-05-09 20:44:44 UTC (rev 227585)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Adam Griffiths 
-
-pkgname=ode
-pkgver=0.14
-pkgrel=1
-pkgdesc="An open source, high performance library for simulating rigid body 
dynamics"
-arch=('i686' 'x86_64')
-url="https://bitbucket.org/odedevs/ode/;
-license=('LGPL' 'BSD')
-depends=('gcc-libs' 'bash')
-source=("https://bitbucket.org/odedevs/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7c0f3841adf9914b4fcb67bcf5d7b1c3')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./bootstrap
-  ./configure --prefix=/usr \
-  --enable-shared \
-  --enable-libccd \
-  --enable-double-precision
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR=${pkgdir}/ install
-
-  install -Dm0644 ${srcdir}/${pkgname}-${pkgver}/ou/LICENSE-BSD.TXT \
-  ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-BSD.TXT
-  install -Dm0644 
${srcdir}/${pkgname}-${pkgver}/GIMPACT/GIMPACT-LICENSE-BSD.TXT \
-  
${pkgdir}/usr/share/licenses/${pkgname}/GIMPACT-LICENSE-BSD.TXT
-  install -Dm0644 ${srcdir}/${pkgname}-${pkgver}/libccd/BSD-LICENSE \
-  ${pkgdir}/usr/share/licenses/${pkgname}/BSD-LICENSE
-}

Copied: ode/repos/community-i686/PKGBUILD (from rev 227584, ode/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-09 20:44:44 UTC (rev 227585)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: Adam Griffiths 
+
+pkgname=ode
+pkgver=0.15.1
+pkgrel=1
+pkgdesc="An open source, high performance library for simulating rigid body 
dynamics"
+arch=('i686' 'x86_64')
+url="https://bitbucket.org/odedevs/ode/;
+license=('LGPL' 'BSD')
+depends=('gcc-libs' 'bash')
+source=("https://bitbucket.org/odedevs/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('9afc11ddd198e751f57bdd8c49b65762')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./bootstrap
+  ./configure --prefix=/usr \
+  --enable-shared \
+  --enable-libccd \
+  --enable-double-precision
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR=${pkgdir}/ install
+
+  install -Dm0644 ${srcdir}/${pkgname}-${pkgver}/ou/LICENSE-BSD.TXT \
+  ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-BSD.TXT
+  install -Dm0644 
${srcdir}/${pkgname}-${pkgver}/GIMPACT/GIMPACT-LICENSE-BSD.TXT \
+  
${pkgdir}/usr/share/licenses/${pkgname}/GIMPACT-LICENSE-BSD.TXT
+  install -Dm0644 ${srcdir}/${pkgname}-${pkgver}/libccd/BSD-LICENSE \
+  ${pkgdir}/usr/share/licenses/${pkgname}/BSD-LICENSE
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-09 20:43:59 UTC (rev 227584)
+++ community-x86_64/PKGBUILD   2017-05-09 20:44:44 UTC (rev 227585)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: Adam Griffiths 
-
-pkgname=ode
-pkgver=0.14
-pkgrel=1
-pkgdesc="An open source, high performance library for simulating rigid body 
dynamics"
-arch=('i686' 'x86_64')
-url="https://bitbucket.org/odedevs/ode/;
-license=('LGPL' 'BSD')
-depends=('gcc-libs' 'bash')
-source=("https://bitbucket.org/odedevs/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7c0f3841adf9914b4fcb67bcf5d7b1c3')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./bootstrap
-  ./configure --prefix=/usr \
-  --enable-shared \
-  --enable-libccd \
-  --enable-double-precision
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR=${pkgdir}/ install
-
-  install -Dm0644 ${srcdir}/${pkgname}-${pkgver}/ou/LICENSE-BSD.TXT \
-  ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE-BSD.TXT
-  install -Dm0644 
${srcdir}/${pkgname}-${pkgver}/GIMPACT/GIMPACT-LICENSE-BSD.TXT \

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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 20:43:59
  Author: arojas
Revision: 227584

Update to 0.15.1

Modified:
  ode/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 20:21:53 UTC (rev 227583)
+++ PKGBUILD2017-05-09 20:43:59 UTC (rev 227584)
@@ -3,7 +3,7 @@
 # Contributor: Adam Griffiths 
 
 pkgname=ode
-pkgver=0.14
+pkgver=0.15.1
 pkgrel=1
 pkgdesc="An open source, high performance library for simulating rigid body 
dynamics"
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 license=('LGPL' 'BSD')
 depends=('gcc-libs' 'bash')
 
source=("https://bitbucket.org/odedevs/${pkgname}/downloads/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7c0f3841adf9914b4fcb67bcf5d7b1c3')
+md5sums=('9afc11ddd198e751f57bdd8c49b65762')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:21:53
  Author: felixonmars
Revision: 227583

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

Added:
  haskell-pipes-http/repos/community-staging-i686/
  haskell-pipes-http/repos/community-staging-i686/PKGBUILD
(from rev 227582, haskell-pipes-http/trunk/PKGBUILD)
  haskell-pipes-http/repos/community-staging-x86_64/
  haskell-pipes-http/repos/community-staging-x86_64/PKGBUILD
(from rev 227582, haskell-pipes-http/trunk/PKGBUILD)

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

Copied: haskell-pipes-http/repos/community-staging-i686/PKGBUILD (from rev 
227582, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 20:21:53 UTC (rev 227583)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=29
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+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-pipes-http/repos/community-staging-x86_64/PKGBUILD (from rev 
227582, haskell-pipes-http/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 20:21:53 UTC (rev 227583)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=pipes-http
+pkgname=haskell-pipes-http
+pkgver=1.0.5
+pkgrel=29
+pkgdesc="HTTP client with pipes interface"
+url="https://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-http-client" "haskell-http-client-tls" 
"haskell-pipes")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055')
+
+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-pipes-http/trunk (PKGBUILD)

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:21:25
  Author: felixonmars
Revision: 227582

upgpkg: haskell-pipes-http 1.0.5-29

rebuild with foundation,0.0.9

Modified:
  haskell-pipes-http/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 20:18:56 UTC (rev 227581)
+++ PKGBUILD2017-05-09 20:21:25 UTC (rev 227582)
@@ -5,7 +5,7 @@
 _hkgname=pipes-http
 pkgname=haskell-pipes-http
 pkgver=1.0.5
-pkgrel=28
+pkgrel=29
 pkgdesc="HTTP client with pipes interface"
 url="https://hackage.haskell.org/package/${_hkgname};
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:18:56
  Author: felixonmars
Revision: 227581

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

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

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

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 227580, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 20:18:56 UTC (rev 227581)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=36
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$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_pandoc-crossref() {
+depends=('pandoc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share}
+}
+
+package_haskell-pandoc-crossref() {
+pkgdesc="Pandoc filter for cross-references (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc-crossref')
+
+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/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE.md"
+}

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
227580, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 20:18:56 UTC (rev 227581)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.2.5.0
+pkgrel=36
+pkgdesc="Pandoc filter for cross-references"
+url="https://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-data-default" "haskell-data-accessor" 
"haskell-data-accessor-template"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc" "haskell-pandoc-types"
+ "haskell-roman-numerals" "haskell-syb" "haskell-utility-ht")
+source=("https://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d4d93bbe448e2cf187a0b7bcc605d0445e28021e4e31bfef890b93bee2b28491')
+
+prepare() {
+sed -i 's/pandoc >= 1.17.1 && <1.19/pandoc >= 1.17.1 \&\& <1.20/' 
${pkgbase}-${pkgver}/${pkgbase}.cabal
+}
+
+build() {
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:18:29
  Author: felixonmars
Revision: 227580

upgpkg: pandoc-crossref 0.2.5.0-36

rebuild with foundation,0.0.9

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 20:12:02 UTC (rev 227579)
+++ PKGBUILD2017-05-09 20:18:29 UTC (rev 227580)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.2.5.0
-pkgrel=35
+pkgrel=36
 pkgdesc="Pandoc filter for cross-references"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:12:02
  Author: felixonmars
Revision: 227579

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 227578, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 227578, 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 227578, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 20:12:02 UTC (rev 227579)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=52
+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;)
+sha256sums=('8deca33939717372ca227559dfe82aa0b02af49b19e9ea60051f555dcee2cfe6')
+
+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 
227578, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 20:12:02 UTC (rev 227579)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.9.5.1
+pkgrel=52
+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 haskell-hakyll/trunk (PKGBUILD)

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:11:36
  Author: felixonmars
Revision: 227578

upgpkg: haskell-hakyll 4.9.5.1-52

rebuild with foundation,0.0.9

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 20:04:44 UTC (rev 227577)
+++ PKGBUILD2017-05-09 20:11:36 UTC (rev 227578)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.9.5.1
-pkgrel=51
+pkgrel=52
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:04:44
  Author: felixonmars
Revision: 227577

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 227576, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 227576, 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 227576, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 20:04:44 UTC (rev 227577)
@@ -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=43
+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 
227576, pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 20:04:44 UTC (rev 227577)
@@ -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=43
+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-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 20:04:17
  Author: felixonmars
Revision: 227576

upgpkg: pandoc-citeproc 0.10.4.1-43

rebuild with foundation,0.0.9

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:56:02 UTC (rev 227575)
+++ PKGBUILD2017-05-09 20:04:17 UTC (rev 227576)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.10.4.1
-pkgrel=42
+pkgrel=43
 pkgdesc="Supports using pandoc with citeproc"
 url="https://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 19:56:02
  Author: arojas
Revision: 227575

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-09 19:55:29 UTC (rev 227574)
+++ community-i686/PKGBUILD 2017-05-09 19:56:02 UTC (rev 227575)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.2.3-39
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc="A free computer algebra system"
-arch=(i686 x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('e615c95338ee7ffc6fdb9b1f37a06a6b95a209c7fb81ded63f0b275f0c5d8de9')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-i686/PKGBUILD (from rev 227574, 
giac/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-09 19:56:02 UTC (rev 227575)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
+# Maintainer: Antonio Rojas 
+
+pkgbase=giac
+pkgname=(xcas libgiac)
+_pkgver=1.2.3-41
+pkgver=${_pkgver//-/.}
+pkgrel=1
+pkgdesc="A free computer algebra system"
+arch=(i686 x86_64)
+url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
+license=(GPL3)
+makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
+source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
+sha256sums=('c31401375af61c4be606bc60c775c8e488bff915f31d89f2d16df5f537dd3807')
+
+build() {
+  cd $pkgbase-${pkgver%.*}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package_xcas() {
+  depends=(libgiac fltk)
+  conflicts=(giac)
+  provides=(giac)
+  replaces=(giac)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{lib,include}
+}
+
+package_libgiac() {
+  pkgdesc="Giac shared library"
+  depends=(mpfi gsl pari ntl lapack libpng)
+
+  cd $pkgbase-${pkgver%.*}
+  make DESTDIR="$pkgdir" install
+
+  rm -r "$pkgdir"/usr/{bin,share}
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-09 19:55:29 UTC (rev 227574)
+++ community-x86_64/PKGBUILD   2017-05-09 19:56:02 UTC (rev 227575)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 175037 2016-05-12 15:18:07Z arojas $
-# Maintainer: Antonio Rojas 
-
-pkgbase=giac
-pkgname=(xcas libgiac)
-_pkgver=1.2.3-39
-pkgver=${_pkgver//-/.}
-pkgrel=1
-pkgdesc="A free computer algebra system"
-arch=(i686 x86_64)
-url="http://www-fourier.ujf-grenoble.fr/~parisse/giac.html;
-license=(GPL3)
-makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
-source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('e615c95338ee7ffc6fdb9b1f37a06a6b95a209c7fb81ded63f0b275f0c5d8de9')
-
-build() {
-  cd $pkgbase-${pkgver%.*}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package_xcas() {
-  depends=(libgiac fltk)
-  conflicts=(giac)
-  provides=(giac)
-  replaces=(giac)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{lib,include}
-}
-
-package_libgiac() {
-  pkgdesc="Giac shared library"
-  depends=(mpfi gsl pari ntl lapack libpng)
-
-  cd $pkgbase-${pkgver%.*}
-  make DESTDIR="$pkgdir" install
-
-  rm -r "$pkgdir"/usr/{bin,share}
-}

Copied: giac/repos/community-x86_64/PKGBUILD (from rev 227574, 
giac/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD 

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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 19:55:29
  Author: arojas
Revision: 227574

Update to 1.2.3.41

Modified:
  giac/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:50:55 UTC (rev 227573)
+++ PKGBUILD2017-05-09 19:55:29 UTC (rev 227574)
@@ -3,7 +3,7 @@
 
 pkgbase=giac
 pkgname=(xcas libgiac)
-_pkgver=1.2.3-39
+_pkgver=1.2.3-41
 pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc="A free computer algebra system"
@@ -12,7 +12,7 @@
 license=(GPL3)
 makedepends=(mpfi gsl pari ntl lapack libpng libjpeg fltk texlive-core)
 
source=("http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/${pkgbase}_${_pkgver}.tar.gz;)
-sha256sums=('e615c95338ee7ffc6fdb9b1f37a06a6b95a209c7fb81ded63f0b275f0c5d8de9')
+sha256sums=('c31401375af61c4be606bc60c775c8e488bff915f31d89f2d16df5f537dd3807')
 
 build() {
   cd $pkgbase-${pkgver%.*}


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:50:55
  Author: felixonmars
Revision: 227573

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

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

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

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 227572, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 19:50:55 UTC (rev 227573)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=50
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cmark" "haskell-data-default" "haskell-doctemplates" 
"haskell-mtl"
+ "haskell-extensible-exceptions" "haskell-filemanip" 
"haskell-haddock-library"
+ "haskell-skylighting" "haskell-hslua" "haskell-http-client" 
"haskell-syb"
+ "haskell-http-client-tls" "haskell-http-types"  "haskell-text" 
"haskell-texmath"
+ "haskell-network" "haskell-old-time" "haskell-pandoc-types" 
"haskell-parsec"
+ "haskell-random" "haskell-scientific" "haskell-tagsoup" 
"haskell-temporary"
+ "haskell-network-uri" "haskell-unordered-containers" 
"haskell-zip-archive"
+ "haskell-vector" "haskell-xml" "haskell-yaml" "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('08692f3d77bf95bb9ba3407f7af26de7c23134e7efcdafad0bdaf9050e2c7801')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgbase}" 
--datasubdir="$pkgname" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-old-locale -fnetwork-uri -fhttps -f-trypandoc 
-f-embed_data_files -f-weigh-pandoc
+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() {
+depends=('gmp' 'libffi' 'zlib' 'pcre' 'cmark')
+optdepends=('pandoc-citeproc: for citation rendering with pandoc-citeproc 
filter'
+'texlive-core: for pdf output')
+replaces=('pandoc-static')
+conflicts=('pandoc-static')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+}
+
+package_haskell-pandoc() {
+pkgdesc="Conversion between markup formats (docs and libraries)"
+depends=("${makedepends[@]}" 'pandoc')
+
+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/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${pkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/share/{pandoc,man} "$pkgdir"/usr/bin
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.md"
+}

Copied: pandoc/repos/community-staging-x86_64/PKGBUILD (from rev 227572, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 19:50:55 UTC (rev 227573)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.19.2.1
+pkgrel=50
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=8.0.1" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:50:26
  Author: felixonmars
Revision: 227572

upgpkg: pandoc 1.19.2.1-50

rebuild with foundation,0.0.9

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:48:50 UTC (rev 227571)
+++ PKGBUILD2017-05-09 19:50:26 UTC (rev 227572)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.19.2.1
-pkgrel=49
+pkgrel=50
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


[arch-commits] Commit in virtualbox/trunk (PKGBUILD virtualbox-ext-vnc.install)

2017-05-09 Thread Christian Hesse
Date: Tuesday, May 9, 2017 @ 19:48:23
  Author: eworm
Revision: 227570

upgpkg: virtualbox 5.1.22-2

fix installing VNC package (FS#53900)

Modified:
  virtualbox/trunk/PKGBUILD
  virtualbox/trunk/virtualbox-ext-vnc.install

+
 PKGBUILD   |2 +-
 virtualbox-ext-vnc.install |5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:39:19 UTC (rev 227569)
+++ PKGBUILD2017-05-09 19:48:23 UTC (rev 227570)
@@ -11,7 +11,7 @@
  'virtualbox-guest-utils-nox'
  'virtualbox-ext-vnc')
 pkgver=5.1.22
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL' 'custom')

Modified: virtualbox-ext-vnc.install
===
--- virtualbox-ext-vnc.install  2017-05-09 19:39:19 UTC (rev 227569)
+++ virtualbox-ext-vnc.install  2017-05-09 19:48:23 UTC (rev 227570)
@@ -2,8 +2,9 @@
 
 # arg 1:  the new package version
 post_install() {
-  VBoxManage extpack install 
"/usr/share/virtualbox/extensions/VNC-${1%%-*}.vbox-extpack" \
---accept-license="$(sha256sum 
/usr/share/licenses/virtualbox-ext-vnc/LICENSE | head --bytes=64)" >/dev/null
+  EXTPACK="/usr/share/virtualbox/extensions/VNC-${1%%-*}.vbox-extpack"
+  ACCEPT="$(bsdtar --to-stdout -xf "${EXTPACK}" ./ExtPack-license.txt | 
sha256sum | head --bytes=64)"
+  VBoxManage extpack install "${EXTPACK}" --accept-license="${ACCEPT}" 
>/dev/null
 }
 
 # arg 1:  the new package version


[arch-commits] Commit in emby-server/repos (24 files)

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:39:19
  Author: alucryd
Revision: 227569

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

Added:
  emby-server/repos/community-i686/PKGBUILD
(from rev 227568, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-i686/emby-migrate-database
(from rev 227568, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-i686/emby-server
(from rev 227568, emby-server/trunk/emby-server)
  emby-server/repos/community-i686/emby-server.conf
(from rev 227568, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-i686/emby-server.install
(from rev 227568, emby-server/trunk/emby-server.install)
  emby-server/repos/community-i686/emby-server.service
(from rev 227568, emby-server/trunk/emby-server.service)
  emby-server/repos/community-x86_64/PKGBUILD
(from rev 227568, emby-server/trunk/PKGBUILD)
  emby-server/repos/community-x86_64/emby-migrate-database
(from rev 227568, emby-server/trunk/emby-migrate-database)
  emby-server/repos/community-x86_64/emby-server
(from rev 227568, emby-server/trunk/emby-server)
  emby-server/repos/community-x86_64/emby-server.conf
(from rev 227568, emby-server/trunk/emby-server.conf)
  emby-server/repos/community-x86_64/emby-server.install
(from rev 227568, emby-server/trunk/emby-server.install)
  emby-server/repos/community-x86_64/emby-server.service
(from rev 227568, emby-server/trunk/emby-server.service)
Deleted:
  emby-server/repos/community-i686/PKGBUILD
  emby-server/repos/community-i686/emby-migrate-database
  emby-server/repos/community-i686/emby-server
  emby-server/repos/community-i686/emby-server.conf
  emby-server/repos/community-i686/emby-server.install
  emby-server/repos/community-i686/emby-server.service
  emby-server/repos/community-x86_64/PKGBUILD
  emby-server/repos/community-x86_64/emby-migrate-database
  emby-server/repos/community-x86_64/emby-server
  emby-server/repos/community-x86_64/emby-server.conf
  emby-server/repos/community-x86_64/emby-server.install
  emby-server/repos/community-x86_64/emby-server.service

+
 /PKGBUILD  |  112 +++
 /emby-migrate-database |  112 +++
 /emby-server   |6 +
 /emby-server.conf  |8 ++
 /emby-server.install   |   36 +
 /emby-server.service   |   32 
 community-i686/PKGBUILD|   56 ---
 community-i686/emby-migrate-database   |   56 ---
 community-i686/emby-server |3 
 community-i686/emby-server.conf|4 -
 community-i686/emby-server.install |   18 
 community-i686/emby-server.service |   16 
 community-x86_64/PKGBUILD  |   56 ---
 community-x86_64/emby-migrate-database |   56 ---
 community-x86_64/emby-server   |3 
 community-x86_64/emby-server.conf  |4 -
 community-x86_64/emby-server.install   |   18 
 community-x86_64/emby-server.service   |   16 
 18 files changed, 306 insertions(+), 306 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-09 19:39:01 UTC (rev 227568)
+++ community-i686/PKGBUILD 2017-05-09 19:39:19 UTC (rev 227569)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Daniel Seymour 
-
-pkgname=emby-server
-pkgver=3.2.14.0
-pkgrel=1
-pkgdesc='Bring together your videos, music, photos, and live television'
-arch=('i686' 'x86_64')
-url='http://emby.media'
-license=('GPL2')
-depends=('ffmpeg' 'imagemagick' 'mono' 'referenceassemblies-pcl' 'sqlite')
-install='emby-server.install'
-source=("emby-server-${pkgver}.tar.gz::https://github.com/MediaBrowser/Emby/archive/${pkgver}.tar.gz;
-'emby-server'
-'emby-migrate-database'
-'emby-server.conf'
-'emby-server.service')
-backup=('etc/conf.d/emby-server')
-sha256sums=('d21415f342586ccbbb454c1f488c5805a99c4f8a7159f1914c3df9dd8efbad12'
-'7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
-'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
-'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'
-'8a91ea49a1699c820c4a180710072cba1d6d5c10e45df97477ff6a898f4e1d70')
-
-prepare() {
-  cd Emby-${pkgver}
-
-  sed 's/libMagickWand-6.Q8.so/libMagickWand-6.Q16HDRI.so/' -i 
MediaBrowser.Server.Mono/ImageMagickSharp.dll.config
-}
-
-build() {
-  cd Emby-${pkgver}
-
-  xbuild \
-/p:Configuration='Release Mono' \
-/p:Platform='Any CPU' \
-/p:OutputPath="${srcdir}/build" \
-/t:build MediaBrowser.Mono.sln
-  mono --aot='full' -O='all' ../build/MediaBrowser.Server.Mono.exe
-}
-
-package() {
- 

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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:39:01
  Author: alucryd
Revision: 227568

upgpkg: emby-server 3.2.15.0-1

Modified:
  emby-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:26:47 UTC (rev 227567)
+++ PKGBUILD2017-05-09 19:39:01 UTC (rev 227568)
@@ -3,7 +3,7 @@
 # Contributor: Daniel Seymour 
 
 pkgname=emby-server
-pkgver=3.2.14.0
+pkgver=3.2.15.0
 pkgrel=1
 pkgdesc='Bring together your videos, music, photos, and live television'
 arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@
 'emby-server.conf'
 'emby-server.service')
 backup=('etc/conf.d/emby-server')
-sha256sums=('d21415f342586ccbbb454c1f488c5805a99c4f8a7159f1914c3df9dd8efbad12'
+sha256sums=('b5b5b7dc9596308e316c1aae5ae59416e08c9ff331a0c4c167f3ad312af210aa'
 '7b1974f7bba8ac4b76e51ef7fe1257d165c7c4abbd0915e192391336048a3d74'
 'b25bf83a0ab371aff3b13b82f7af71b51bfe6d7e51eb8a8a3dd8f0774ffce6a5'
 'c9ad78f3e2f0ffcb4ee66bb3e99249fcd283dc9fee17895b9265dc733288b953'


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:26:47
  Author: felixonmars
Revision: 227567

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 227566, haskell-yesod-auth/trunk/PKGBUILD)
  haskell-yesod-auth/repos/community-staging-x86_64/
  haskell-yesod-auth/repos/community-staging-x86_64/PKGBUILD
(from rev 227566, 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 
227566, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 19:26:47 UTC (rev 227567)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=43
+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-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "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;)
+sha256sums=('444a9b4b913e5f7addb1b9c5aa778f32d2b9e040d9b1c4d8a232fae908392891')
+
+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 
227566, haskell-yesod-auth/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 19:26:47 UTC (rev 227567)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-auth
+pkgname=haskell-yesod-auth
+pkgver=1.4.17
+pkgrel=43
+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-cryptohash" "haskell-data-default" "haskell-email-validate"
+ "haskell-file-embed" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-mime-mail" 
"haskell-network-uri"
+ "haskell-nonce" "haskell-persistent" "haskell-persistent-template" 
"haskell-random"
+ "haskell-resourcet" "haskell-safe" "haskell-shakespeare" 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:26:21
  Author: felixonmars
Revision: 227566

upgpkg: haskell-yesod-auth 1.4.17-43

rebuild with foundation,0.0.9

Modified:
  haskell-yesod-auth/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:24:51 UTC (rev 227565)
+++ PKGBUILD2017-05-09 19:26:21 UTC (rev 227566)
@@ -5,7 +5,7 @@
 _hkgname=yesod-auth
 pkgname=haskell-yesod-auth
 pkgver=1.4.17
-pkgrel=42
+pkgrel=43
 pkgdesc="Authentication for Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:24:44
  Author: alucryd
Revision: 227564

upgpkg: lib32-libepoxy 1.4.2-1

Modified:
  lib32-libepoxy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:19:43 UTC (rev 227563)
+++ PKGBUILD2017-05-09 19:24:44 UTC (rev 227564)
@@ -3,7 +3,7 @@
 # Contributor: Laurent Carlier 
 
 pkgname=lib32-libepoxy
-pkgver=1.4.1
+pkgver=1.4.2
 pkgrel=1
 pkgdesc='Library handling OpenGL function pointer management'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('lib32-glibc')
 makedepends=('gcc-multilib' 'lib32-libgl' 'meson' 'python')
 
source=("https://github.com/anholt/libepoxy/releases/download/${pkgver}/libepoxy-${pkgver}.tar.xz;)
-sha256sums=('88c6abf5522fc29bab7d6c555fd51a855cbd9253c4315f8ea44e832baef21aa6')
+sha256sums=('bea6fdec3d10939954495da898d872ee836b75c35699074cbf02a64fcb80d5b3')
 
 prepare() {
   cd libepoxy-${pkgver}
@@ -29,7 +29,6 @@
   export CC='gcc -m32'
   export CXX='/bin/false'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  export LANG='en_US.UTF-8'
 
   meson \
 --prefix='/usr' \


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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:24:51
  Author: alucryd
Revision: 227565

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libepoxy/repos/multilib-x86_64/PKGBUILD
(from rev 227564, lib32-libepoxy/trunk/PKGBUILD)
Deleted:
  lib32-libepoxy/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  103 ++---
 1 file changed, 51 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-09 19:24:44 UTC (rev 227564)
+++ PKGBUILD2017-05-09 19:24:51 UTC (rev 227565)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Laurent Carlier 
-
-pkgname=lib32-libepoxy
-pkgver=1.4.1
-pkgrel=1
-pkgdesc='Library handling OpenGL function pointer management'
-arch=('x86_64')
-url='https://github.com/anholt/libepoxy'
-license=('MIT')
-depends=('lib32-glibc')
-makedepends=('gcc-multilib' 'lib32-libgl' 'meson' 'python')
-source=("https://github.com/anholt/libepoxy/releases/download/${pkgver}/libepoxy-${pkgver}.tar.xz;)
-sha256sums=('88c6abf5522fc29bab7d6c555fd51a855cbd9253c4315f8ea44e832baef21aa6')
-
-prepare() {
-  cd libepoxy-${pkgver}
-
-  if [[ -d build ]]; then
-rm -rf build
-  fi
-  mkdir build
-}
-
-build() {
-  cd libepoxy-${pkgver}/build
-
-  export CC='gcc -m32'
-  export CXX='/bin/false'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-  export LANG='en_US.UTF-8'
-
-  meson \
---prefix='/usr' \
---libdir='/usr/lib32' \
---buildtype='release' \
-..
-  ninja
-}
-
-package() {
-  cd libepoxy-${pkgver}/build
-
-  DESTDIR="${pkgdir}" ninja install
-  rm -rf "${pkgdir}"/usr/include
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libepoxy "${pkgdir}"/usr/share/licenses/lib32-libepoxy
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-libepoxy/repos/multilib-x86_64/PKGBUILD (from rev 227564, 
lib32-libepoxy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-09 19:24:51 UTC (rev 227565)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Laurent Carlier 
+
+pkgname=lib32-libepoxy
+pkgver=1.4.2
+pkgrel=1
+pkgdesc='Library handling OpenGL function pointer management'
+arch=('x86_64')
+url='https://github.com/anholt/libepoxy'
+license=('MIT')
+depends=('lib32-glibc')
+makedepends=('gcc-multilib' 'lib32-libgl' 'meson' 'python')
+source=("https://github.com/anholt/libepoxy/releases/download/${pkgver}/libepoxy-${pkgver}.tar.xz;)
+sha256sums=('bea6fdec3d10939954495da898d872ee836b75c35699074cbf02a64fcb80d5b3')
+
+prepare() {
+  cd libepoxy-${pkgver}
+
+  if [[ -d build ]]; then
+rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd libepoxy-${pkgver}/build
+
+  export CC='gcc -m32'
+  export CXX='/bin/false'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  meson \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--buildtype='release' \
+..
+  ninja
+}
+
+package() {
+  cd libepoxy-${pkgver}/build
+
+  DESTDIR="${pkgdir}" ninja install
+  rm -rf "${pkgdir}"/usr/include
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libepoxy "${pkgdir}"/usr/share/licenses/lib32-libepoxy
+}
+
+# vim: ts=2 sw=2 et:


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:19:43
  Author: felixonmars
Revision: 227563

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

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

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

Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 227562, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 19:19:43 UTC (rev 227563)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.16
+pkgrel=29
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="http://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default"
+ "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-safe" "haskell-scientific" 
"haskell-tagged"
+ "haskell-text" "haskell-unordered-containers" "haskell-utf8-string"
+ "haskell-vector" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('84b5c60227f3c9eddc0abf0881aee22443fc4a211b8a95f18be628eaa492209c')
+
+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 \
+-f-examples
+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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 227562, 
haskell-aws/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 19:19:43 UTC (rev 227563)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aws
+pkgname=haskell-aws
+pkgver=0.16
+pkgrel=29
+pkgdesc="Amazon Web Services (AWS) for Haskell"
+url="http://github.com/aristidb/aws;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-attoparsec" 
"haskell-base16-bytestring"
+ "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable"
+ "haskell-case-insensitive" "haskell-cereal" "haskell-conduit"
+ "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default"
+ "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-network" 
"haskell-old-locale"
+ "haskell-resourcet" "haskell-safe" "haskell-scientific" 
"haskell-tagged"
+ "haskell-text" "haskell-unordered-containers" "haskell-utf8-string"
+ "haskell-vector" "haskell-xml-conduit")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('84b5c60227f3c9eddc0abf0881aee22443fc4a211b8a95f18be628eaa492209c')
+
+build() {
+

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:19:17
  Author: felixonmars
Revision: 227562

upgpkg: haskell-aws 0.16-29

rebuild with foundation,0.0.9

Modified:
  haskell-aws/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:18:18 UTC (rev 227561)
+++ PKGBUILD2017-05-09 19:19:17 UTC (rev 227562)
@@ -5,7 +5,7 @@
 _hkgname=aws
 pkgname=haskell-aws
 pkgver=0.16
-pkgrel=28
+pkgrel=29
 pkgdesc="Amazon Web Services (AWS) for Haskell"
 url="http://github.com/aristidb/aws;
 license=("custom:BSD3")


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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 19:18:18
  Author: arojas
Revision: 227561

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

Added:
  latte-dock/repos/community-i686/PKGBUILD
(from rev 227560, latte-dock/trunk/PKGBUILD)
  latte-dock/repos/community-x86_64/PKGBUILD
(from rev 227560, latte-dock/trunk/PKGBUILD)
Deleted:
  latte-dock/repos/community-i686/PKGBUILD
  latte-dock/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-05-09 19:17:52 UTC (rev 227560)
+++ community-i686/PKGBUILD 2017-05-09 19:18:18 UTC (rev 227561)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Michael Straube 
-
-pkgname=latte-dock
-pkgver=0.6.1
-pkgrel=1
-pkgdesc='A dock based on Plasma Frameworks'
-arch=(i686 x86_64)
-url='https://github.com/psifidotos/Latte-Dock'
-license=(GPL)
-depends=(plasma-framework hicolor-icon-theme)
-makedepends=(extra-cmake-modules python)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/psifidotos/Latte-Dock/archive/v$pkgver.tar.gz;)
-sha256sums=('120855cdcaced156b0c7ff6cabcf3da183aac671753e74990ef638ca57e9363e')
-
-prepare() {
-  mkdir -p Latte-Dock-$pkgver/build # out-of-tree build fails
-}
-
-build() {
-  cd Latte-Dock-$pkgver/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd Latte-Dock-$pkgver/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: latte-dock/repos/community-i686/PKGBUILD (from rev 227560, 
latte-dock/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-09 19:18:18 UTC (rev 227561)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Michael Straube 
+
+pkgname=latte-dock
+pkgver=0.6.2
+pkgrel=1
+pkgdesc='A dock based on Plasma Frameworks'
+arch=(i686 x86_64)
+url='https://github.com/psifidotos/Latte-Dock'
+license=(GPL)
+depends=(plasma-framework hicolor-icon-theme)
+makedepends=(extra-cmake-modules python)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/psifidotos/Latte-Dock/archive/v$pkgver.tar.gz;)
+sha256sums=('3de5826473f467e2f92fda5296dc1cb4f73aa7cf11c32f5a43d5886b899332b3')
+
+prepare() {
+  mkdir -p Latte-Dock-$pkgver/build # out-of-tree build fails
+}
+
+build() {
+  cd Latte-Dock-$pkgver/build
+
+  cmake .. \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd Latte-Dock-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-09 19:17:52 UTC (rev 227560)
+++ community-x86_64/PKGBUILD   2017-05-09 19:18:18 UTC (rev 227561)
@@ -1,33 +0,0 @@
-# Maintainer: Antonio Rojas 
-# Contributor: Michael Straube 
-
-pkgname=latte-dock
-pkgver=0.6.1
-pkgrel=1
-pkgdesc='A dock based on Plasma Frameworks'
-arch=(i686 x86_64)
-url='https://github.com/psifidotos/Latte-Dock'
-license=(GPL)
-depends=(plasma-framework hicolor-icon-theme)
-makedepends=(extra-cmake-modules python)
-source=("$pkgname-$pkgver.tar.gz::https://github.com/psifidotos/Latte-Dock/archive/v$pkgver.tar.gz;)
-sha256sums=('120855cdcaced156b0c7ff6cabcf3da183aac671753e74990ef638ca57e9363e')
-
-prepare() {
-  mkdir -p Latte-Dock-$pkgver/build # out-of-tree build fails
-}
-
-build() {
-  cd Latte-Dock-$pkgver/build
-
-  cmake .. \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd Latte-Dock-$pkgver/build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: latte-dock/repos/community-x86_64/PKGBUILD (from rev 227560, 
latte-dock/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-09 19:18:18 UTC (rev 227561)
@@ -0,0 +1,33 @@
+# Maintainer: Antonio Rojas 
+# Contributor: Michael Straube 
+
+pkgname=latte-dock
+pkgver=0.6.2
+pkgrel=1
+pkgdesc='A dock based on Plasma Frameworks'
+arch=(i686 x86_64)
+url='https://github.com/psifidotos/Latte-Dock'
+license=(GPL)
+depends=(plasma-framework hicolor-icon-theme)
+makedepends=(extra-cmake-modules python)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/psifidotos/Latte-Dock/archive/v$pkgver.tar.gz;)
+sha256sums=('3de5826473f467e2f92fda5296dc1cb4f73aa7cf11c32f5a43d5886b899332b3')
+
+prepare() {
+  mkdir -p 

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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 19:17:52
  Author: arojas
Revision: 227560

Update to 0.6.2

Modified:
  latte-dock/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:14:37 UTC (rev 227559)
+++ PKGBUILD2017-05-09 19:17:52 UTC (rev 227560)
@@ -2,7 +2,7 @@
 # Contributor: Michael Straube 
 
 pkgname=latte-dock
-pkgver=0.6.1
+pkgver=0.6.2
 pkgrel=1
 pkgdesc='A dock based on Plasma Frameworks'
 arch=(i686 x86_64)
@@ -11,7 +11,7 @@
 depends=(plasma-framework hicolor-icon-theme)
 makedepends=(extra-cmake-modules python)
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/psifidotos/Latte-Dock/archive/v$pkgver.tar.gz;)
-sha256sums=('120855cdcaced156b0c7ff6cabcf3da183aac671753e74990ef638ca57e9363e')
+sha256sums=('3de5826473f467e2f92fda5296dc1cb4f73aa7cf11c32f5a43d5886b899332b3')
 
 prepare() {
   mkdir -p Latte-Dock-$pkgver/build # out-of-tree build fails


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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 19:14:37
  Author: arojas
Revision: 227559

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

Added:
  mate-polkit/repos/community-i686/PKGBUILD
(from rev 227558, mate-polkit/trunk/PKGBUILD)
  mate-polkit/repos/community-x86_64/PKGBUILD
(from rev 227558, mate-polkit/trunk/PKGBUILD)
Deleted:
  mate-polkit/repos/community-i686/PKGBUILD
  mate-polkit/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-05-09 19:13:54 UTC (rev 227558)
+++ community-i686/PKGBUILD 2017-05-09 19:14:37 UTC (rev 227559)
@@ -1,36 +0,0 @@
-# Contributor: Martin Wimpress 
-
-pkgname=mate-polkit
-pkgver=1.18.0
-pkgrel=1
-pkgdesc="PolicyKit integration for the MATE desktop"
-url="http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('LGPL')
-groups=('mate')
-depends=('gtk3' 'polkit')
-makedepends=('accountsservice' 'gobject-introspection' 'intltool')
-conflicts=('mate-polkit-gtk3')
-replaces=('mate-polkit-gtk3')
-source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6605b950811dfae23947b0727a3c3b12ee0ce2db')
-
-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-polkit/repos/community-i686/PKGBUILD (from rev 227558, 
mate-polkit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-09 19:14:37 UTC (rev 227559)
@@ -0,0 +1,36 @@
+# Contributor: Martin Wimpress 
+
+pkgname=mate-polkit
+pkgver=1.18.1
+pkgrel=1
+pkgdesc="PolicyKit integration for the MATE desktop"
+url="http://mate-desktop.org;
+arch=('i686' 'x86_64')
+license=('LGPL')
+groups=('mate')
+depends=('gtk3' 'polkit')
+makedepends=('accountsservice' 'gobject-introspection' 'intltool')
+conflicts=('mate-polkit-gtk3')
+replaces=('mate-polkit-gtk3')
+source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
+sha1sums=('020d770adb42e7b60a74c5253769491860e0b792')
+
+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-05-09 19:13:54 UTC (rev 227558)
+++ community-x86_64/PKGBUILD   2017-05-09 19:14:37 UTC (rev 227559)
@@ -1,36 +0,0 @@
-# Contributor: Martin Wimpress 
-
-pkgname=mate-polkit
-pkgver=1.18.0
-pkgrel=1
-pkgdesc="PolicyKit integration for the MATE desktop"
-url="http://mate-desktop.org;
-arch=('i686' 'x86_64')
-license=('LGPL')
-groups=('mate')
-depends=('gtk3' 'polkit')
-makedepends=('accountsservice' 'gobject-introspection' 'intltool')
-conflicts=('mate-polkit-gtk3')
-replaces=('mate-polkit-gtk3')
-source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6605b950811dfae23947b0727a3c3b12ee0ce2db')
-
-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-polkit/repos/community-x86_64/PKGBUILD (from rev 227558, 
mate-polkit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-05-09 19:14:37 UTC (rev 227559)
@@ -0,0 +1,36 @@
+# Contributor: Martin Wimpress 
+
+pkgname=mate-polkit
+pkgver=1.18.1
+pkgrel=1
+pkgdesc="PolicyKit integration for the MATE desktop"

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

2017-05-09 Thread Antonio Rojas
Date: Tuesday, May 9, 2017 @ 19:13:54
  Author: arojas
Revision: 227558

Update to 1.18.1

Modified:
  mate-polkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:10:04 UTC (rev 227557)
+++ PKGBUILD2017-05-09 19:13:54 UTC (rev 227558)
@@ -1,7 +1,7 @@
 # Contributor: Martin Wimpress 
 
 pkgname=mate-polkit
-pkgver=1.18.0
+pkgver=1.18.1
 pkgrel=1
 pkgdesc="PolicyKit integration for the MATE desktop"
 url="http://mate-desktop.org;
@@ -13,7 +13,7 @@
 conflicts=('mate-polkit-gtk3')
 replaces=('mate-polkit-gtk3')
 
source=("http://pub.mate-desktop.org/releases/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz;)
-sha1sums=('6605b950811dfae23947b0727a3c3b12ee0ce2db')
+sha1sums=('020d770adb42e7b60a74c5253769491860e0b792')
 
 build() {
 cd ${pkgname}-${pkgver}


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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:09:56
  Author: alucryd
Revision: 227556

upgpkg: lib32-zeromq 4.2.1-1

Modified:
  lib32-zeromq/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:09:04 UTC (rev 227555)
+++ PKGBUILD2017-05-09 19:09:56 UTC (rev 227556)
@@ -4,7 +4,7 @@
 # Contributor: Kyle Keen 
 
 pkgname=lib32-zeromq
-pkgver=4.2.0
+pkgver=4.2.1
 pkgrel=1
 pkgdesc='Distributed messaging'
 arch=('x86_64')
@@ -14,7 +14,7 @@
  'zeromq')
 makedepends=('asciidoc' 'gcc-multilib' 'xmlto')
 
source=("https://github.com/zeromq/libzmq/releases/download/v${pkgver}/zeromq-${pkgver}.tar.gz;)
-sha256sums=('53b83bf0ee978931f76fa9cb46ad4affea65787264a5f3d140bc743412d0c117')
+sha256sums=('27d1e82a099228ee85a7ddb2260f40830212402c605a4a10b5e5498a7e0e9d03')
 
 prepare() {
   cd zeromq-${pkgver}


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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:10:04
  Author: alucryd
Revision: 227557

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-zeromq/repos/multilib-x86_64/PKGBUILD
(from rev 227556, lib32-zeromq/trunk/PKGBUILD)
Deleted:
  lib32-zeromq/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-09 19:09:56 UTC (rev 227556)
+++ PKGBUILD2017-05-09 19:10:04 UTC (rev 227557)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Colm Hickey 
-# Contributor: Kyle Keen 
-
-pkgname=lib32-zeromq
-pkgver=4.2.0
-pkgrel=1
-pkgdesc='Distributed messaging'
-arch=('x86_64')
-url='http://www.zeromq.org'
-license=('LGPL')
-depends=('lib32-gcc-libs' 'lib32-glibc' 'lib32-libpgm' 'lib32-libsodium'
- 'zeromq')
-makedepends=('asciidoc' 'gcc-multilib' 'xmlto')
-source=("https://github.com/zeromq/libzmq/releases/download/v${pkgver}/zeromq-${pkgver}.tar.gz;)
-sha256sums=('53b83bf0ee978931f76fa9cb46ad4affea65787264a5f3d140bc743412d0c117')
-
-prepare() {
-  cd zeromq-${pkgver}
-
-  sed -i 's/libzmq_werror="yes"/libzmq_werror="no"/' configure
-}
-
-build() {
-  cd zeromq-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
-prefix='/usr' \
---libdir='/usr/lib32' \
---disable-static \
---with-libsodium \
---with-pgm \
---without-documentation
-  make
-}
-
-package() {
-  cd zeromq-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-zeromq/repos/multilib-x86_64/PKGBUILD (from rev 227556, 
lib32-zeromq/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-09 19:10:04 UTC (rev 227557)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Colm Hickey 
+# Contributor: Kyle Keen 
+
+pkgname=lib32-zeromq
+pkgver=4.2.1
+pkgrel=1
+pkgdesc='Distributed messaging'
+arch=('x86_64')
+url='http://www.zeromq.org'
+license=('LGPL')
+depends=('lib32-gcc-libs' 'lib32-glibc' 'lib32-libpgm' 'lib32-libsodium'
+ 'zeromq')
+makedepends=('asciidoc' 'gcc-multilib' 'xmlto')
+source=("https://github.com/zeromq/libzmq/releases/download/v${pkgver}/zeromq-${pkgver}.tar.gz;)
+sha256sums=('27d1e82a099228ee85a7ddb2260f40830212402c605a4a10b5e5498a7e0e9d03')
+
+prepare() {
+  cd zeromq-${pkgver}
+
+  sed -i 's/libzmq_werror="yes"/libzmq_werror="no"/' configure
+}
+
+build() {
+  cd zeromq-${pkgver}
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+prefix='/usr' \
+--libdir='/usr/lib32' \
+--disable-static \
+--with-libsodium \
+--with-pgm \
+--without-documentation
+  make
+}
+
+package() {
+  cd zeromq-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:09:04
  Author: felixonmars
Revision: 227555

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 227554, haskell-authenticate/trunk/PKGBUILD)
  haskell-authenticate/repos/community-staging-x86_64/
  haskell-authenticate/repos/community-staging-x86_64/PKGBUILD
(from rev 227554, 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 
227554, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 19:09:04 UTC (rev 227555)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=75
+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 
227554, haskell-authenticate/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 19:09:04 UTC (rev 227555)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=authenticate
+pkgname=haskell-authenticate
+pkgver=1.3.3.2
+pkgrel=75
+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 haskell-authenticate/trunk (PKGBUILD)

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:08:37
  Author: felixonmars
Revision: 227554

upgpkg: haskell-authenticate 1.3.3.2-75

rebuild with foundation,0.0.9

Modified:
  haskell-authenticate/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:05:56 UTC (rev 227553)
+++ PKGBUILD2017-05-09 19:08:37 UTC (rev 227554)
@@ -5,7 +5,7 @@
 _hkgname=authenticate
 pkgname=haskell-authenticate
 pkgver=1.3.3.2
-pkgrel=74
+pkgrel=75
 pkgdesc="Authentication methods for Haskell web applications."
 url="http://github.com/yesodweb/authenticate;
 license=("MIT")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:05:56
  Author: felixonmars
Revision: 227553

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

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

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

Copied: haskell-http-conduit/repos/community-staging-i686/PKGBUILD (from rev 
227552, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 19:05:56 UTC (rev 227553)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.2.3.1
+pkgrel=25
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-conduit-extra" 
"haskell-exceptions"
+ "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-resourcet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('53ae16c601f980f323f2b24a32a776f9867b6b595e6e1929d440d1549715ca0e')
+
+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-http-conduit/repos/community-staging-x86_64/PKGBUILD (from rev 
227552, haskell-http-conduit/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 19:05:56 UTC (rev 227553)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-conduit
+pkgname=haskell-http-conduit
+pkgver=2.2.3.1
+pkgrel=25
+pkgdesc="HTTP client package with conduit interface and HTTPS support"
+url="http://www.yesodweb.com/book/http-conduit;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-conduit" "haskell-conduit-extra" 
"haskell-exceptions"
+ "haskell-http-client" "haskell-http-client-tls" "haskell-http-types" 
"haskell-lifted-base"
+ "haskell-monad-control" "haskell-mtl" "haskell-resourcet")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('53ae16c601f980f323f2b24a32a776f9867b6b595e6e1929d440d1549715ca0e')
+
+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   

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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:05:22
  Author: alucryd
Revision: 227550

upgpkg: lib32-libsodium 1.0.12-1

Modified:
  lib32-libsodium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:02:17 UTC (rev 227549)
+++ PKGBUILD2017-05-09 19:05:22 UTC (rev 227550)
@@ -6,7 +6,7 @@
 # Contributor: Alessio Sergi 
 
 pkgname=lib32-libsodium
-pkgver=1.0.11
+pkgver=1.0.12
 pkgrel=1
 pkgdesc='P(ortable|ackageable) NaCl-based crypto library'
 arch=('x86_64')
@@ -15,7 +15,7 @@
 depends=('lib32-glibc' 'libsodium')
 
source=("https://download.libsodium.org/libsodium/releases/libsodium-${pkgver}.tar.gz"{,.sig})
 validpgpkeys=('54A2B8892CC3D6A597B92B6C210627AABA709FE1') # Frank Denis
-sha256sums=('a14549db3c49f6ae2170cbbf4664bd48ace50681045e8dbea7c8d9fb96f9c765'
+sha256sums=('b8648f1bb3a54b0251cf4ffa4f0d76ded13977d4fa7517d988f4c902dd8e2f95'
 'SKIP')
 
 build() {


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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 19:05:29
  Author: alucryd
Revision: 227552

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libsodium/repos/multilib-x86_64/PKGBUILD
(from rev 227551, lib32-libsodium/trunk/PKGBUILD)
Deleted:
  lib32-libsodium/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-09 19:05:24 UTC (rev 227551)
+++ PKGBUILD2017-05-09 19:05:29 UTC (rev 227552)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: oi_wtf 
-# Contributor: Felix Yan 
-# Contributor: namelessjon 
-# Contributor: Alessio Sergi 
-
-pkgname=lib32-libsodium
-pkgver=1.0.11
-pkgrel=1
-pkgdesc='P(ortable|ackageable) NaCl-based crypto library'
-arch=('x86_64')
-url='https://github.com/jedisct1/libsodium'
-license=('custom:ISC')
-depends=('lib32-glibc' 'libsodium')
-source=("https://download.libsodium.org/libsodium/releases/libsodium-${pkgver}.tar.gz"{,.sig})
-validpgpkeys=('54A2B8892CC3D6A597B92B6C210627AABA709FE1') # Frank Denis
-sha256sums=('a14549db3c49f6ae2170cbbf4664bd48ace50681045e8dbea7c8d9fb96f9c765'
-'SKIP')
-
-build() {
-  cd libsodium-${pkgver}
-
-  export CC='gcc -m32'
-  export PKG_CONFIG_LIBDIR='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32'
-  make
-}
-
-package() {
-  cd libsodium-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin,lib,include,share}}
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses
-  ln -s libsodium "${pkgdir}"/usr/share/licenses/lib32-libsodium
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-libsodium/repos/multilib-x86_64/PKGBUILD (from rev 227551, 
lib32-libsodium/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-09 19:05:29 UTC (rev 227552)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: oi_wtf 
+# Contributor: Felix Yan 
+# Contributor: namelessjon 
+# Contributor: Alessio Sergi 
+
+pkgname=lib32-libsodium
+pkgver=1.0.12
+pkgrel=1
+pkgdesc='P(ortable|ackageable) NaCl-based crypto library'
+arch=('x86_64')
+url='https://github.com/jedisct1/libsodium'
+license=('custom:ISC')
+depends=('lib32-glibc' 'libsodium')
+source=("https://download.libsodium.org/libsodium/releases/libsodium-${pkgver}.tar.gz"{,.sig})
+validpgpkeys=('54A2B8892CC3D6A597B92B6C210627AABA709FE1') # Frank Denis
+sha256sums=('b8648f1bb3a54b0251cf4ffa4f0d76ded13977d4fa7517d988f4c902dd8e2f95'
+'SKIP')
+
+build() {
+  cd libsodium-${pkgver}
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_LIBDIR='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32'
+  make
+}
+
+package() {
+  cd libsodium-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/{etc,usr/{bin,lib,include,share}}
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses
+  ln -s libsodium "${pkgdir}"/usr/share/licenses/lib32-libsodium
+}
+
+# vim:set ts=2 sw=2 et:


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:05:24
  Author: felixonmars
Revision: 227551

upgpkg: haskell-http-conduit 2.2.3.1-25

rebuild with foundation,0.0.9

Modified:
  haskell-http-conduit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 19:05:22 UTC (rev 227550)
+++ PKGBUILD2017-05-09 19:05:24 UTC (rev 227551)
@@ -5,7 +5,7 @@
 _hkgname=http-conduit
 pkgname=haskell-http-conduit
 pkgver=2.2.3.1
-pkgrel=24
+pkgrel=25
 pkgdesc="HTTP client package with conduit interface and HTTPS support"
 url="http://www.yesodweb.com/book/http-conduit;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:02:17
  Author: felixonmars
Revision: 227549

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

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

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

Copied: hopenpgp-tools/repos/community-staging-i686/PKGBUILD (from rev 227548, 
hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 19:02:17 UTC (rev 227549)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=84
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "alex" "happy" "haskell-aeson" 
"haskell-ansi-wl-pprint"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-binary-conduit"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-crypto-pubkey" 
"haskell-cryptohash"
+ "haskell-errors" "haskell-fgl" "haskell-graphviz" 
"haskell-hopenpgp"
+ "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-ixset-typed" "haskell-lens" "haskell-monad-loops" 
"haskell-openpgp-asciiarmor"
+ "haskell-optparse-applicative" "haskell-resourcet" "haskell-text"
+ "haskell-time-locale-compat" "haskell-wl-pprint-extras" 
"haskell-wl-pprint-terminfo"
+ "haskell-yaml")
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e656cd989833c6d318d5c44931ef5a8cd98bb0ebb4bab70a2d2f701091d0abd8')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}

Copied: hopenpgp-tools/repos/community-staging-x86_64/PKGBUILD (from rev 
227548, hopenpgp-tools/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 19:02:17 UTC (rev 227549)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=hopenpgp-tools
+pkgver=0.19.4
+pkgrel=84
+pkgdesc="hOpenPGP-based command-line tools"
+url="http://floss.scru.org/hopenpgp-tools;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi' 'zlib')
+makedepends=("ghc=8.0.1" "alex" "happy" "haskell-aeson" 
"haskell-ansi-wl-pprint"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-binary-conduit"
+ "haskell-conduit" "haskell-conduit-extra" "haskell-crypto-pubkey" 
"haskell-cryptohash"
+ "haskell-errors" "haskell-fgl" "haskell-graphviz" 
"haskell-hopenpgp"
+ "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-types"
+ "haskell-ixset-typed" "haskell-lens" "haskell-monad-loops" 
"haskell-openpgp-asciiarmor"
+ "haskell-optparse-applicative" "haskell-resourcet" "haskell-text"
+ "haskell-time-locale-compat" "haskell-wl-pprint-extras" 
"haskell-wl-pprint-terminfo"
+ "haskell-yaml")
+source=(https://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('e656cd989833c6d318d5c44931ef5a8cd98bb0ebb4bab70a2d2f701091d0abd8')
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}"
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+rm "$pkgdir/usr/share/doc/hopenpgp-tools/LICENSE"
+rmdir "$pkgdir/usr/share/doc/hopenpgp-tools" "$pkgdir/usr/share/doc" 
"$pkgdir/usr/share"
+}


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 19:01:49
  Author: felixonmars
Revision: 227548

upgpkg: hopenpgp-tools 0.19.4-84

rebuild with foundation,0.0.9

Modified:
  hopenpgp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:58:52 UTC (rev 227547)
+++ PKGBUILD2017-05-09 19:01:49 UTC (rev 227548)
@@ -4,7 +4,7 @@
 
 pkgname=hopenpgp-tools
 pkgver=0.19.4
-pkgrel=83
+pkgrel=84
 pkgdesc="hOpenPGP-based command-line tools"
 url="http://floss.scru.org/hopenpgp-tools;
 license=("AGPL3")


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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 18:58:52
  Author: alucryd
Revision: 227547

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-libqmi/repos/multilib-x86_64/PKGBUILD
(from rev 227546, lib32-libqmi/trunk/PKGBUILD)
Deleted:
  lib32-libqmi/repos/multilib-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-09 18:58:33 UTC (rev 227546)
+++ PKGBUILD2017-05-09 18:58:52 UTC (rev 227547)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Jan Alexander Steffens (heftig) 
-
-pkgname=lib32-libqmi
-pkgver=1.16.2
-pkgrel=1
-pkgdesc='QMI modem protocol helper library'
-arch=('x86_64')
-url='https://www.freedesktop.org/wiki/Software/libqmi/'
-license=('GPL2')
-depends=('lib32-glib2' 'lib32-glibc' 'lib32-libmbim' 'libqmi')
-makedepends=('gcc-multilib' 'python')
-source=("https://www.freedesktop.org/software/libqmi/libqmi-${pkgver}.tar.xz;)
-sha256sums=('290bb367b12de1a24c3d2dee83886ca9669e281505ac3ee0bfdbe6bd84c44b81')
-
-build() {
-  cd libqmi-${pkgver}
-
-  export CC='gcc -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---libexecdir='/usr/lib32' \
---localstatedir='/var' \
---sysconfdir='/etc' \
---disable-gtk-doc-html \
---disable-static
-  make
-}
-
-package() {
-  cd libqmi-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/usr/{bin,include,share}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-libqmi/repos/multilib-x86_64/PKGBUILD (from rev 227546, 
lib32-libqmi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-09 18:58:52 UTC (rev 227547)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Jan Alexander Steffens (heftig) 
+
+pkgname=lib32-libqmi
+pkgver=1.18.0
+pkgrel=1
+pkgdesc='QMI modem protocol helper library'
+arch=('x86_64')
+url='https://www.freedesktop.org/wiki/Software/libqmi/'
+license=('GPL2')
+depends=('lib32-glib2' 'lib32-glibc' 'lib32-libmbim' 'libqmi')
+makedepends=('gcc-multilib' 'python')
+source=("https://www.freedesktop.org/software/libqmi/libqmi-${pkgver}.tar.xz;)
+sha256sums=('a0a42c55935e75a630208e2f70840bd4407f56fe1c5258f5b0f6c0aaedf88cec')
+
+build() {
+  cd libqmi-${pkgver}
+
+  export CC='gcc -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure \
+--prefix='/usr' \
+--libdir='/usr/lib32' \
+--libexecdir='/usr/lib32' \
+--localstatedir='/var' \
+--sysconfdir='/etc' \
+--disable-gtk-doc-html \
+--disable-static
+  make
+}
+
+package() {
+  cd libqmi-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  rm -rf "${pkgdir}"/usr/{bin,include,share}
+}
+
+# vim: ts=2 sw=2 et:


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

2017-05-09 Thread Maxime Gauduin
Date: Tuesday, May 9, 2017 @ 18:58:33
  Author: alucryd
Revision: 227546

upgpkg: lib32-libqmi 1.18.0-1

Modified:
  lib32-libqmi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:56:05 UTC (rev 227545)
+++ PKGBUILD2017-05-09 18:58:33 UTC (rev 227546)
@@ -3,7 +3,7 @@
 # Contributor: Jan Alexander Steffens (heftig) 
 
 pkgname=lib32-libqmi
-pkgver=1.16.2
+pkgver=1.18.0
 pkgrel=1
 pkgdesc='QMI modem protocol helper library'
 arch=('x86_64')
@@ -12,7 +12,7 @@
 depends=('lib32-glib2' 'lib32-glibc' 'lib32-libmbim' 'libqmi')
 makedepends=('gcc-multilib' 'python')
 source=("https://www.freedesktop.org/software/libqmi/libqmi-${pkgver}.tar.xz;)
-sha256sums=('290bb367b12de1a24c3d2dee83886ca9669e281505ac3ee0bfdbe6bd84c44b81')
+sha256sums=('a0a42c55935e75a630208e2f70840bd4407f56fe1c5258f5b0f6c0aaedf88cec')
 
 build() {
   cd libqmi-${pkgver}


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:55:38
  Author: felixonmars
Revision: 227544

upgpkg: haskell-dav 1.3.1-92

rebuild with foundation,0.0.9

Modified:
  haskell-dav/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:52:17 UTC (rev 227543)
+++ PKGBUILD2017-05-09 18:55:38 UTC (rev 227544)
@@ -5,7 +5,7 @@
 _hkgname=DAV
 pkgname=haskell-dav
 pkgver=1.3.1
-pkgrel=91
+pkgrel=92
 pkgdesc="RFC 4918 WebDAV support"
 url="http://floss.scru.org/hDAV;
 license=("GPL3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:56:05
  Author: felixonmars
Revision: 227545

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 227544, haskell-dav/trunk/PKGBUILD)
  haskell-dav/repos/community-staging-x86_64/
  haskell-dav/repos/community-staging-x86_64/PKGBUILD
(from rev 227544, 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 227544, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:56:05 UTC (rev 227545)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=92
+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 227544, 
haskell-dav/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:56:05 UTC (rev 227545)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=DAV
+pkgname=haskell-dav
+pkgver=1.3.1
+pkgrel=92
+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 

[arch-commits] Commit in haskell-http-client-tls/repos (4 files)

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:52:17
  Author: felixonmars
Revision: 227543

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

Added:
  haskell-http-client-tls/repos/community-staging-i686/
  haskell-http-client-tls/repos/community-staging-i686/PKGBUILD
(from rev 227542, haskell-http-client-tls/trunk/PKGBUILD)
  haskell-http-client-tls/repos/community-staging-x86_64/
  haskell-http-client-tls/repos/community-staging-x86_64/PKGBUILD
(from rev 227542, haskell-http-client-tls/trunk/PKGBUILD)

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

Copied: haskell-http-client-tls/repos/community-staging-i686/PKGBUILD (from rev 
227542, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:52:17 UTC (rev 227543)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.3.4.1
+pkgrel=7
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-connection" 
"haskell-cryptonite"
+ "haskell-data-default-class" "haskell-exceptions" 
"haskell-http-client"
+ "haskell-http-types" "haskell-memory" "haskell-network" 
"haskell-network-uri"
+ "haskell-text" "haskell-tls")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('37df18ed93161560d0a30b5f2f7ffe405fa1b7ea6466d5284ef25114bd0eea6c7df33ed17e3c3085237058b55d1907eccbb9bff209106e012a53d98abb91062e')
+
+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-http-client-tls/repos/community-staging-x86_64/PKGBUILD (from 
rev 227542, haskell-http-client-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:52:17 UTC (rev 227543)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http-client-tls
+pkgname=haskell-http-client-tls
+pkgver=0.3.4.1
+pkgrel=7
+pkgdesc="http-client backend using the connection package and tls library"
+url="https://github.com/snoyberg/http-client;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-case-insensitive" "haskell-connection" 
"haskell-cryptonite"
+ "haskell-data-default-class" "haskell-exceptions" 
"haskell-http-client"
+ "haskell-http-types" "haskell-memory" "haskell-network" 
"haskell-network-uri"
+ "haskell-text" "haskell-tls")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha512sums=('37df18ed93161560d0a30b5f2f7ffe405fa1b7ea6466d5284ef25114bd0eea6c7df33ed17e3c3085237058b55d1907eccbb9bff209106e012a53d98abb91062e')
+
+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' 

[arch-commits] Commit in haskell-http-client-tls/trunk (PKGBUILD)

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:51:51
  Author: felixonmars
Revision: 227542

upgpkg: haskell-http-client-tls 0.3.4.1-7

rebuild with foundation,0.0.9

Modified:
  haskell-http-client-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:49:45 UTC (rev 227541)
+++ PKGBUILD2017-05-09 18:51:51 UTC (rev 227542)
@@ -5,7 +5,7 @@
 _hkgname=http-client-tls
 pkgname=haskell-http-client-tls
 pkgver=0.3.4.1
-pkgrel=6
+pkgrel=7
 pkgdesc="http-client backend using the connection package and tls library"
 url="https://github.com/snoyberg/http-client;
 license=("MIT")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:49:45
  Author: felixonmars
Revision: 227541

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

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

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

Copied: haskell-connection/repos/community-staging-i686/PKGBUILD (from rev 
227540, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:49:45 UTC (rev 227541)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.8
+pkgrel=8
+pkgdesc="Simple and easy network connections API"
+url="http://github.com/vincenthz/hs-connection;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-byteable" "haskell-data-default-class" 
"haskell-network" "haskell-socks"
+ "haskell-tls" "haskell-x509" "haskell-x509-store" 
"haskell-x509-system" "haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('70b1f44e8786320c18b26fc5d4ec115fc8ac016ba1f852fa8137f55d785a93eb')
+
+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-connection/repos/community-staging-x86_64/PKGBUILD (from rev 
227540, haskell-connection/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:49:45 UTC (rev 227541)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 143584 2015-10-10 10:28:35Z fyan $
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=connection
+pkgname=haskell-connection
+pkgver=0.2.8
+pkgrel=8
+pkgdesc="Simple and easy network connections API"
+url="http://github.com/vincenthz/hs-connection;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-byteable" "haskell-data-default-class" 
"haskell-network" "haskell-socks"
+ "haskell-tls" "haskell-x509" "haskell-x509-store" 
"haskell-x509-system" "haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('70b1f44e8786320c18b26fc5d4ec115fc8ac016ba1f852fa8137f55d785a93eb')
+
+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 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:49:18
  Author: felixonmars
Revision: 227540

upgpkg: haskell-connection 0.2.8-8

rebuild with foundation,0.0.9

Modified:
  haskell-connection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:47:06 UTC (rev 227539)
+++ PKGBUILD2017-05-09 18:49:18 UTC (rev 227540)
@@ -5,7 +5,7 @@
 _hkgname=connection
 pkgname=haskell-connection
 pkgver=0.2.8
-pkgrel=7
+pkgrel=8
 pkgdesc="Simple and easy network connections API"
 url="http://github.com/vincenthz/hs-connection;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:47:06
  Author: felixonmars
Revision: 227539

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

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

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

Copied: haskell-tls/repos/community-staging-i686/PKGBUILD (from rev 227538, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:47:06 UTC (rev 227539)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.10
+pkgrel=9
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-memory" 
"haskell-mtl"
+ "haskell-network" "haskell-x509" "haskell-x509-store" 
"haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('9f057d0f40dda5ce8d0f0e0f2a06087be8007c41462c6cab19774538c35e0171')
+
+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 \
+-f-hans -fnetwork -fcompat
+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-tls/repos/community-staging-x86_64/PKGBUILD (from rev 227538, 
haskell-tls/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:47:06 UTC (rev 227539)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=tls
+pkgname=haskell-tls
+pkgver=1.3.10
+pkgrel=9
+pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
+url="http://github.com/vincenthz/hs-tls;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-async" "haskell-cereal"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-memory" 
"haskell-mtl"
+ "haskell-network" "haskell-x509" "haskell-x509-store" 
"haskell-x509-validation")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('9f057d0f40dda5ce8d0f0e0f2a06087be8007c41462c6cab19774538c35e0171')
+
+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 \
+-f-hans -fnetwork -fcompat
+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 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:46:40
  Author: felixonmars
Revision: 227538

upgpkg: haskell-tls 1.3.10-9

rebuild with foundation,0.0.9

Modified:
  haskell-tls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:42:33 UTC (rev 227537)
+++ PKGBUILD2017-05-09 18:46:40 UTC (rev 227538)
@@ -5,7 +5,7 @@
 _hkgname=tls
 pkgname=haskell-tls
 pkgver=1.3.10
-pkgrel=8
+pkgrel=9
 pkgdesc="TLS/SSL protocol native implementation (Server and Client)"
 url="http://github.com/vincenthz/hs-tls;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:42:33
  Author: felixonmars
Revision: 227537

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

Added:
  haskell-x509-validation/repos/community-staging-i686/
  haskell-x509-validation/repos/community-staging-i686/PKGBUILD
(from rev 227536, haskell-x509-validation/trunk/PKGBUILD)
  haskell-x509-validation/repos/community-staging-x86_64/
  haskell-x509-validation/repos/community-staging-x86_64/PKGBUILD
(from rev 227536, haskell-x509-validation/trunk/PKGBUILD)

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

Copied: haskell-x509-validation/repos/community-staging-i686/PKGBUILD (from rev 
227536, haskell-x509-validation/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:42:33 UTC (rev 227537)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-validation
+pkgname=haskell-x509-validation
+pkgver=1.6.5
+pkgrel=15
+pkgdesc="X.509 Certificate and CRL validation"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-byteable"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-hourglass"
+ "haskell-memory" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d1f73197677b6d19795fc80e4a1fa93e810d567ee4e3edc74e841b3eb20e1ca4')
+
+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-x509-validation/repos/community-staging-x86_64/PKGBUILD (from 
rev 227536, haskell-x509-validation/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:42:33 UTC (rev 227537)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-validation
+pkgname=haskell-x509-validation
+pkgver=1.6.5
+pkgrel=15
+pkgdesc="X.509 Certificate and CRL validation"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" 
"haskell-byteable"
+ "haskell-cryptonite" "haskell-data-default-class" "haskell-hourglass"
+ "haskell-memory" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d1f73197677b6d19795fc80e4a1fa93e810d567ee4e3edc74e841b3eb20e1ca4')
+
+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"
+

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:42:06
  Author: felixonmars
Revision: 227536

upgpkg: haskell-x509-validation 1.6.5-15

rebuild with foundation,0.0.9

Modified:
  haskell-x509-validation/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:40:15 UTC (rev 227535)
+++ PKGBUILD2017-05-09 18:42:06 UTC (rev 227536)
@@ -5,7 +5,7 @@
 _hkgname=x509-validation
 pkgname=haskell-x509-validation
 pkgver=1.6.5
-pkgrel=14
+pkgrel=15
 pkgdesc="X.509 Certificate and CRL validation"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:40:15
  Author: felixonmars
Revision: 227535

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

Added:
  haskell-x509-system/repos/community-staging-i686/
  haskell-x509-system/repos/community-staging-i686/PKGBUILD
(from rev 227534, haskell-x509-system/trunk/PKGBUILD)
  haskell-x509-system/repos/community-staging-x86_64/
  haskell-x509-system/repos/community-staging-x86_64/PKGBUILD
(from rev 227534, haskell-x509-system/trunk/PKGBUILD)

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

Copied: haskell-x509-system/repos/community-staging-i686/PKGBUILD (from rev 
227534, haskell-x509-system/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:40:15 UTC (rev 227535)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-system
+pkgname=haskell-x509-system
+pkgver=1.6.4
+pkgrel=15
+pkgdesc="Handle per-operating-system X.509 accessors and storage"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d98ef028855ad73a872ed86026f205aba383378bf1e63462c5d3e4733b60ff4c')
+
+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-x509-system/repos/community-staging-x86_64/PKGBUILD (from rev 
227534, haskell-x509-system/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:40:15 UTC (rev 227535)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-system
+pkgname=haskell-x509-system
+pkgver=1.6.4
+pkgrel=15
+pkgdesc="Handle per-operating-system X.509 accessors and storage"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-mtl" "haskell-pem" "haskell-x509" 
"haskell-x509-store")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('d98ef028855ad73a872ed86026f205aba383378bf1e63462c5d3e4733b60ff4c')
+
+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" 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:39:48
  Author: felixonmars
Revision: 227534

upgpkg: haskell-x509-system 1.6.4-15

rebuild with foundation,0.0.9

Modified:
  haskell-x509-system/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:38:04 UTC (rev 227533)
+++ PKGBUILD2017-05-09 18:39:48 UTC (rev 227534)
@@ -5,7 +5,7 @@
 _hkgname=x509-system
 pkgname=haskell-x509-system
 pkgver=1.6.4
-pkgrel=14
+pkgrel=15
 pkgdesc="Handle per-operating-system X.509 accessors and storage"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:38:04
  Author: felixonmars
Revision: 227533

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

Added:
  haskell-x509-store/repos/community-staging-i686/
  haskell-x509-store/repos/community-staging-i686/PKGBUILD
(from rev 227532, haskell-x509-store/trunk/PKGBUILD)
  haskell-x509-store/repos/community-staging-x86_64/
  haskell-x509-store/repos/community-staging-x86_64/PKGBUILD
(from rev 227532, haskell-x509-store/trunk/PKGBUILD)

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

Copied: haskell-x509-store/repos/community-staging-i686/PKGBUILD (from rev 
227532, haskell-x509-store/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:38:04 UTC (rev 227533)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-store
+pkgname=haskell-x509-store
+pkgver=1.6.2
+pkgrel=15
+pkgdesc="X.509 collection accessing and storing methods"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" "haskell-mtl"
+ "haskell-cryptonite" "haskell-pem" "haskell-x509")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49fd261c7e55a45fd357931a6d9f81e22f242e6047304d3e2662e43db94d807b')
+
+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-x509-store/repos/community-staging-x86_64/PKGBUILD (from rev 
227532, haskell-x509-store/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:38:04 UTC (rev 227533)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509-store
+pkgname=haskell-x509-store
+pkgver=1.6.2
+pkgrel=15
+pkgdesc="X.509 collection accessing and storing methods"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-types" "haskell-mtl"
+ "haskell-cryptonite" "haskell-pem" "haskell-x509")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('49fd261c7e55a45fd357931a6d9f81e22f242e6047304d3e2662e43db94d807b')
+
+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 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:37:37
  Author: felixonmars
Revision: 227532

upgpkg: haskell-x509-store 1.6.2-15

rebuild with foundation,0.0.9

Modified:
  haskell-x509-store/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:35:43 UTC (rev 227531)
+++ PKGBUILD2017-05-09 18:37:37 UTC (rev 227532)
@@ -5,7 +5,7 @@
 _hkgname=x509-store
 pkgname=haskell-x509-store
 pkgver=1.6.2
-pkgrel=14
+pkgrel=15
 pkgdesc="X.509 collection accessing and storing methods"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:35:43
  Author: felixonmars
Revision: 227531

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

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

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

Copied: haskell-x509/repos/community-staging-i686/PKGBUILD (from rev 227530, 
haskell-x509/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:35:43 UTC (rev 227531)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509
+pkgname=haskell-x509
+pkgver=1.6.5
+pkgrel=14
+pkgdesc="X509 reader and writer"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-parse" 
"haskell-asn1-types"
+ "haskell-cryptonite" "haskell-hourglass" "haskell-memory" 
"haskell-mtl" "haskell-pem")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b53894214e23ab2795f2a9f4c885e37b35a223bbc03763b0017ce06dc8394783')
+
+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-x509/repos/community-staging-x86_64/PKGBUILD (from rev 227530, 
haskell-x509/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:35:43 UTC (rev 227531)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=x509
+pkgname=haskell-x509
+pkgver=1.6.5
+pkgrel=14
+pkgdesc="X509 reader and writer"
+url="http://github.com/vincenthz/hs-certificate;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-asn1-encoding" "haskell-asn1-parse" 
"haskell-asn1-types"
+ "haskell-cryptonite" "haskell-hourglass" "haskell-memory" 
"haskell-mtl" "haskell-pem")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b53894214e23ab2795f2a9f4c885e37b35a223bbc03763b0017ce06dc8394783')
+
+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 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:35:16
  Author: felixonmars
Revision: 227530

upgpkg: haskell-x509 1.6.5-14

rebuild with foundation,0.0.9

Modified:
  haskell-x509/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:32:48 UTC (rev 227529)
+++ PKGBUILD2017-05-09 18:35:16 UTC (rev 227530)
@@ -5,7 +5,7 @@
 _hkgname=x509
 pkgname=haskell-x509
 pkgver=1.6.5
-pkgrel=13
+pkgrel=14
 pkgdesc="X509 reader and writer"
 url="http://github.com/vincenthz/hs-certificate;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:32:48
  Author: felixonmars
Revision: 227529

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 227528, haskell-yesod-static/trunk/PKGBUILD)
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 227528, 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 
227528, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:32:48 UTC (rev 227529)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.2
+pkgrel=33
+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;)
+sha256sums=('b949c5f6087d9e32c7ff2f41ed647b1df605bbe1ce2cbcfe59cc46dc4a72099e')
+
+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 
227528, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:32:48 UTC (rev 227529)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.2
+pkgrel=33
+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;)
+sha256sums=('b949c5f6087d9e32c7ff2f41ed647b1df605bbe1ce2cbcfe59cc46dc4a72099e')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:32:21
  Author: felixonmars
Revision: 227528

upgpkg: haskell-yesod-static 1.5.2-33

rebuild with foundation,0.0.9

Modified:
  haskell-yesod-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:28:37 UTC (rev 227527)
+++ PKGBUILD2017-05-09 18:32:21 UTC (rev 227528)
@@ -5,7 +5,7 @@
 _hkgname=yesod-static
 pkgname=haskell-yesod-static
 pkgver=1.5.2
-pkgrel=32
+pkgrel=33
 pkgdesc="Static file serving subsite for Yesod Web Framework."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:28:37
  Author: felixonmars
Revision: 227527

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

Added:
  haskell-wai-app-static/repos/community-staging-i686/
  haskell-wai-app-static/repos/community-staging-i686/PKGBUILD
(from rev 227526, haskell-wai-app-static/trunk/PKGBUILD)
  haskell-wai-app-static/repos/community-staging-x86_64/
  haskell-wai-app-static/repos/community-staging-x86_64/PKGBUILD
(from rev 227526, haskell-wai-app-static/trunk/PKGBUILD)

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

Copied: haskell-wai-app-static/repos/community-staging-i686/PKGBUILD (from rev 
227526, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:28:37 UTC (rev 227527)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.1
+pkgrel=55
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-blaze-html" 
"haskell-blaze-markup" 
+ "haskell-cryptonite" "haskell-file-embed" "haskell-http-date" 
"haskell-http-types"
+ "haskell-memory" "haskell-mime-types" "haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-text" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-warp"
+ "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b318acf31e2e809411f119744a016ba0a78f52554ac7321a3a1410a218886668')
+
+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 \
+-f-print
+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-wai-app-static/repos/community-staging-x86_64/PKGBUILD (from 
rev 227526, haskell-wai-app-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:28:37 UTC (rev 227527)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=wai-app-static
+pkgname=haskell-wai-app-static
+pkgver=3.1.6.1
+pkgrel=55
+pkgdesc="WAI application for static serving"
+url="http://www.yesodweb.com/book/web-application-interface;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-blaze-builder" "haskell-blaze-html" 
"haskell-blaze-markup" 
+ "haskell-cryptonite" "haskell-file-embed" "haskell-http-date" 
"haskell-http-types"
+ "haskell-memory" "haskell-mime-types" "haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-text" "haskell-unix-compat"
+ "haskell-unordered-containers" "haskell-wai" "haskell-wai-extra" 
"haskell-warp"
+ "haskell-zlib")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('b318acf31e2e809411f119744a016ba0a78f52554ac7321a3a1410a218886668')
+
+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 \
+-f-print
+runhaskell Setup build
+runhaskell Setup 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:28:10
  Author: felixonmars
Revision: 227526

upgpkg: haskell-wai-app-static 3.1.6.1-55

rebuild with foundation,0.0.9

Modified:
  haskell-wai-app-static/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:24:35 UTC (rev 227525)
+++ PKGBUILD2017-05-09 18:28:10 UTC (rev 227526)
@@ -5,7 +5,7 @@
 _hkgname=wai-app-static
 pkgname=haskell-wai-app-static
 pkgver=3.1.6.1
-pkgrel=54
+pkgrel=55
 pkgdesc="WAI application for static serving"
 url="http://www.yesodweb.com/book/web-application-interface;
 license=("MIT")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:24:35
  Author: felixonmars
Revision: 227525

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

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

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

Copied: haskell-hopenpgp/repos/community-staging-i686/PKGBUILD (from rev 
227524, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:24:35 UTC (rev 227525)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=61
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 
'haskell-wl-pprint-extras'
+ 'haskell-zlib')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('f480201a10f14150adc290c81d38e7b6')
+
+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-hopenpgp/repos/community-staging-x86_64/PKGBUILD (from rev 
227524, haskell-hopenpgp/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:24:35 UTC (rev 227525)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=hOpenPGP
+pkgname=haskell-hopenpgp
+pkgver=2.5.5
+pkgrel=61
+pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
+url="http://floss.scru.org/hOpenPGP/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-aeson' 'haskell-attoparsec' 
'haskell-base16-bytestring'
+ 'haskell-base64-bytestring' 'haskell-bifunctors' 'haskell-byteable' 
'haskell-bzlib'
+ 'haskell-binary-conduit' 'haskell-conduit' 'haskell-conduit-extra' 
'haskell-cryptonite'
+ 'haskell-crypto-cipher-types' 'haskell-data-default-class' 
'haskell-errors'
+ 'haskell-hashable' 'haskell-incremental-parser' 'haskell-ixset-typed' 
'haskell-lens'
+ 'haskell-memory' 'haskell-monad-loops' 'haskell-nettle' 
'haskell-network'
+ 'haskell-network-uri' 'haskell-newtype' 'haskell-openpgp-asciiarmor' 
'haskell-resourcet'
+ 'haskell-securemem' 'haskell-semigroups' 'haskell-split' 
'haskell-text'
+ 'haskell-time-locale-compat' 'haskell-unordered-containers' 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:24:09
  Author: felixonmars
Revision: 227524

upgpkg: haskell-hopenpgp 2.5.5-61

rebuild with foundation,0.0.9

Modified:
  haskell-hopenpgp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:10:22 UTC (rev 227523)
+++ PKGBUILD2017-05-09 18:24:09 UTC (rev 227524)
@@ -4,7 +4,7 @@
 _hkgname=hOpenPGP
 pkgname=haskell-hopenpgp
 pkgver=2.5.5
-pkgrel=60
+pkgrel=61
 pkgdesc="Native Haskell implementation of OpenPGP (RFC4880)"
 url="http://floss.scru.org/hOpenPGP/;
 license=('MIT')


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:10:22
  Author: felixonmars
Revision: 227523

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

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

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

Copied: haskell-nettle/repos/community-staging-i686/PKGBUILD (from rev 227522, 
haskell-nettle/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:10:22 UTC (rev 227523)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=nettle
+pkgname=haskell-nettle
+pkgver=0.2.0
+pkgrel=11
+pkgdesc="Safe nettle binding"
+url="https://github.com/stbuehler/haskell-nettle;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'nettle' 'haskell-byteable' 'haskell-crypto-cipher-types' 
'haskell-tagged'
+ 'haskell-securemem')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('1635e7a0d6446f91872a5dac7f8aaba4')
+
+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 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}

Copied: haskell-nettle/repos/community-staging-x86_64/PKGBUILD (from rev 
227522, haskell-nettle/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:10:22 UTC (rev 227523)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+
+_hkgname=nettle
+pkgname=haskell-nettle
+pkgver=0.2.0
+pkgrel=11
+pkgdesc="Safe nettle binding"
+url="https://github.com/stbuehler/haskell-nettle;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'nettle' 'haskell-byteable' 'haskell-crypto-cipher-types' 
'haskell-tagged'
+ 'haskell-securemem')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
+md5sums=('1635e7a0d6446f91872a5dac7f8aaba4')
+
+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 "COPYING" 
"${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING"
+}


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:09:55
  Author: felixonmars
Revision: 227522

upgpkg: haskell-nettle 0.2.0-11

rebuild with foundation,0.0.9

Modified:
  haskell-nettle/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:07:39 UTC (rev 227521)
+++ PKGBUILD2017-05-09 18:09:55 UTC (rev 227522)
@@ -4,7 +4,7 @@
 _hkgname=nettle
 pkgname=haskell-nettle
 pkgver=0.2.0
-pkgrel=10
+pkgrel=11
 pkgdesc="Safe nettle binding"
 url="https://github.com/stbuehler/haskell-nettle;
 license=('MIT')


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:07:39
  Author: felixonmars
Revision: 227521

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

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

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

Copied: haskell-nonce/repos/community-staging-i686/PKGBUILD (from rev 227520, 
haskell-nonce/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:07:39 UTC (rev 227521)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=nonce
+pkgname=haskell-nonce
+pkgver=1.0.2
+pkgrel=16
+pkgdesc="Generate cryptographic nonces."
+url="https://github.com/prowdsponsor/nonce;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-base64-bytestring" "haskell-cprng-aes"
+ "haskell-crypto-random" "haskell-text")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('1004184996ea797b43189a0e73eab0b939f129cafc776341ca82289edb329cd0')
+
+prepare() {
+sed -i 's/base  >= 4.5   && < 4.9/base  >= 4.5   
\&\& < 4.10/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+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-nonce/repos/community-staging-x86_64/PKGBUILD (from rev 227520, 
haskell-nonce/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:07:39 UTC (rev 227521)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=nonce
+pkgname=haskell-nonce
+pkgver=1.0.2
+pkgrel=16
+pkgdesc="Generate cryptographic nonces."
+url="https://github.com/prowdsponsor/nonce;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-base64-bytestring" "haskell-cprng-aes"
+ "haskell-crypto-random" "haskell-text")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('1004184996ea797b43189a0e73eab0b939f129cafc776341ca82289edb329cd0')
+
+prepare() {
+sed -i 's/base  >= 4.5   && < 4.9/base  >= 4.5   
\&\& < 4.10/' ${_hkgname}-${pkgver}/${_hkgname}.cabal
+}
+
+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-nonce/trunk (PKGBUILD)

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:07:13
  Author: felixonmars
Revision: 227520

upgpkg: haskell-nonce 1.0.2-16

rebuild with foundation,0.0.9

Modified:
  haskell-nonce/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:05:28 UTC (rev 227519)
+++ PKGBUILD2017-05-09 18:07:13 UTC (rev 227520)
@@ -5,7 +5,7 @@
 _hkgname=nonce
 pkgname=haskell-nonce
 pkgver=1.0.2
-pkgrel=15
+pkgrel=16
 pkgdesc="Generate cryptographic nonces."
 url="https://github.com/prowdsponsor/nonce;
 license=("custom:BSD3")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:05:28
  Author: felixonmars
Revision: 227519

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

Added:
  haskell-crypto-pubkey/repos/community-staging-i686/
  haskell-crypto-pubkey/repos/community-staging-i686/PKGBUILD
(from rev 227518, haskell-crypto-pubkey/trunk/PKGBUILD)
  haskell-crypto-pubkey/repos/community-staging-x86_64/
  haskell-crypto-pubkey/repos/community-staging-x86_64/PKGBUILD
(from rev 227518, haskell-crypto-pubkey/trunk/PKGBUILD)

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

Copied: haskell-crypto-pubkey/repos/community-staging-i686/PKGBUILD (from rev 
227518, haskell-crypto-pubkey/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:05:28 UTC (rev 227519)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=crypto-pubkey
+pkgname=haskell-crypto-pubkey
+pkgver=0.2.8
+pkgrel=17
+pkgdesc="Public Key cryptography"
+url="https://github.com/vincenthz/hs-crypto-pubkey;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-byteable' 'haskell-crypto-numbers' 
'haskell-crypto-pubkey-types'
+ 'haskell-crypto-random' 'haskell-cryptohash')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('e98378fb6ad22aa50c5e1e4dd2c0900d')
+
+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-crypto-pubkey/repos/community-staging-x86_64/PKGBUILD (from rev 
227518, haskell-crypto-pubkey/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:05:28 UTC (rev 227519)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=crypto-pubkey
+pkgname=haskell-crypto-pubkey
+pkgver=0.2.8
+pkgrel=17
+pkgdesc="Public Key cryptography"
+url="https://github.com/vincenthz/hs-crypto-pubkey;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-byteable' 'haskell-crypto-numbers' 
'haskell-crypto-pubkey-types'
+ 'haskell-crypto-random' 'haskell-cryptohash')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('e98378fb6ad22aa50c5e1e4dd2c0900d')
+
+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" 

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:05:01
  Author: felixonmars
Revision: 227518

upgpkg: haskell-crypto-pubkey 0.2.8-17

rebuild with foundation,0.0.9

Modified:
  haskell-crypto-pubkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:02:59 UTC (rev 227517)
+++ PKGBUILD2017-05-09 18:05:01 UTC (rev 227518)
@@ -5,7 +5,7 @@
 _hkgname=crypto-pubkey
 pkgname=haskell-crypto-pubkey
 pkgver=0.2.8
-pkgrel=16
+pkgrel=17
 pkgdesc="Public Key cryptography"
 url="https://github.com/vincenthz/hs-crypto-pubkey;
 license=('custom:BSD3')


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:02:59
  Author: felixonmars
Revision: 227517

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

Added:
  haskell-crypto-numbers/repos/community-staging-i686/
  haskell-crypto-numbers/repos/community-staging-i686/PKGBUILD
(from rev 227516, haskell-crypto-numbers/trunk/PKGBUILD)
  haskell-crypto-numbers/repos/community-staging-x86_64/
  haskell-crypto-numbers/repos/community-staging-x86_64/PKGBUILD
(from rev 227516, haskell-crypto-numbers/trunk/PKGBUILD)

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

Copied: haskell-crypto-numbers/repos/community-staging-i686/PKGBUILD (from rev 
227516, haskell-crypto-numbers/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:02:59 UTC (rev 227517)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=crypto-numbers
+pkgname=haskell-crypto-numbers
+pkgver=0.2.7
+pkgrel=12
+pkgdesc="Cryptographic numbers: functions and algorithms"
+url="https://github.com/vincenthz/hs-crypto-numbers;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-crypto-random' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('adb5cb1566dde3ad9f89c0c1ad65a84c')
+
+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-crypto-numbers/repos/community-staging-x86_64/PKGBUILD (from 
rev 227516, haskell-crypto-numbers/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:02:59 UTC (rev 227517)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Thomas Dziedzic 
+
+_hkgname=crypto-numbers
+pkgname=haskell-crypto-numbers
+pkgver=0.2.7
+pkgrel=12
+pkgdesc="Cryptographic numbers: functions and algorithms"
+url="https://github.com/vincenthz/hs-crypto-numbers;
+license=('custom:BSD3')
+arch=('i686' 'x86_64')
+depends=('ghc=8.0.1' 'haskell-crypto-random' 'haskell-vector')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+md5sums=('adb5cb1566dde3ad9f89c0c1ad65a84c')
+
+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"
+}


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:02:32
  Author: felixonmars
Revision: 227516

upgpkg: haskell-crypto-numbers 0.2.7-12

rebuild with foundation,0.0.9

Modified:
  haskell-crypto-numbers/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 18:00:39 UTC (rev 227515)
+++ PKGBUILD2017-05-09 18:02:32 UTC (rev 227516)
@@ -5,7 +5,7 @@
 _hkgname=crypto-numbers
 pkgname=haskell-crypto-numbers
 pkgver=0.2.7
-pkgrel=11
+pkgrel=12
 pkgdesc="Cryptographic numbers: functions and algorithms"
 url="https://github.com/vincenthz/hs-crypto-numbers;
 license=('custom:BSD3')


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:00:39
  Author: felixonmars
Revision: 227515

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 227514, haskell-yesod/trunk/PKGBUILD)
  haskell-yesod/repos/community-staging-x86_64/
  haskell-yesod/repos/community-staging-x86_64/PKGBUILD
(from rev 227514, 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 227514, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 18:00:39 UTC (rev 227515)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=37
+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 227514, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 18:00:39 UTC (rev 227515)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.5
+pkgrel=37
+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/trunk (PKGBUILD)

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 18:00:13
  Author: felixonmars
Revision: 227514

upgpkg: haskell-yesod 1.4.5-37

rebuild with foundation,0.0.9

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 17:56:59 UTC (rev 227513)
+++ PKGBUILD2017-05-09 18:00:13 UTC (rev 227514)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.5
-pkgrel=36
+pkgrel=37
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 17:56:59
  Author: felixonmars
Revision: 227513

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 227512, haskell-yesod-form/trunk/PKGBUILD)
  haskell-yesod-form/repos/community-staging-x86_64/
  haskell-yesod-form/repos/community-staging-x86_64/PKGBUILD
(from rev 227512, 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 
227512, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 17:56:59 UTC (rev 227513)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.11
+pkgrel=39
+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;)
+sha256sums=('45edd3ea97a09968426ab20ea4595389b61f5fc2c9e328cecbdeed4a78dcd8d6')
+
+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 
227512, haskell-yesod-form/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 17:56:59 UTC (rev 227513)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-form
+pkgname=haskell-yesod-form
+pkgver=1.4.11
+pkgrel=39
+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;)
+sha256sums=('45edd3ea97a09968426ab20ea4595389b61f5fc2c9e328cecbdeed4a78dcd8d6')
+
+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
+

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

2017-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 17:56:32
  Author: felixonmars
Revision: 227512

upgpkg: haskell-yesod-form 1.4.11-39

rebuild with foundation,0.0.9

Modified:
  haskell-yesod-form/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 17:52:07 UTC (rev 227511)
+++ PKGBUILD2017-05-09 17:56:32 UTC (rev 227512)
@@ -5,7 +5,7 @@
 _hkgname=yesod-form
 pkgname=haskell-yesod-form
 pkgver=1.4.11
-pkgrel=38
+pkgrel=39
 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-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 17:52:07
  Author: felixonmars
Revision: 227511

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 227510, haskell-yesod-persistent/trunk/PKGBUILD)
  haskell-yesod-persistent/repos/community-staging-x86_64/
  haskell-yesod-persistent/repos/community-staging-x86_64/PKGBUILD
(from rev 227510, 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 227510, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-09 17:52:07 UTC (rev 227511)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=34
+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 227510, haskell-yesod-persistent/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-09 17:52:07 UTC (rev 227511)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-persistent
+pkgname=haskell-yesod-persistent
+pkgver=1.4.2
+pkgrel=34
+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-05-09 Thread Felix Yan
Date: Tuesday, May 9, 2017 @ 17:51:41
  Author: felixonmars
Revision: 227510

upgpkg: haskell-yesod-persistent 1.4.2-34

rebuild with foundation,0.0.9

Modified:
  haskell-yesod-persistent/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-05-09 17:49:16 UTC (rev 227509)
+++ PKGBUILD2017-05-09 17:51:41 UTC (rev 227510)
@@ -5,7 +5,7 @@
 _hkgname=yesod-persistent
 pkgname=haskell-yesod-persistent
 pkgver=1.4.2
-pkgrel=33
+pkgrel=34
 pkgdesc="Some helpers for using Persistent from Yesod."
 url="http://www.yesodweb.com/;
 license=("MIT")


  1   2   3   >