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

Felix Yan felixonmars at gemini.archlinux.org
Mon Jul 26 08:44:32 UTC 2021


    Date: Monday, July 26, 2021 @ 08:44:32
  Author: felixonmars
Revision: 985113

upgpkg: haskell-optparse-applicative 0.16.1.0-130: rebuild with transformers-compat 0.7 (rebuild pass 1, specified --nocheck)

Modified:
  haskell-optparse-applicative/trunk/PKGBUILD

----------+
 PKGBUILD |   25 +++++++++++++++++++++----
 1 file changed, 21 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-07-26 08:38:18 UTC (rev 985112)
+++ PKGBUILD	2021-07-26 08:44:32 UTC (rev 985113)
@@ -4,21 +4,33 @@
 _hkgname=optparse-applicative
 pkgname=haskell-optparse-applicative
 pkgver=0.16.1.0
-pkgrel=129
+pkgrel=130
 pkgdesc="Utilities and combinators for parsing command line options"
 url="https://github.com/pcapriotti/optparse-applicative"
 license=("BSD")
 arch=('x86_64')
 depends=('ghc-libs' "haskell-ansi-wl-pprint" "haskell-transformers-compat")
-makedepends=('ghc')
+makedepends=('ghc' 'uusi')
+checkdepends=('haskell-quickcheck')
 source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
 sha512sums=('46bdb37b1328a6dbf271dcdb3483266c0c8412fc489e68e32b114745d9cf0108dd49df6cb565df3470121931a769f11996f5fd9fd8e9e38ed6b6853faab56710')
 
+prepare() {
+    cd $_hkgname-$pkgver
+    uusi -u transformers-compat $_hkgname.cabal
+}
+
 build() {
     cd $_hkgname-$pkgver
-    
+
+    if (( CHECKFUNC )); then
+        _opts=('--enable-tests')
+    else
+        _opts=('--disable-tests')
+    fi
+
     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 "${_opts[@]}" \
         --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
     runhaskell Setup build $MAKEFLAGS
     runhaskell Setup register --gen-script
@@ -27,6 +39,11 @@
     sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
+check() {
+    cd $_hkgname-$pkgver
+    runhaskell Setup test --show-details=direct
+}
+
 package() {
     cd $_hkgname-$pkgver
     



More information about the arch-commits mailing list