[arch-commits] Commit in haskell-bytestring-show/repos (6 files)
Evangelos Foutras
foutrelis at archlinux.org
Thu Sep 10 20:15:48 UTC 2015
Date: Thursday, September 10, 2015 @ 22:15:47
Author: foutrelis
Revision: 139821
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
haskell-bytestring-show/repos/community-staging-i686/
haskell-bytestring-show/repos/community-staging-i686/PKGBUILD
(from rev 139820, haskell-bytestring-show/trunk/PKGBUILD)
haskell-bytestring-show/repos/community-staging-i686/haskell-bytestring-show.install
(from rev 139820, haskell-bytestring-show/trunk/haskell-bytestring-show.install)
haskell-bytestring-show/repos/community-staging-x86_64/
haskell-bytestring-show/repos/community-staging-x86_64/PKGBUILD
(from rev 139820, haskell-bytestring-show/trunk/PKGBUILD)
haskell-bytestring-show/repos/community-staging-x86_64/haskell-bytestring-show.install
(from rev 139820, haskell-bytestring-show/trunk/haskell-bytestring-show.install)
----------------------------------------------------------+
community-staging-i686/PKGBUILD | 44 +++++++++++++
community-staging-i686/haskell-bytestring-show.install | 24 +++++++
community-staging-x86_64/PKGBUILD | 44 +++++++++++++
community-staging-x86_64/haskell-bytestring-show.install | 24 +++++++
4 files changed, 136 insertions(+)
Copied: haskell-bytestring-show/repos/community-staging-i686/PKGBUILD (from rev 139820, haskell-bytestring-show/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 20:15:47 UTC (rev 139821)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.6
+pkgrel=5
+pkgdesc="Efficient conversion of values into readable byte strings."
+url="http://hackage.haskell.org/package/bytestring-show"
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=("ghc")
+options=('staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz")
+md5sums=('c9041eed86a52e17e6b53a415967f7cb')
+
+build() {
+ cd ${srcdir}/bytestring-show-${pkgver}
+
+ # update outdated dependency
+ sed 's/build-depends: integer-gmp >= 0.2 && < 0.5/build-depends: integer-gmp >= 0.2 \&\& < 0.6/' -i bytestring-show.cabal
+
+ runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+ --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+ --libsubdir=\$compiler/site-local/\$pkgid
+ runhaskell Setup build
+ runhaskell Setup haddock
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+ depends=("ghc=`pacman -Q ghc | cut -f2 -d\ |cut -f1 -d-`")
+
+ cd ${srcdir}/bytestring-show-${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/bytestring-show
+ 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-bytestring-show/repos/community-staging-i686/haskell-bytestring-show.install (from rev 139820, haskell-bytestring-show/trunk/haskell-bytestring-show.install)
===================================================================
--- community-staging-i686/haskell-bytestring-show.install (rev 0)
+++ community-staging-i686/haskell-bytestring-show.install 2015-09-10 20:15:47 UTC (rev 139821)
@@ -0,0 +1,24 @@
+pkgname=haskell-bytestring-show
+HS_DIR=usr/share/haskell/${pkgname}
+
+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-bytestring-show/repos/community-staging-x86_64/PKGBUILD (from rev 139820, haskell-bytestring-show/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2015-09-10 20:15:47 UTC (rev 139821)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+
+pkgname=haskell-bytestring-show
+pkgver=0.3.5.6
+pkgrel=5
+pkgdesc="Efficient conversion of values into readable byte strings."
+url="http://hackage.haskell.org/package/bytestring-show"
+license=('BSD')
+arch=('i686' 'x86_64')
+depends=("ghc")
+options=('staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/bytestring-show/${pkgver}/bytestring-show-${pkgver}.tar.gz")
+md5sums=('c9041eed86a52e17e6b53a415967f7cb')
+
+build() {
+ cd ${srcdir}/bytestring-show-${pkgver}
+
+ # update outdated dependency
+ sed 's/build-depends: integer-gmp >= 0.2 && < 0.5/build-depends: integer-gmp >= 0.2 \&\& < 0.6/' -i bytestring-show.cabal
+
+ runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+ --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+ --libsubdir=\$compiler/site-local/\$pkgid
+ runhaskell Setup build
+ runhaskell Setup haddock
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+ depends=("ghc=`pacman -Q ghc | cut -f2 -d\ |cut -f1 -d-`")
+
+ cd ${srcdir}/bytestring-show-${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/bytestring-show
+ 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-bytestring-show/repos/community-staging-x86_64/haskell-bytestring-show.install (from rev 139820, haskell-bytestring-show/trunk/haskell-bytestring-show.install)
===================================================================
--- community-staging-x86_64/haskell-bytestring-show.install (rev 0)
+++ community-staging-x86_64/haskell-bytestring-show.install 2015-09-10 20:15:47 UTC (rev 139821)
@@ -0,0 +1,24 @@
+pkgname=haskell-bytestring-show
+HS_DIR=usr/share/haskell/${pkgname}
+
+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)
+}
More information about the arch-commits
mailing list