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

Felix Yan fyan at archlinux.org
Sat Mar 5 07:51:49 UTC 2016


    Date: Saturday, March 5, 2016 @ 08:51:48
  Author: fyan
Revision: 164956

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

Added:
  haskell-path-io/repos/community-staging-i686/
  haskell-path-io/repos/community-staging-i686/PKGBUILD
    (from rev 164955, haskell-path-io/trunk/PKGBUILD)
  haskell-path-io/repos/community-staging-i686/haskell-path-io.install
    (from rev 164955, haskell-path-io/trunk/haskell-path-io.install)
  haskell-path-io/repos/community-staging-x86_64/
  haskell-path-io/repos/community-staging-x86_64/PKGBUILD
    (from rev 164955, haskell-path-io/trunk/PKGBUILD)
  haskell-path-io/repos/community-staging-x86_64/haskell-path-io.install
    (from rev 164955, haskell-path-io/trunk/haskell-path-io.install)

--------------------------------------------------+
 community-staging-i686/PKGBUILD                  |   42 +++++++++++++++++++++
 community-staging-i686/haskell-path-io.install   |   23 +++++++++++
 community-staging-x86_64/PKGBUILD                |   42 +++++++++++++++++++++
 community-staging-x86_64/haskell-path-io.install |   23 +++++++++++
 4 files changed, 130 insertions(+)

Copied: haskell-path-io/repos/community-staging-i686/PKGBUILD (from rev 164955, haskell-path-io/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2016-03-05 07:51:48 UTC (rev 164956)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 162763 2016-02-20 14:34:32Z fyan $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Nagy <danielnagy at gmx de>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+
+pkgname=haskell-path-io
+_hkgname=path-io
+pkgver=0.3.1
+pkgrel=2
+pkgdesc="Interface to ‘directory’ package for users of ‘path’"
+url="https://github.com/mrkkrp/path-io"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 'haskell-exceptions' 'haskell-path' 'haskell-temporary')
+options=('staticlibs')
+install=$pkgname.install
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz")
+md5sums=('f0df7a3c4622ebff00ca77b9afda53df')
+
+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-dev
+  runhaskell Setup build
+  LC_CTYPE=en_US.UTF-8 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 -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"
+  install -D -m644 "LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE.md"
+}

Copied: haskell-path-io/repos/community-staging-i686/haskell-path-io.install (from rev 164955, haskell-path-io/trunk/haskell-path-io.install)
===================================================================
--- community-staging-i686/haskell-path-io.install	                        (rev 0)
+++ community-staging-i686/haskell-path-io.install	2016-03-05 07:51:48 UTC (rev 164956)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-path-io
+
+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-path-io/repos/community-staging-x86_64/PKGBUILD (from rev 164955, haskell-path-io/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2016-03-05 07:51:48 UTC (rev 164956)
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 162763 2016-02-20 14:34:32Z fyan $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Nagy <danielnagy at gmx de>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+
+pkgname=haskell-path-io
+_hkgname=path-io
+pkgver=0.3.1
+pkgrel=2
+pkgdesc="Interface to ‘directory’ package for users of ‘path’"
+url="https://github.com/mrkkrp/path-io"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" 'haskell-exceptions' 'haskell-path' 'haskell-temporary')
+options=('staticlibs')
+install=$pkgname.install
+source=("http://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-${pkgver}.tar.gz")
+md5sums=('f0df7a3c4622ebff00ca77b9afda53df')
+
+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-dev
+  runhaskell Setup build
+  LC_CTYPE=en_US.UTF-8 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 -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"
+  install -D -m644 "LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
+  rm -f "$pkgdir/usr/share/doc/$pkgname/LICENSE.md"
+}

Copied: haskell-path-io/repos/community-staging-x86_64/haskell-path-io.install (from rev 164955, haskell-path-io/trunk/haskell-path-io.install)
===================================================================
--- community-staging-x86_64/haskell-path-io.install	                        (rev 0)
+++ community-staging-x86_64/haskell-path-io.install	2016-03-05 07:51:48 UTC (rev 164956)
@@ -0,0 +1,23 @@
+HS_DIR=usr/share/haskell/haskell-path-io
+
+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