[arch-commits] Commit in haskell-retry/repos (2 files)
Felix Yan
felixonmars at gemini.archlinux.org
Tue Aug 9 15:41:02 UTC 2022
Date: Tuesday, August 9, 2022 @ 15:41:02
Author: felixonmars
Revision: 1263675
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-retry/repos/community-staging-x86_64/
haskell-retry/repos/community-staging-x86_64/PKGBUILD
(from rev 1263674, haskell-retry/trunk/PKGBUILD)
----------+
PKGBUILD | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
Copied: haskell-retry/repos/community-staging-x86_64/PKGBUILD (from rev 1263674, haskell-retry/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-08-09 15:41:02 UTC (rev 1263675)
@@ -0,0 +1,50 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=retry
+pkgname=haskell-retry
+pkgver=0.9.2.1
+pkgrel=9
+pkgdesc="Retry combinators for monadic actions that may fail"
+url="https://github.com/Soostone/retry"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-random')
+makedepends=('ghc' 'uusi' 'haskell-hedgehog' 'haskell-hunit' 'haskell-tasty' 'haskell-tasty-hunit'
+ 'haskell-tasty-hedgehog')
+source=("https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
+sha512sums=('9a8197fe9f4e66bf081a6d2fd831dfffa22e96438a1e0a4922db0ee0eb9d8b4e514e1f3e14f16c15181556a0240efab4d9374acadd6feefe3f927a68326fdb15')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ uusi -d mtl-compat $_hkgname.cabal
+}
+
+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 --enable-tests \
+ --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid --ghc-option=-fllvm \
+ -f-lib-werror
+ runhaskell Setup build $MAKEFLAGS
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
+ 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
+
+ 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"
+ install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list