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

2016-03-19 Thread Felix Yan
Date: Friday, March 18, 2016 @ 05:12:25
  Author: fyan
Revision: 167091

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

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

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

Copied: haskell-vault/repos/community-staging-i686/PKGBUILD (from rev 167090, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-03-18 04:12:25 UTC (rev 167091)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.6
+pkgrel=3
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('0b433de60fa3d20e93dce6013293e18089fb3233c34211ffa3f860408866ef48')
+
+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 \
+-fuseghc
+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-vault/repos/community-staging-i686/haskell-vault.install (from 
rev 167090, haskell-vault/trunk/haskell-vault.install)
===
--- community-staging-i686/haskell-vault.install
(rev 0)
+++ community-staging-i686/haskell-vault.install2016-03-18 04:12:25 UTC 
(rev 167091)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vault
+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-vault/repos/community-staging-x86_64/PKGBUILD (from rev 167090, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-03-18 04:12:25 UTC (rev 167091)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.6
+pkgrel=3
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2016-02-17 Thread Felix Yan
Date: Wednesday, February 17, 2016 @ 10:21:53
  Author: fyan
Revision: 161974

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

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

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

Copied: haskell-vault/repos/community-staging-i686/PKGBUILD (from rev 161973, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-17 09:21:53 UTC (rev 161974)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.6
+pkgrel=2
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('0b433de60fa3d20e93dce6013293e18089fb3233c34211ffa3f860408866ef48')
+
+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 \
+-fuseghc
+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-vault/repos/community-staging-i686/haskell-vault.install (from 
rev 161973, haskell-vault/trunk/haskell-vault.install)
===
--- community-staging-i686/haskell-vault.install
(rev 0)
+++ community-staging-i686/haskell-vault.install2016-02-17 09:21:53 UTC 
(rev 161974)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vault
+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-vault/repos/community-staging-x86_64/PKGBUILD (from rev 161973, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-17 09:21:53 UTC (rev 161974)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.6
+pkgrel=2
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2016-02-11 Thread Felix Yan
Date: Friday, February 12, 2016 @ 04:14:20
  Author: fyan
Revision: 161342

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

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

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

Copied: haskell-vault/repos/community-staging-i686/PKGBUILD (from rev 161341, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-02-12 03:14:20 UTC (rev 161342)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.6
+pkgrel=1
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('0b433de60fa3d20e93dce6013293e18089fb3233c34211ffa3f860408866ef48')
+
+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 \
+-fuseghc
+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-vault/repos/community-staging-i686/haskell-vault.install (from 
rev 161341, haskell-vault/trunk/haskell-vault.install)
===
--- community-staging-i686/haskell-vault.install
(rev 0)
+++ community-staging-i686/haskell-vault.install2016-02-12 03:14:20 UTC 
(rev 161342)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vault
+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-vault/repos/community-staging-x86_64/PKGBUILD (from rev 161341, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-02-12 03:14:20 UTC (rev 161342)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.6
+pkgrel=1
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2016-01-19 Thread Felix Yan
Date: Wednesday, January 20, 2016 @ 03:56:39
  Author: fyan
Revision: 157771

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

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

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

Copied: haskell-vault/repos/community-staging-i686/PKGBUILD (from rev 157770, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-01-20 02:56:39 UTC (rev 157771)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.5
+pkgrel=2
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('c37bf617db6b39333de40540ecbda8ae644ec6cc8e18bbccbe5d976aeb8cdea7')
+
+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 \
+-fuseghc
+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-vault/repos/community-staging-i686/haskell-vault.install (from 
rev 157770, haskell-vault/trunk/haskell-vault.install)
===
--- community-staging-i686/haskell-vault.install
(rev 0)
+++ community-staging-i686/haskell-vault.install2016-01-20 02:56:39 UTC 
(rev 157771)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vault
+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-vault/repos/community-staging-x86_64/PKGBUILD (from rev 157770, 
haskell-vault/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-01-20 02:56:39 UTC (rev 157771)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.5
+pkgrel=2
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)

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

2016-01-16 Thread Felix Yan
Date: Saturday, January 16, 2016 @ 09:03:35
  Author: fyan
Revision: 156938

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

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

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

Copied: haskell-vault/repos/community-i686/PKGBUILD (from rev 156937, 
haskell-vault/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-16 08:03:35 UTC (rev 156938)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.5
+pkgrel=1
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('c37bf617db6b39333de40540ecbda8ae644ec6cc8e18bbccbe5d976aeb8cdea7')
+
+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 \
+-fuseghc
+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-vault/repos/community-i686/haskell-vault.install (from rev 
156937, haskell-vault/trunk/haskell-vault.install)
===
--- community-i686/haskell-vault.install(rev 0)
+++ community-i686/haskell-vault.install2016-01-16 08:03:35 UTC (rev 
156938)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-vault
+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-vault/repos/community-x86_64/PKGBUILD (from rev 156937, 
haskell-vault/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-01-16 08:03:35 UTC (rev 156938)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Arch Haskell Team 
+
+_hkgname=vault
+pkgname=haskell-vault
+pkgver=0.3.0.5
+pkgrel=1
+pkgdesc="A persistent store for values of arbitrary types"
+url="https://github.com/HeinrichApfelmus/vault;
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-hashable" "haskell-unordered-containers")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz;)
+install="${pkgname}.install"
+sha256sums=('c37bf617db6b39333de40540ecbda8ae644ec6cc8e18bbccbe5d976aeb8cdea7')
+
+build() {
+cd "${srcdir}/${_hkgname}-${pkgver}"
+