From da27487d48509b0b9ba45700c6f63985cbf4b623 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 16 Feb 2019 13:28:52 +0800 Subject: [PATCH] use revised .cabal --- ed25519-0.0.5.0.cabal | 150 ++++++++++++++++++++++++++++++++++++++++++ ghc-ed25519.spec | 11 ++-- 2 files changed, 157 insertions(+), 4 deletions(-) create mode 100644 ed25519-0.0.5.0.cabal diff --git a/ed25519-0.0.5.0.cabal b/ed25519-0.0.5.0.cabal new file mode 100644 index 0000000..a8b0c15 --- /dev/null +++ b/ed25519-0.0.5.0.cabal @@ -0,0 +1,150 @@ +name: ed25519 +version: 0.0.5.0 +x-revision: 2 +category: Cryptography +license: MIT +synopsis: Ed25519 cryptographic signatures +homepage: http://thoughtpolice.github.com/hs-ed25519 +bug-reports: http://github.com/thoughtpolice/hs-ed25519/issues +license-file: LICENSE.txt +copyright: Copyright (c) Austin Seipp 2013-2015 +author: Austin Seipp +maintainer: Austin Seipp +build-type: Simple +cabal-version: >=1.10 +tested-with: GHC == 7.0.1, GHC == 7.0.2, GHC == 7.0.3, GHC == 7.0.4, + GHC == 7.2.1, GHC == 7.2.2, GHC == 7.4.1, GHC == 7.4.2, + GHC == 7.6.1, GHC == 7.6.2, GHC == 7.6.3, + GHC == 7.8.2, GHC == 7.8.3, GHC == 7.8.4, + GHC == 7.10.1, GHC == 7.10.2 + +description: + This package provides a simple, fast, self-contained copy of the + Ed25519 public-key signature system with a clean interface. It also + includes support for detached signatures, and thorough documentation + on the design and implementation, including usage guidelines. + +extra-source-files: + .travis.yml + AUTHORS.txt + README.md + CONTRIBUTING.md + CHANGELOG.md + src/cbits/ref10/*.c + src/cbits/ref10/include/*.h + +source-repository head + type: git + location: https://github.com/thoughtpolice/hs-ed25519.git + +------------------------------------------------------------------------------- +-- Flags + +flag test-properties + default: True + manual: True + +flag test-hlint + default: True + manual: True + +flag test-doctests + default: True + manual: True + +flag no-donna + default: True + manual: True + +------------------------------------------------------------------------------- +-- Build pt 1: main project + +library + build-depends: + ghc-prim >= 0.1 && < 0.6, + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11 + + exposed-modules: + Crypto.Sign.Ed25519 + + ghc-options: -Wall -fwarn-tabs + default-language: Haskell2010 + hs-source-dirs: src + + -- Choose the underlying C implementation + if flag(no-donna) + -- ref10 implementation from SUPERCOP, about 2x slower than the AMD64 + -- SUPERCOP implementations, 15x faster than ronald3072 for signing. + c-sources: src/cbits/ref10/ed25519.c + include-dirs: src/cbits/ref10 src/cbits/ref10/include + else + -- TODO(aseipp): ed25519-donna import + buildable: False + +------------------------------------------------------------------------------- +-- Build pt 2: Tests + +test-suite properties + type: exitcode-stdio-1.0 + main-is: properties.hs + ghc-options: -w + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-properties) + buildable: False + else + build-depends: + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11, + QuickCheck >= 2.4 && < 2.9, + ed25519 + +-- +-- Style/doc tests below +-- + +test-suite hlint + type: exitcode-stdio-1.0 + main-is: hlint.hs + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-hlint) + buildable: False + else + build-depends: + base >= 4 && < 5, + hlint >= 1.7 && < 1.10 + +test-suite doctests + type: exitcode-stdio-1.0 + main-is: doctests.hs + hs-source-dirs: tests + default-language: Haskell2010 + + if !flag(test-doctests) + buildable: False + else + build-depends: + base >= 4 && < 5, + filepath >= 1.0 && < 1.5, + directory >= 1.0 && < 1.3, + doctest >= 0.10 && < 0.12 + +------------------------------------------------------------------------------- +-- Build pt 3: benchmarks + +benchmark bench + type: exitcode-stdio-1.0 + build-depends: + base >= 4 && < 5, + bytestring >= 0.9 && < 0.11, + criterion >= 0.8 && < 1.2, + deepseq >= 1.3 && < 1.5, + ed25519 + + default-language: Haskell2010 + hs-source-dirs: benchmarks + main-is: bench.hs diff --git a/ghc-ed25519.spec b/ghc-ed25519.spec index 651aa43..d25bfd0 100644 --- a/ghc-ed25519.spec +++ b/ghc-ed25519.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.1 +# generated by cabal-rpm-0.12.5 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name ed25519 @@ -8,12 +8,13 @@ Name: ghc-%{pkg_name} Version: 0.0.5.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Ed25519 cryptographic signatures License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros @@ -52,8 +53,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkgver} - -cabal-tweak-dep-ver ghc-prim '0.5' '0.6' +cp -p %{SOURCE1} %{pkg_name}.cabal %build @@ -85,6 +85,9 @@ cabal-tweak-dep-ver ghc-prim '0.5' '0.6' %changelog +* Sat Feb 16 2019 Jens Petersen - 0.0.5.0-11 +- use revised .cabal file + * Thu Jan 31 2019 Fedora Release Engineering - 0.0.5.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild