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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 05:48:55
  Author: fyan
Revision: 158913

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

Added:
  haskell-juicypixels/repos/community-staging-i686/
  haskell-juicypixels/repos/community-staging-i686/PKGBUILD
(from rev 158912, haskell-juicypixels/trunk/PKGBUILD)
  haskell-juicypixels/repos/community-staging-i686/haskell-juicypixels.install
(from rev 158912, haskell-juicypixels/trunk/haskell-juicypixels.install)
  haskell-juicypixels/repos/community-staging-x86_64/
  haskell-juicypixels/repos/community-staging-x86_64/PKGBUILD
(from rev 158912, haskell-juicypixels/trunk/PKGBUILD)
  haskell-juicypixels/repos/community-staging-x86_64/haskell-juicypixels.install
(from rev 158912, haskell-juicypixels/trunk/haskell-juicypixels.install)

--+
 community-staging-i686/PKGBUILD  |   43 +
 community-staging-i686/haskell-juicypixels.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   43 +
 community-staging-x86_64/haskell-juicypixels.install |   18 +++
 4 files changed, 122 insertions(+)

Copied: haskell-juicypixels/repos/community-staging-i686/PKGBUILD (from rev 
158912, haskell-juicypixels/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-26 04:48:55 UTC (rev 158913)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=JuicyPixels
+pkgname=haskell-juicypixels
+pkgver=3.2.7
+pkgrel=1
+pkgdesc="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff 
and radiance)"
+url="https://github.com/Twinside/Juicy.Pixels;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-mtl" "haskell-primitive" "haskell-vector" 
"haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('0126ff02d78045a299e76a35e2a3d3d188e7512f08d57e89bf1e0a94eb6ff14b')
+
+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-mmap
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-juicypixels/repos/community-staging-i686/haskell-juicypixels.install 
(from rev 158912, haskell-juicypixels/trunk/haskell-juicypixels.install)
===
--- community-staging-i686/haskell-juicypixels.install  
(rev 0)
+++ community-staging-i686/haskell-juicypixels.install  2016-01-26 04:48:55 UTC 
(rev 158913)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-juicypixels
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-juicypixels/repos/community-staging-x86_64/PKGBUILD (from rev 
158912, haskell-juicypixels/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-26 04:48:55 UTC (rev 158913)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=JuicyPixels
+pkgname=haskell-juicypixels
+pkgver=3.2.7
+pkgrel=1
+pkgdesc="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff 
and radiance)"
+url="https://github.com/Twinside/Juicy.Pixels;

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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 05:48:26
  Author: fyan
Revision: 158912

upgpkg: haskell-juicypixels 3.2.7-1

Modified:
  haskell-juicypixels/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-26 03:16:45 UTC (rev 158911)
+++ PKGBUILD2016-01-26 04:48:26 UTC (rev 158912)
@@ -4,8 +4,8 @@
 
 _hkgname=JuicyPixels
 pkgname=haskell-juicypixels
-pkgver=3.2.6.4
-pkgrel=3
+pkgver=3.2.7
+pkgrel=1
 pkgdesc="Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff 
and radiance)"
 url="https://github.com/Twinside/Juicy.Pixels;
 license=("custom:BSD3")
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('6268583fd7915913b3d68a399184bfcfebfaa010be9aa10232d76324df65a6ac')
+sha256sums=('0126ff02d78045a299e76a35e2a3d3d188e7512f08d57e89bf1e0a94eb6ff14b')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


[arch-commits] Commit in xdebug/repos (extra-i686 extra-x86_64)

2016-01-25 Thread Pierre Schmitz
Date: Tuesday, January 26, 2016 @ 06:11:20
  Author: pierre
Revision: 158916

wrong repo

Deleted:
  xdebug/repos/extra-i686/
  xdebug/repos/extra-x86_64/


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

2016-01-25 Thread Pierre Schmitz
Date: Tuesday, January 26, 2016 @ 06:10:06
  Author: pierre
Revision: 158915

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

Added:
  xdebug/repos/extra-i686/
  xdebug/repos/extra-i686/PKGBUILD
(from rev 158914, xdebug/trunk/PKGBUILD)
  xdebug/repos/extra-i686/xdebug.ini
(from rev 158914, xdebug/trunk/xdebug.ini)
  xdebug/repos/extra-x86_64/
  xdebug/repos/extra-x86_64/PKGBUILD
(from rev 158914, xdebug/trunk/PKGBUILD)
  xdebug/repos/extra-x86_64/xdebug.ini
(from rev 158914, xdebug/trunk/xdebug.ini)

-+
 extra-i686/PKGBUILD |   39 +++
 extra-i686/xdebug.ini   |5 +
 extra-x86_64/PKGBUILD   |   39 +++
 extra-x86_64/xdebug.ini |5 +
 4 files changed, 88 insertions(+)

Copied: xdebug/repos/extra-i686/PKGBUILD (from rev 158914, 
xdebug/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-26 05:10:06 UTC (rev 158915)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.4.0RC4
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org;
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("http://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
+   'xdebug.ini')
+md5sums=('0ff361aa7bc8098ff7dd4c2ea13e7773'
+ '0e601dfb867b248f28d6a647611e4400')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd $srcdir/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver/debugclient
+  make DESTDIR=$pkgdir install
+
+  cd $srcdir/$pkgname-$pkgver
+  make INSTALL_ROOT=$pkgdir install
+  install -D -m 644 $srcdir/xdebug.ini $pkgdir/etc/php/conf.d/xdebug.ini
+}

Copied: xdebug/repos/extra-i686/xdebug.ini (from rev 158914, 
xdebug/trunk/xdebug.ini)
===
--- extra-i686/xdebug.ini   (rev 0)
+++ extra-i686/xdebug.ini   2016-01-26 05:10:06 UTC (rev 158915)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp

Copied: xdebug/repos/extra-x86_64/PKGBUILD (from rev 158914, 
xdebug/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2016-01-26 05:10:06 UTC (rev 158915)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.4.0RC4
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org;
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("http://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
+   'xdebug.ini')
+md5sums=('0ff361aa7bc8098ff7dd4c2ea13e7773'
+ '0e601dfb867b248f28d6a647611e4400')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd $srcdir/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver/debugclient
+  make DESTDIR=$pkgdir install
+
+  cd $srcdir/$pkgname-$pkgver
+  make INSTALL_ROOT=$pkgdir install
+  install -D -m 644 $srcdir/xdebug.ini $pkgdir/etc/php/conf.d/xdebug.ini
+}

Copied: xdebug/repos/extra-x86_64/xdebug.ini (from rev 158914, 
xdebug/trunk/xdebug.ini)
===
--- extra-x86_64/xdebug.ini (rev 0)
+++ extra-x86_64/xdebug.ini 2016-01-26 05:10:06 UTC (rev 158915)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp


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

2016-01-25 Thread Pierre Schmitz
Date: Tuesday, January 26, 2016 @ 06:11:49
  Author: pierre
Revision: 158917

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

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

-+
 /PKGBUILD   |   78 ++
 /xdebug.ini |   10 +
 community-i686/PKGBUILD |   43 ---
 community-i686/xdebug.ini   |5 --
 community-x86_64/PKGBUILD   |   43 ---
 community-x86_64/xdebug.ini |5 --
 6 files changed, 88 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-26 05:11:20 UTC (rev 158916)
+++ community-i686/PKGBUILD 2016-01-26 05:11:49 UTC (rev 158917)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-# Contributor: Jonathan Wiersma 
-# Contributor: sracker 
-
-pkgname=xdebug
-pkgver=2.4.0RC4dev
-_commit=f6a28e6df492d1bd3343a4436855834564c6fc66
-pkgrel=2
-pkgdesc="PHP debugging extension"
-arch=('i686' 'x86_64')
-url="http://www.xdebug.org;
-license=('GPL')
-depends=('php')
-makedepends=('git')
-options=('!makeflags')
-backup=('etc/php/conf.d/xdebug.ini')
-source=("git+https://github.com/xdebug/xdebug.git#commit=${_commit};
-   'xdebug.ini')
-md5sums=('SKIP'
- '0e601dfb867b248f28d6a647611e4400')
-
-build() {
-  cd $srcdir/$pkgname
-  phpize
-  ./configure --prefix=/usr --enable-xdebug
-  make
-
-  cd $srcdir/$pkgname/debugclient
-  ./buildconf
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname/debugclient
-  make DESTDIR=$pkgdir install
-
-  cd $srcdir/$pkgname
-  make INSTALL_ROOT=$pkgdir install
-  install -D -m 644 $srcdir/xdebug.ini $pkgdir/etc/php/conf.d/xdebug.ini
-}

Copied: xdebug/repos/community-i686/PKGBUILD (from rev 158916, 
xdebug/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-26 05:11:49 UTC (rev 158917)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sergej Pupykin 
+# Maintainer: Jonathan Wiersma 
+# Contributor: Jonathan Wiersma 
+# Contributor: sracker 
+
+pkgname=xdebug
+pkgver=2.4.0RC4
+pkgrel=1
+pkgdesc="PHP debugging extension"
+arch=('i686' 'x86_64')
+url="http://www.xdebug.org;
+license=('GPL')
+depends=('php')
+backup=('etc/php/conf.d/xdebug.ini')
+source=("http://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
+   'xdebug.ini')
+md5sums=('0ff361aa7bc8098ff7dd4c2ea13e7773'
+ '0e601dfb867b248f28d6a647611e4400')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  phpize
+  ./configure --prefix=/usr --enable-xdebug
+  make
+
+  cd $srcdir/$pkgname-$pkgver/debugclient
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver/debugclient
+  make DESTDIR=$pkgdir install
+
+  cd $srcdir/$pkgname-$pkgver
+  make INSTALL_ROOT=$pkgdir install
+  install -D -m 644 $srcdir/xdebug.ini $pkgdir/etc/php/conf.d/xdebug.ini
+}

Deleted: community-i686/xdebug.ini
===
--- community-i686/xdebug.ini   2016-01-26 05:11:20 UTC (rev 158916)
+++ community-i686/xdebug.ini   2016-01-26 05:11:49 UTC (rev 158917)
@@ -1,5 +0,0 @@
-;zend_extension=xdebug.so
-;xdebug.remote_enable=on
-;xdebug.remote_host=127.0.0.1
-;xdebug.remote_port=9000
-;xdebug.remote_handler=dbgp

Copied: xdebug/repos/community-i686/xdebug.ini (from rev 158916, 
xdebug/trunk/xdebug.ini)
===
--- community-i686/xdebug.ini   (rev 0)
+++ community-i686/xdebug.ini   2016-01-26 05:11:49 UTC (rev 158917)
@@ -0,0 +1,5 @@
+;zend_extension=xdebug.so
+;xdebug.remote_enable=on
+;xdebug.remote_host=127.0.0.1
+;xdebug.remote_port=9000
+;xdebug.remote_handler=dbgp

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-01-26 05:11:20 UTC (rev 158916)
+++ community-x86_64/PKGBUILD   2016-01-26 05:11:49 UTC (rev 158917)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin 
-# Maintainer: Jonathan Wiersma 
-# Contributor: Jonathan Wiersma 
-# Contributor: sracker 
-
-pkgname=xdebug
-pkgver=2.4.0RC4dev

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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 07:53:28
  Author: fyan
Revision: 158920

upgpkg: pandoc 1.16.0.2-11

rebuild with JuicyPixels-3.2.7

Modified:
  pandoc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-26 06:13:50 UTC (rev 158919)
+++ PKGBUILD2016-01-26 06:53:28 UTC (rev 158920)
@@ -5,7 +5,7 @@
 pkgbase=pandoc
 pkgname=(pandoc haskell-pandoc)
 pkgver=1.16.0.2
-pkgrel=10
+pkgrel=11
 pkgdesc="Conversion between markup formats"
 url="http://pandoc.org;
 license=("GPL")


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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 07:53:56
  Author: fyan
Revision: 158921

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 158920, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-i686/haskell-pandoc.install
(from rev 158920, pandoc/trunk/haskell-pandoc.install)
  pandoc/repos/community-staging-x86_64/
  pandoc/repos/community-staging-x86_64/PKGBUILD
(from rev 158920, pandoc/trunk/PKGBUILD)
  pandoc/repos/community-staging-x86_64/haskell-pandoc.install
(from rev 158920, pandoc/trunk/haskell-pandoc.install)

-+
 community-staging-i686/PKGBUILD |   68 ++
 community-staging-i686/haskell-pandoc.install   |   18 +
 community-staging-x86_64/PKGBUILD   |   68 ++
 community-staging-x86_64/haskell-pandoc.install |   18 +
 4 files changed, 172 insertions(+)

Copied: pandoc/repos/community-staging-i686/PKGBUILD (from rev 158920, 
pandoc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-26 06:53:56 UTC (rev 158921)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc
+pkgname=(pandoc haskell-pandoc)
+pkgver=1.16.0.2
+pkgrel=11
+pkgdesc="Conversion between markup formats"
+url="http://pandoc.org;
+license=("GPL")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-http" "haskell-juicypixels" "haskell-sha" 
"haskell-aeson"
+ "haskell-base64-bytestring" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-cmark" "haskell-data-default" "haskell-mtl" 
"haskell-extensible-exceptions"
+ "haskell-filemanip" "haskell-haddock-library" 
"haskell-highlighting-kate"
+ "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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('f5f3262ef4574a111936fea0118557c523a8b0eaa7fea84b64b377b20a80f348')
+
+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
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_pandoc() {
+depends=('gmp' 'libffi' 'zlib')
+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')
+install="haskell-pandoc.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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"
+}

Copied: pandoc/repos/community-staging-i686/haskell-pandoc.install (from rev 
158920, pandoc/trunk/haskell-pandoc.install)
===
--- community-staging-i686/haskell-pandoc.install   
(rev 0)
+++ community-staging-i686/haskell-pandoc.install   2016-01-26 06:53:56 UTC 
(rev 158921)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc
+post_install() {
+  

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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 07:13:23
  Author: fyan
Revision: 158918

upgpkg: haskell-hscolour 1.24-1

Modified:
  haskell-hscolour/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-26 05:11:49 UTC (rev 158917)
+++ PKGBUILD2016-01-26 06:13:23 UTC (rev 158918)
@@ -4,8 +4,8 @@
 
 _hkgname=hscolour
 pkgname=haskell-hscolour
-pkgver=1.23
-pkgrel=2
+pkgver=1.24
+pkgrel=1
 pkgdesc="Colourise Haskell code."
 url="http://code.haskell.org/~malcolm/hscolour/;
 license=("GPL")
@@ -14,7 +14,7 @@
 options=('staticlibs')
 
source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
 install="${pkgname}.install"
-sha256sums=('97167eaecc309eff51317d6e925881bc9f27921bd52692121f0fc5aaee1791b0')
+sha256sums=('54bc45137ba06bd876cf98424f974e325e9b236bd5c18d1c5b2ea0351b1d9332')
 
 build() {
 cd "${srcdir}/${_hkgname}-${pkgver}"


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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 07:13:50
  Author: fyan
Revision: 158919

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

Added:
  haskell-hscolour/repos/community-staging-i686/
  haskell-hscolour/repos/community-staging-i686/PKGBUILD
(from rev 158918, haskell-hscolour/trunk/PKGBUILD)
  haskell-hscolour/repos/community-staging-i686/haskell-hscolour.install
(from rev 158918, haskell-hscolour/trunk/haskell-hscolour.install)
  haskell-hscolour/repos/community-staging-x86_64/
  haskell-hscolour/repos/community-staging-x86_64/PKGBUILD
(from rev 158918, haskell-hscolour/trunk/PKGBUILD)
  haskell-hscolour/repos/community-staging-x86_64/haskell-hscolour.install
(from rev 158918, haskell-hscolour/trunk/haskell-hscolour.install)

---+
 community-staging-i686/PKGBUILD   |   40 
 community-staging-i686/haskell-hscolour.install   |   18 +
 community-staging-x86_64/PKGBUILD |   40 
 community-staging-x86_64/haskell-hscolour.install |   18 +
 4 files changed, 116 insertions(+)

Copied: haskell-hscolour/repos/community-staging-i686/PKGBUILD (from rev 
158918, haskell-hscolour/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-26 06:13:50 UTC (rev 158919)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hscolour
+pkgname=haskell-hscolour
+pkgver=1.24
+pkgrel=1
+pkgdesc="Colourise Haskell code."
+url="http://code.haskell.org/~malcolm/hscolour/;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('54bc45137ba06bd876cf98424f974e325e9b236bd5c18d1c5b2ea0351b1d9332')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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}"
+}

Copied: haskell-hscolour/repos/community-staging-i686/haskell-hscolour.install 
(from rev 158918, haskell-hscolour/trunk/haskell-hscolour.install)
===
--- community-staging-i686/haskell-hscolour.install 
(rev 0)
+++ community-staging-i686/haskell-hscolour.install 2016-01-26 06:13:50 UTC 
(rev 158919)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hscolour
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-hscolour/repos/community-staging-x86_64/PKGBUILD (from rev 
158918, haskell-hscolour/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-26 06:13:50 UTC (rev 158919)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hscolour
+pkgname=haskell-hscolour
+pkgver=1.24
+pkgrel=1
+pkgdesc="Colourise Haskell code."
+url="http://code.haskell.org/~malcolm/hscolour/;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('54bc45137ba06bd876cf98424f974e325e9b236bd5c18d1c5b2ea0351b1d9332')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+

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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 08:13:42
  Author: fyan
Revision: 158923

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

Added:
  hlint/repos/community-staging-i686/
  hlint/repos/community-staging-i686/PKGBUILD
(from rev 158922, hlint/trunk/PKGBUILD)
  hlint/repos/community-staging-i686/haskell-hlint.install
(from rev 158922, hlint/trunk/haskell-hlint.install)
  hlint/repos/community-staging-i686/hlint.install
(from rev 158922, hlint/trunk/hlint.install)
  hlint/repos/community-staging-x86_64/
  hlint/repos/community-staging-x86_64/PKGBUILD
(from rev 158922, hlint/trunk/PKGBUILD)
  hlint/repos/community-staging-x86_64/haskell-hlint.install
(from rev 158922, hlint/trunk/haskell-hlint.install)
  hlint/repos/community-staging-x86_64/hlint.install
(from rev 158922, hlint/trunk/hlint.install)

+
 community-staging-i686/PKGBUILD|   55 +++
 community-staging-i686/haskell-hlint.install   |   18 +++
 community-staging-i686/hlint.install   |   18 +++
 community-staging-x86_64/PKGBUILD  |   55 +++
 community-staging-x86_64/haskell-hlint.install |   18 +++
 community-staging-x86_64/hlint.install |   18 +++
 6 files changed, 182 insertions(+)

Copied: hlint/repos/community-staging-i686/PKGBUILD (from rev 158922, 
hlint/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-26 07:13:42 UTC (rev 158923)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=hlint
+pkgname=(hlint haskell-hlint)
+pkgver=1.9.26
+pkgrel=6
+pkgdesc="Source code suggestions"
+url="http://community.haskell.org/~ndm/hlint/;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-ansi-terminal" "haskell-cmdargs" 
"haskell-cpphs"
+ "haskell-extra" "haskell-src-exts" "haskell-hscolour" 
"haskell-uniplate"
+ "haskell-refact")
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('f9dcb152d05472c16572e9519494b376c12b748a886f79f74ffcfcb973c33553')
+
+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 \
+-fgpl -fthreaded
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_hlint() {
+depends=('gmp' 'libffi')
+
+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-hlint() {
+pkgdesc="Source code suggestions (docs and libraries)"
+depends=("${makedepends[@]}" 'hlint')
+install="haskell-hlint.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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 -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+rm -r "$pkgdir"/usr/{bin,share/${pkgbase}}
+}

Copied: hlint/repos/community-staging-i686/haskell-hlint.install (from rev 
158922, hlint/trunk/haskell-hlint.install)
===
--- community-staging-i686/haskell-hlint.install
(rev 0)
+++ community-staging-i686/haskell-hlint.install2016-01-26 07:13:42 UTC 
(rev 158923)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hlint
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: hlint/repos/community-staging-i686/hlint.install (from rev 158922, 
hlint/trunk/hlint.install)
===
--- community-staging-i686/hlint.install

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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 08:13:07
  Author: fyan
Revision: 158922

upgpkg: hlint 1.9.26-6

rebuild with JuicyPixels-3.2.7, hscolour-1.24

Modified:
  hlint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-26 06:53:56 UTC (rev 158921)
+++ PKGBUILD2016-01-26 07:13:07 UTC (rev 158922)
@@ -5,7 +5,7 @@
 pkgbase=hlint
 pkgname=(hlint haskell-hlint)
 pkgver=1.9.26
-pkgrel=5
+pkgrel=6
 pkgdesc="Source code suggestions"
 url="http://community.haskell.org/~ndm/hlint/;
 license=("custom:BSD3")


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

2016-01-25 Thread Jiachen Yang
Date: Tuesday, January 26, 2016 @ 08:56:15
  Author: farseerfc
Revision: 158925

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

Added:
  qtox/repos/community-i686/PKGBUILD
(from rev 158924, qtox/trunk/PKGBUILD)
  qtox/repos/community-i686/qtox.install
(from rev 158924, qtox/trunk/qtox.install)
  qtox/repos/community-x86_64/PKGBUILD
(from rev 158924, qtox/trunk/PKGBUILD)
  qtox/repos/community-x86_64/qtox.install
(from rev 158924, qtox/trunk/qtox.install)
Deleted:
  qtox/repos/community-i686/PKGBUILD
  qtox/repos/community-i686/qtox.install
  qtox/repos/community-x86_64/PKGBUILD
  qtox/repos/community-x86_64/qtox.install

---+
 /PKGBUILD |  104 
 /qtox.install |   24 +
 community-i686/PKGBUILD   |   52 
 community-i686/qtox.install   |   12 
 community-x86_64/PKGBUILD |   52 
 community-x86_64/qtox.install |   12 
 6 files changed, 128 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-26 07:55:17 UTC (rev 158924)
+++ community-i686/PKGBUILD 2016-01-26 07:56:15 UTC (rev 158925)
@@ -1,52 +0,0 @@
-# Maintainer: Jiachen Yang 
-# AUR Maintainer: Vlad M. 
-# Contributor: Håvard Pettersson 
-# Contributor: Kevin MacMartin 
-
-pkgname=qtox
-_pkgname=qTox
-pkgver=1.2.2
-pkgrel=3
-pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
-arch=('i686' 'x86_64')
-url='https://github.com/tux3/qTox'
-license=('GPL3')
-depends=('desktop-file-utils'
- 'libfilteraudio'
- 'libxkbcommon-x11'
- 'libxss'
- 'openal'
- 'opencv'
- 'qrencode'
- 'qt5-svg'
- 'sqlcipher'
- 'toxcore')
-makedepends=('qt5-tools')
-install=$pkgname.install
-source=("https://github.com/tux3/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('f667d8c998d1b908069782b2123a3922c8ae554ab58a686eced060a6692cb12fbb4348c91e826a3e651e86df744fb0195dbf0e9fe0979aa40b32e6d29439740b')
-
-build() {
-  cd $_pkgname-$pkgver
-  install -d build
-  cd build
-  qmake-qt5 ENABLE_SYSTRAY_UNITY_BACKEND=NO ..
-  make
-}
-
-package() {
-  # executable
-  cd $_pkgname-$pkgver
-  install -Dm755 build/$pkgname "$pkgdir/usr/bin/$pkgname"
-
-  # xdg desktop file
-  install -Dm644 qTox.desktop "$pkgdir/usr/share/applications/qTox.desktop"
-
-  # icons
-  cd img/icons
-  for _icon in *.png; do
-_size=$(sed 's|^[^-]*-||;s|\.png||' <<< "$_icon")
-install -Dm644 "$_icon" 
"$pkgdir/usr/share/icons/hicolor/$_size/apps/$pkgname.png"
-  done
-  install -Dm644 $pkgname.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg"
-}

Copied: qtox/repos/community-i686/PKGBUILD (from rev 158924, 
qtox/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-26 07:56:15 UTC (rev 158925)
@@ -0,0 +1,52 @@
+# Maintainer: Jiachen Yang 
+# AUR Maintainer: Vlad M. 
+# Contributor: Håvard Pettersson 
+# Contributor: Kevin MacMartin 
+
+pkgname=qtox
+_pkgname=qTox
+pkgver=1.2.4
+pkgrel=1
+pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
+arch=('i686' 'x86_64')
+url='https://github.com/tux3/qTox'
+license=('GPL3')
+depends=('desktop-file-utils'
+ 'libfilteraudio'
+ 'libxkbcommon-x11'
+ 'libxss'
+ 'openal'
+ 'opencv'
+ 'qrencode'
+ 'qt5-svg'
+ 'sqlcipher'
+ 'toxcore')
+makedepends=('qt5-tools')
+install=$pkgname.install
+source=("https://github.com/tux3/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
+sha512sums=('4e3e68e6dadbe411196cfa3648deacd8197f2d7024a51193805aaca36e11a740d879b68b4319efa0f5168e9f13c949ef6a3f39c18584a764df9e825e3ac8ed72')
+
+build() {
+  cd $_pkgname-$pkgver
+  install -d build
+  cd build
+  qmake-qt5 ENABLE_SYSTRAY_UNITY_BACKEND=NO ..
+  make
+}
+
+package() {
+  # executable
+  cd $_pkgname-$pkgver
+  install -Dm755 build/$pkgname "$pkgdir/usr/bin/$pkgname"
+
+  # xdg desktop file
+  install -Dm644 qTox.desktop "$pkgdir/usr/share/applications/qTox.desktop"
+
+  # icons
+  cd img/icons
+  for _icon in *.png; do
+_size=$(sed 's|^[^-]*-||;s|\.png||' <<< "$_icon")
+install -Dm644 "$_icon" 
"$pkgdir/usr/share/icons/hicolor/$_size/apps/$pkgname.png"
+  done
+  install -Dm644 $pkgname.svg 
"$pkgdir/usr/share/icons/hicolor/scalable/apps/$pkgname.svg"
+}

Deleted: community-i686/qtox.install
===
--- community-i686/qtox.install 2016-01-26 07:55:17 UTC (rev 158924)
+++ community-i686/qtox.install 2016-01-26 07:56:15 UTC 

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

2016-01-25 Thread Jiachen Yang
Date: Tuesday, January 26, 2016 @ 08:55:17
  Author: farseerfc
Revision: 158924

upgpkg: qtox 1.2.4-1

updpkg qtox 1.2.4

Modified:
  qtox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-26 07:13:42 UTC (rev 158923)
+++ PKGBUILD2016-01-26 07:55:17 UTC (rev 158924)
@@ -5,8 +5,8 @@
 
 pkgname=qtox
 _pkgname=qTox
-pkgver=1.2.2
-pkgrel=3
+pkgver=1.2.4
+pkgrel=1
 pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design 
guidelines'
 arch=('i686' 'x86_64')
 url='https://github.com/tux3/qTox'
@@ -24,7 +24,7 @@
 makedepends=('qt5-tools')
 install=$pkgname.install
 
source=("https://github.com/tux3/$pkgname/archive/v$pkgver/$pkgname-$pkgver.tar.gz;)
-sha512sums=('f667d8c998d1b908069782b2123a3922c8ae554ab58a686eced060a6692cb12fbb4348c91e826a3e651e86df744fb0195dbf0e9fe0979aa40b32e6d29439740b')
+sha512sums=('4e3e68e6dadbe411196cfa3648deacd8197f2d7024a51193805aaca36e11a740d879b68b4319efa0f5168e9f13c949ef6a3f39c18584a764df9e825e3ac8ed72')
 
 build() {
   cd $_pkgname-$pkgver


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

2016-01-25 Thread Pierre Schmitz
Date: Tuesday, January 26, 2016 @ 06:09:51
  Author: pierre
Revision: 158914

upgpkg: xdebug 2.4.0RC4-1

Modified:
  xdebug/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-26 04:48:55 UTC (rev 158913)
+++ PKGBUILD2016-01-26 05:09:51 UTC (rev 158914)
@@ -5,39 +5,35 @@
 # Contributor: sracker 
 
 pkgname=xdebug
-pkgver=2.4.0RC4dev
-_commit=f6a28e6df492d1bd3343a4436855834564c6fc66
-pkgrel=2
+pkgver=2.4.0RC4
+pkgrel=1
 pkgdesc="PHP debugging extension"
 arch=('i686' 'x86_64')
 url="http://www.xdebug.org;
 license=('GPL')
 depends=('php')
-makedepends=('git')
-options=('!makeflags')
 backup=('etc/php/conf.d/xdebug.ini')
-source=("git+https://github.com/xdebug/xdebug.git#commit=${_commit};
+source=("http://www.xdebug.org/files/$pkgname-${pkgver,,}.tgz;
'xdebug.ini')
-md5sums=('SKIP'
+md5sums=('0ff361aa7bc8098ff7dd4c2ea13e7773'
  '0e601dfb867b248f28d6a647611e4400')
 
 build() {
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
   phpize
   ./configure --prefix=/usr --enable-xdebug
   make
 
-  cd $srcdir/$pkgname/debugclient
-  ./buildconf
+  cd $srcdir/$pkgname-$pkgver/debugclient
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $srcdir/$pkgname/debugclient
+  cd $srcdir/$pkgname-$pkgver/debugclient
   make DESTDIR=$pkgdir install
 
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
   make INSTALL_ROOT=$pkgdir install
   install -D -m 644 $srcdir/xdebug.ini $pkgdir/etc/php/conf.d/xdebug.ini
 }


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 13:31:35
  Author: fyan
Revision: 158875

minor tweaks

Modified:
  wine-staging/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 11:03:22 UTC (rev 158874)
+++ PKGBUILD2016-01-25 12:31:35 UTC (rev 158875)
@@ -89,7 +89,7 @@
   libxslt   lib32-libxslt
   libva lib32-libva
   gtk3  lib32-gtk3
-  gst-plugins-base-libs lib32-gst-plugins-base
+  gst-plugins-base-libs lib32-gst-plugins-base-libs
   cups
   samba   dosbox
 )
@@ -156,6 +156,8 @@
 --with-gstreamer \
 --with-xattr \
 "${_wine32opts[@]}"
+
+  make
 }
 
 package() {


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 16:05:55
  Author: fyan
Revision: 158881

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-25 15:05:37 UTC (rev 158880)
+++ PKGBUILD2016-01-25 15:05:55 UTC (rev 158881)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: dorphell 
-# Contributor: Travis Willard 
-# Contributor: Douglas Soares de Andrade 
-
-_pkgbasename=libpng
-pkgname=lib32-$_pkgbasename
-pkgver=1.6.20
-_apngver=1.6.20
-_libversion=16
-pkgrel=1
-pkgdesc="A collection of routines used to create PNG format graphics files 
(32-bit)"
-arch=('x86_64')
-url="http://www.libpng.org/pub/png/libpng.html;
-license=('custom')
-depends=('lib32-zlib' $_pkgbasename)
-makedepends=(gcc-multilib)
-options=('!libtool')
-source=("http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz"{,.asc}
-
"http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
-md5sums=('3968acb7c66ef81a9dab867f35d0eb4b'
- 'SKIP'
- 'b2186d5e7853890e25b34b03c7f2ddde')
-validpgpkeys=(8048643BA2C840F4F92A195FF54984BFA16C640F)
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
-  # Add animated PNG (apng) support
-  # see http://sourceforge.net/projects/libpng-apng/
-  patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch"
-
-  ./configure --prefix=/usr --libdir=/usr/lib32 --program-suffix=-32 
--disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${_pkgbasename}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-
-  cd contrib/pngminus
-  make PNGLIB="-L${pkgdir}/usr/lib32 -lpng" -f makefile.std png2pnm pnm2png
-
-  rm -rf "${pkgdir}"/usr/{include,share}
-
-  rm "$pkgdir/usr/bin/libpng-config"
-  ln -s "libpng${_libversion}-config-32" "$pkgdir/usr/bin/libpng-config-32"
-
-  mkdir -p "$pkgdir/usr/share/licenses"
-  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
-}

Copied: lib32-libpng/repos/multilib-x86_64/PKGBUILD (from rev 158880, 
lib32-libpng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-25 15:05:55 UTC (rev 158881)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+# Contributor: Travis Willard 
+# Contributor: Douglas Soares de Andrade 
+
+_pkgbasename=libpng
+pkgname=lib32-$_pkgbasename
+pkgver=1.6.21
+_apngver=1.6.21
+_libversion=16
+pkgrel=1
+pkgdesc="A collection of routines used to create PNG format graphics files 
(32-bit)"
+arch=('x86_64')
+url="http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('lib32-zlib' $_pkgbasename)
+makedepends=(gcc-multilib)
+options=('!libtool')
+source=("http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz"{,.asc}
+
"http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz;)
+md5sums=('3bacb4728f6694a64ad9052769d6a4ce'
+ 'SKIP'
+ '360346394543ec0a880f61830541608f')
+validpgpkeys=(8048643BA2C840F4F92A195FF54984BFA16C640F)
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch"
+
+  ./configure --prefix=/usr --libdir=/usr/lib32 --program-suffix=-32 
--disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${_pkgbasename}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+
+  cd contrib/pngminus
+  make PNGLIB="-L${pkgdir}/usr/lib32 -lpng" -f makefile.std png2pnm pnm2png
+
+  rm -rf "${pkgdir}"/usr/{include,share}
+
+  rm "$pkgdir/usr/bin/libpng-config"
+  ln -s "libpng${_libversion}-config-32" "$pkgdir/usr/bin/libpng-config-32"
+
+  mkdir -p "$pkgdir/usr/share/licenses"
+  ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname"
+}


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

2016-01-25 Thread Johannes Löthberg
Date: Monday, January 25, 2016 @ 21:16:33
  Author: demize
Revision: 158904

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |  214 -
 1 file changed, 115 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-25 20:16:24 UTC (rev 158903)
+++ PKGBUILD2016-01-25 20:16:33 UTC (rev 158904)
@@ -1,99 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Sébastien Luttringer
-# Contributor: Angel Velasquez 
-# Contributor: Fabio Volpe 
-
-pkgbase=python-sphinx
-pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.3.4
-pkgrel=1
-
-arch=('any')
-url='http://sphinx.pocoo.org/'
-license=('BSD')
-
-makedepends=(
-  'python-setuptools'
-  'python-docutils'
-  'python-jinja'
-  'python-pygments'
-  'python-six'
-  'python2-setuptools'
-  'python2-docutils'
-  'python2-jinja'
-  'python2-pygments'
-  'python2-six'
-)
-checkdepends=(
-  'python-nose' 'python2-nose'
-  'texlive-latexextra'
-  'python-snowballstemmer' 'python2-snowballstemmer'
-  'python-babel' 'python2-babel'
-  'python-sphinx-alabaster-theme' 'python2-sphinx-alabaster-theme'
-  'python-sphinx_rtd_theme' 'python2-sphinx_rtd_theme'
-  'python2-mock'
-)
-
-source=("http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz;)
-md5sums=('a0aa2e92d749d52c678873994dff9e10')
-
-prepare() {
-  # souce duplication is required because makefile modify source code
-  # setyp.py --build tricks don't works well
-  cp -a Sphinx-$pkgver Sphinx-${pkgver}2
-  # change python2 interpreter
-  find Sphinx-${pkgver}2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-  # change sphinx-binaries name in source code
-  find Sphinx-${pkgver}2 -type f -name '*.py' -exec \
-sed -ri 's,(sphinx-(:?build|apidoc|autogen|quickstart)),\12,' {} \;
-}
-
-build() {
-  msg2 'Python 3 version'
-  cd "$srcdir"/Sphinx-$pkgver
-  make PYTHON=python3 build
-
-  msg2 'Python 2 version'
-  cd "$srcdir"/Sphinx-${pkgver}2
-  make PYTHON=python2 build
-}
-
-check() {
-  msg2 'Python 3 version'
-  cd "$srcdir"/Sphinx-$pkgver
-#  make PYTHON=python3 test
-  rm -r tests
-
-  msg2 'Python 2 version'
-  cd "$srcdir"/Sphinx-${pkgver}2
-  make PYTHON=python2 test
-  rm -r tests
-}
-
-package_python-sphinx() {
-  pkgdesc='Python3 documentation generator'
-  depends=('python-jinja' 'python-pygments' 'python-docutils' 
'python-sphinx_rtd_theme' 'python-sphinx-alabaster-theme' 'python-babel' 
-'python-snowballstemmer' 'python-six')
-  optdepends=('texlive-latexextra: for generation of PDF documentation')
-
-  cd Sphinx-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 "$srcdir"/Sphinx-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/python-sphinx/LICENSE
-}
-
-package_python2-sphinx() {
-  pkgdesc='Python2 documentation generator'
-  depends=('python2-jinja' 'python2-pygments' 'python2-docutils' 
'python2-sphinx_rtd_theme' 'python2-sphinx-alabaster-theme' 'python2-babel' 
-'python2-snowballstemmer' 'python2-six')
-  optdepends=('texlive-latexextra: for generation of PDF documentation')
-
-  cd Sphinx-${pkgver}2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 "$srcdir"/Sphinx-$pkgver/LICENSE 
"$pkgdir"/usr/share/licenses/python2-sphinx/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-sphinx/repos/community-any/PKGBUILD (from rev 158903, 
python-sphinx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-25 20:16:33 UTC (rev 158904)
@@ -0,0 +1,115 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Sébastien Luttringer
+# Contributor: Angel Velasquez 
+# Contributor: Fabio Volpe 
+
+pkgbase=python-sphinx
+pkgname=('python-sphinx' 'python2-sphinx')
+pkgver=1.3.5
+pkgrel=1
+
+arch=('any')
+url='http://sphinx.pocoo.org/'
+license=('BSD')
+
+makedepends=(
+  'python-setuptools'
+  'python-docutils'
+  'python-jinja'
+  'python-pygments'
+  'python-six'
+  'python2-setuptools'
+  'python2-docutils'
+  'python2-jinja'
+  'python2-pygments'
+  'python2-six'
+)
+checkdepends=(
+  'python-nose' 'python2-nose'
+  'texlive-latexextra'
+  'python-snowballstemmer' 'python2-snowballstemmer'
+  'python-babel' 'python2-babel'
+  'python-sphinx-alabaster-theme' 'python2-sphinx-alabaster-theme'
+  'python-sphinx_rtd_theme' 'python2-sphinx_rtd_theme'
+  'python2-mock'
+)
+
+source=("http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz;)
+md5sums=('14bc6413d9863e36fd7204770bd6fcfe')
+
+prepare() {
+  # souce duplication 

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

2016-01-25 Thread Johannes Löthberg
Date: Monday, January 25, 2016 @ 21:16:24
  Author: demize
Revision: 158903

upgpkg: python-sphinx 1.3.5-1

Modified:
  python-sphinx/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 20:05:11 UTC (rev 158902)
+++ PKGBUILD2016-01-25 20:16:24 UTC (rev 158903)
@@ -6,7 +6,7 @@
 
 pkgbase=python-sphinx
 pkgname=('python-sphinx' 'python2-sphinx')
-pkgver=1.3.4
+pkgver=1.3.5
 pkgrel=1
 
 arch=('any')
@@ -36,7 +36,7 @@
 )
 
 
source=("http://pypi.python.org/packages/source/S/Sphinx/Sphinx-$pkgver.tar.gz;)
-md5sums=('a0aa2e92d749d52c678873994dff9e10')
+md5sums=('14bc6413d9863e36fd7204770bd6fcfe')
 
 prepare() {
   # souce duplication is required because makefile modify source code
@@ -74,8 +74,16 @@
 
 package_python-sphinx() {
   pkgdesc='Python3 documentation generator'
-  depends=('python-jinja' 'python-pygments' 'python-docutils' 
'python-sphinx_rtd_theme' 'python-sphinx-alabaster-theme' 'python-babel' 
-'python-snowballstemmer' 'python-six')
+  depends=(
+'python-jinja'
+'python-pygments'
+'python-docutils'
+'python-sphinx_rtd_theme'
+'python-sphinx-alabaster-theme'
+'python-babel'
+'python-snowballstemmer'
+'python-six'
+  )
   optdepends=('texlive-latexextra: for generation of PDF documentation')
 
   cd Sphinx-$pkgver
@@ -86,8 +94,16 @@
 
 package_python2-sphinx() {
   pkgdesc='Python2 documentation generator'
-  depends=('python2-jinja' 'python2-pygments' 'python2-docutils' 
'python2-sphinx_rtd_theme' 'python2-sphinx-alabaster-theme' 'python2-babel' 
-'python2-snowballstemmer' 'python2-six')
+  depends=(
+'python2-jinja'
+'python2-pygments'
+'python2-docutils'
+'python2-sphinx_rtd_theme'
+'python2-sphinx-alabaster-theme'
+'python2-babel'
+'python2-snowballstemmer'
+'python2-six'
+  )
   optdepends=('texlive-latexextra: for generation of PDF documentation')
 
   cd Sphinx-${pkgver}2


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

2016-01-25 Thread Anatol Pomozov
Date: Monday, January 25, 2016 @ 20:00:45
  Author: anatolik
Revision: 158899

upgpkg: crystal 0.11.1-1

Modified:
  crystal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 18:11:11 UTC (rev 158898)
+++ PKGBUILD2016-01-25 19:00:45 UTC (rev 158899)
@@ -3,7 +3,7 @@
 # Contributor: Jonne Haß 
 
 pkgname=crystal
-pkgver=0.11.0
+pkgver=0.11.1
 pkgrel=1
 _binary_rel=1
 pkgdesc='The Crystal Programming Language'
@@ -21,9 +21,9 @@
 
source=(crystal-$pkgver.tar.gz::https://github.com/manastech/crystal/archive/$pkgver.tar.gz)
 
source_i686+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
 
source_x86_64+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('2aab021f344c28a7f2bb51fb33d273f8c9c95b6adfdae6f578405f891e10236b')
-sha256sums_i686=('04b36da033072e3372b1a3f74401998791f65b2224af9bb874e0867f80fc37ee')
-sha256sums_x86_64=('34b648cf3a57cc9c718ac54beb3c0bc5454493138d7f841a015a72f871262838')
+sha256sums=('bdff81fcb4f2dfdd50d79abba8a1ed0260bad4c1f055002cd16b9b6f443b8a15')
+sha256sums_i686=('2db84f6a287925d02832192cb7c5b99d0f543afd5323286a3a8c1799d5952abe')
+sha256sums_x86_64=('742ee62b23d2ada2a9baa39d0f30973ca0b5b003504b04f2aad8483ef9b6f07b')
 
 prepare() {
   cd $pkgname-$pkgver


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

2016-01-25 Thread Anatol Pomozov
Date: Monday, January 25, 2016 @ 20:01:27
  Author: anatolik
Revision: 158900

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-25 19:00:45 UTC (rev 158899)
+++ community-i686/PKGBUILD 2016-01-25 19:01:27 UTC (rev 158900)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov 
-# Contributor: Jonne Haß 
-
-pkgname=crystal
-pkgver=0.11.0
-pkgrel=1
-_binary_rel=1
-pkgdesc='The Crystal Programming Language'
-arch=(i686 x86_64)
-url='http://crystal-lang.org'
-license=(Apache)
-depends=(gc libatomic_ops pcre libpcl libevent libffi)
-# depend on previous llvm version until 
https://github.com/manastech/crystal/issues/1614 is resolved
-makedepends=(libxml2 llvm35)
-checkdepends=(libyaml libxml2 gmp git)
-optdepends=('shards: crystal language package manager'
-'libyaml: For YAML support'
-'gmp: For BigInt support'
-'libxml2: For XML support')
-source=(crystal-$pkgver.tar.gz::https://github.com/manastech/crystal/archive/$pkgver.tar.gz)
-source_i686+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
-source_x86_64+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
-sha256sums=('2aab021f344c28a7f2bb51fb33d273f8c9c95b6adfdae6f578405f891e10236b')
-sha256sums_i686=('04b36da033072e3372b1a3f74401998791f65b2224af9bb874e0867f80fc37ee')
-sha256sums_x86_64=('34b648cf3a57cc9c718ac54beb3c0bc5454493138d7f841a015a72f871262838')
-
-prepare() {
-  cd $pkgname-$pkgver
-  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please 
install shards: pacman -S shards|' src/compiler/crystal/command.cr
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  make release=1 \
-   PATH="$srcdir/$pkgname-$pkgver-$_binary_rel/bin:$PATH" \
-   CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-   CRYSTAL_CONFIG_VERSION="$pkgver" \
-   CRYSTAL_CONFIG_PATH="libs:/usr/lib/crystal"
-  make doc
-}
-
-check() {
-  cd $pkgname-$pkgver
-
-  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
-CRYSTAL_CONFIG_VERSION="$pkgver"
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  # /usr/bin/crystalcompiled executable
-  # /usr/lib/crystal/   compiler src & core libs
-  # /usr/share/doc/crystal/api  api docs
-  # /usr/share/doc/crystal/samples/ samples
-
-  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
-
-  install -dm755 "$pkgdir/usr/lib"
-  cp -r src "$pkgdir/usr/lib/crystal"
-
-  install -dm755 "$pkgdir/usr/share/doc/crystal"
-  cp -r doc "$pkgdir/usr/share/doc/crystal/api"
-  cp -r samples "$pkgdir/usr/share/doc/crystal/"
-
-  install -Dm644 etc/completion.bash 
"$pkgdir/usr/share/bash-completion/completions/crystal"
-  install -Dm644 etc/completion.zsh 
"$pkgdir/usr/share/zsh/site-functions/_crystal"
-
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: crystal/repos/community-i686/PKGBUILD (from rev 158899, 
crystal/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 19:01:27 UTC (rev 158900)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Anatol Pomozov 
+# Contributor: Jonne Haß 
+
+pkgname=crystal
+pkgver=0.11.1
+pkgrel=1
+_binary_rel=1
+pkgdesc='The Crystal Programming Language'
+arch=(i686 x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libpcl libevent libffi)
+# depend on previous llvm version until 
https://github.com/manastech/crystal/issues/1614 is resolved
+makedepends=(libxml2 llvm35)
+checkdepends=(libyaml libxml2 gmp git)
+optdepends=('shards: crystal language package manager'
+'libyaml: For YAML support'
+'gmp: For BigInt support'
+'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/manastech/crystal/archive/$pkgver.tar.gz)
+source_i686+=(https://github.com/manastech/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)

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

2016-01-25 Thread Anatol Pomozov
Date: Monday, January 25, 2016 @ 17:24:52
  Author: anatolik
Revision: 258584

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

Added:
  nghttp2/repos/testing-i686/
  nghttp2/repos/testing-i686/PKGBUILD
(from rev 258583, nghttp2/trunk/PKGBUILD)
  nghttp2/repos/testing-x86_64/
  nghttp2/repos/testing-x86_64/PKGBUILD
(from rev 258583, nghttp2/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   45 +
 testing-x86_64/PKGBUILD |   45 +
 2 files changed, 90 insertions(+)

Copied: nghttp2/repos/testing-i686/PKGBUILD (from rev 258583, 
nghttp2/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2016-01-25 16:24:52 UTC (rev 258584)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('6fc772644a47474ff6ad4fafae935c56d20e156dce477943be17043024727ac5')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}

Copied: nghttp2/repos/testing-x86_64/PKGBUILD (from rev 258583, 
nghttp2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-01-25 16:24:52 UTC (rev 258584)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Anatol Pomozov
+# Contributor: Zhuoyun Wei 
+
+pkgname=nghttp2
+pkgver=1.7.0
+pkgrel=1
+pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
+arch=(i686 x86_64)
+url='https://nghttp2.org/'
+license=(MIT)
+depends=(openssl libev zlib libxml2 jansson jemalloc)
+source=(nghttp2-$pkgver.zip::https://github.com/tatsuhiro-t/nghttp2/archive/v$pkgver.zip)
+backup=(
+  etc/nghttpx/nghttpx.conf
+  etc/logrotate.d/nghttpx
+)
+sha256sums=('6fc772644a47474ff6ad4fafae935c56d20e156dce477943be17043024727ac5')
+
+build() {
+  cd nghttp2-$pkgver
+
+  autoreconf -i
+  ./configure \
+--prefix=/usr \
+--with-spdylay=no \
+--disable-examples \
+--disable-python-bindings
+  make
+}
+
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
+package() {
+  cd nghttp2-$pkgver
+
+  make DESTDIR="$pkgdir" install
+  install -Dm644 contrib/nghttpx.service 
"$pkgdir/usr/lib/systemd/system/nghttpx.service"
+  install -Dm644 contrib/nghttpx-logrotate "$pkgdir/etc/logrotate.d/nghttpx"
+  install -Dm644 nghttpx.conf.sample "$pkgdir/etc/nghttpx/nghttpx.conf"
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/nghttp2/COPYING"
+}


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 17:22:57
  Author: fyan
Revision: 158889

archrelease: copy trunk to community-any

Added:
  pkgdiff/repos/community-any/
  pkgdiff/repos/community-any/PKGBUILD
(from rev 15, pkgdiff/trunk/PKGBUILD)

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

Copied: pkgdiff/repos/community-any/PKGBUILD (from rev 15, 
pkgdiff/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-01-25 16:22:57 UTC (rev 158889)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Zifei Tong 
+
+pkgname=pkgdiff
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="A tool for analyzing changes in Linux software packages"
+url="http://pkgdiff.github.io/pkgdiff/;
+arch=('any')
+license=('GPL2')
+depends=('perl' 'diffutils' 'gawk')
+makedepends=('git')
+optdepends=(
+  'wdiff: for block diffs'
+  'abi-compliance-checker: for check ABI'
+  'abi-dumper: for check ABI'
+)
+source=("git+https://github.com/lvc/pkgdiff.git#tag=$pkgver;)
+sha1sums=('SKIP')
+
+package() {
+  cd "$srcdir/${pkgname}"
+  mkdir -p "${pkgdir}/usr"
+  perl Makefile.pl --install --prefix=/usr --destdir="${pkgdir}"
+}


[arch-commits] Commit in (4 files)

2016-01-25 Thread Levente Polyak
Date: Monday, January 25, 2016 @ 18:13:49
  Author: anthraxx
Revision: 158890

upgpkg: python-blist 1.3.6-4

Added:
  python-blist/
  python-blist/repos/
  python-blist/trunk/
  python-blist/trunk/PKGBUILD

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

Added: python-blist/trunk/PKGBUILD
===
--- python-blist/trunk/PKGBUILD (rev 0)
+++ python-blist/trunk/PKGBUILD 2016-01-25 17:13:49 UTC (rev 158890)
@@ -0,0 +1,56 @@
+# Maintainer: Levente Polyak 
+# Contributor: Aaron DeVore 
+# Contributor: Chris Baker 
+
+pkgbase=python-blist
+pkgname=('python-blist' 'python2-blist')
+_pkgname=blist
+pkgver=1.3.6
+pkgrel=4
+pkgdesc='List-like type with better asymptotic performance'
+url='http://stutzbachenterprises.com/blist'
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/DanielStutzbach/blist/archive/v${pkgver}.tar.gz)
+sha512sums=('f46ded57aeb2a33fc5450420210d015aa37c2fc91034a771dfb1a184ef2655d8e5dc97bee61139059e6211569fcb7358f972071d3830733e9dbb8908e1b0e14c')
+
+prepare() {
+  cp -ra ${_pkgname}-${pkgver}{,-py2}
+}
+
+build() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py build
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py build
+  )
+}
+
+check() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py test
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py test
+  )
+}
+
+package_python-blist() {
+  depends=('python')
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+package_python2-blist() {
+  depends=('python2')
+  cd ${_pkgname}-${pkgver}-py2
+  python2 setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-01-25 Thread Levente Polyak
Date: Monday, January 25, 2016 @ 18:14:08
  Author: anthraxx
Revision: 158891

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

Added:
  python-blist/repos/community-i686/
  python-blist/repos/community-i686/PKGBUILD
(from rev 158890, python-blist/trunk/PKGBUILD)
  python-blist/repos/community-x86_64/
  python-blist/repos/community-x86_64/PKGBUILD
(from rev 158890, python-blist/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   56 
 community-x86_64/PKGBUILD |   56 
 2 files changed, 112 insertions(+)

Copied: python-blist/repos/community-i686/PKGBUILD (from rev 158890, 
python-blist/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 17:14:08 UTC (rev 158891)
@@ -0,0 +1,56 @@
+# Maintainer: Levente Polyak 
+# Contributor: Aaron DeVore 
+# Contributor: Chris Baker 
+
+pkgbase=python-blist
+pkgname=('python-blist' 'python2-blist')
+_pkgname=blist
+pkgver=1.3.6
+pkgrel=4
+pkgdesc='List-like type with better asymptotic performance'
+url='http://stutzbachenterprises.com/blist'
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/DanielStutzbach/blist/archive/v${pkgver}.tar.gz)
+sha512sums=('f46ded57aeb2a33fc5450420210d015aa37c2fc91034a771dfb1a184ef2655d8e5dc97bee61139059e6211569fcb7358f972071d3830733e9dbb8908e1b0e14c')
+
+prepare() {
+  cp -ra ${_pkgname}-${pkgver}{,-py2}
+}
+
+build() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py build
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py build
+  )
+}
+
+check() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py test
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py test
+  )
+}
+
+package_python-blist() {
+  depends=('python')
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+package_python2-blist() {
+  depends=('python2')
+  cd ${_pkgname}-${pkgver}-py2
+  python2 setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim: ts=2 sw=2 et:

Copied: python-blist/repos/community-x86_64/PKGBUILD (from rev 158890, 
python-blist/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-25 17:14:08 UTC (rev 158891)
@@ -0,0 +1,56 @@
+# Maintainer: Levente Polyak 
+# Contributor: Aaron DeVore 
+# Contributor: Chris Baker 
+
+pkgbase=python-blist
+pkgname=('python-blist' 'python2-blist')
+_pkgname=blist
+pkgver=1.3.6
+pkgrel=4
+pkgdesc='List-like type with better asymptotic performance'
+url='http://stutzbachenterprises.com/blist'
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=(${pkgbase}-${pkgver}.tar.gz::https://github.com/DanielStutzbach/blist/archive/v${pkgver}.tar.gz)
+sha512sums=('f46ded57aeb2a33fc5450420210d015aa37c2fc91034a771dfb1a184ef2655d8e5dc97bee61139059e6211569fcb7358f972071d3830733e9dbb8908e1b0e14c')
+
+prepare() {
+  cp -ra ${_pkgname}-${pkgver}{,-py2}
+}
+
+build() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py build
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py build
+  )
+}
+
+check() {
+  (cd ${_pkgname}-${pkgver}
+python setup.py test
+  )
+  (cd ${_pkgname}-${pkgver}-py2
+python2 setup.py test
+  )
+}
+
+package_python-blist() {
+  depends=('python')
+  cd ${_pkgname}-${pkgver}
+  python setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+package_python2-blist() {
+  depends=('python2')
+  cd ${_pkgname}-${pkgver}-py2
+  python2 setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-01-25 Thread Anatol Pomozov
Date: Monday, January 25, 2016 @ 17:24:18
  Author: anatolik
Revision: 258583

upgpkg: nghttp2 1.7.0-1

Modified:
  nghttp2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 09:37:58 UTC (rev 258582)
+++ PKGBUILD2016-01-25 16:24:18 UTC (rev 258583)
@@ -3,7 +3,7 @@
 # Contributor: Zhuoyun Wei 
 
 pkgname=nghttp2
-pkgver=1.6.0
+pkgver=1.7.0
 pkgrel=1
 pkgdesc='Framing layer of HTTP/2 is implemented as a reusable C library'
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
   etc/nghttpx/nghttpx.conf
   etc/logrotate.d/nghttpx
 )
-sha256sums=('22f1bc674cd2f6b99226ebe83b5f5af22c41ae2742d9eaede23775f22a8ad429')
+sha256sums=('6fc772644a47474ff6ad4fafae935c56d20e156dce477943be17043024727ac5')
 
 build() {
   cd nghttp2-$pkgver
@@ -29,6 +29,11 @@
   make
 }
 
+check() {
+  cd nghttp2-$pkgver
+  make check
+}
+
 package() {
   cd nghttp2-$pkgver
 


[arch-commits] Commit in (5 files)

2016-01-25 Thread Levente Polyak
Date: Monday, January 25, 2016 @ 18:40:57
  Author: anthraxx
Revision: 158892

upgpkg: python2-unittest2 1.1.0-3

Added:
  python2-unittest2/
  python2-unittest2/repos/
  python2-unittest2/trunk/
  python2-unittest2/trunk/LICENSE
  python2-unittest2/trunk/PKGBUILD

--+
 LICENSE  |   32 
 PKGBUILD |   31 +++
 2 files changed, 63 insertions(+)

Added: python2-unittest2/trunk/LICENSE
===
--- python2-unittest2/trunk/LICENSE (rev 0)
+++ python2-unittest2/trunk/LICENSE 2016-01-25 17:40:57 UTC (rev 158892)
@@ -0,0 +1,32 @@
+Copyright (c) 2003-2010, Michael Foord
+All rights reserved.
+E-mail : fuzzyman AT voidspace DOT org DOT uk
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above
+  copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided
+  with the distribution.
+
+* Neither the name of Michael Foord nor the name of Voidspace
+  may be used to endorse or promote products derived from this
+  software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Added: python2-unittest2/trunk/PKGBUILD
===
--- python2-unittest2/trunk/PKGBUILD(rev 0)
+++ python2-unittest2/trunk/PKGBUILD2016-01-25 17:40:57 UTC (rev 158892)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+# Contributor: Carl George < arch at cgtx dot us >
+
+pkgname=python2-unittest2
+_pkgname=unittest2
+pkgver=1.1.0
+pkgrel=3
+pkgdesc="New features in unittest for Python 2"
+url="http://www.voidspace.org.uk/python/articles/unittest2.shtml;
+arch=('any')
+license=('BSD')
+depends=('python2-six' 'python2-traceback2')
+makedepends=('python2-distribute')
+source=(${pkgname}-${pkgver}.tar.gz::https://hg.python.org/unittest2/archive/${pkgver}.tar.gz
+LICENSE)
+sha512sums=('ccd701194994623422d5c0bdd88d89b279cbbc67cd96b3cfee7f48e1c32f87c154a3378771e2909afa89d9c13692173ccbd692312b1ad7b9d05cf8c115fcc14b'
+
'85242ed21eb191fa0bab16f3e390957f1c8b7bc3b79aefbea2d925feaa8248f33d6e22afaa7d1c07c5fcb5e800910aa2a1cb52d892c104337bbdb57a380373a2')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python2 setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.txt "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim: ts=2 sw=2 et:


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

2016-01-25 Thread Levente Polyak
Date: Monday, January 25, 2016 @ 18:41:15
  Author: anthraxx
Revision: 158893

archrelease: copy trunk to community-any

Added:
  python2-unittest2/repos/community-any/
  python2-unittest2/repos/community-any/LICENSE
(from rev 158892, python2-unittest2/trunk/LICENSE)
  python2-unittest2/repos/community-any/PKGBUILD
(from rev 158892, python2-unittest2/trunk/PKGBUILD)

--+
 LICENSE  |   32 
 PKGBUILD |   31 +++
 2 files changed, 63 insertions(+)

Copied: python2-unittest2/repos/community-any/LICENSE (from rev 158892, 
python2-unittest2/trunk/LICENSE)
===
--- community-any/LICENSE   (rev 0)
+++ community-any/LICENSE   2016-01-25 17:41:15 UTC (rev 158893)
@@ -0,0 +1,32 @@
+Copyright (c) 2003-2010, Michael Foord
+All rights reserved.
+E-mail : fuzzyman AT voidspace DOT org DOT uk
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+
+* Redistributions of source code must retain the above copyright
+  notice, this list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above
+  copyright notice, this list of conditions and the following
+  disclaimer in the documentation and/or other materials provided
+  with the distribution.
+
+* Neither the name of Michael Foord nor the name of Voidspace
+  may be used to endorse or promote products derived from this
+  software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: python2-unittest2/repos/community-any/PKGBUILD (from rev 158892, 
python2-unittest2/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2016-01-25 17:41:15 UTC (rev 158893)
@@ -0,0 +1,31 @@
+# Maintainer: Levente Polyak 
+# Contributor: Carl George < arch at cgtx dot us >
+
+pkgname=python2-unittest2
+_pkgname=unittest2
+pkgver=1.1.0
+pkgrel=3
+pkgdesc="New features in unittest for Python 2"
+url="http://www.voidspace.org.uk/python/articles/unittest2.shtml;
+arch=('any')
+license=('BSD')
+depends=('python2-six' 'python2-traceback2')
+makedepends=('python2-distribute')
+source=(${pkgname}-${pkgver}.tar.gz::https://hg.python.org/unittest2/archive/${pkgver}.tar.gz
+LICENSE)
+sha512sums=('ccd701194994623422d5c0bdd88d89b279cbbc67cd96b3cfee7f48e1c32f87c154a3378771e2909afa89d9c13692173ccbd692312b1ad7b9d05cf8c115fcc14b'
+
'85242ed21eb191fa0bab16f3e390957f1c8b7bc3b79aefbea2d925feaa8248f33d6e22afaa7d1c07c5fcb5e800910aa2a1cb52d892c104337bbdb57a380373a2')
+
+build() {
+  cd ${_pkgname}-${pkgver}
+  python2 setup.py build
+}
+
+package() {
+  cd ${_pkgname}-${pkgver}
+  python2 setup.py install --skip-build -O1 --root="${pkgdir}"
+  install -Dm 644 "${srcdir}/LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 README.txt "${pkgdir}/usr/share/doc/${pkgname}/README"
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in (python2-pdfrw)

2016-01-25 Thread Jaroslav Lichtblau
Date: Monday, January 25, 2016 @ 19:03:54
  Author: jlichtblau
Revision: 158895

python2-pdfrw now part of the split package under python-pdfrw

Deleted:
  python2-pdfrw/


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

2016-01-25 Thread Antonio Rojas
Date: Monday, January 25, 2016 @ 23:12:53
  Author: arojas
Revision: 158905

Update to 0.12.1

Modified:
  rsibreak/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 20:16:33 UTC (rev 158904)
+++ PKGBUILD2016-01-25 22:12:53 UTC (rev 158905)
@@ -2,8 +2,8 @@
 # Maintainer: Antonio Rojas 
 
 pkgname=rsibreak
-pkgver=0.12
-pkgrel=2
+pkgver=0.12.1
+pkgrel=1
 pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
 url="https://userbase.kde.org/RSIBreak;
 arch=(i686 x86_64)
@@ -10,9 +10,9 @@
 license=(GPL)
 depends=(knotifyconfig kidletime hicolor-icon-theme)
 makedepends=(extra-cmake-modules kdoctools)
-source=("http://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
+source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
 install=$pkgname.install
-md5sums=('9db9f4a1f421a71f95753ef68c1a857e')
+md5sums=('717f7f129c1a742e3049ed0c0f0d15e5')
 
 prepare() {
   mkdir -p build


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

2016-01-25 Thread Antonio Rojas
Date: Monday, January 25, 2016 @ 23:13:27
  Author: arojas
Revision: 158906

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

Added:
  rsibreak/repos/community-i686/PKGBUILD
(from rev 158905, rsibreak/trunk/PKGBUILD)
  rsibreak/repos/community-i686/rsibreak.install
(from rev 158905, rsibreak/trunk/rsibreak.install)
  rsibreak/repos/community-x86_64/PKGBUILD
(from rev 158905, rsibreak/trunk/PKGBUILD)
  rsibreak/repos/community-x86_64/rsibreak.install
(from rev 158905, rsibreak/trunk/rsibreak.install)
Deleted:
  rsibreak/repos/community-i686/PKGBUILD
  rsibreak/repos/community-i686/rsibreak.install
  rsibreak/repos/community-x86_64/PKGBUILD
  rsibreak/repos/community-x86_64/rsibreak.install

---+
 /PKGBUILD |   72 
 /rsibreak.install |   26 +
 community-i686/PKGBUILD   |   36 --
 community-i686/rsibreak.install   |   13 --
 community-x86_64/PKGBUILD |   36 --
 community-x86_64/rsibreak.install |   13 --
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-25 22:12:53 UTC (rev 158905)
+++ community-i686/PKGBUILD 2016-01-25 22:13:27 UTC (rev 158906)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=rsibreak
-pkgver=0.12
-pkgrel=2
-pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
-url="https://userbase.kde.org/RSIBreak;
-arch=(i686 x86_64)
-license=(GPL)
-depends=(knotifyconfig kidletime hicolor-icon-theme)
-makedepends=(extra-cmake-modules kdoctools)
-source=("http://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz;)
-install=$pkgname.install
-md5sums=('9db9f4a1f421a71f95753ef68c1a857e')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build 
-  cmake ../$pkgname-$pkgver \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DLIB_INSTALL_DIR=lib \
--DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
--DBUILD_TESTING=OFF 
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=$pkgdir install
-}
-

Copied: rsibreak/repos/community-i686/PKGBUILD (from rev 158905, 
rsibreak/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 22:13:27 UTC (rev 158906)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Antonio Rojas 
+
+pkgname=rsibreak
+pkgver=0.12.1
+pkgrel=1
+pkgdesc="Takes care of your health and regularly breaks your work to avoid 
repetitive strain injury (RSI)"
+url="https://userbase.kde.org/RSIBreak;
+arch=(i686 x86_64)
+license=(GPL)
+depends=(knotifyconfig kidletime hicolor-icon-theme)
+makedepends=(extra-cmake-modules kdoctools)
+source=("http://download.kde.org/stable/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz;)
+install=$pkgname.install
+md5sums=('717f7f129c1a742e3049ed0c0f0d15e5')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build 
+  cmake ../$pkgname-$pkgver \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+-DBUILD_TESTING=OFF 
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=$pkgdir install
+}
+

Deleted: community-i686/rsibreak.install
===
--- community-i686/rsibreak.install 2016-01-25 22:12:53 UTC (rev 158905)
+++ community-i686/rsibreak.install 2016-01-25 22:13:27 UTC (rev 158906)
@@ -1,13 +0,0 @@
-post_install() {
-xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-update-desktop-database -q
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}
-

Copied: rsibreak/repos/community-i686/rsibreak.install (from rev 158905, 
rsibreak/trunk/rsibreak.install)
===
--- community-i686/rsibreak.install (rev 0)
+++ community-i686/rsibreak.install 2016-01-25 22:13:27 UTC (rev 158906)
@@ -0,0 +1,13 @@
+post_install() {
+xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-01-25 22:12:53 UTC (rev 158905)
+++ community-x86_64/PKGBUILD   2016-01-25 22:13:27 UTC (rev 158906)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Antonio Rojas 
-
-pkgname=rsibreak
-pkgver=0.12
-pkgrel=2
-pkgdesc="Takes care of your health and regularly breaks your work to avoid 

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 09:16:00
  Author: fyan
Revision: 158826

upgpkg: pandoc-citeproc 0.9-17

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  pandoc-citeproc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 07:28:51 UTC (rev 158825)
+++ PKGBUILD2016-01-25 08:16:00 UTC (rev 158826)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-citeproc
 pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
 pkgver=0.9
-pkgrel=16
+pkgrel=17
 pkgdesc="Supports using pandoc with citeproc"
 url="http://hackage.haskell.org/package/${pkgbase};
 license=("custom:BSD3")


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 09:16:27
  Author: fyan
Revision: 158827

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 158826, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-i686/haskell-pandoc-citeproc.install
(from rev 158826, pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
  pandoc-citeproc/repos/community-staging-x86_64/
  pandoc-citeproc/repos/community-staging-x86_64/PKGBUILD
(from rev 158826, pandoc-citeproc/trunk/PKGBUILD)
  pandoc-citeproc/repos/community-staging-x86_64/haskell-pandoc-citeproc.install
(from rev 158826, pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)

--+
 community-staging-i686/PKGBUILD  |   59 +
 community-staging-i686/haskell-pandoc-citeproc.install   |   18 +++
 community-staging-x86_64/PKGBUILD|   59 +
 community-staging-x86_64/haskell-pandoc-citeproc.install |   18 +++
 4 files changed, 154 insertions(+)

Copied: pandoc-citeproc/repos/community-staging-i686/PKGBUILD (from rev 158826, 
pandoc-citeproc/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 08:16:27 UTC (rev 158827)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-citeproc
+pkgname=(pandoc-citeproc haskell-pandoc-citeproc)
+pkgver=0.9
+pkgrel=17
+pkgdesc="Supports using pandoc with citeproc"
+url="http://hackage.haskell.org/package/${pkgbase};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('ae880aa27b5fcaf93886844bd9473c764329dc96211482bf014f350335887fbd')
+
+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.*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')
+install="haskell-pandoc-citeproc.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-pandoc-citeproc.install 
(from rev 158826, pandoc-citeproc/trunk/haskell-pandoc-citeproc.install)
===
--- community-staging-i686/haskell-pandoc-citeproc.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-citeproc.install  2016-01-25 
08:16:27 UTC (rev 158827)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-citeproc
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  

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

2016-01-25 Thread Jiachen Yang
Date: Monday, January 25, 2016 @ 09:52:41
  Author: farseerfc
Revision: 158837

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-25 08:51:39 UTC (rev 158836)
+++ community-i686/PKGBUILD 2016-01-25 08:52:41 UTC (rev 158837)
@@ -1,32 +0,0 @@
-# Maintainer: Jiachen Yang 
-# Contributor: nylocx 
-
-pkgname=telegramqml
-_pkgname=TelegramQML
-pkgver=0.9.2
-_pkgtar=$pkgver
-pkgrel=1
-pkgdesc="Telegram API tools for QtQml and Qml"
-arch=('i686' 'x86_64')
-url="https://github.com/Aseman-Land/TelegramQML;
-license=('GPL')
-depends=('qt5-webkit>=5.5' 'qt5-imageformats' 'qt5-graphicaleffects'
- 'qt5-quickcontrols' 'libqtelegram-ae>=3:6.1')
-source=("${_pkgname}-${_pkgtar}.tar.gz::https://github.com/Aseman-Land/TelegramQML/archive/v$_pkgtar.tar.gz;)
-sha256sums=('16d6429fe180531af167dc44bcc799e82b08c9cfa88f1f635155dfcef2558397')
-
-prepare() {
-  cd "${srcdir}/${_pkgname}-${_pkgtar}"
-  mkdir -p build 
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}-${_pkgtar}/build"
-  qmake-qt5 -r .. PREFIX=/usr INSTALL_LIBS_PREFIX=/usr/lib 
INSTALL_HEADERS_PREFIX=/usr/include BUILD_MODE+=lib
-  make
-}
-
-package() {
-  cd "${srcdir}/${_pkgname}-${_pkgtar}/build"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: telegramqml/repos/community-i686/PKGBUILD (from rev 158836, 
telegramqml/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 08:52:41 UTC (rev 158837)
@@ -0,0 +1,32 @@
+# Maintainer: Jiachen Yang 
+# Contributor: nylocx 
+
+pkgname=telegramqml
+_pkgname=TelegramQML
+pkgver=0.9.2
+_pkgtar=$pkgver
+pkgrel=2
+pkgdesc="Telegram API tools for QtQml and Qml"
+arch=('i686' 'x86_64')
+url="https://github.com/Aseman-Land/TelegramQML;
+license=('GPL')
+depends=('qt5-webkit' 'qt5-imageformats' 'qt5-graphicaleffects'
+ 'qt5-quickcontrols' 'libqtelegram-ae')
+source=("${_pkgname}-${_pkgtar}.tar.gz::https://github.com/Aseman-Land/TelegramQML/archive/v$_pkgtar.tar.gz;)
+sha256sums=('16d6429fe180531af167dc44bcc799e82b08c9cfa88f1f635155dfcef2558397')
+
+prepare() {
+  cd "${srcdir}/${_pkgname}-${_pkgtar}"
+  mkdir -p build 
+}
+
+build() {
+  cd "${srcdir}/${_pkgname}-${_pkgtar}/build"
+  qmake-qt5 -r .. PREFIX=/usr INSTALL_LIBS_PREFIX=/usr/lib 
INSTALL_HEADERS_PREFIX=/usr/include BUILD_MODE+=lib
+  make
+}
+
+package() {
+  cd "${srcdir}/${_pkgname}-${_pkgtar}/build"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-01-25 08:51:39 UTC (rev 158836)
+++ community-x86_64/PKGBUILD   2016-01-25 08:52:41 UTC (rev 158837)
@@ -1,32 +0,0 @@
-# Maintainer: Jiachen Yang 
-# Contributor: nylocx 
-
-pkgname=telegramqml
-_pkgname=TelegramQML
-pkgver=0.9.2
-_pkgtar=$pkgver
-pkgrel=1
-pkgdesc="Telegram API tools for QtQml and Qml"
-arch=('i686' 'x86_64')
-url="https://github.com/Aseman-Land/TelegramQML;
-license=('GPL')
-depends=('qt5-webkit>=5.5' 'qt5-imageformats' 'qt5-graphicaleffects'
- 'qt5-quickcontrols' 'libqtelegram-ae>=3:6.1')
-source=("${_pkgname}-${_pkgtar}.tar.gz::https://github.com/Aseman-Land/TelegramQML/archive/v$_pkgtar.tar.gz;)
-sha256sums=('16d6429fe180531af167dc44bcc799e82b08c9cfa88f1f635155dfcef2558397')
-
-prepare() {
-  cd "${srcdir}/${_pkgname}-${_pkgtar}"
-  mkdir -p build 
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}-${_pkgtar}/build"
-  qmake-qt5 -r .. PREFIX=/usr INSTALL_LIBS_PREFIX=/usr/lib 
INSTALL_HEADERS_PREFIX=/usr/include BUILD_MODE+=lib
-  make
-}
-
-package() {
-  cd "${srcdir}/${_pkgname}-${_pkgtar}/build"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: telegramqml/repos/community-x86_64/PKGBUILD (from rev 158836, 
telegramqml/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-25 08:52:41 UTC (rev 158837)
@@ -0,0 +1,32 @@
+# Maintainer: Jiachen Yang 
+# Contributor: nylocx 
+
+pkgname=telegramqml
+_pkgname=TelegramQML

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

2016-01-25 Thread Jiachen Yang
Date: Monday, January 25, 2016 @ 10:08:22
  Author: farseerfc
Revision: 158839

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-25 09:07:17 UTC (rev 158838)
+++ community-i686/PKGBUILD 2016-01-25 09:08:22 UTC (rev 158839)
@@ -1,45 +0,0 @@
-# Maintainer: Jiachen Yang 
-# Contributor: Llumex03
-# Maintainer in Chakra: gnastyle
-# Contributor in Chakra: FranzMari from Chakra
-# Contributor in Chakra: danyf90 
-# Contributor in Chakra: totoloco 
-
-pkgname=cutegram
-_pkgname=Cutegram
-pkgver=2.7.1
-pkgrel=1
-pkgdesc="A different telegram client from Aseman team"
-arch=('i686' 'x86_64')
-url="http://aseman.co/en/products/cutegram/;
-license=('GPL')
-depends=('qt5-imageformats' 'qt5-webkit>=5.5' 'telegramqml>=0.9.1' 
'libqtelegram-ae>=3:6.1')
-optdepends=('gst-plugins-bad: audio support'
-'gst-plugins-good: audio and notification sound')
-makedepends=('git')
-conflicts=('cutegram-git' 'sigram-git' 'sigram' 'cutegram')
-provides=('cutegram')
-replaces=('cutegram-cn')
-
-source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/Aseman-Land/Cutegram/archive/v${pkgver}-stable.tar.gz;
-
"asemantools"::"git+https://github.com/Aseman-Land/aseman-qt-tools.git#commit=91bf14b790c749bcaaddb09a8124ef6415a93906;)
-
-sha256sums=('f1cfc6bd3a1d33c2348f23ea43d923419b33576059791a071f2780db11059cf4'
-'SKIP')
-
-prepare() {
-  cd "${srcdir}/${_pkgname}-$pkgver-stable"
-  git clone $srcdir/asemantools Cutegram/asemantools
-  mkdir -p build
-}
-
-build() {
-  cd "${srcdir}/${_pkgname}-$pkgver-stable/build"
-  qmake-qt5 -r .. PREFIX=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${_pkgname}-$pkgver-stable/build"
-  make INSTALL_ROOT="${pkgdir}" install
-}

Copied: cutegram/repos/community-i686/PKGBUILD (from rev 158838, 
cutegram/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 09:08:22 UTC (rev 158839)
@@ -0,0 +1,45 @@
+# Maintainer: Jiachen Yang 
+# Contributor: Llumex03
+# Maintainer in Chakra: gnastyle
+# Contributor in Chakra: FranzMari from Chakra
+# Contributor in Chakra: danyf90 
+# Contributor in Chakra: totoloco 
+
+pkgname=cutegram
+_pkgname=Cutegram
+pkgver=2.7.1
+pkgrel=3
+pkgdesc="A different telegram client from Aseman team"
+arch=('i686' 'x86_64')
+url="http://aseman.co/en/products/cutegram/;
+license=('GPL')
+depends=('qt5-imageformats' 'qt5-webkit' 'telegramqml>=0.9.1' 
'libqtelegram-ae>=3:6.1')
+optdepends=('gst-plugins-bad: audio support'
+'gst-plugins-good: audio and notification sound')
+makedepends=('git')
+conflicts=('cutegram-git' 'sigram-git' 'sigram' 'cutegram')
+provides=('cutegram')
+replaces=('cutegram-cn')
+
+source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/Aseman-Land/Cutegram/archive/v${pkgver}-stable.tar.gz;
+
"asemantools"::"git+https://github.com/Aseman-Land/aseman-qt-tools.git#commit=91bf14b790c749bcaaddb09a8124ef6415a93906;)
+
+sha256sums=('f1cfc6bd3a1d33c2348f23ea43d923419b33576059791a071f2780db11059cf4'
+'SKIP')
+
+prepare() {
+  cd "${srcdir}/${_pkgname}-$pkgver-stable"
+  git clone $srcdir/asemantools Cutegram/asemantools
+  mkdir -p build
+}
+
+build() {
+  cd "${srcdir}/${_pkgname}-$pkgver-stable/build"
+  qmake-qt5 -r .. PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${_pkgname}-$pkgver-stable/build"
+  make INSTALL_ROOT="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-01-25 09:07:17 UTC (rev 158838)
+++ community-x86_64/PKGBUILD   2016-01-25 09:08:22 UTC (rev 158839)
@@ -1,45 +0,0 @@
-# Maintainer: Jiachen Yang 
-# Contributor: Llumex03
-# Maintainer in Chakra: gnastyle
-# Contributor in Chakra: FranzMari from Chakra
-# Contributor in Chakra: danyf90 
-# Contributor in Chakra: totoloco 
-
-pkgname=cutegram
-_pkgname=Cutegram
-pkgver=2.7.1
-pkgrel=1
-pkgdesc="A different telegram client from Aseman team"
-arch=('i686' 'x86_64')
-url="http://aseman.co/en/products/cutegram/;

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:50:19
  Author: fyan
Revision: 158849

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 158848, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-i686/quickcheck-2.8.2.patch
(from rev 158848, git-annex/trunk/quickcheck-2.8.2.patch)
  git-annex/repos/community-staging-x86_64/
  git-annex/repos/community-staging-x86_64/PKGBUILD
(from rev 158848, git-annex/trunk/PKGBUILD)
  git-annex/repos/community-staging-x86_64/quickcheck-2.8.2.patch
(from rev 158848, git-annex/trunk/quickcheck-2.8.2.patch)

-+
 community-staging-i686/PKGBUILD |   65 ++
 community-staging-i686/quickcheck-2.8.2.patch   |   15 +
 community-staging-x86_64/PKGBUILD   |   65 ++
 community-staging-x86_64/quickcheck-2.8.2.patch |   15 +
 4 files changed, 160 insertions(+)

Copied: git-annex/repos/community-staging-i686/PKGBUILD (from rev 158848, 
git-annex/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 09:50:19 UTC (rev 158849)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=git-annex
+pkgver=6.20160114
+pkgrel=10
+pkgdesc="Manage files with git, without checking their contents into git"
+url="http://git-annex.branchable.com/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-async" "haskell-aws" 
"haskell-blaze-builder"
+ "haskell-bloomfilter" "haskell-byteable" 
"haskell-case-insensitive"
+ "haskell-clientsession" "haskell-concurrent-output" 
"haskell-conduit"
+ "haskell-conduit-extra" "haskell-crypto-api" "haskell-cryptonite"
+ "haskell-data-default" "haskell-dav" "haskell-dbus" 
"haskell-dlist" "haskell-dns"
+ "haskell-edit-distance" "haskell-esqueleto" "haskell-exceptions"
+ "haskell-fdo-notify" "haskell-feed" "haskell-gnutls" 
"haskell-hinotify"
+ "haskell-hslogger" "haskell-http-client" "haskell-http-conduit"
+ "haskell-http-types" "haskell-ifelse" "haskell-json" 
"haskell-missingh"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-mtl" 
"haskell-network"
+ "haskell-network-info" "haskell-network-multicast" 
"haskell-network-protocol-xmpp"
+ "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-stm" 
"haskell-tasty"
+ "haskell-tasty-hunit" "haskell-tasty-quickcheck" 
"haskell-tasty-rerun"
+ "haskell-text" "haskell-torrent" "haskell-unix-compat" 
"haskell-utf8-string"
+ "haskell-uuid" "haskell-wai" "haskell-wai-extra" "haskell-warp" 
"haskell-warp-tls"
+ "haskell-xml-types" "haskell-yesod" "haskell-yesod-core" 
"haskell-yesod-default"
+ "haskell-yesod-form" "haskell-yesod-static")
+depends=('git' 'rsync' 'libxml2' 'gsasl')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;
+quickcheck-2.8.2.patch)
+sha256sums=('671d165f9ea583b9a86060b60741c6aa54dbfde0673a2b278d82d761b7500181'
+'f1814b955c282addd7adc6941444122e1d0ca28115a851e00c6702dfba72623e')
+
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+# https://github.com/fpco/stackage/issues/1168
+patch -p0 -i ../quickcheck-2.8.2.patch
+}
+
+build() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+
+runhaskell Setup configure -O --prefix=/usr 
--docdir="/usr/share/doc/${pkgname}" \
+-fcryptonite -fnetwork-uri -f-ekg -fconcurrentoutput -ftorrentparser \
+-ftahoe -fquvi -ffeed -ftdfa -ftestsuite -f-androidsplice \
+-f-android -fproduction -fdns -fpairing -fwebapp-secure -fwebapp \
+-fassistant -fwebdav -fs3 -f-benchmark
+runhaskell Setup build
+}
+
+package() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+
+install -Dm644 bash-completion.bash 
"${pkgdir}/usr/share/bash-completion/completions/git-annex"
+
+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-i686/quickcheck-2.8.2.patch (from rev 
158848, 

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:49:51
  Author: fyan
Revision: 158848

upgpkg: git-annex 6.20160114-10

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  git-annex/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 09:48:19 UTC (rev 158847)
+++ PKGBUILD2016-01-25 09:49:51 UTC (rev 158848)
@@ -4,7 +4,7 @@
 
 pkgname=git-annex
 pkgver=6.20160114
-pkgrel=9
+pkgrel=10
 pkgdesc="Manage files with git, without checking their contents into git"
 url="http://git-annex.branchable.com/;
 license=("AGPL3")


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

2016-01-25 Thread Jiachen Yang
Date: Monday, January 25, 2016 @ 09:38:41
  Author: farseerfc
Revision: 158829

upgpkg: libqtelegram-ae 3:6.1-2

remove version check on qt5-base

Modified:
  libqtelegram-ae/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 08:38:16 UTC (rev 158828)
+++ PKGBUILD2016-01-25 08:38:41 UTC (rev 158829)
@@ -10,12 +10,12 @@
 epoch=3
 pkgver=6.1
 _pkgver=$pkgver-stable
-pkgrel=1
+pkgrel=2
 pkgdesc="Telegram library written in Qt based on telegram-cli code"
 arch=('x86_64' 'i686')
 license=('GPL3')
 url=("https://launchpad.net/libqtelegram;)
-depends=('qt5-base>=5.5' 'qt5-multimedia')
+depends=('qt5-base' 'qt5-multimedia')
 makedepends=('cmake')
 
source=("${_pkgname}-${_pkgver}.tar.gz::https://github.com/Aseman-Land/libqtelegram-aseman-edition/archive/v$_pkgver.tar.gz;)
 sha256sums=('ffc1f85a7b0cdd16149c89722f33c43de9fa3db15271d0ff26734ba35e0a02c0')


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 09:48:08
  Author: fyan
Revision: 158834

upgpkg: haskell-yesod-default 1.2.0-8

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  haskell-yesod-default/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 08:40:58 UTC (rev 158833)
+++ PKGBUILD2016-01-25 08:48:08 UTC (rev 158834)
@@ -5,7 +5,7 @@
 _hkgname=yesod-default
 pkgname=haskell-yesod-default
 pkgver=1.2.0
-pkgrel=7
+pkgrel=8
 pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 09:48:35
  Author: fyan
Revision: 158835

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

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

+
 community-staging-i686/PKGBUILD|   42 +++
 community-staging-i686/haskell-yesod-default.install   |   18 ++
 community-staging-x86_64/PKGBUILD  |   42 +++
 community-staging-x86_64/haskell-yesod-default.install |   18 ++
 4 files changed, 120 insertions(+)

Copied: haskell-yesod-default/repos/community-staging-i686/PKGBUILD (from rev 
158834, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 08:48:35 UTC (rev 158835)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=8
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-yesod-core")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f39ae1953a95c1919a9dd214d93bf81078b1dcbbac737dc9bb7339dbad9dda96')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-yesod-default/repos/community-staging-i686/haskell-yesod-default.install
 (from rev 158834, haskell-yesod-default/trunk/haskell-yesod-default.install)
===
--- community-staging-i686/haskell-yesod-default.install
(rev 0)
+++ community-staging-i686/haskell-yesod-default.install2016-01-25 
08:48:35 UTC (rev 158835)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-default
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-yesod-default/repos/community-staging-x86_64/PKGBUILD (from rev 
158834, haskell-yesod-default/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-25 08:48:35 UTC (rev 158835)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-default
+pkgname=haskell-yesod-default
+pkgver=1.2.0
+pkgrel=8
+pkgdesc="Default config and main functions for your yesod application 
(deprecated)"
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-01-25 Thread Jiachen Yang
Date: Monday, January 25, 2016 @ 09:51:39
  Author: farseerfc
Revision: 158836

upgpkg: telegramqml 0.9.2-2

remove version check

Modified:
  telegramqml/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 08:48:35 UTC (rev 158835)
+++ PKGBUILD2016-01-25 08:51:39 UTC (rev 158836)
@@ -5,13 +5,13 @@
 _pkgname=TelegramQML
 pkgver=0.9.2
 _pkgtar=$pkgver
-pkgrel=1
+pkgrel=2
 pkgdesc="Telegram API tools for QtQml and Qml"
 arch=('i686' 'x86_64')
 url="https://github.com/Aseman-Land/TelegramQML;
 license=('GPL')
-depends=('qt5-webkit>=5.5' 'qt5-imageformats' 'qt5-graphicaleffects'
- 'qt5-quickcontrols' 'libqtelegram-ae>=3:6.1')
+depends=('qt5-webkit' 'qt5-imageformats' 'qt5-graphicaleffects'
+ 'qt5-quickcontrols' 'libqtelegram-ae')
 
source=("${_pkgname}-${_pkgtar}.tar.gz::https://github.com/Aseman-Land/TelegramQML/archive/v$_pkgtar.tar.gz;)
 sha256sums=('16d6429fe180531af167dc44bcc799e82b08c9cfa88f1f635155dfcef2558397')
 


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:09:08
  Author: fyan
Revision: 158841

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 158840, haskell-yesod/trunk/PKGBUILD)
  haskell-yesod/repos/community-staging-i686/haskell-yesod.install
(from rev 158840, haskell-yesod/trunk/haskell-yesod.install)
  haskell-yesod/repos/community-staging-x86_64/
  haskell-yesod/repos/community-staging-x86_64/PKGBUILD
(from rev 158840, haskell-yesod/trunk/PKGBUILD)
  haskell-yesod/repos/community-staging-x86_64/haskell-yesod.install
(from rev 158840, haskell-yesod/trunk/haskell-yesod.install)

+
 community-staging-i686/PKGBUILD|   49 +++
 community-staging-i686/haskell-yesod.install   |   18 
 community-staging-x86_64/PKGBUILD  |   49 +++
 community-staging-x86_64/haskell-yesod.install |   18 
 4 files changed, 134 insertions(+)

Copied: haskell-yesod/repos/community-staging-i686/PKGBUILD (from rev 158840, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 09:09:08 UTC (rev 158841)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod
+pkgname=haskell-yesod
+pkgver=1.4.2
+pkgrel=9
+pkgdesc="Creation of type-safe, RESTful web applications."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-blaze-html" 
"haskell-blaze-markup"
+ "haskell-conduit-extra" "haskell-data-default" "haskell-fast-logger"
+ "haskell-monad-control" "haskell-monad-logger" "haskell-safe"
+ "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-auth" "haskell-yesod-core" "haskell-yesod-form"
+ "haskell-yesod-persistent")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d6d13e608af954de23721261b39ee79569907beb173477db8820acc5e9f45757')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-yesod.install (from 
rev 158840, haskell-yesod/trunk/haskell-yesod.install)
===
--- community-staging-i686/haskell-yesod.install
(rev 0)
+++ community-staging-i686/haskell-yesod.install2016-01-25 09:09:08 UTC 
(rev 158841)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-yesod/repos/community-staging-x86_64/PKGBUILD (from rev 158840, 
haskell-yesod/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-25 09:09:08 UTC (rev 158841)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:08:40
  Author: fyan
Revision: 158840

upgpkg: haskell-yesod 1.4.2-9

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  haskell-yesod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 09:08:22 UTC (rev 158839)
+++ PKGBUILD2016-01-25 09:08:40 UTC (rev 158840)
@@ -5,7 +5,7 @@
 _hkgname=yesod
 pkgname=haskell-yesod
 pkgver=1.4.2
-pkgrel=8
+pkgrel=9
 pkgdesc="Creation of type-safe, RESTful web applications."
 url="http://www.yesodweb.com/;
 license=("MIT")


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:48:19
  Author: fyan
Revision: 158847

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

Added:
  cgrep/repos/community-i686/
  cgrep/repos/community-i686/PKGBUILD
(from rev 158846, cgrep/trunk/PKGBUILD)
  cgrep/repos/community-x86_64/
  cgrep/repos/community-x86_64/PKGBUILD
(from rev 158846, cgrep/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   31 +++
 community-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: cgrep/repos/community-i686/PKGBUILD (from rev 158846, 
cgrep/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 09:48:19 UTC (rev 158847)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.5.13
+pkgrel=1
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/;
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-ansi-terminal" "haskell-async" 
"haskell-cmdargs"
+ "haskell-dlist" "haskell-either" "haskell-mtl" 
"haskell-regex-base"
+ "haskell-regex-pcre" "haskell-regex-posix" "haskell-safe" 
"haskell-split"
+ "haskell-stm" "haskell-stringsearch" "haskell-unix-compat"
+ "haskell-unordered-containers")
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('03bc20b6879b379b1e22f1e09214d1519b7c7f5b82d7c79de3fd52200ba5550a')
+
+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}"
+}

Copied: cgrep/repos/community-x86_64/PKGBUILD (from rev 158846, 
cgrep/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-25 09:48:19 UTC (rev 158847)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.5.13
+pkgrel=1
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/;
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-ansi-terminal" "haskell-async" 
"haskell-cmdargs"
+ "haskell-dlist" "haskell-either" "haskell-mtl" 
"haskell-regex-base"
+ "haskell-regex-pcre" "haskell-regex-posix" "haskell-safe" 
"haskell-split"
+ "haskell-stm" "haskell-stringsearch" "haskell-unix-compat"
+ "haskell-unordered-containers")
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('03bc20b6879b379b1e22f1e09214d1519b7c7f5b82d7c79de3fd52200ba5550a')
+
+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}"
+}


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:47:42
  Author: fyan
Revision: 158846

addpkg: cgrep 6.5.13-1

Added:
  cgrep/
  cgrep/repos/
  cgrep/trunk/
  cgrep/trunk/PKGBUILD

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

Added: cgrep/trunk/PKGBUILD
===
--- cgrep/trunk/PKGBUILD(rev 0)
+++ cgrep/trunk/PKGBUILD2016-01-25 09:47:42 UTC (rev 158846)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgname=cgrep
+pkgver=6.5.13
+pkgrel=1
+pkgdesc="A context-aware grep for source codes"
+url="http://awgn.github.io/cgrep/;
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('gmp' 'libffi')
+makedepends=("ghc=7.10.3" "haskell-ansi-terminal" "haskell-async" 
"haskell-cmdargs"
+ "haskell-dlist" "haskell-either" "haskell-mtl" 
"haskell-regex-base"
+ "haskell-regex-pcre" "haskell-regex-posix" "haskell-safe" 
"haskell-split"
+ "haskell-stm" "haskell-stringsearch" "haskell-unix-compat"
+ "haskell-unordered-containers")
+source=("http://hackage.haskell.org/packages/archive/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('03bc20b6879b379b1e22f1e09214d1519b7c7f5b82d7c79de3fd52200ba5550a')
+
+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}"
+}


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


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 09:38:44
  Author: fyan
Revision: 158830

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 158828, haskell-yesod-static/trunk/PKGBUILD)
  haskell-yesod-static/repos/community-staging-i686/haskell-yesod-static.install
(from rev 158828, haskell-yesod-static/trunk/haskell-yesod-static.install)
  haskell-yesod-static/repos/community-staging-x86_64/
  haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD
(from rev 158828, haskell-yesod-static/trunk/PKGBUILD)
  
haskell-yesod-static/repos/community-staging-x86_64/haskell-yesod-static.install
(from rev 158828, haskell-yesod-static/trunk/haskell-yesod-static.install)

---+
 community-staging-i686/PKGBUILD   |   49 
 community-staging-i686/haskell-yesod-static.install   |   18 +
 community-staging-x86_64/PKGBUILD |   49 
 community-staging-x86_64/haskell-yesod-static.install |   18 +
 4 files changed, 134 insertions(+)

Copied: haskell-yesod-static/repos/community-staging-i686/PKGBUILD (from rev 
158828, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 08:38:44 UTC (rev 158830)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=yesod-static
+pkgname=haskell-yesod-static
+pkgver=1.5.0.3
+pkgrel=8
+pkgdesc="Static file serving subsite for Yesod Web Framework."
+url="http://www.yesodweb.com/;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "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-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")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('a46f952593fc36323aba1352b4b7a2703bb609ec19b709447268e7be24f8ce74')
+
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-yesod-static.install 
(from rev 158828, haskell-yesod-static/trunk/haskell-yesod-static.install)
===
--- community-staging-i686/haskell-yesod-static.install 
(rev 0)
+++ community-staging-i686/haskell-yesod-static.install 2016-01-25 08:38:44 UTC 
(rev 158830)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-yesod-static
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-yesod-static/repos/community-staging-x86_64/PKGBUILD (from rev 
158828, haskell-yesod-static/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   

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

2016-01-25 Thread Jiachen Yang
Date: Monday, January 25, 2016 @ 10:07:17
  Author: farseerfc
Revision: 158838

upgpkg: cutegram 2.7.1-3

remove version check for qt

Modified:
  cutegram/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 08:52:41 UTC (rev 158837)
+++ PKGBUILD2016-01-25 09:07:17 UTC (rev 158838)
@@ -8,12 +8,12 @@
 pkgname=cutegram
 _pkgname=Cutegram
 pkgver=2.7.1
-pkgrel=2
+pkgrel=3
 pkgdesc="A different telegram client from Aseman team"
 arch=('i686' 'x86_64')
 url="http://aseman.co/en/products/cutegram/;
 license=('GPL')
-depends=('qt5-imageformats' 'qt5-webkit>=5.5' 'telegramqml>=0.9.1' 
'libqtelegram-ae>=3:6.1')
+depends=('qt5-imageformats' 'qt5-webkit' 'telegramqml>=0.9.1' 
'libqtelegram-ae>=3:6.1')
 optdepends=('gst-plugins-bad: audio support'
 'gst-plugins-good: audio and notification sound')
 makedepends=('git')


[arch-commits] Commit in haskell-regex-pcre/repos (6 files)

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:39:52
  Author: fyan
Revision: 158843

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

Added:
  haskell-regex-pcre/repos/community-i686/
  haskell-regex-pcre/repos/community-i686/PKGBUILD
(from rev 158842, haskell-regex-pcre/trunk/PKGBUILD)
  haskell-regex-pcre/repos/community-i686/haskell-regex-pcre.install
(from rev 158842, haskell-regex-pcre/trunk/haskell-regex-pcre.install)
  haskell-regex-pcre/repos/community-x86_64/
  haskell-regex-pcre/repos/community-x86_64/PKGBUILD
(from rev 158842, haskell-regex-pcre/trunk/PKGBUILD)
  haskell-regex-pcre/repos/community-x86_64/haskell-regex-pcre.install
(from rev 158842, haskell-regex-pcre/trunk/haskell-regex-pcre.install)

-+
 community-i686/PKGBUILD |   43 ++
 community-i686/haskell-regex-pcre.install   |   18 ++
 community-x86_64/PKGBUILD   |   43 ++
 community-x86_64/haskell-regex-pcre.install |   18 ++
 4 files changed, 122 insertions(+)

Copied: haskell-regex-pcre/repos/community-i686/PKGBUILD (from rev 158842, 
haskell-regex-pcre/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 09:39:52 UTC (rev 158843)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=regex-pcre
+pkgname=haskell-regex-pcre
+pkgver=0.94.4
+pkgrel=1
+pkgdesc="Replaces/Enhances Text.Regex"
+url="http://hackage.haskell.org/package/regex-pcre;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-regex-base" "pcre")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8eaa7d4ac6c0a4ba35aa59fc3f6b8f8e252bb25a47e136791446a74752e226c0')
+
+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 \
+-fsplitbase -fnewbase
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-regex-pcre/repos/community-i686/haskell-regex-pcre.install 
(from rev 158842, haskell-regex-pcre/trunk/haskell-regex-pcre.install)
===
--- community-i686/haskell-regex-pcre.install   (rev 0)
+++ community-i686/haskell-regex-pcre.install   2016-01-25 09:39:52 UTC (rev 
158843)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-regex-pcre
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-regex-pcre/repos/community-x86_64/PKGBUILD (from rev 158842, 
haskell-regex-pcre/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-25 09:39:52 UTC (rev 158843)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=regex-pcre
+pkgname=haskell-regex-pcre
+pkgver=0.94.4
+pkgrel=1
+pkgdesc="Replaces/Enhances Text.Regex"
+url="http://hackage.haskell.org/package/regex-pcre;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-regex-base" "pcre")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"

[arch-commits] Commit in (5 files)

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:39:25
  Author: fyan
Revision: 158842

addpkg: haskell-regex-pcre 0.94.4-1

Added:
  haskell-regex-pcre/
  haskell-regex-pcre/repos/
  haskell-regex-pcre/trunk/
  haskell-regex-pcre/trunk/PKGBUILD
  haskell-regex-pcre/trunk/haskell-regex-pcre.install

+
 PKGBUILD   |   43 +++
 haskell-regex-pcre.install |   18 ++
 2 files changed, 61 insertions(+)

Added: haskell-regex-pcre/trunk/PKGBUILD
===
--- haskell-regex-pcre/trunk/PKGBUILD   (rev 0)
+++ haskell-regex-pcre/trunk/PKGBUILD   2016-01-25 09:39:25 UTC (rev 158842)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=regex-pcre
+pkgname=haskell-regex-pcre
+pkgver=0.94.4
+pkgrel=1
+pkgdesc="Replaces/Enhances Text.Regex"
+url="http://hackage.haskell.org/package/regex-pcre;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-regex-base" "pcre")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8eaa7d4ac6c0a4ba35aa59fc3f6b8f8e252bb25a47e136791446a74752e226c0')
+
+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 \
+-fsplitbase -fnewbase
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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"
+}


Property changes on: haskell-regex-pcre/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: haskell-regex-pcre/trunk/haskell-regex-pcre.install
===
--- haskell-regex-pcre/trunk/haskell-regex-pcre.install 
(rev 0)
+++ haskell-regex-pcre/trunk/haskell-regex-pcre.install 2016-01-25 09:39:25 UTC 
(rev 158842)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-regex-pcre
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:40:47
  Author: fyan
Revision: 158844

upgpkg: ghc-mod 5.5.0.0-3

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  ghc-mod/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 09:39:52 UTC (rev 158843)
+++ PKGBUILD2016-01-25 09:40:47 UTC (rev 158844)
@@ -5,7 +5,7 @@
 pkgbase=ghc-mod
 pkgname=(ghc-mod haskell-ghc-mod)
 pkgver=5.5.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Happy Haskell Programming"
 url="http://www.mew.org/~kazu/proj/ghc-mod/;
 license=("AGPL3")
@@ -34,7 +34,7 @@
 }
 
 package_ghc-mod() {
-depends=('gmp' 'libffi' 'cabal-helper' 'ghc')
+depends=('cabal-helper' 'ghc')
 
 cd "${srcdir}/${pkgbase}-${pkgver}"
 runhaskell Setup copy --destdir="${pkgdir}"


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 10:41:14
  Author: fyan
Revision: 158845

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

Added:
  ghc-mod/repos/community-staging-i686/
  ghc-mod/repos/community-staging-i686/PKGBUILD
(from rev 158844, ghc-mod/trunk/PKGBUILD)
  ghc-mod/repos/community-staging-i686/haskell-ghc-mod.install
(from rev 158844, ghc-mod/trunk/haskell-ghc-mod.install)
  ghc-mod/repos/community-staging-x86_64/
  ghc-mod/repos/community-staging-x86_64/PKGBUILD
(from rev 158844, ghc-mod/trunk/PKGBUILD)
  ghc-mod/repos/community-staging-x86_64/haskell-ghc-mod.install
(from rev 158844, ghc-mod/trunk/haskell-ghc-mod.install)

--+
 community-staging-i686/PKGBUILD  |   61 +
 community-staging-i686/haskell-ghc-mod.install   |   18 ++
 community-staging-x86_64/PKGBUILD|   61 +
 community-staging-x86_64/haskell-ghc-mod.install |   18 ++
 4 files changed, 158 insertions(+)

Copied: ghc-mod/repos/community-staging-i686/PKGBUILD (from rev 158844, 
ghc-mod/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 09:41:14 UTC (rev 158845)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=ghc-mod
+pkgname=(ghc-mod haskell-ghc-mod)
+pkgver=5.5.0.0
+pkgrel=3
+pkgdesc="Happy Haskell Programming"
+url="http://www.mew.org/~kazu/proj/ghc-mod/;
+license=("AGPL3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-cabal-helper" "haskell-djinn-ghc" 
"haskell-extra"
+ "haskell-fclabels" "haskell-ghc-paths" "haskell-ghc-syb-utils" 
"haskell-src-exts"
+ "haskell-hlint" "haskell-monad-control" "haskell-monad-journal" 
"haskell-mtl"
+ "haskell-old-time" "haskell-optparse-applicative" "haskell-pipes" 
"haskell-safe"
+ "haskell-split" "haskell-syb" "haskell-temporary" "haskell-text"
+ "haskell-transformers-base")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('d05be8f3541e875cd4ebefb28968cfc095fc323e49328f2e40581f6f5de70d31')
+
+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
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package_ghc-mod() {
+depends=('cabal-helper' 'ghc')
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+runhaskell Setup copy --destdir="${pkgdir}"
+rm -r "$pkgdir"/usr/{lib,share/doc}
+
+install -D -m644 "COPYING.BSD3" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/COPYING.BSD3"
+}
+
+package_haskell-ghc-mod() {
+pkgdesc="Happy Haskell Programming (docs and libraries)"
+depends=("${makedepends[@]}" 'ghc-mod')
+install="haskell-ghc-mod.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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 -f "${pkgdir}/usr/share/doc/${pkgbase}/COPYING.BSD3"
+rm -r "$pkgdir"/usr/{bin,share/$pkgbase}
+}

Copied: ghc-mod/repos/community-staging-i686/haskell-ghc-mod.install (from rev 
158844, ghc-mod/trunk/haskell-ghc-mod.install)
===
--- community-staging-i686/haskell-ghc-mod.install  
(rev 0)
+++ community-staging-i686/haskell-ghc-mod.install  2016-01-25 09:41:14 UTC 
(rev 158845)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-ghc-mod
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: ghc-mod/repos/community-staging-x86_64/PKGBUILD (from rev 158844, 
ghc-mod/trunk/PKGBUILD)

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 11:14:04
  Author: fyan
Revision: 158851

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 158850, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-i686/haskell-pandoc-crossref.install
(from rev 158850, pandoc-crossref/trunk/haskell-pandoc-crossref.install)
  pandoc-crossref/repos/community-staging-x86_64/
  pandoc-crossref/repos/community-staging-x86_64/PKGBUILD
(from rev 158850, pandoc-crossref/trunk/PKGBUILD)
  pandoc-crossref/repos/community-staging-x86_64/haskell-pandoc-crossref.install
(from rev 158850, pandoc-crossref/trunk/haskell-pandoc-crossref.install)

--+
 community-staging-i686/PKGBUILD  |   54 +
 community-staging-i686/haskell-pandoc-crossref.install   |   18 
 community-staging-x86_64/PKGBUILD|   54 +
 community-staging-x86_64/haskell-pandoc-crossref.install |   18 
 4 files changed, 144 insertions(+)

Copied: pandoc-crossref/repos/community-staging-i686/PKGBUILD (from rev 158850, 
pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 10:14:04 UTC (rev 158851)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=pandoc-crossref
+pkgname=(pandoc-crossref haskell-pandoc-crossref)
+pkgver=0.1.6.4
+pkgrel=2
+pkgdesc="Pandoc filter for cross-references"
+url="http://hackage.haskell.org/package/${pkgbase};
+license=("GPL2")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-data-default" "haskell-data-accessor"
+ "haskell-data-accessor-transformers" "haskell-mtl" 
"haskell-pandoc"
+ "haskell-pandoc-types" "haskell-yaml")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('8d3c5147f67f8bcc8a912a8b0daa8bb5d778c1af92df3cec5e167def276add9f')
+
+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.*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')
+install="haskell-pandoc-crossref.install"
+
+cd "${srcdir}/${pkgbase}-${pkgver}"
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-pandoc-crossref.install 
(from rev 158850, pandoc-crossref/trunk/haskell-pandoc-crossref.install)
===
--- community-staging-i686/haskell-pandoc-crossref.install  
(rev 0)
+++ community-staging-i686/haskell-pandoc-crossref.install  2016-01-25 
10:14:04 UTC (rev 158851)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-pandoc-crossref
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: pandoc-crossref/repos/community-staging-x86_64/PKGBUILD (from rev 
158850, pandoc-crossref/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-25 10:14:04 UTC (rev 158851)

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 11:13:36
  Author: fyan
Revision: 158850

upgpkg: pandoc-crossref 0.1.6.4-2

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  pandoc-crossref/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 09:50:19 UTC (rev 158849)
+++ PKGBUILD2016-01-25 10:13:36 UTC (rev 158850)
@@ -5,7 +5,7 @@
 pkgbase=pandoc-crossref
 pkgname=(pandoc-crossref haskell-pandoc-crossref)
 pkgver=0.1.6.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Pandoc filter for cross-references"
 url="http://hackage.haskell.org/package/${pkgbase};
 license=("GPL2")


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 11:39:11
  Author: fyan
Revision: 158852

upgpkg: haskell-hakyll 4.7.5.1-17

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  haskell-hakyll/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 10:14:04 UTC (rev 158851)
+++ PKGBUILD2016-01-25 10:39:11 UTC (rev 158852)
@@ -5,7 +5,7 @@
 _hkgname=hakyll
 pkgname=haskell-hakyll
 pkgver=4.7.5.1
-pkgrel=16
+pkgrel=17
 pkgdesc="A static website compiler library"
 url="http://jaspervdj.be/hakyll;
 license=("custom:BSD3")


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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 11:59:10
  Author: fyan
Revision: 158855

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 158849, stack/trunk/PKGBUILD)
  stack/repos/community-staging-i686/haskell-stack.install
(from rev 158849, stack/trunk/haskell-stack.install)
  stack/repos/community-staging-i686/stack.install
(from rev 158849, stack/trunk/stack.install)
  stack/repos/community-staging-x86_64/
  stack/repos/community-staging-x86_64/PKGBUILD
(from rev 158849, stack/trunk/PKGBUILD)
  stack/repos/community-staging-x86_64/haskell-stack.install
(from rev 158849, stack/trunk/haskell-stack.install)
  stack/repos/community-staging-x86_64/stack.install
(from rev 158849, stack/trunk/stack.install)

+
 community-staging-i686/PKGBUILD|   84 +++
 community-staging-i686/haskell-stack.install   |   18 
 community-staging-i686/stack.install   |4 +
 community-staging-x86_64/PKGBUILD  |   84 +++
 community-staging-x86_64/haskell-stack.install |   18 
 community-staging-x86_64/stack.install |4 +
 6 files changed, 212 insertions(+)

Copied: stack/repos/community-staging-i686/PKGBUILD (from rev 158849, 
stack/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 10:59:10 UTC (rev 158855)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+pkgbase=stack
+pkgname=(stack haskell-stack)
+pkgver=1.0.2
+pkgrel=6
+pkgdesc="The Haskell Tool Stack"
+url="https://github.com/commercialhaskell/stack;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-async"
+ "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-base64-bytestring"
+ "haskell-bifunctors" "haskell-binary-tagged" 
"haskell-blaze-builder"
+ "haskell-byteable" "haskell-conduit" "haskell-conduit-combinators"
+ "haskell-conduit-extra" "haskell-cryptohash" 
"haskell-cryptohash-conduit"
+ "haskell-edit-distance" "haskell-either"
+ "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
+ "haskell-extra" "haskell-fast-logger" "haskell-file-embed" 
"haskell-filelock"
+ "haskell-fsnotify" "haskell-gitrev" "haskell-hashable" 
"haskell-hastache"
+ "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
+ "haskell-http-types" "haskell-lifted-base" "haskell-monad-control"
+ "haskell-monad-logger" "haskell-monad-loops" "haskell-mtl" 
"haskell-old-locale"
+ "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
+ "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
+ "haskell-project-template" "haskell-resourcet" "haskell-retry" 
"haskell-safe"
+ "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-streaming-commons"
+ "haskell-tar" "haskell-temporary" "haskell-text" 
"haskell-text-binary"
+ "haskell-transformers-base" "haskell-unix-compat" 
"haskell-unordered-containers"
+ "haskell-uuid" "haskell-vector" "haskell-vector-binary-instances" 
"haskell-void"
+ "haskell-word8" "haskell-yaml" "haskell-zlib")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
+sha256sums=('4227f4c4016e5008755a974cbf04a9772319d87d1764da32228e74f13153c5c4')
+
+prepare() {
+sed -i 's/Cabal >=1.22.6.0 && <1.23,/Cabal >=1.18.1.5 \&\& <1.23,/' \
+${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}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-disable-git-info -f-integration-tests -f-static
+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.*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 "$pkgdir"/usr/{lib,share/doc}
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+"${pkgdir}"/usr/bin/stack 

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 11:58:42
  Author: fyan
Revision: 158854

upgpkg: stack 1.0.2-7

rebuild with yesod-core-1.4.19, temporary-1.2.0.4

Modified:
  stack/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 10:39:42 UTC (rev 158853)
+++ PKGBUILD2016-01-25 10:58:42 UTC (rev 158854)
@@ -5,7 +5,7 @@
 pkgbase=stack
 pkgname=(stack haskell-stack)
 pkgver=1.0.2
-pkgrel=6
+pkgrel=7
 pkgdesc="The Haskell Tool Stack"
 url="https://github.com/commercialhaskell/stack;
 license=("custom:BSD3")


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

2016-01-25 Thread Thorsten Töpper
Date: Monday, January 25, 2016 @ 12:03:16
  Author: ttoepper
Revision: 158873

upgpkg: confuse 2.8-2

Modified:
  confuse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 11:01:41 UTC (rev 158872)
+++ PKGBUILD2016-01-25 11:03:16 UTC (rev 158873)
@@ -6,10 +6,10 @@
 
 pkgname=confuse
 pkgver=2.8
-pkgrel=1
-pkgdesc="C-library for parsing configuration files"
+pkgrel=2
+pkgdesc='C-library for parsing configuration files'
 arch=('i686' 'x86_64')
-url="http://www.nongnu.org/confuse;
+url='https://github.com/martinh/libconfuse'
 license=('LGPL')
 depends=('glibc')
 
source=("https://github.com/martinh/libconfuse/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)


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

2016-01-25 Thread Thorsten Töpper
Date: Monday, January 25, 2016 @ 12:03:22
  Author: ttoepper
Revision: 158874

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-25 11:03:16 UTC (rev 158873)
+++ community-i686/PKGBUILD 2016-01-25 11:03:22 UTC (rev 158874)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor : Ionut Biru 
-# Contributor: Roman Kyrylych 
-# Contributor: Alexander Mieland (dma147) 
-# Maintainer: Thorsten Töpper 
-
-pkgname=confuse
-pkgver=2.8
-pkgrel=1
-pkgdesc="C-library for parsing configuration files"
-arch=('i686' 'x86_64')
-url="http://www.nongnu.org/confuse;
-license=('LGPL')
-depends=('glibc')
-source=("https://github.com/martinh/libconfuse/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-options=('!emptydirs')
-md5sums=('e94ade0372a43e80b35031046bbc2a33')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-shared
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: confuse/repos/community-i686/PKGBUILD (from rev 158873, 
confuse/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-25 11:03:22 UTC (rev 158874)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor : Ionut Biru 
+# Contributor: Roman Kyrylych 
+# Contributor: Alexander Mieland (dma147) 
+# Maintainer: Thorsten Töpper 
+
+pkgname=confuse
+pkgver=2.8
+pkgrel=2
+pkgdesc='C-library for parsing configuration files'
+arch=('i686' 'x86_64')
+url='https://github.com/martinh/libconfuse'
+license=('LGPL')
+depends=('glibc')
+source=("https://github.com/martinh/libconfuse/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+options=('!emptydirs')
+md5sums=('e94ade0372a43e80b35031046bbc2a33')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-01-25 11:03:16 UTC (rev 158873)
+++ community-x86_64/PKGBUILD   2016-01-25 11:03:22 UTC (rev 158874)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor : Ionut Biru 
-# Contributor: Roman Kyrylych 
-# Contributor: Alexander Mieland (dma147) 
-# Maintainer: Thorsten Töpper 
-
-pkgname=confuse
-pkgver=2.8
-pkgrel=1
-pkgdesc="C-library for parsing configuration files"
-arch=('i686' 'x86_64')
-url="http://www.nongnu.org/confuse;
-license=('LGPL')
-depends=('glibc')
-source=("https://github.com/martinh/libconfuse/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-options=('!emptydirs')
-md5sums=('e94ade0372a43e80b35031046bbc2a33')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --enable-shared
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: confuse/repos/community-x86_64/PKGBUILD (from rev 158873, 
confuse/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-25 11:03:22 UTC (rev 158874)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor : Ionut Biru 
+# Contributor: Roman Kyrylych 
+# Contributor: Alexander Mieland (dma147) 
+# Maintainer: Thorsten Töpper 
+
+pkgname=confuse
+pkgver=2.8
+pkgrel=2
+pkgdesc='C-library for parsing configuration files'
+arch=('i686' 'x86_64')
+url='https://github.com/martinh/libconfuse'
+license=('LGPL')
+depends=('glibc')
+source=("https://github.com/martinh/libconfuse/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+options=('!emptydirs')
+md5sums=('e94ade0372a43e80b35031046bbc2a33')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 11:39:42
  Author: fyan
Revision: 158853

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 158852, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-i686/haskell-hakyll.install
(from rev 158852, haskell-hakyll/trunk/haskell-hakyll.install)
  haskell-hakyll/repos/community-staging-x86_64/
  haskell-hakyll/repos/community-staging-x86_64/PKGBUILD
(from rev 158852, haskell-hakyll/trunk/PKGBUILD)
  haskell-hakyll/repos/community-staging-x86_64/haskell-hakyll.install
(from rev 158852, haskell-hakyll/trunk/haskell-hakyll.install)

-+
 community-staging-i686/PKGBUILD |   48 ++
 community-staging-i686/haskell-hakyll.install   |   18 
 community-staging-x86_64/PKGBUILD   |   48 ++
 community-staging-x86_64/haskell-hakyll.install |   18 
 4 files changed, 132 insertions(+)

Copied: haskell-hakyll/repos/community-staging-i686/PKGBUILD (from rev 158852, 
haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-25 10:39:42 UTC (rev 158853)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=hakyll
+pkgname=haskell-hakyll
+pkgver=4.7.5.1
+pkgrel=17
+pkgdesc="A static website compiler library"
+url="http://jaspervdj.be/hakyll;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-blaze-html" "haskell-blaze-markup" 
"haskell-cmdargs"
+ "haskell-cryptohash" "haskell-data-default" "haskell-http-conduit"
+ "haskell-http-types" "haskell-lrucache" "haskell-mtl" 
"haskell-network"
+ "haskell-network-uri" "haskell-pandoc" "haskell-pandoc-citeproc"
+ "haskell-parsec" "haskell-random" "haskell-regex-base" 
"haskell-regex-tdfa"
+ "haskell-tagsoup" "haskell-text" "haskell-time-locale-compat")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('39efc15d8d9bce1f151587f1556be8daac58c1d3fe6596458f0e9122a659b310')
+
+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 -f-watchserver -f-previewserver
+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.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.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-i686/haskell-hakyll.install 
(from rev 158852, haskell-hakyll/trunk/haskell-hakyll.install)
===
--- community-staging-i686/haskell-hakyll.install   
(rev 0)
+++ community-staging-i686/haskell-hakyll.install   2016-01-25 10:39:42 UTC 
(rev 158853)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-hakyll
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-hakyll/repos/community-staging-x86_64/PKGBUILD (from rev 
158852, haskell-hakyll/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-25 10:39:42 UTC (rev 158853)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+

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

2016-01-25 Thread Felix Yan
Date: Monday, January 25, 2016 @ 12:01:00
  Author: fyan
Revision: 158856

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

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

+
 /PKGBUILD  |  168 +++
 /haskell-stack.install |   36 
 /stack.install |8 +
 community-staging-i686/PKGBUILD|   84 ---
 community-staging-i686/haskell-stack.install   |   18 --
 community-staging-i686/stack.install   |4 
 community-staging-x86_64/PKGBUILD  |   84 ---
 community-staging-x86_64/haskell-stack.install |   18 --
 community-staging-x86_64/stack.install |4 
 9 files changed, 212 insertions(+), 212 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2016-01-25 10:59:10 UTC (rev 158855)
+++ community-staging-i686/PKGBUILD 2016-01-25 11:01:00 UTC (rev 158856)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Arch Haskell Team 
-
-pkgbase=stack
-pkgname=(stack haskell-stack)
-pkgver=1.0.2
-pkgrel=6
-pkgdesc="The Haskell Tool Stack"
-url="https://github.com/commercialhaskell/stack;
-license=("custom:BSD3")
-arch=('i686' 'x86_64')
-makedepends=("ghc=7.10.3" "haskell-aeson" "haskell-ansi-terminal" 
"haskell-async"
- "haskell-attoparsec" "haskell-base16-bytestring" 
"haskell-base64-bytestring"
- "haskell-bifunctors" "haskell-binary-tagged" 
"haskell-blaze-builder"
- "haskell-byteable" "haskell-conduit" "haskell-conduit-combinators"
- "haskell-conduit-extra" "haskell-cryptohash" 
"haskell-cryptohash-conduit"
- "haskell-edit-distance" "haskell-either"
- "haskell-enclosed-exceptions" "haskell-errors" 
"haskell-exceptions"
- "haskell-extra" "haskell-fast-logger" "haskell-file-embed" 
"haskell-filelock"
- "haskell-fsnotify" "haskell-gitrev" "haskell-hashable" 
"haskell-hastache"
- "haskell-http-client" "haskell-http-client-tls" 
"haskell-http-conduit"
- "haskell-http-types" "haskell-lifted-base" "haskell-monad-control"
- "haskell-monad-logger" "haskell-monad-loops" "haskell-mtl" 
"haskell-old-locale"
- "haskell-optparse-applicative" "haskell-optparse-simple" 
"haskell-path"
- "haskell-persistent" "haskell-persistent-sqlite" 
"haskell-persistent-template"
- "haskell-project-template" "haskell-resourcet" "haskell-retry" 
"haskell-safe"
- "haskell-semigroups" "haskell-split" "haskell-stm" 
"haskell-streaming-commons"
- "haskell-tar" "haskell-temporary" "haskell-text" 
"haskell-text-binary"
- "haskell-transformers-base" "haskell-unix-compat" 
"haskell-unordered-containers"
- "haskell-uuid" "haskell-vector" "haskell-vector-binary-instances" 
"haskell-void"
- "haskell-word8" "haskell-yaml" "haskell-zlib")
-options=('staticlibs')
-source=("http://hackage.haskell.org/packages/archive/${pkgbase}/${pkgver}/${pkgbase}-${pkgver}.tar.gz;)
-sha256sums=('4227f4c4016e5008755a974cbf04a9772319d87d1764da32228e74f13153c5c4')
-
-prepare() {
-sed -i 's/Cabal >=1.22.6.0 && <1.23,/Cabal >=1.18.1.5 \&\& <1.23,/' \
-${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}" \
---libsubdir=\$compiler/site-local/\$pkgid \
--f-disable-git-info -f-integration-tests -f-static
-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.*unregister[^ ]* |&'--force' |" 

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

2016-01-25 Thread Jan Steffens
Date: Tuesday, January 26, 2016 @ 03:16:17
  Author: heftig
Revision: 258587

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

Added:
  openal/repos/extra-i686/PKGBUILD
(from rev 258586, openal/trunk/PKGBUILD)
  openal/repos/extra-x86_64/PKGBUILD
(from rev 258586, openal/trunk/PKGBUILD)
Deleted:
  openal/repos/extra-i686/PKGBUILD
  openal/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   94 
 extra-i686/PKGBUILD   |   48 
 extra-x86_64/PKGBUILD |   48 
 3 files changed, 94 insertions(+), 96 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-01-26 02:13:58 UTC (rev 258586)
+++ extra-i686/PKGBUILD 2016-01-26 02:16:17 UTC (rev 258587)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Allan McRae 
-# Contributor: Jason Chu 
-
-pkgbase=openal
-pkgname=(openal openal-examples)
-pkgver=1.17.1
-pkgrel=1
-pkgdesc="A cross-platform 3D audio library"
-arch=(i686 x86_64)
-url="http://www.openal.org/;
-license=(LGPL)
-depends=(glibc)
-makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio jack 
sdl2 sdl_sound ffmpeg
- git)
-_commit=14df326876d92f63c9c007da3c0434fba47c30b8
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit;)
-sha256sums=('SKIP')
-
-prepare() {
-  mkdir build examples
-}
-
-build() {
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release 
../$pkgbase-soft
-  make
-}
-
-package_openal() {
-  optdepends=('qt4: alsoft-config GUI Configurator'
-  'fluidsynth: MIDI rendering')
-
-  make -C build DESTDIR="$pkgdir/" install
-  install -m644 $pkgbase-soft/{env-vars,hrtf}.txt "$pkgdir/usr/share/openal/"
-
-### Split openal-examples
-  mv "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
-}
-
-package_openal-examples() {
-  pkgdesc+=" (example programs)"
-  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
-
-  mkdir -p "$pkgdir/usr/bin"
-  mv examples/* "$pkgdir/usr/bin/"
-}

Copied: openal/repos/extra-i686/PKGBUILD (from rev 258586, 
openal/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-01-26 02:16:17 UTC (rev 258587)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+pkgbase=openal
+pkgname=(openal openal-examples)
+pkgver=1.17.2
+pkgrel=1
+pkgdesc="A cross-platform 3D audio library"
+arch=(i686 x86_64)
+url="http://www.openal.org/;
+license=(LGPL)
+depends=(glibc)
+makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio jack 
sdl2 sdl_sound ffmpeg
+ git)
+source=("git+https://github.com/kcat/openal-soft#tag=openal-soft-$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir build examples
+}
+
+build() {
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release 
../$pkgbase-soft
+  make
+}
+
+package_openal() {
+  optdepends=('qt4: alsoft-config GUI Configurator'
+  'fluidsynth: MIDI rendering')
+
+  make -C build DESTDIR="$pkgdir/" install
+  install -m644 $pkgbase-soft/{env-vars,hrtf}.txt "$pkgdir/usr/share/openal/"
+
+### Split openal-examples
+  mv "$pkgdir"/usr/bin/al{ffplay,hrtf,latency,loopback,reverb,stream} examples/
+}
+
+package_openal-examples() {
+  pkgdesc+=" (example programs)"
+  depends=("openal=$pkgver-$pkgrel" sdl2 sdl_sound ffmpeg)
+
+  mkdir -p "$pkgdir/usr/bin"
+  mv examples/* "$pkgdir/usr/bin/"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2016-01-26 02:13:58 UTC (rev 258586)
+++ extra-x86_64/PKGBUILD   2016-01-26 02:16:17 UTC (rev 258587)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Allan McRae 
-# Contributor: Jason Chu 
-
-pkgbase=openal
-pkgname=(openal openal-examples)
-pkgver=1.17.1
-pkgrel=1
-pkgdesc="A cross-platform 3D audio library"
-arch=(i686 x86_64)
-url="http://www.openal.org/;
-license=(LGPL)
-depends=(glibc)
-makedepends=(alsa-lib pkgconfig cmake libpulse qt4 fluidsynth portaudio jack 
sdl2 sdl_sound ffmpeg
- git)
-_commit=14df326876d92f63c9c007da3c0434fba47c30b8
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit;)
-sha256sums=('SKIP')
-
-prepare() {
-  mkdir build examples
-}
-
-build() {
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release 
../$pkgbase-soft
-  make
-}
-
-package_openal() {
-  optdepends=('qt4: alsoft-config GUI Configurator'
-  'fluidsynth: 

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

2016-01-25 Thread Jan Steffens
Date: Tuesday, January 26, 2016 @ 03:17:28
  Author: heftig
Revision: 158907

1.17.2

Modified:
  lib32-openal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-25 22:13:27 UTC (rev 158906)
+++ PKGBUILD2016-01-26 02:17:28 UTC (rev 158907)
@@ -5,7 +5,7 @@
 
 _pkgbasename=openal
 pkgname=lib32-$_pkgbasename
-pkgver=1.17.1
+pkgver=1.17.2
 pkgrel=1
 pkgdesc="A cross-platform 3D audio library (32-bit)"
 arch=(x86_64)
@@ -14,8 +14,7 @@
 depends=(lib32-glibc $_pkgbasename)
 makedepends=(lib32-alsa-lib pkgconfig cmake lib32-libpulse lib32-portaudio 
lib32-jack
  git gcc-multilib)
-_commit=14df326876d92f63c9c007da3c0434fba47c30b8
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit;)
+source=("git+https://github.com/kcat/openal-soft#tag=openal-soft-$pkgver;)
 sha256sums=('SKIP')
 
 prepare() {


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

2016-01-25 Thread Jan Steffens
Date: Tuesday, January 26, 2016 @ 03:18:18
  Author: heftig
Revision: 158908

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-26 02:17:28 UTC (rev 158907)
+++ PKGBUILD2016-01-26 02:18:18 UTC (rev 158908)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Allan McRae 
-# Contributor: Jason Chu 
-
-_pkgbasename=openal
-pkgname=lib32-$_pkgbasename
-pkgver=1.17.1
-pkgrel=1
-pkgdesc="A cross-platform 3D audio library (32-bit)"
-arch=(x86_64)
-url="http://www.openal.org/;
-license=(LGPL)
-depends=(lib32-glibc $_pkgbasename)
-makedepends=(lib32-alsa-lib pkgconfig cmake lib32-libpulse lib32-portaudio 
lib32-jack
- git gcc-multilib)
-_commit=14df326876d92f63c9c007da3c0434fba47c30b8
-source=("git+https://github.com/kcat/openal-soft#commit=$_commit;)
-sha256sums=('SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  export CC="gcc -m32"
-  export CXX="g++ -m32"
-  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
-
-  cd build
-  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D 
LIB_SUFFIX=32 ../openal-soft
-  make
-}
-
-package() {
-  make -C build DESTDIR="$pkgdir/" install
-  rm -rf "$pkgdir"/usr/{include,share,bin}
-}

Copied: lib32-openal/repos/multilib-x86_64/PKGBUILD (from rev 158907, 
lib32-openal/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-26 02:18:18 UTC (rev 158908)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Allan McRae 
+# Contributor: Jason Chu 
+
+_pkgbasename=openal
+pkgname=lib32-$_pkgbasename
+pkgver=1.17.2
+pkgrel=1
+pkgdesc="A cross-platform 3D audio library (32-bit)"
+arch=(x86_64)
+url="http://www.openal.org/;
+license=(LGPL)
+depends=(lib32-glibc $_pkgbasename)
+makedepends=(lib32-alsa-lib pkgconfig cmake lib32-libpulse lib32-portaudio 
lib32-jack
+ git gcc-multilib)
+source=("git+https://github.com/kcat/openal-soft#tag=openal-soft-$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  export CC="gcc -m32"
+  export CXX="g++ -m32"
+  export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
+
+  cd build
+  cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D 
LIB_SUFFIX=32 ../openal-soft
+  make
+}
+
+package() {
+  make -C build DESTDIR="$pkgdir/" install
+  rm -rf "$pkgdir"/usr/{include,share,bin}
+}


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

2016-01-25 Thread Felix Yan
Date: Tuesday, January 26, 2016 @ 04:16:25
  Author: fyan
Revision: 158910

upgpkg: python-keyring 8.1.1-1

Modified:
  python-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-26 02:47:38 UTC (rev 158909)
+++ PKGBUILD2016-01-26 03:16:25 UTC (rev 158910)
@@ -8,7 +8,7 @@
 
 pkgbase=python-keyring
 pkgname=('python-keyring' 'python2-keyring')
-pkgver=8.0
+pkgver=8.1.1
 pkgrel=1
 pkgdesc="Store and access your passwords safely."
 arch=('any')
@@ -16,10 +16,8 @@
 license=('PSF' 'MIT')
 
source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.tar.gz;)
 makedepends=('python-setuptools_scm' 'python2-setuptools_scm')
-checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 
'python-crypto' 'python2-crypto'
-  'python-secretstorage' 'python2-secretstorage' 'python-gobject' 
'python2-gobject' 'libgnome-keyring'
-  'python2-gdata' 'python-fs' 'python2-fs' 'xorg-server-xvfb')
-md5sums=('c0b86e5851a304630398f12279a5ed57')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-mock' 
'python2-mock')
+md5sums=('46d35d5955dae8f67e53cdc73190f496')
 
 prepare() {
   cp -a keyring-$pkgver{,-py2}
@@ -34,22 +32,18 @@
 }
 
 check() {
-  # Not using ptr because we are not packaging keyczar
-
   cd "$srcdir/keyring-$pkgver"
-  xvfb-run py.test
+  python setup.py ptr
 
   cd "$srcdir/keyring-$pkgver-py2"
-  xvfb-run py.test2
+  python2 setup.py ptr
 }
 
 package_python-keyring() {
   depends=('python-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-  'python-gobject: Gnome integration'
-  'kdebindings-python: Kde integration'
-  'python-crypto: CLI keyring'
-  'python-secretstorage: SecretService DBus API (GNOME/KDE)')
+  optdepends=('kdebindings-python: KDE integration'
+  'python-secretstorage: SecretService DBus API (GNOME/KDE)'
+  'python-keyring-alt: Alternative backends')
 
   cd "$srcdir/keyring-$pkgver"
   python setup.py install --root=$pkgdir --optimize=1
@@ -57,11 +51,9 @@
 
 package_python2-keyring() {
   depends=('python2-setuptools')
-  optdepends=('libgnome-keyring: Gnome integration'
-  'python2-gobject: Gnome integration'
-  'kdebindings-python2: Kde integration'
-  'python2-crypto: CLI keyring'
-  'python2-secretstorage: SecretService DBus API (GNOME/KDE)')
+  optdepends=('kdebindings-python2: Kde integration'
+  'python2-secretstorage: SecretService DBus API (GNOME/KDE)'
+  'python2-keyring-alt: Alternative backends')
 
   cd "$srcdir/keyring-$pkgver-py2"
   python2 setup.py install --root=$pkgdir --optimize=1