Date: Saturday, April 29, 2023 @ 19:13:39
Author: felixonmars
Revision: 1454783
archrelease: copy trunk to community-staging-x86_64
Added:
haskell-hls-hlint-plugin/repos/community-staging-x86_64/
haskell-hls-hlint-plugin/repos/community-staging-x86_64/PKGBUILD
(from rev 1454782, haskell-hls-hlint-plugin/trunk/PKGBUILD)
----------+
PKGBUILD | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
Copied: haskell-hls-hlint-plugin/repos/community-staging-x86_64/PKGBUILD (from
rev 1454782, haskell-hls-hlint-plugin/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-04-29 19:13:39 UTC (rev 1454783)
@@ -0,0 +1,57 @@
+# Maintainer: Felix Yan <[email protected]>
+
+_hkgname=hls-hlint-plugin
+pkgname=haskell-hls-hlint-plugin
+pkgver=1.1.1.0
+pkgrel=10
+pkgdesc="Hlint integration plugin with Haskell Language Server"
+url="https://hackage.haskell.org/package/hls-hlint-plugin"
+license=("Apache")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-aeson' 'haskell-apply-refact'
'haskell-data-default'
+ 'haskell-extra' 'haskell-ghc' 'haskell-ghc-exactprint'
'haskell-ghc-lib-parser-ex'
+ 'haskell-ghcide' 'haskell-hashable' 'hlint' 'haskell-hls-plugin-api'
'haskell-hslogger'
+ 'haskell-lens' 'haskell-lsp' 'haskell-refact' 'haskell-regex-tdfa'
'haskell-temporary'
+ 'haskell-unordered-containers')
+makedepends=('ghc' 'uusi' 'haskell-hls-test-utils' 'haskell-lsp-types')
+source=("https://hackage.haskell.org/packages/archive/$_hkgname/$pkgver/$_hkgname-$pkgver.tar.gz")
+sha512sums=('575a584c3de1270ebabf141a9e890a4dfedbcd24a35df3cd672d6d17683e47e33a0e191cbb028dd729aec5d96389785ccea317dda59c1166f7b4e41b98771068')
+
+prepare() {
+ cd $_hkgname-$pkgver
+ gen-setup
+ uusi -r ghc-lib-parser:ghc $_hkgname.cabal
+ sed -i 's/"ghc-lib-parser" //' src/Ide/Plugin/Hlint.hs
+ sed -i '/HLINT_ON_GHC_LIB/d' $_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 \
+ --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+ --ghc-option='-pie'
+
+ 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
+ # TODO
+ runhaskell Setup test --show-details=direct || warning "Tests failed"
+}
+
+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"
+ rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE
+}