[arch-commits] Commit in haskell-cryptonite/repos (8 files)

Felix Yan fyan at archlinux.org
Wed Feb 17 08:53:04 UTC 2016


    Date: Wednesday, February 17, 2016 @ 09:53:04
  Author: fyan
Revision: 161954

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  haskell-cryptonite/repos/community-staging-i686/
  haskell-cryptonite/repos/community-staging-i686/32-bit.patch
    (from rev 161953, haskell-cryptonite/trunk/32-bit.patch)
  haskell-cryptonite/repos/community-staging-i686/PKGBUILD
    (from rev 161953, haskell-cryptonite/trunk/PKGBUILD)
  haskell-cryptonite/repos/community-staging-i686/haskell-cryptonite.install
    (from rev 161953, haskell-cryptonite/trunk/haskell-cryptonite.install)
  haskell-cryptonite/repos/community-staging-x86_64/
  haskell-cryptonite/repos/community-staging-x86_64/32-bit.patch
    (from rev 161953, haskell-cryptonite/trunk/32-bit.patch)
  haskell-cryptonite/repos/community-staging-x86_64/PKGBUILD
    (from rev 161953, haskell-cryptonite/trunk/PKGBUILD)
  haskell-cryptonite/repos/community-staging-x86_64/haskell-cryptonite.install
    (from rev 161953, haskell-cryptonite/trunk/haskell-cryptonite.install)

-----------------------------------------------------+
 community-staging-i686/32-bit.patch                 |   27 +++++++++
 community-staging-i686/PKGBUILD                     |   50 ++++++++++++++++++
 community-staging-i686/haskell-cryptonite.install   |   18 ++++++
 community-staging-x86_64/32-bit.patch               |   27 +++++++++
 community-staging-x86_64/PKGBUILD                   |   50 ++++++++++++++++++
 community-staging-x86_64/haskell-cryptonite.install |   18 ++++++
 6 files changed, 190 insertions(+)

Copied: haskell-cryptonite/repos/community-staging-i686/32-bit.patch (from rev 161953, haskell-cryptonite/trunk/32-bit.patch)
===================================================================
--- community-staging-i686/32-bit.patch	                        (rev 0)
+++ community-staging-i686/32-bit.patch	2016-02-17 08:53:04 UTC (rev 161954)
@@ -0,0 +1,27 @@
+From ec130aeca009ec94cc1f3c119a282bb57f6577f2 Mon Sep 17 00:00:00 2001
+From: Vincent Hanquez <vincent at snarc.org>
+Date: Wed, 17 Feb 2016 07:05:25 +0000
+Subject: [PATCH] x448: set WBITS to 32 bits on 32 bits architectures
+
+---
+ cbits/ed448/x448.c | 7 ++++++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/cbits/ed448/x448.c b/cbits/ed448/x448.c
+index 5824fe9..c401fe1 100644
+--- a/cbits/ed448/x448.c
++++ b/cbits/ed448/x448.c
+@@ -11,7 +11,12 @@
+ #include <stdint.h>
+ #include "x448.h"
+ 
+-#define WBITS 64 /* TODO */
++#ifdef ARCH_X86_64
++#define WBITS 64
++#else
++#define WBITS 32
++#endif
++
+ #define LBITS (WBITS * 7 / 8)
+ #define X448_LIMBS (448/LBITS)
+ 

Copied: haskell-cryptonite/repos/community-staging-i686/PKGBUILD (from rev 161953, haskell-cryptonite/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2016-02-17 08:53:04 UTC (rev 161954)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.11
+pkgrel=1
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz" 
+        32-bit.patch)
+install="${pkgname}.install"
+sha256sums=('4dedc69d6aae086fe9edd7ac3b3bdb0eef5842985eece9189e578c4c1f71676c'
+            '8789fb1ee0f9fc9361d3e06b3a1e2ec86c26db9e6c7b9b77dff254af2f3edcce')
+
+prepare() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    patch -p1 -i ../32-bit.patch
+}
+
+build() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+        --libsubdir=\$compiler/site-local/\$pkgid \
+            -fsupport_deepseq -finteger-gmp -f-support_pclmuldq -fsupport_rdrand -fsupport_aesni -f-old_toolchain_inliner
+    runhaskell Setup build
+    runhaskell Setup haddock --hoogle --html
+    runhaskell Setup register --gen-script
+    runhaskell Setup unregister --gen-script
+    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+    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-cryptonite/repos/community-staging-i686/haskell-cryptonite.install (from rev 161953, haskell-cryptonite/trunk/haskell-cryptonite.install)
===================================================================
--- community-staging-i686/haskell-cryptonite.install	                        (rev 0)
+++ community-staging-i686/haskell-cryptonite.install	2016-02-17 08:53:04 UTC (rev 161954)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cryptonite
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}

Copied: haskell-cryptonite/repos/community-staging-x86_64/32-bit.patch (from rev 161953, haskell-cryptonite/trunk/32-bit.patch)
===================================================================
--- community-staging-x86_64/32-bit.patch	                        (rev 0)
+++ community-staging-x86_64/32-bit.patch	2016-02-17 08:53:04 UTC (rev 161954)
@@ -0,0 +1,27 @@
+From ec130aeca009ec94cc1f3c119a282bb57f6577f2 Mon Sep 17 00:00:00 2001
+From: Vincent Hanquez <vincent at snarc.org>
+Date: Wed, 17 Feb 2016 07:05:25 +0000
+Subject: [PATCH] x448: set WBITS to 32 bits on 32 bits architectures
+
+---
+ cbits/ed448/x448.c | 7 ++++++-
+ 1 file changed, 6 insertions(+), 1 deletion(-)
+
+diff --git a/cbits/ed448/x448.c b/cbits/ed448/x448.c
+index 5824fe9..c401fe1 100644
+--- a/cbits/ed448/x448.c
++++ b/cbits/ed448/x448.c
+@@ -11,7 +11,12 @@
+ #include <stdint.h>
+ #include "x448.h"
+ 
+-#define WBITS 64 /* TODO */
++#ifdef ARCH_X86_64
++#define WBITS 64
++#else
++#define WBITS 32
++#endif
++
+ #define LBITS (WBITS * 7 / 8)
+ #define X448_LIMBS (448/LBITS)
+ 

Copied: haskell-cryptonite/repos/community-staging-x86_64/PKGBUILD (from rev 161953, haskell-cryptonite/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2016-02-17 08:53:04 UTC (rev 161954)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Arch Haskell Team <arch-haskell at haskell.org>
+
+_hkgname=cryptonite
+pkgname=haskell-cryptonite
+pkgver=0.11
+pkgrel=1
+pkgdesc="Cryptography Primitives sink"
+url="https://github.com/vincenthz/cryptonite"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+depends=("ghc=7.10.3" "haskell-memory")
+options=('staticlibs')
+source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz" 
+        32-bit.patch)
+install="${pkgname}.install"
+sha256sums=('4dedc69d6aae086fe9edd7ac3b3bdb0eef5842985eece9189e578c4c1f71676c'
+            '8789fb1ee0f9fc9361d3e06b3a1e2ec86c26db9e6c7b9b77dff254af2f3edcce')
+
+prepare() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    patch -p1 -i ../32-bit.patch
+}
+
+build() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    runhaskell Setup configure -O --enable-library-profiling --enable-shared \
+        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
+        --libsubdir=\$compiler/site-local/\$pkgid \
+            -fsupport_deepseq -finteger-gmp -f-support_pclmuldq -fsupport_rdrand -fsupport_aesni -f-old_toolchain_inliner
+    runhaskell Setup build
+    runhaskell Setup haddock --hoogle --html
+    runhaskell Setup register --gen-script
+    runhaskell Setup unregister --gen-script
+    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+    cd "${srcdir}/${_hkgname}-${pkgver}"
+    
+    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
+    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
+    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
+    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
+    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-cryptonite/repos/community-staging-x86_64/haskell-cryptonite.install (from rev 161953, haskell-cryptonite/trunk/haskell-cryptonite.install)
===================================================================
--- community-staging-x86_64/haskell-cryptonite.install	                        (rev 0)
+++ community-staging-x86_64/haskell-cryptonite.install	2016-02-17 08:53:04 UTC (rev 161954)
@@ -0,0 +1,18 @@
+HS_DIR=usr/share/haskell/haskell-cryptonite
+post_install() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_upgrade() {
+  ${HS_DIR}/unregister.sh
+}
+post_upgrade() {
+  ${HS_DIR}/register.sh
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+pre_remove() {
+  ${HS_DIR}/unregister.sh
+}
+post_remove() {
+  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}



More information about the arch-commits mailing list