[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Friday, May 20, 2016 @ 18:30:17 Author: fyan Revision: 175921 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 175920, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 175920, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 175920, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 175920, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 57 + community-staging-i686/haskell-aws.install | 18 +++ community-staging-x86_64/PKGBUILD| 57 + community-staging-x86_64/haskell-aws.install | 18 +++ 4 files changed, 150 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 175920, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-05-20 16:30:17 UTC (rev 175921) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=43 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-e 's/data-default >= 0.5.3 && < 0.6,/data-default >= 0.5.3 \&\& < 0.7,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 175920, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-05-20 16:30:17 UTC (rev 175921) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 175920, haskell-aws/trunk/PKGBUILD)
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, May 12, 2016 @ 18:59:43 Author: fyan Revision: 175076 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 175075, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 175075, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 175075, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 175075, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 57 + community-staging-i686/haskell-aws.install | 18 +++ community-staging-x86_64/PKGBUILD| 57 + community-staging-x86_64/haskell-aws.install | 18 +++ 4 files changed, 150 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 175075, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-05-12 16:59:43 UTC (rev 175076) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=42 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-e 's/data-default >= 0.5.3 && < 0.6,/data-default >= 0.5.3 \&\& < 0.7,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 175075, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-05-12 16:59:43 UTC (rev 175076) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 175075, haskell-aws/trunk/PKGBUILD) ==
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Tuesday, May 10, 2016 @ 12:55:49 Author: fyan Revision: 174556 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 174555, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 174555, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 174555, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 174555, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 57 + community-staging-i686/haskell-aws.install | 18 +++ community-staging-x86_64/PKGBUILD| 57 + community-staging-x86_64/haskell-aws.install | 18 +++ 4 files changed, 150 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 174555, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-05-10 10:55:49 UTC (rev 174556) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=41 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-e 's/data-default >= 0.5.3 && < 0.6,/data-default >= 0.5.3 \&\& < 0.7,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 174555, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-05-10 10:55:49 UTC (rev 174556) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 174555, haskell-aws/trunk/PKGBUILD) ===
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Sunday, May 8, 2016 @ 14:46:30 Author: fyan Revision: 174323 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 174322, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 174322, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 174322, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 174322, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 57 + community-staging-i686/haskell-aws.install | 18 +++ community-staging-x86_64/PKGBUILD| 57 + community-staging-x86_64/haskell-aws.install | 18 +++ 4 files changed, 150 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 174322, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-05-08 12:46:30 UTC (rev 174323) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=40 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-e 's/data-default >= 0.5.3 && < 0.6,/data-default >= 0.5.3 \&\& < 0.7,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 174322, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-05-08 12:46:30 UTC (rev 174323) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 174322, haskell-aws/trunk/PKGBUILD) =
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Saturday, May 7, 2016 @ 12:10:38 Author: fyan Revision: 174062 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 174061, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 174061, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 174061, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 174061, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 57 + community-staging-i686/haskell-aws.install | 18 +++ community-staging-x86_64/PKGBUILD| 57 + community-staging-x86_64/haskell-aws.install | 18 +++ 4 files changed, 150 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 174061, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-05-07 10:10:38 UTC (rev 174062) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=39 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-e 's/data-default >= 0.5.3 && < 0.6,/data-default >= 0.5.3 \&\& < 0.7,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 174061, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-05-07 10:10:38 UTC (rev 174062) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 174061, haskell-aws/trunk/PKGBUILD) ===
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, May 2, 2016 @ 17:40:03 Author: fyan Revision: 173402 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 173401, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 173401, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 173401, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 173401, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 57 + community-staging-i686/haskell-aws.install | 18 +++ community-staging-x86_64/PKGBUILD| 57 + community-staging-x86_64/haskell-aws.install | 18 +++ 4 files changed, 150 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 173401, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-05-02 15:40:03 UTC (rev 173402) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=38 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-e 's/data-default >= 0.5.3 && < 0.6,/data-default >= 0.5.3 \&\& < 0.7,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 173401, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-05-02 15:40:03 UTC (rev 173402) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 173401, haskell-aws/trunk/PKGBUILD) =
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, April 18, 2016 @ 08:01:23 Author: fyan Revision: 171301 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 171300, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 171300, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 171300, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 171300, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 171300, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-04-18 06:01:23 UTC (rev 171301) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=36 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 171300, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-04-18 06:01:23 UTC (rev 171301) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 171300, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, April 11, 2016 @ 16:36:45 Author: fyan Revision: 170463 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 170460, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 170460, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 170462, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 170462, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 170460, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-04-11 14:36:45 UTC (rev 170463) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=35 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 170460, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-04-11 14:36:45 UTC (rev 170463) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 170462, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, April 11, 2016 @ 07:26:31 Author: fyan Revision: 170344 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 170343, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 170343, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 170343, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 170343, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 170343, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-04-11 05:26:31 UTC (rev 170344) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=34 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 170343, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-04-11 05:26:31 UTC (rev 170344) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 170343, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Sunday, April 10, 2016 @ 11:19:42 Author: fyan Revision: 170042 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 170041, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 170041, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 170041, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 170041, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 170041, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-04-10 09:19:42 UTC (rev 170042) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=33 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 170041, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-04-10 09:19:42 UTC (rev 170042) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 170041, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Sunday, April 3, 2016 @ 10:00:26 Author: fyan Revision: 169367 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 169366, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 169366, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 169366, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 169366, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 169366, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-04-03 08:00:26 UTC (rev 169367) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=32 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 169366, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-04-03 08:00:26 UTC (rev 169367) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 169366, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-s
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, March 31, 2016 @ 12:04:57 Author: fyan Revision: 169049 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 169048, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 169048, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 169048, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 169048, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 169048, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-31 10:04:57 UTC (rev 169049) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=31 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 169048, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-31 10:04:57 UTC (rev 169049) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 169048, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communit
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Wednesday, March 30, 2016 @ 19:11:33 Author: fyan Revision: 168918 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168917, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 168917, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168917, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 168917, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168917, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-30 17:11:33 UTC (rev 168918) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=30 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 168917, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-30 17:11:33 UTC (rev 168918) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168917, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communi
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Saturday, March 26, 2016 @ 09:56:43 Author: fyan Revision: 168448 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168447, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 168447, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168447, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 168447, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168447, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-26 08:56:43 UTC (rev 168448) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=29 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 168447, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-26 08:56:43 UTC (rev 168448) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168447, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communit
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, March 24, 2016 @ 11:03:29 Author: fyan Revision: 168206 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168205, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 168205, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168205, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 168205, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168205, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-24 10:03:29 UTC (rev 168206) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=28 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 168205, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-24 10:03:29 UTC (rev 168206) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168205, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communit
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Wednesday, March 23, 2016 @ 08:29:14 Author: fyan Revision: 168026 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168025, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 168025, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168025, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 168025, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 168025, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-23 07:29:14 UTC (rev 168026) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=27 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 168025, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-23 07:29:14 UTC (rev 168026) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 168025, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communi
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Sunday, March 20, 2016 @ 11:14:46 Author: fyan Revision: 167695 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 167694, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 167694, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 167694, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 167694, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 167694, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-20 10:14:46 UTC (rev 167695) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=26 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 167694, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-20 10:14:46 UTC (rev 167695) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 167694, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Friday, March 18, 2016 @ 08:56:33 Author: fyan Revision: 167318 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 167317, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 167317, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 167317, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 167317, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 167317, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-18 07:56:33 UTC (rev 167318) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=25 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 167317, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-18 07:56:33 UTC (rev 167318) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 167317, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, March 17, 2016 @ 08:17:48 Author: fyan Revision: 166970 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 166969, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 166969, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 166969, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 166969, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 166969, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-17 07:17:48 UTC (rev 166970) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=24 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 166969, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-17 07:17:48 UTC (rev 166970) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 166969, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communit
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, March 14, 2016 @ 07:15:15 Author: fyan Revision: 166621 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 166620, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 166620, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 166620, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 166620, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 166620, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-14 06:15:15 UTC (rev 166621) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=23 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 166620, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-14 06:15:15 UTC (rev 166621) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 166620, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Friday, March 11, 2016 @ 16:40:54 Author: fyan Revision: 166141 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 166140, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 166140, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 166140, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 166140, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 166140, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-11 15:40:54 UTC (rev 166141) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=22 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 166140, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-11 15:40:54 UTC (rev 166141) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 166140, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Wednesday, March 9, 2016 @ 12:57:39 Author: fyan Revision: 165727 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 165725, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 165725, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 165726, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 165726, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 165725, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-09 11:57:39 UTC (rev 165727) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=21 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 165725, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-09 11:57:39 UTC (rev 165727) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 165726, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communit
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Friday, March 4, 2016 @ 15:16:19 Author: fyan Revision: 164785 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 164784, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 164784, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 164784, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 164784, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 164784, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-04 14:16:19 UTC (rev 164785) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=20 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 164784, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-04 14:16:19 UTC (rev 164785) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 164784, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-s
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, March 3, 2016 @ 17:02:12 Author: fyan Revision: 164511 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 164510, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 164510, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 164510, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 164510, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 164510, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-03 16:02:12 UTC (rev 164511) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=19 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 164510, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-03 16:02:12 UTC (rev 164511) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 164510, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Wednesday, March 2, 2016 @ 17:07:12 Author: fyan Revision: 164136 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 164135, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 164135, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 164135, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 164135, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 164135, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-02 16:07:12 UTC (rev 164136) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=18 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 164135, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-02 16:07:12 UTC (rev 164136) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 164135, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communit
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Tuesday, March 1, 2016 @ 11:36:44 Author: fyan Revision: 163880 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 163878, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 163878, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 163878, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 163879, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 163878, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-03-01 10:36:44 UTC (rev 163880) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=17 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 163878, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-03-01 10:36:44 UTC (rev 163880) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 163878, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Wednesday, February 24, 2016 @ 11:32:55 Author: fyan Revision: 163288 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 163287, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 163287, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 163287, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 163287, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 163287, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-24 10:32:55 UTC (rev 163288) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=16 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 163287, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-24 10:32:55 UTC (rev 163288) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 163287, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ comm
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Sunday, February 21, 2016 @ 05:29:14 Author: fyan Revision: 162951 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 162950, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 162950, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 162950, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 162950, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 162950, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-21 04:29:14 UTC (rev 162951) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=15 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 162950, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-21 04:29:14 UTC (rev 162951) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 162950, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communi
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Friday, February 19, 2016 @ 10:40:23 Author: fyan Revision: 162458 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 162457, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 162457, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 162457, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 162457, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 162457, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-19 09:40:23 UTC (rev 162458) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=14 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 162457, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-19 09:40:23 UTC (rev 162458) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 162457, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communi
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, February 18, 2016 @ 03:39:22 Author: fyan Revision: 162157 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 162156, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 162156, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 162156, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 162156, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 162156, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-18 02:39:22 UTC (rev 162157) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=13 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 162156, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-18 02:39:22 UTC (rev 162157) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 162156, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ commu
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, February 15, 2016 @ 15:48:52 Author: fyan Revision: 161661 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 161660, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 161660, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 161660, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 161660, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 161660, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-15 14:48:52 UTC (rev 161661) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=12 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 161660, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-15 14:48:52 UTC (rev 161661) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 161660, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communi
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, February 11, 2016 @ 13:39:33 Author: fyan Revision: 161199 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 161198, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 161198, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 161198, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 161198, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 161198, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-11 12:39:33 UTC (rev 161199) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=11 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 161198, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-11 12:39:33 UTC (rev 161199) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 161198, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ commu
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Thursday, February 4, 2016 @ 09:01:05 Author: fyan Revision: 160237 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 160236, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 160236, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 160236, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 160236, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 160236, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-04 08:01:05 UTC (rev 160237) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=10 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 160236, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-04 08:01:05 UTC (rev 160237) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 160236, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ commun
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, February 1, 2016 @ 05:34:02 Author: fyan Revision: 159735 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 159734, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 159734, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 159734, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 159734, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 159734, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-02-01 04:34:02 UTC (rev 159735) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=9 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 159734, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-02-01 04:34:02 UTC (rev 159735) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 159734, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Saturday, January 30, 2016 @ 13:34:25 Author: fyan Revision: 159535 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 159534, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 159534, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 159534, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 159534, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 159534, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-01-30 12:34:25 UTC (rev 159535) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=8 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 159534, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-01-30 12:34:25 UTC (rev 159535) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 159534, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communi
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Wednesday, January 27, 2016 @ 12:43:35 Author: fyan Revision: 159142 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 159141, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 159141, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 159141, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 159141, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 159141, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-01-27 11:43:35 UTC (rev 159142) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=7 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 159141, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-01-27 11:43:35 UTC (rev 159142) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 159141, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ commun
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Friday, January 22, 2016 @ 07:17:38 Author: fyan Revision: 158506 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 158505, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 158505, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 158505, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 158505, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 158505, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-01-22 06:17:38 UTC (rev 158506) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=6 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 158505, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-01-22 06:17:38 UTC (rev 158506) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 158505, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Wednesday, January 20, 2016 @ 13:58:39 Author: fyan Revision: 158059 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 158058, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 158058, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 158058, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 158058, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 158058, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-01-20 12:58:39 UTC (rev 158059) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=5 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 158058, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-01-20 12:58:39 UTC (rev 158059) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 158058, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ commun
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Monday, January 18, 2016 @ 09:12:27 Author: fyan Revision: 157410 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 157409, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 157409, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 157409, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 157409, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 157409, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-01-18 08:12:27 UTC (rev 157410) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=4 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 157409, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-01-18 08:12:27 UTC (rev 157410) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 157409, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Sunday, January 17, 2016 @ 15:18:12 Author: fyan Revision: 157164 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 157163, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 157163, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 157163, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 157163, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 157163, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-01-17 14:18:12 UTC (rev 157164) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=3 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 157163, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-01-17 14:18:12 UTC (rev 157164) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 157163, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Saturday, January 16, 2016 @ 04:43:14 Author: fyan Revision: 156835 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: haskell-aws/repos/community-staging-i686/ haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 156834, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-i686/haskell-aws.install (from rev 156834, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-staging-x86_64/ haskell-aws/repos/community-staging-x86_64/PKGBUILD (from rev 156834, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-staging-x86_64/haskell-aws.install (from rev 156834, haskell-aws/trunk/haskell-aws.install) --+ community-staging-i686/PKGBUILD | 56 + community-staging-i686/haskell-aws.install | 18 community-staging-x86_64/PKGBUILD| 56 + community-staging-x86_64/haskell-aws.install | 18 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-staging-i686/PKGBUILD (from rev 156834, haskell-aws/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2016-01-16 03:43:14 UTC (rev 156835) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=2 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-staging-i686/haskell-aws.install (from rev 156834, haskell-aws/trunk/haskell-aws.install) === --- community-staging-i686/haskell-aws.install (rev 0) +++ community-staging-i686/haskell-aws.install 2016-01-16 03:43:14 UTC (rev 156835) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-staging-x86_64/PKGBUILD (from rev 156834, haskell-aws/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ communi
[arch-commits] Commit in haskell-aws/repos (6 files)
Date: Friday, January 15, 2016 @ 10:38:27 Author: fyan Revision: 156651 archrelease: copy trunk to community-i686, community-x86_64 Added: haskell-aws/repos/community-i686/ haskell-aws/repos/community-i686/PKGBUILD (from rev 156639, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-i686/haskell-aws.install (from rev 156640, haskell-aws/trunk/haskell-aws.install) haskell-aws/repos/community-x86_64/ haskell-aws/repos/community-x86_64/PKGBUILD (from rev 156643, haskell-aws/trunk/PKGBUILD) haskell-aws/repos/community-x86_64/haskell-aws.install (from rev 156645, haskell-aws/trunk/haskell-aws.install) --+ community-i686/PKGBUILD | 56 + community-i686/haskell-aws.install | 18 ++ community-x86_64/PKGBUILD| 56 + community-x86_64/haskell-aws.install | 18 ++ 4 files changed, 148 insertions(+) Copied: haskell-aws/repos/community-i686/PKGBUILD (from rev 156639, haskell-aws/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2016-01-15 09:38:27 UTC (rev 156651) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkgname=aws +pkgname=haskell-aws +pkgver=0.13.0 +pkgrel=1 +pkgdesc="Amazon Web Services (AWS) for Haskell" +url="http://github.com/aristidb/aws"; +license=("custom:BSD3") +arch=('i686' 'x86_64') +depends=("ghc=7.10.3" "haskell-aeson" "haskell-attoparsec" "haskell-base16-bytestring" + "haskell-base64-bytestring" "haskell-blaze-builder" "haskell-byteable" + "haskell-case-insensitive" "haskell-cereal" "haskell-conduit" + "haskell-conduit-extra" "haskell-cryptohash" "haskell-data-default" + "haskell-http-conduit" "haskell-http-types" "haskell-lifted-base" + "haskell-monad-control" "haskell-mtl" "haskell-network" "haskell-old-locale" + "haskell-resourcet" "haskell-safe" "haskell-scientific" "haskell-tagged" + "haskell-text" "haskell-unordered-containers" "haskell-utf8-string" + "haskell-vector" "haskell-xml-conduit") +options=('staticlibs') +source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz";) +install="${pkgname}.install" +sha256sums=('3504c96a00d12fa0fe4ae5ab4dafa3eec7ca576a02ed7906cff70a75625a75a6') + +prepare() { +sed -e 's/cereal >= 0.3 && < 0.5,/cereal >= 0.3 \&\& < 0.6,/' \ +-i ${_hkgname}-${pkgver}/${_hkgname}.cabal +} + +build() { +cd "${srcdir}/${_hkgname}-${pkgver}" + +runhaskell Setup configure -O --enable-library-profiling --enable-shared \ +--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \ +--libsubdir=\$compiler/site-local/\$pkgid \ +-f-examples +runhaskell Setup build +runhaskell Setup haddock --hoogle --html +runhaskell Setup register --gen-script +runhaskell Setup unregister --gen-script +sed -i -r -e "s|ghc-pkg.*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-aws/repos/community-i686/haskell-aws.install (from rev 156640, haskell-aws/trunk/haskell-aws.install) === --- community-i686/haskell-aws.install (rev 0) +++ community-i686/haskell-aws.install 2016-01-15 09:38:27 UTC (rev 156651) @@ -0,0 +1,18 @@ +HS_DIR=usr/share/haskell/haskell-aws +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-aws/repos/community-x86_64/PKGBUILD (from rev 156643, haskell-aws/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2016-01-15 09:38:27 UTC (rev 156651) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Arch Haskell Team + +_hkg