[arch-commits] Commit in haskell-vector/repos (6 files)
Evangelos Foutras
foutrelis at archlinux.org
Thu Sep 10 21:21:18 UTC 2015
Date: Thursday, September 10, 2015 @ 23:21:18
Author: foutrelis
Revision: 139860
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
haskell-vector/repos/community-staging-i686/
haskell-vector/repos/community-staging-i686/PKGBUILD
(from rev 139859, haskell-vector/trunk/PKGBUILD)
haskell-vector/repos/community-staging-i686/haskell-vector.install
(from rev 139859, haskell-vector/trunk/haskell-vector.install)
haskell-vector/repos/community-staging-x86_64/
haskell-vector/repos/community-staging-x86_64/PKGBUILD
(from rev 139859, haskell-vector/trunk/PKGBUILD)
haskell-vector/repos/community-staging-x86_64/haskell-vector.install
(from rev 139859, haskell-vector/trunk/haskell-vector.install)
-------------------------------------------------+
community-staging-i686/PKGBUILD | 43 ++++++++++++++++++++++
community-staging-i686/haskell-vector.install | 26 +++++++++++++
community-staging-x86_64/PKGBUILD | 43 ++++++++++++++++++++++
community-staging-x86_64/haskell-vector.install | 26 +++++++++++++
4 files changed, 138 insertions(+)
Copied: haskell-vector/repos/community-staging-i686/PKGBUILD (from rev 139859, haskell-vector/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-10 21:21:18 UTC (rev 139860)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+
+pkgname=haskell-vector
+pkgver=0.11.0.0
+pkgrel=2
+pkgdesc="Efficient Arrays"
+url="http://hackage.haskell.org/package/vector"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+# deps adjusted to specific versions in package()
+depends=("ghc" "haskell-primitive")
+options=('strip' 'staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz")
+md5sums=('a08605271abb3ed815135572a42b8524')
+
+build() {
+ cd ${srcdir}/vector-${pkgver}
+ 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() {
+ _ghcver=`pacman -Q ghc | cut -f2 -d\ | cut -f1 -d-`
+ depends=("ghc=${_ghcver}" "haskell-primitive")
+
+ cd ${srcdir}/vector-${pkgver}
+ install -Dm744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+ install -Dm744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+ install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/vector
+ runhaskell Setup copy --destdir=${pkgdir}
+ install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
Copied: haskell-vector/repos/community-staging-i686/haskell-vector.install (from rev 139859, haskell-vector/trunk/haskell-vector.install)
===================================================================
--- community-staging-i686/haskell-vector.install (rev 0)
+++ community-staging-i686/haskell-vector.install 2015-09-10 21:21:18 UTC (rev 139860)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-vector
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+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-vector/repos/community-staging-x86_64/PKGBUILD (from rev 139859, haskell-vector/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2015-09-10 21:21:18 UTC (rev 139860)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+
+pkgname=haskell-vector
+pkgver=0.11.0.0
+pkgrel=2
+pkgdesc="Efficient Arrays"
+url="http://hackage.haskell.org/package/vector"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+# deps adjusted to specific versions in package()
+depends=("ghc" "haskell-primitive")
+options=('strip' 'staticlibs')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz")
+md5sums=('a08605271abb3ed815135572a42b8524')
+
+build() {
+ cd ${srcdir}/vector-${pkgver}
+ 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() {
+ _ghcver=`pacman -Q ghc | cut -f2 -d\ | cut -f1 -d-`
+ depends=("ghc=${_ghcver}" "haskell-primitive")
+
+ cd ${srcdir}/vector-${pkgver}
+ install -Dm744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+ install -Dm744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+ install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/vector
+ runhaskell Setup copy --destdir=${pkgdir}
+ install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
Copied: haskell-vector/repos/community-staging-x86_64/haskell-vector.install (from rev 139859, haskell-vector/trunk/haskell-vector.install)
===================================================================
--- community-staging-x86_64/haskell-vector.install (rev 0)
+++ community-staging-x86_64/haskell-vector.install 2015-09-10 21:21:18 UTC (rev 139860)
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-vector
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+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