forked from pool/ghc-ed25519
Compare commits
2 Commits
Author | SHA256 | Date | |
---|---|---|---|
cfee0df64c | |||
7393026d32 |
@@ -1,7 +1,7 @@
|
||||
cabal-version: >=1.10
|
||||
name: ed25519
|
||||
version: 0.0.5.0
|
||||
x-revision: 8
|
||||
x-revision: 9
|
||||
category: Cryptography
|
||||
license: MIT
|
||||
synopsis: Ed25519 cryptographic signatures
|
||||
@@ -12,11 +12,6 @@ copyright: Copyright (c) Austin Seipp 2013-2017
|
||||
author: Austin Seipp
|
||||
maintainer: Austin Seipp <aseipp@pobox.com>
|
||||
build-type: Simple
|
||||
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
|
||||
@@ -24,6 +19,21 @@ description:
|
||||
includes support for detached signatures, and thorough documentation
|
||||
on the design and implementation, including usage guidelines.
|
||||
|
||||
tested-with:
|
||||
GHC == 9.12.1
|
||||
GHC == 9.10.1
|
||||
GHC == 9.8.4
|
||||
GHC == 9.6.6
|
||||
GHC == 9.4.8
|
||||
GHC == 9.2.8
|
||||
GHC == 9.0.2
|
||||
GHC == 8.10.7
|
||||
GHC == 8.8.4
|
||||
GHC == 8.6.5
|
||||
GHC == 8.4.4
|
||||
GHC == 8.2.2
|
||||
GHC == 8.0.2
|
||||
|
||||
extra-source-files:
|
||||
.travis.yml
|
||||
AUTHORS.txt
|
||||
@@ -61,7 +71,7 @@ flag no-donna
|
||||
|
||||
library
|
||||
build-depends:
|
||||
ghc-prim >= 0.1 && < 0.12,
|
||||
ghc-prim >= 0.1 && < 1,
|
||||
base >= 4 && < 5,
|
||||
bytestring >= 0.9 && < 0.13
|
||||
|
||||
@@ -97,8 +107,8 @@ test-suite properties
|
||||
else
|
||||
build-depends:
|
||||
base >= 4 && < 5,
|
||||
bytestring >= 0.9 && < 0.12,
|
||||
QuickCheck >= 2.4 && < 2.9,
|
||||
bytestring >= 0.9 && < 0.13,
|
||||
QuickCheck >= 2.4 && < 2.16,
|
||||
ed25519
|
||||
|
||||
--
|
||||
@@ -116,7 +126,7 @@ test-suite hlint
|
||||
else
|
||||
build-depends:
|
||||
base >= 4 && < 5,
|
||||
hlint >= 1.7 && < 1.10
|
||||
hlint >= 1.7 && < 4
|
||||
|
||||
test-suite doctests
|
||||
type: exitcode-stdio-1.0
|
||||
@@ -129,9 +139,9 @@ test-suite doctests
|
||||
else
|
||||
build-depends:
|
||||
base >= 4 && < 5,
|
||||
filepath >= 1.0 && < 1.5,
|
||||
directory >= 1.0 && < 1.3,
|
||||
doctest >= 0.10 && < 0.12
|
||||
filepath >= 1.0 && < 1.6,
|
||||
directory >= 1.0 && < 1.4,
|
||||
doctest >= 0.10 && < 0.24
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- Build pt 3: benchmarks
|
||||
@@ -140,9 +150,9 @@ benchmark bench
|
||||
type: exitcode-stdio-1.0
|
||||
build-depends:
|
||||
base >= 4 && < 5,
|
||||
bytestring >= 0.9 && < 0.12,
|
||||
criterion >= 0.8 && < 1.2,
|
||||
deepseq >= 1.3 && < 1.5,
|
||||
bytestring >= 0.9 && < 0.13,
|
||||
criterion >= 0.8 && < 1.8,
|
||||
deepseq >= 1.3 && < 1.6,
|
||||
ed25519
|
||||
|
||||
default-language: Haskell2010
|
||||
|
@@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 15 16:10:45 UTC 2025 - Peter Simons <psimons@suse.com>
|
||||
|
||||
- Update ed25519 to version 0.0.5.0 revision 9.
|
||||
Upstream has revised the Cabal build instructions on Hackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 24 16:38:36 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package ghc-ed25519
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -26,7 +26,7 @@ Summary: Ed25519 cryptographic signatures
|
||||
License: MIT
|
||||
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/8.cabal#/%{pkg_name}.cabal
|
||||
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/9.cabal#/%{pkg_name}.cabal
|
||||
BuildRequires: ghc-Cabal-devel
|
||||
BuildRequires: ghc-base-devel
|
||||
BuildRequires: ghc-base-prof
|
||||
|
Reference in New Issue
Block a user