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

2016-05-02 Thread Felix Yan
Date: Monday, May 2, 2016 @ 09:35:33
  Author: fyan
Revision: 173307

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 173306, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-05-02 07:35:33 UTC (rev 173307)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.6.0
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-case-insensitive"
+ "haskell-hex" "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('2d33647a74f9945fa0e3a0982832eeb2c57cb46d3ddbacf5ba049ee59a60da97')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 173306, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-05-02 07:35:33 UTC 
(rev 173307)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 173306, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-05-02 07:35:33 UTC (rev 173307)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.6.0
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-04-28 Thread Felix Yan
Date: Friday, April 29, 2016 @ 05:48:17
  Author: fyan
Revision: 172559

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 172558, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-29 03:48:17 UTC (rev 172559)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.6.0
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-case-insensitive"
+ "haskell-hex" "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('2d33647a74f9945fa0e3a0982832eeb2c57cb46d3ddbacf5ba049ee59a60da97')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 172558, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-04-29 03:48:17 UTC 
(rev 172559)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 172558, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-04-29 03:48:17 UTC (rev 172559)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.6.0
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-04-09 Thread Felix Yan
Date: Sunday, April 10, 2016 @ 04:49:22
  Author: fyan
Revision: 169945

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 169944, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-10 02:49:22 UTC (rev 169945)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" 
"haskell-case-insensitive"
+ "haskell-hex" "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('2d33647a74f9945fa0e3a0982832eeb2c57cb46d3ddbacf5ba049ee59a60da97')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 169944, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-04-10 02:49:22 UTC 
(rev 169945)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 169944, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-04-10 02:49:22 UTC (rev 169945)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-03-24 Thread Felix Yan
Date: Thursday, March 24, 2016 @ 07:36:48
  Author: fyan
Revision: 168152

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 168151, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-24 06:36:48 UTC (rev 168152)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=4
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f3851948d57fd532f37b1f74d2d975272ff7da218720b5f519765f1c274f257e')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 168151, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-24 06:36:48 UTC 
(rev 168152)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 168151, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-24 06:36:48 UTC (rev 168152)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=4
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-22 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 04:50:39
  Author: fyan
Revision: 167964

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 167963, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 03:50:39 UTC (rev 167964)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f3851948d57fd532f37b1f74d2d975272ff7da218720b5f519765f1c274f257e')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 167963, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-23 03:50:39 UTC 
(rev 167964)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 167963, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 03:50:39 UTC (rev 167964)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-18 Thread Felix Yan
Date: Friday, March 18, 2016 @ 05:26:57
  Author: fyan
Revision: 167119

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 167118, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-18 04:26:57 UTC (rev 167119)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f3851948d57fd532f37b1f74d2d975272ff7da218720b5f519765f1c274f257e')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 167118, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-18 04:26:57 UTC 
(rev 167119)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 167118, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-18 04:26:57 UTC (rev 167119)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-16 Thread Felix Yan
Date: Wednesday, March 16, 2016 @ 08:38:19
  Author: fyan
Revision: 166887

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 166886, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-16 07:38:19 UTC (rev 166887)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f3851948d57fd532f37b1f74d2d975272ff7da218720b5f519765f1c274f257e')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 166886, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-16 07:38:19 UTC 
(rev 166887)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 166886, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-16 07:38:19 UTC (rev 166887)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-13 Thread Felix Yan
Date: Monday, March 14, 2016 @ 04:34:19
  Author: fyan
Revision: 166579

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 166578, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-14 03:34:19 UTC (rev 166579)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8517079c1418c93e33324612a7fa657af40dedef3c0d56a9a2031bfcf6900f70')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 166578, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-14 03:34:19 UTC 
(rev 166579)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 166578, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-14 03:34:19 UTC (rev 166579)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-10 Thread Felix Yan
Date: Friday, March 11, 2016 @ 08:32:12
  Author: fyan
Revision: 166030

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 166029, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-11 07:32:12 UTC (rev 166030)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('8517079c1418c93e33324612a7fa657af40dedef3c0d56a9a2031bfcf6900f70')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 166029, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-11 07:32:12 UTC 
(rev 166030)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 166029, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-11 07:32:12 UTC (rev 166030)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.2
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-08 Thread Felix Yan
Date: Wednesday, March 9, 2016 @ 06:12:11
  Author: fyan
Revision: 165664

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 165663, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-09 05:12:11 UTC (rev 165664)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3beba1a59d5c533ef58c715a3b54a069b24f81170e80d662e6267a2ad218eb5d')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 165663, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-09 05:12:11 UTC 
(rev 165664)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 165663, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-09 05:12:11 UTC (rev 165664)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-03-01 Thread Felix Yan
Date: Wednesday, March 2, 2016 @ 06:16:49
  Author: fyan
Revision: 164051

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 164050, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-02 05:16:49 UTC (rev 164051)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3beba1a59d5c533ef58c715a3b54a069b24f81170e80d662e6267a2ad218eb5d')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 164050, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-03-02 05:16:49 UTC 
(rev 164051)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 164050, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-02 05:16:49 UTC (rev 164051)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-02-28 Thread Felix Yan
Date: Monday, February 29, 2016 @ 04:57:13
  Author: fyan
Revision: 163725

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 163724, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-29 03:57:13 UTC (rev 163725)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" "haskell-vector")
+makedepends=('haskell-word8')
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('3beba1a59d5c533ef58c715a3b54a069b24f81170e80d662e6267a2ad218eb5d')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 163724, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-02-29 03:57:13 UTC 
(rev 163725)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 163724, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-29 03:57:13 UTC (rev 163725)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.5.1
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 

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

2016-02-20 Thread Felix Yan
Date: Saturday, February 20, 2016 @ 15:46:18
  Author: fyan
Revision: 162774

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 162773, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-20 14:46:18 UTC (rev 162774)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.5
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('34c6e481b2ce00180ce86370af3d06b01afe762360289fa945abbf8a55c5dba5')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 162773, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-02-20 14:46:18 UTC 
(rev 162774)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 162773, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-20 14:46:18 UTC (rev 162774)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.5
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-02-17 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 11:01:50
  Author: fyan
Revision: 161989

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 161988, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 10:01:50 UTC (rev 161989)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.5
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('34c6e481b2ce00180ce86370af3d06b01afe762360289fa945abbf8a55c5dba5')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 161988, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-02-17 10:01:50 UTC 
(rev 161989)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 161988, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 10:01:50 UTC (rev 161989)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.5
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-02-10 Thread Felix Yan
Date: Thursday, February 11, 2016 @ 07:16:46
  Author: fyan
Revision: 161116

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 161115, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-11 06:16:46 UTC (rev 161116)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('34c6e481b2ce00180ce86370af3d06b01afe762360289fa945abbf8a55c5dba5')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 161115, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-02-11 06:16:46 UTC 
(rev 161116)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 161115, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-11 06:16:46 UTC (rev 161116)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.5
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-02-07 Thread Felix Yan
Date: Monday, February 8, 2016 @ 03:04:36
  Author: fyan
Revision: 160827

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 160826, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-08 02:04:36 UTC (rev 160827)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.4
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d6ff4d5578749082d3a319bf97a9e830e320be0b2f8701c2ef39ad896cf977c4')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 160826, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-02-08 02:04:36 UTC 
(rev 160827)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 160826, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-08 02:04:36 UTC (rev 160827)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.4
+pkgrel=3
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-02-03 Thread Felix Yan
Date: Thursday, February 4, 2016 @ 03:56:21
  Author: fyan
Revision: 160151

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 160150, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-04 02:56:21 UTC (rev 160151)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.4
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d6ff4d5578749082d3a319bf97a9e830e320be0b2f8701c2ef39ad896cf977c4')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 160150, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-02-04 02:56:21 UTC 
(rev 160151)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 160150, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-04 02:56:21 UTC (rev 160151)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.4
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-01-20 Thread Felix Yan
Date: Thursday, January 21, 2016 @ 02:54:13
  Author: fyan
Revision: 158335

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 158334, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-21 01:54:13 UTC (rev 158335)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.4
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('d6ff4d5578749082d3a319bf97a9e830e320be0b2f8701c2ef39ad896cf977c4')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 158334, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-01-21 01:54:13 UTC 
(rev 158335)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 158334, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-21 01:54:13 UTC (rev 158335)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.4
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-01-19 Thread Felix Yan
Date: Tuesday, January 19, 2016 @ 12:39:36
  Author: fyan
Revision: 157616

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 157615, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-19 11:39:36 UTC (rev 157616)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.3
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f074760594e1599d3585f666762e96f86a9f6f546d6d3ed05379617b14729778')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 157615, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-01-19 11:39:36 UTC 
(rev 157616)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 157615, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-19 11:39:36 UTC (rev 157616)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.3
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-01-19 Thread Felix Yan
Date: Wednesday, January 20, 2016 @ 04:31:30
  Author: fyan
Revision: 157821

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

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

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

Copied: haskell-http2/repos/community-staging-i686/PKGBUILD (from rev 157820, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-20 03:31:30 UTC (rev 157821)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.3
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('f074760594e1599d3585f666762e96f86a9f6f546d6d3ed05379617b14729778')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-staging-i686/haskell-http2.install (from 
rev 157820, haskell-http2/trunk/haskell-http2.install)
===
--- community-staging-i686/haskell-http2.install
(rev 0)
+++ community-staging-i686/haskell-http2.install2016-01-20 03:31:30 UTC 
(rev 157821)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-staging-x86_64/PKGBUILD (from rev 157820, 
haskell-http2/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-20 03:31:30 UTC (rev 157821)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.3
+pkgrel=2
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')

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

2016-01-16 Thread Felix Yan
Date: Saturday, January 16, 2016 @ 09:21:41
  Author: fyan
Revision: 156948

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

Added:
  haskell-http2/repos/community-i686/
  haskell-http2/repos/community-i686/PKGBUILD
(from rev 156947, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-i686/haskell-http2.install
(from rev 156947, haskell-http2/trunk/haskell-http2.install)
  haskell-http2/repos/community-x86_64/
  haskell-http2/repos/community-x86_64/PKGBUILD
(from rev 156947, haskell-http2/trunk/PKGBUILD)
  haskell-http2/repos/community-x86_64/haskell-http2.install
(from rev 156947, haskell-http2/trunk/haskell-http2.install)

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

Copied: haskell-http2/repos/community-i686/PKGBUILD (from rev 156947, 
haskell-http2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-16 08:21:41 UTC (rev 156948)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text" 
"haskell-unordered-containers"
+ "haskell-vector" "haskell-word8")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('26ffd2cb8ec5f44da3ca1c14640a356d55177ecb4e463fa6defef788902c409f')
+
+prepare() {
+sed -i '/bytestring-builder/d' $_hkgname-$pkgver/$_hkgname.cabal
+}
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid \
+-f-devel
+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-http2/repos/community-i686/haskell-http2.install (from rev 
156947, haskell-http2/trunk/haskell-http2.install)
===
--- community-i686/haskell-http2.install(rev 0)
+++ community-i686/haskell-http2.install2016-01-16 08:21:41 UTC (rev 
156948)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-http2
+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-http2/repos/community-x86_64/PKGBUILD (from rev 156947, 
haskell-http2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-16 08:21:41 UTC (rev 156948)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=http2
+pkgname=haskell-http2
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="HTTP/2.0 library including frames and HPACK"
+url="http://hackage.haskell.org/package/${_hkgname};
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-aeson-pretty" "haskell-hex"
+ "haskell-psqueues" "haskell-stm" "haskell-text"