Date: Wednesday, December 28, 2022 @ 00:09:51 Author: felixonmars Revision: 1368890
upgpkg: haskell-tasty 1.4.3-1: rebuild with tasty 1.4.3 Modified: haskell-tasty/trunk/PKGBUILD ----------+ PKGBUILD | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-12-28 00:08:31 UTC (rev 1368889) +++ PKGBUILD 2022-12-28 00:09:51 UTC (rev 1368890) @@ -3,23 +3,22 @@ _hkgname=tasty pkgname=haskell-tasty -pkgver=1.4.2.3 -pkgrel=51 +pkgver=1.4.3 +pkgrel=1 pkgdesc="Modern and extensible testing framework" url="http://documentup.com/UnkindPartition/tasty" license=("MIT") arch=('x86_64') -depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-clock' 'haskell-optparse-applicative' - 'haskell-tagged' 'haskell-unbounded-delays' 'haskell-wcwidth') +depends=('ghc-libs' 'haskell-ansi-terminal' 'haskell-optparse-applicative' 'haskell-tagged') makedepends=('ghc') source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz") -sha512sums=('c5f03406e4a7b0c8ff98de285cc778a7751c535d62bb69da962f78ad4eadaf76a74d3bd2c81b1c7553b5de4a527be964c568a8311929a0dce44389c3fcaf521e') +sha512sums=('88d4e13bdc6e70a865d9779c9c990b2ce98bb495dd8aa7893254d99ae87e37a696ad6930323d3c213f804bc5b18063f261cdc2f8332054fc4112068a458fa466') build() { cd $_hkgname-$pkgver runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ - --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname \ + --prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname --enable-tests \ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \ -fclock runhaskell Setup build $MAKEFLAGS @@ -29,6 +28,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
