[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-06-23 Thread Felix Yan
Date: Friday, June 23, 2017 @ 14:41:18
  Author: felixonmars
Revision: 240421

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 240420, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 240420, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 240420, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 240420, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

--+
 community-staging-i686/PKGBUILD  |   45 ++
 community-staging-i686/haskell-aeson-better-errors.install   |   18 
 community-staging-x86_64/PKGBUILD|   45 ++
 community-staging-x86_64/haskell-aeson-better-errors.install |   18 
 4 files changed, 126 insertions(+)

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 240420, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-23 14:41:18 UTC (rev 240421)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=21
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=('ghc' "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 240420, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-06-23 
14:41:18 UTC (rev 240421)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 240420, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-06-15 Thread Felix Yan
Date: Thursday, June 15, 2017 @ 19:20:03
  Author: felixonmars
Revision: 237376

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 237375, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 237375, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 237375, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 237375, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

--+
 community-staging-i686/PKGBUILD  |   45 ++
 community-staging-i686/haskell-aeson-better-errors.install   |   18 
 community-staging-x86_64/PKGBUILD|   45 ++
 community-staging-x86_64/haskell-aeson-better-errors.install |   18 
 4 files changed, 126 insertions(+)

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 237375, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-15 19:20:03 UTC (rev 237376)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=20
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-shared --enable-executable-dynamic \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+
+# Remove static libs
+find "$pkgdir"/usr/lib -name "*.a" -delete
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 237375, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-06-15 
19:20:03 UTC (rev 237376)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 237375, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-15 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-06-06 Thread Felix Yan
Date: Tuesday, June 6, 2017 @ 14:18:38
  Author: felixonmars
Revision: 234949

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 234948, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 234948, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 234948, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 234948, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 234948, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-06 14:18:38 UTC (rev 234949)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=19
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 234948, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-06-06 
14:18:38 UTC (rev 234949)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 234948, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-06 14:18:38 UTC (rev 234949)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-06-04 Thread Felix Yan
Date: Sunday, June 4, 2017 @ 19:07:24
  Author: felixonmars
Revision: 234001

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 234000, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 234000, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 234000, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 234000, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 234000, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-06-04 19:07:24 UTC (rev 234001)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=18
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 234000, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-06-04 
19:07:24 UTC (rev 234001)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 234000, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-06-04 19:07:24 UTC (rev 234001)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-05-29 Thread Felix Yan
Date: Monday, May 29, 2017 @ 13:34:52
  Author: felixonmars
Revision: 230881

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 230880, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 230880, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 230880, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 230880, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 230880, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-29 13:34:52 UTC (rev 230881)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=17
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 230880, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-05-29 
13:34:52 UTC (rev 230881)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 230880, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-29 13:34:52 UTC (rev 230881)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-05-22 Thread Felix Yan
Date: Monday, May 22, 2017 @ 18:19:11
  Author: felixonmars
Revision: 229269

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 229268, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 229268, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 229268, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 229268, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 229268, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-22 18:19:11 UTC (rev 229269)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=16
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 229268, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-05-22 
18:19:11 UTC (rev 229269)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 229268, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-22 18:19:11 UTC (rev 229269)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-05-03 Thread Felix Yan
Date: Thursday, May 4, 2017 @ 03:49:51
  Author: felixonmars
Revision: 226723

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 226722, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 226722, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 226722, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 226722, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 226722, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-04 03:49:51 UTC (rev 226723)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=15
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 226722, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-05-04 
03:49:51 UTC (rev 226723)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 226722, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-04 03:49:51 UTC (rev 226723)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-04-13 Thread Felix Yan
Date: Thursday, April 13, 2017 @ 07:35:11
  Author: felixonmars
Revision: 222587

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 222586, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 222586, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 222586, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 222586, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 222586, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-04-13 07:35:11 UTC (rev 222587)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=14
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 222586, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-04-13 
07:35:11 UTC (rev 222587)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 222586, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-04-13 07:35:11 UTC (rev 222587)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-04-11 Thread Felix Yan
Date: Tuesday, April 11, 2017 @ 06:04:50
  Author: felixonmars
Revision: 222094

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 222093, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 222093, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 222093, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 222093, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 222093, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-04-11 06:04:50 UTC (rev 222094)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=13
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 222093, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-04-11 
06:04:50 UTC (rev 222094)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 222093, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-04-11 06:04:50 UTC (rev 222094)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-04-06 Thread Felix Yan
Date: Friday, April 7, 2017 @ 05:40:32
  Author: felixonmars
Revision: 221177

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 221176, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 221176, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 221176, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 221176, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 221176, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-04-07 05:40:32 UTC (rev 221177)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=12
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 221176, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-04-07 
05:40:32 UTC (rev 221177)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 221176, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-04-07 05:40:32 UTC (rev 221177)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-03-27 Thread Felix Yan
Date: Monday, March 27, 2017 @ 18:16:59
  Author: felixonmars
Revision: 219395

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 219394, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 219394, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 219394, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 219394, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 219394, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-27 18:16:59 UTC (rev 219395)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=11
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 219394, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-03-27 
18:16:59 UTC (rev 219395)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 219394, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-27 18:16:59 UTC (rev 219395)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-03-25 Thread Felix Yan
Date: Sunday, March 26, 2017 @ 01:08:48
  Author: felixonmars
Revision: 219002

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 219001, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 219001, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 219001, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 219001, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 219001, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-26 01:08:48 UTC (rev 219002)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=10
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 219001, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-03-26 
01:08:48 UTC (rev 219002)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 219001, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-26 01:08:48 UTC (rev 219002)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-03-20 Thread Felix Yan
Date: Monday, March 20, 2017 @ 21:58:27
  Author: felixonmars
Revision: 217831

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 217830, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 217830, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 217830, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 217830, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 217830, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-20 21:58:27 UTC (rev 217831)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=9
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 217830, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-03-20 
21:58:27 UTC (rev 217831)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 217830, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-20 21:58:27 UTC (rev 217831)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-03-19 Thread Felix Yan
Date: Sunday, March 19, 2017 @ 17:47:26
  Author: felixonmars
Revision: 217280

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 217279, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 217279, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 217279, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 217279, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 217279, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-19 17:47:26 UTC (rev 217280)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=8
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 217279, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-03-19 
17:47:26 UTC (rev 217280)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 217279, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-19 17:47:26 UTC (rev 217280)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-03-12 Thread Felix Yan
Date: Sunday, March 12, 2017 @ 13:43:02
  Author: felixonmars
Revision: 215768

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 215767, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 215767, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 215767, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 215767, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 215767, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-12 13:43:02 UTC (rev 215768)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=7
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 215767, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-03-12 
13:43:02 UTC (rev 215768)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 215767, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-12 13:43:02 UTC (rev 215768)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-02-07 Thread Felix Yan
Date: Tuesday, February 7, 2017 @ 17:11:04
  Author: felixonmars
Revision: 210821

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 210820, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 210820, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 210820, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 210820, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 210820, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-02-07 17:11:04 UTC (rev 210821)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=6
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 210820, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-02-07 
17:11:04 UTC (rev 210821)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 210820, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-02-07 17:11:04 UTC (rev 210821)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-01-09 Thread Felix Yan
Date: Tuesday, January 10, 2017 @ 05:20:17
  Author: felixonmars
Revision: 206449

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 206448, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 206448, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 206448, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 206448, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 206448, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-10 05:20:17 UTC (rev 206449)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=5
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 206448, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-01-10 
05:20:17 UTC (rev 206449)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 206448, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-10 05:20:17 UTC (rev 206449)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2017-01-02 Thread Felix Yan
Date: Monday, January 2, 2017 @ 20:17:42
  Author: felixonmars
Revision: 204429

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 204428, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 204428, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 204428, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 204428, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 204428, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-01-02 20:17:42 UTC (rev 204429)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=4
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 204428, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2017-01-02 
20:17:42 UTC (rev 204429)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 204428, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-01-02 20:17:42 UTC (rev 204429)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-12-25 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 17:22:44
  Author: felixonmars
Revision: 202083

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 202082, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 202082, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 202082, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 202082, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 202082, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-25 17:22:44 UTC (rev 202083)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=3
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 202082, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-12-25 
17:22:44 UTC (rev 202083)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 202082, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-25 17:22:44 UTC (rev 202083)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-12-22 Thread Felix Yan
Date: Thursday, December 22, 2016 @ 14:50:47
  Author: felixonmars
Revision: 201051

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 201050, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 201050, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 201050, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 201050, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 201050, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-22 14:50:47 UTC (rev 201051)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=2
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 201050, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-12-22 
14:50:47 UTC (rev 201051)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 201050, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-22 14:50:47 UTC (rev 201051)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-12-14 Thread Felix Yan
Date: Wednesday, December 14, 2016 @ 10:05:05
  Author: felixonmars
Revision: 199368

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 199367, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 199367, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 199367, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 199367, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 199367, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-14 10:05:05 UTC (rev 199368)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.1.0
+pkgrel=1
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 199367, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-12-14 
10:05:05 UTC (rev 199368)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 199367, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-14 10:05:05 UTC (rev 199368)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-09-16 Thread Felix Yan
Date: Friday, September 16, 2016 @ 09:20:32
  Author: felixonmars
Revision: 189547

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 189546, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 189546, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 189546, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 189546, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 189546, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-16 09:20:32 UTC (rev 189547)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=15
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 189546, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-09-16 
09:20:32 UTC (rev 189547)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 189546, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-16 09:20:32 UTC (rev 189547)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-09-06 Thread Felix Yan
Date: Tuesday, September 6, 2016 @ 09:31:57
  Author: felixonmars
Revision: 188691

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 188690, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 188690, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 188690, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 188690, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 188690, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-09-06 09:31:57 UTC (rev 188691)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=14
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 188690, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-09-06 
09:31:57 UTC (rev 188691)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 188690, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-09-06 09:31:57 UTC (rev 188691)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-08-05 Thread Felix Yan
Date: Friday, August 5, 2016 @ 16:09:10
  Author: felixonmars
Revision: 185333

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 185332, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 185332, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 185332, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 185332, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 185332, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-08-05 16:09:10 UTC (rev 185333)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=13
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 185332, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-08-05 
16:09:10 UTC (rev 185333)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 185332, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-08-05 16:09:10 UTC (rev 185333)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-07-26 Thread Felix Yan
Date: Tuesday, July 26, 2016 @ 09:17:45
  Author: felixonmars
Revision: 184243

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 184242, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 184242, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 184242, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 184242, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 184242, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-07-26 09:17:45 UTC (rev 184243)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=12
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 184242, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-07-26 
09:17:45 UTC (rev 184243)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 184242, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-07-26 09:17:45 UTC (rev 184243)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-07-19 Thread Felix Yan
Date: Tuesday, July 19, 2016 @ 17:42:53
  Author: felixonmars
Revision: 183298

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 183297, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 183297, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 183297, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 183297, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 183297, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-07-19 17:42:53 UTC (rev 183298)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=11
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 183297, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-07-19 
17:42:53 UTC (rev 183298)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 183297, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-07-19 17:42:53 UTC (rev 183298)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-07-03 Thread Felix Yan
Date: Monday, July 4, 2016 @ 04:51:46
  Author: felixonmars
Revision: 182009

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 182008, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 182008, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 182008, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 182008, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 182008, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-07-04 04:51:46 UTC (rev 182009)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=10
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 182008, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-07-04 
04:51:46 UTC (rev 182009)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 182008, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-07-04 04:51:46 UTC (rev 182009)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-06-24 Thread Felix Yan
Date: Friday, June 24, 2016 @ 09:08:14
  Author: felixonmars
Revision: 180947

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 180946, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 180946, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 180946, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 180946, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 180946, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-06-24 09:08:14 UTC (rev 180947)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=9
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 180946, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-06-24 
09:08:14 UTC (rev 180947)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 180946, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-06-24 09:08:14 UTC (rev 180947)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-06-13 Thread Felix Yan
Date: Monday, June 13, 2016 @ 10:38:03
  Author: fyan
Revision: 179865

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 179864, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 179864, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 179864, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 179864, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 179864, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-06-13 08:38:03 UTC (rev 179865)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=8
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 179864, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-06-13 
08:38:03 UTC (rev 179865)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 179864, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-06-13 08:38:03 UTC (rev 179865)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-06-09 Thread Felix Yan
Date: Friday, June 10, 2016 @ 06:46:15
  Author: fyan
Revision: 179014

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 179013, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 179013, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 179013, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 179013, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 179013, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-06-10 04:46:15 UTC (rev 179014)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=7
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 179013, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-06-10 
04:46:15 UTC (rev 179014)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 179013, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-06-10 04:46:15 UTC (rev 179014)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-05-25 Thread Felix Yan
Date: Wednesday, May 25, 2016 @ 16:15:46
  Author: fyan
Revision: 176927

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 176926, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 176926, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 176926, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 176926, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 176926, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-05-25 14:15:46 UTC (rev 176927)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=6
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=8.0.1" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
+install -D -m744 unregister.sh 
"${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 176926, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-05-25 
14:15:46 UTC (rev 176927)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 176926, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-05-25 14:15:46 UTC (rev 176927)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-04-29 Thread Felix Yan
Date: Friday, April 29, 2016 @ 17:23:00
  Author: fyan
Revision: 172765

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 172764, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 172764, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 172764, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 172764, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 172764, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-04-29 15:23:00 UTC (rev 172765)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=4
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 172764, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-04-29 
15:23:00 UTC (rev 172765)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 172764, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-04-29 15:23:00 UTC (rev 172765)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-03-24 Thread Felix Yan
Date: Thursday, March 24, 2016 @ 11:04:15
  Author: fyan
Revision: 168208

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 168207, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 168207, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 168207, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 168207, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 168207, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-24 10:04:15 UTC (rev 168208)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=3
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 168207, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-03-24 
10:04:15 UTC (rev 168208)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 168207, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-24 10:04:15 UTC (rev 168208)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-03-23 Thread Felix Yan
Date: Wednesday, March 23, 2016 @ 07:46:34
  Author: fyan
Revision: 168012

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

Added:
  haskell-aeson-better-errors/repos/community-staging-i686/
  haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD
(from rev 168011, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
(from rev 168011, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-staging-x86_64/
  haskell-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD
(from rev 168011, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-staging-x86_64/haskell-aeson-better-errors.install
(from rev 168011, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-staging-i686/PKGBUILD (from 
rev 168011, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-23 06:46:34 UTC (rev 168012)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=2
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-staging-i686/haskell-aeson-better-errors.install
 (from rev 168011, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-staging-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-staging-i686/haskell-aeson-better-errors.install  2016-03-23 
06:46:34 UTC (rev 168012)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-staging-x86_64/PKGBUILD 
(from rev 168011, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-23 06:46:34 UTC (rev 168012)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 

[arch-commits] Commit in haskell-aeson-better-errors/repos (6 files)

2016-03-18 Thread Felix Yan
Date: Saturday, March 19, 2016 @ 04:19:41
  Author: fyan
Revision: 167616

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

Added:
  haskell-aeson-better-errors/repos/community-i686/
  haskell-aeson-better-errors/repos/community-i686/PKGBUILD
(from rev 167615, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-i686/haskell-aeson-better-errors.install
(from rev 167615, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
  haskell-aeson-better-errors/repos/community-x86_64/
  haskell-aeson-better-errors/repos/community-x86_64/PKGBUILD
(from rev 167615, haskell-aeson-better-errors/trunk/PKGBUILD)
  
haskell-aeson-better-errors/repos/community-x86_64/haskell-aeson-better-errors.install
(from rev 167615, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)

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

Copied: haskell-aeson-better-errors/repos/community-i686/PKGBUILD (from rev 
167615, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-19 03:19:41 UTC (rev 167616)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1
+pkgrel=1
+pkgdesc="Better error messages when decoding JSON values."
+url="https://github.com/hdgarrood/aeson-better-errors;
+license=("MIT")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-aeson" "haskell-dlist" "haskell-mtl" 
"haskell-scientific" "haskell-text"
+ "haskell-transformers-compat" "haskell-unordered-containers" 
"haskell-vector" "haskell-void")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('125f4453f945b5b051fa596cd148b7db0414942cdfbe1d6fd0359989ab45d8e6')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+--libsubdir=\$compiler/site-local/\$pkgid
+runhaskell Setup build
+runhaskell Setup haddock --hoogle --html
+runhaskell Setup register --gen-script
+runhaskell Setup unregister --gen-script
+sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+
+install -D -m744 register.sh   
"${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+install-m744 unregister.sh 
"${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+ln -s "/usr/share/doc/${pkgname}/html" 
"${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+runhaskell Setup copy --destdir="${pkgdir}"
+install -D -m644 "LICENSE" 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+}

Copied: 
haskell-aeson-better-errors/repos/community-i686/haskell-aeson-better-errors.install
 (from rev 167615, 
haskell-aeson-better-errors/trunk/haskell-aeson-better-errors.install)
===
--- community-i686/haskell-aeson-better-errors.install  
(rev 0)
+++ community-i686/haskell-aeson-better-errors.install  2016-03-19 03:19:41 UTC 
(rev 167616)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-aeson-better-errors
+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-aeson-better-errors/repos/community-x86_64/PKGBUILD (from rev 
167615, haskell-aeson-better-errors/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-03-19 03:19:41 UTC (rev 167616)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=aeson-better-errors
+pkgname=haskell-aeson-better-errors
+pkgver=0.9.0.1