Date: Wednesday, November 14, 2018 @ 21:24:24
  Author: felixonmars
Revision: 407500

archrelease: copy trunk to community-staging-x86_64

Added:
  haskell-cipher-aes128/repos/community-staging-x86_64/
  haskell-cipher-aes128/repos/community-staging-x86_64/PKGBUILD
    (from rev 407499, haskell-cipher-aes128/trunk/PKGBUILD)
  haskell-cipher-aes128/repos/community-staging-x86_64/cabal-2.4.patch
    (from rev 407499, haskell-cipher-aes128/trunk/cabal-2.4.patch)

-----------------+
 PKGBUILD        |   44 ++++++++++++++++++++++++++++++++++++++++++++
 cabal-2.4.patch |   26 ++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

Copied: haskell-cipher-aes128/repos/community-staging-x86_64/PKGBUILD (from rev 
407499, haskell-cipher-aes128/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-11-14 21:24:24 UTC (rev 407500)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <felixonm...@archlinux.org>
+
+_hkgname=cipher-aes128
+pkgname=haskell-cipher-aes128
+pkgver=0.7.0.3
+pkgrel=10
+pkgdesc="AES and common modes using AES-NI when available."
+url="https://github.com/TomMD/cipher-aes128";
+license=('custom:BSD3')
+arch=('x86_64')
+depends=('ghc-libs' 'haskell-crypto-api' 'haskell-tagged' 'haskell-cereal')
+makedepends=('ghc')
+source=(https://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz
+        cabal-2.4.patch)
+sha512sums=('72bd1cca4ccd31be08096a53dffa9fa855b24b226904327a417f797b8b8a799d368ef00f75f9a81234a12c659b63d595d58f263cc3a4d544942be7edada413b7'
+            
'f17b6a4b79192a678164a8b5f489aee1854e37be2deb30ecc404461ec1c00038e3f01fbcae26227cc7337ef5fc8577f9608194c55f122a459f76ccfad42c082b')
+
+prepare() {
+    cd $_hkgname-$pkgver
+    patch -p1 -i ../cabal-2.4.patch
+}
+
+build() {
+    cd $_hkgname-$pkgver
+    
+    runhaskell Setup configure -O --enable-shared --enable-executable-dynamic 
--disable-library-vanilla \
+        --prefix=/usr --docdir=/usr/share/doc/$pkgname \
+        --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
+    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
+}
+
+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"
+}

Copied: haskell-cipher-aes128/repos/community-staging-x86_64/cabal-2.4.patch 
(from rev 407499, haskell-cipher-aes128/trunk/cabal-2.4.patch)
===================================================================
--- community-staging-x86_64/cabal-2.4.patch                            (rev 0)
+++ community-staging-x86_64/cabal-2.4.patch    2018-11-14 21:24:24 UTC (rev 
407500)
@@ -0,0 +1,26 @@
+commit 3fcc30f8af64b7eaadeed007301954bd69a23d38
+Author: Felix Yan <felixonm...@archlinux.org>
+Date:   Mon Oct 15 07:06:14 2018 +0800
+
+    Fix compatibility with Cabal 2.4
+    
+    Fixes build with GHC 8.6
+
+diff --git a/Setup.hs b/Setup.hs
+index 98dbe34..3fe4081 100644
+--- a/Setup.hs
++++ b/Setup.hs
+@@ -13,8 +13,13 @@ main :: IO ()
+ main = defaultMainWithHooks hk
+  where
+  hk = simpleUserHooks { buildHook = \pd lbi uh bf -> do
++#if MIN_VERSION_Cabal(2,4,0)
++                                        let ccProg = Program "gcc" undefined 
undefined undefined undefined
++                                            hcProg = Program "ghc" undefined 
undefined undefined undefined
++#else
+                                         let ccProg = Program "gcc" undefined 
undefined undefined
+                                             hcProg = Program "ghc" undefined 
undefined undefined
++#endif
+                                             mConf  = lookupProgram ccProg 
(withPrograms lbi)
+                                             hcConf = lookupProgram hcProg 
(withPrograms lbi)
+                                             err = error "Could not determine 
C compiler"

Reply via email to