[arch-commits] Commit in haskell-turtle/trunk (PKGBUILD)

Felix Yan felixonmars at archlinux.org
Sun Dec 17 16:24:53 UTC 2017


    Date: Sunday, December 17, 2017 @ 16:24:49
  Author: felixonmars
Revision: 274650

upgpkg: haskell-turtle 1.5.0-1

Modified:
  haskell-turtle/trunk/PKGBUILD

----------+
 PKGBUILD |   31 ++++++++++++++++++++-----------
 1 file changed, 20 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-12-17 16:20:41 UTC (rev 274649)
+++ PKGBUILD	2017-12-17 16:24:49 UTC (rev 274650)
@@ -4,25 +4,29 @@
 
 _hkgname=turtle
 pkgname=haskell-turtle
-pkgver=1.4.5
-pkgrel=6
+pkgver=1.5.0
+pkgrel=1
 pkgdesc="Shell programming, Haskell-style"
 url="https://github.com/Gabriel439/Haskell-Turtle-Library"
 license=('custom:BSD3')
 arch=('x86_64')
-depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 'haskell-foldl'
-         'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative' 'haskell-optional-args'
-         'haskell-semigroups' 'haskell-stm' 'haskell-system-fileio' 'haskell-system-filepath'
-         'haskell-temporary' 'haskell-text' 'haskell-unix-compat')
-makedepends=('ghc')
+depends=('ghc-libs' 'haskell-ansi-wl-pprint' 'haskell-async' 'haskell-clock' 'haskell-exceptions'
+         'haskell-foldl' 'haskell-hostname' 'haskell-managed' 'haskell-optparse-applicative'
+         'haskell-optional-args' 'haskell-semigroups' 'haskell-stm' 'haskell-system-fileio'
+         'haskell-system-filepath' 'haskell-temporary' 'haskell-text' 'haskell-unix-compat')
+makedepends=('ghc' 'haskell-doctest')
 source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
-sha512sums=('bff4f8ae6c46748f095232d73f1415cafd8eebd02e8ee93a0e48a66fd5b3457988f647c574ab95216665da6e9f9678a13cd734511e682e4093f2fe02a20e86ef')
+sha512sums=('fcc775a63e1eec885556e5537656772da69da522d8c6d8445814359f0486c70580809d801c95febfa3bb2a4c75f2d017e602911b14d146d6c3756b3ca017a0b7')
 
+prepare() {
+    sed -i 's/]/, "-dynamic"]/' $_hkgname-$pkgver/test/Main.hs
+}
+
 build() {
     cd "${srcdir}/${_hkgname}-${pkgver}"
-    
+
     runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
-        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" --enable-tests \
         --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
     runhaskell Setup build
     runhaskell Setup register --gen-script
@@ -31,9 +35,14 @@
     sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+    cd $_hkgname-$pkgver
+    runhaskell Setup test
+}
+
 package() {
     cd "${srcdir}/${_hkgname}-${pkgver}"
-    
+
     install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
     install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
     runhaskell Setup copy --destdir="${pkgdir}"



More information about the arch-commits mailing list