[arch-commits] Commit in (4 files)

Felix Yan felixonmars at archlinux.org
Thu Sep 17 09:46:53 UTC 2020


    Date: Thursday, September 17, 2020 @ 09:46:53
  Author: felixonmars
Revision: 708571

addpkg: haskell-lsp-test 0.11.0.5-1

Added:
  haskell-lsp-test/
  haskell-lsp-test/repos/
  haskell-lsp-test/trunk/
  haskell-lsp-test/trunk/PKGBUILD

----------+
 PKGBUILD |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

Added: haskell-lsp-test/trunk/PKGBUILD
===================================================================
--- haskell-lsp-test/trunk/PKGBUILD	                        (rev 0)
+++ haskell-lsp-test/trunk/PKGBUILD	2020-09-17 09:46:53 UTC (rev 708571)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+_hkgname=lsp-test
+pkgname=haskell-lsp-test
+pkgver=0.11.0.5
+pkgrel=1
+pkgdesc="Functional test framework for LSP servers"
+url="https://github.com/bubba/lsp-test#readme"
+license=("BSD")
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-diff' 'haskell-glob' 'haskell-aeson' 'haskell-aeson-pretty'
+         'haskell-ansi-terminal' 'haskell-async' 'haskell-conduit' 'haskell-conduit-parse'
+         'haskell-data-default' 'haskell-lsp' 'haskell-lens' 'haskell-parser-combinators'
+         'haskell-unordered-containers')
+makedepends=('ghc' 'haskell-hspec')
+source=("https://github.com/bubba/lsp-test/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha256sums=('3d1779f05cbeb6ea7109188d5e850b688de2f72af49f16785ff840264534c587')
+
+prepare() {
+  cd $_hkgname-$pkgver
+  echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs
+  
+  sed -i 's|dist-newstyle|dist/build/dummy-server|' test/Test.hs
+}
+
+build() {
+  cd $_hkgname-$pkgver    
+
+  # We need to enable dummy-server here for tests, but it shouldn't be installed...
+  runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
+    --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \
+    --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
+    --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
+    --ghc-option='-pie' \
+    -fdummyserver
+
+  runhaskell Setup build
+  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
+}
+
+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"
+
+  # Remove dummy-server
+  rm -r "$pkgdir"/usr/libexec
+}



More information about the arch-commits mailing list