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

Daniel Micay thestinger at nymeria.archlinux.org
Wed Jun 5 16:32:46 UTC 2013


    Date: Wednesday, June 5, 2013 @ 18:32:46
  Author: thestinger
Revision: 92456

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

Added:
  haskell-hs-bibutils/repos/community-i686/
  haskell-hs-bibutils/repos/community-i686/PKGBUILD
    (from rev 92455, haskell-hs-bibutils/trunk/PKGBUILD)
  haskell-hs-bibutils/repos/community-i686/haskell-hs-bibutils.install
    (from rev 92455, haskell-hs-bibutils/trunk/haskell-hs-bibutils.install)
  haskell-hs-bibutils/repos/community-x86_64/
  haskell-hs-bibutils/repos/community-x86_64/PKGBUILD
    (from rev 92455, haskell-hs-bibutils/trunk/PKGBUILD)
  haskell-hs-bibutils/repos/community-x86_64/haskell-hs-bibutils.install
    (from rev 92455, haskell-hs-bibutils/trunk/haskell-hs-bibutils.install)

----------------------------------------------+
 community-i686/PKGBUILD                      |   44 +++++++++++++++++++++++++
 community-i686/haskell-hs-bibutils.install   |   23 +++++++++++++
 community-x86_64/PKGBUILD                    |   44 +++++++++++++++++++++++++
 community-x86_64/haskell-hs-bibutils.install |   23 +++++++++++++
 4 files changed, 134 insertions(+)

Copied: haskell-hs-bibutils/repos/community-i686/PKGBUILD (from rev 92455, haskell-hs-bibutils/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-06-05 16:32:46 UTC (rev 92456)
@@ -0,0 +1,44 @@
+# Maintainer: Daniel Micay <danielmicay at gmail.com>
+# Contributor: Ivy Foster <joyfulgirl (at) archlinux (dot) # us>
+# Contributor: Alexander Dunlap <alexander.dunlap at gmail # dot com>
+
+_hkgname=hs-bibutils
+pkgname=haskell-hs-bibutils
+pkgver=5.0
+pkgrel=1
+pkgdesc="Haskell bindings to bibutils, the bibliography conversion utilities."
+url="http://hackage.haskell.org/package/$_hkgname"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-syb>=0.3' 'bibutils')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz)
+install=$pkgname.install
+md5sums=('611e02005ad8bbb69218ebf15f3587c6')
+
+build() {
+  cd "$_hkgname-$pkgver"
+  runhaskell Setup configure -O \
+    --enable-split-objs \
+    --enable-shared \
+    --prefix=/usr \
+    --docdir=/usr/share/doc/$pkgname \
+    --libsubdir=\$compiler/site-local/\$pkgid \
+    --enable-library-profiling
+  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() {
+  cd "$_hkgname-$pkgver"
+  install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh"
+  install -m744 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/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+}

Copied: haskell-hs-bibutils/repos/community-i686/haskell-hs-bibutils.install (from rev 92455, haskell-hs-bibutils/trunk/haskell-hs-bibutils.install)
===================================================================
--- community-i686/haskell-hs-bibutils.install	                        (rev 0)
+++ community-i686/haskell-hs-bibutils.install	2013-06-05 16:32:46 UTC (rev 92456)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-hs-bibutils
+
+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-hs-bibutils/repos/community-x86_64/PKGBUILD (from rev 92455, haskell-hs-bibutils/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-06-05 16:32:46 UTC (rev 92456)
@@ -0,0 +1,44 @@
+# Maintainer: Daniel Micay <danielmicay at gmail.com>
+# Contributor: Ivy Foster <joyfulgirl (at) archlinux (dot) # us>
+# Contributor: Alexander Dunlap <alexander.dunlap at gmail # dot com>
+
+_hkgname=hs-bibutils
+pkgname=haskell-hs-bibutils
+pkgver=5.0
+pkgrel=1
+pkgdesc="Haskell bindings to bibutils, the bibliography conversion utilities."
+url="http://hackage.haskell.org/package/$_hkgname"
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('ghc' 'haskell-syb>=0.3' 'bibutils')
+options=('strip')
+source=(http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz)
+install=$pkgname.install
+md5sums=('611e02005ad8bbb69218ebf15f3587c6')
+
+build() {
+  cd "$_hkgname-$pkgver"
+  runhaskell Setup configure -O \
+    --enable-split-objs \
+    --enable-shared \
+    --prefix=/usr \
+    --docdir=/usr/share/doc/$pkgname \
+    --libsubdir=\$compiler/site-local/\$pkgid \
+    --enable-library-profiling
+  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() {
+  cd "$_hkgname-$pkgver"
+  install -Dm744 register.sh "$pkgdir/usr/share/haskell/$pkgname/register.sh"
+  install -m744 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/$_hkgname"
+  runhaskell Setup copy --destdir="$pkgdir"
+}

Copied: haskell-hs-bibutils/repos/community-x86_64/haskell-hs-bibutils.install (from rev 92455, haskell-hs-bibutils/trunk/haskell-hs-bibutils.install)
===================================================================
--- community-x86_64/haskell-hs-bibutils.install	                        (rev 0)
+++ community-x86_64/haskell-hs-bibutils.install	2013-06-05 16:32:46 UTC (rev 92456)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-hs-bibutils
+
+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