SHA256
1
0
forked from pool/ghc-ed25519

2 Commits

3 changed files with 35 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: ed25519 name: ed25519
version: 0.0.5.0 version: 0.0.5.0
x-revision: 8 x-revision: 9
category: Cryptography category: Cryptography
license: MIT license: MIT
synopsis: Ed25519 cryptographic signatures synopsis: Ed25519 cryptographic signatures
@@ -12,11 +12,6 @@ copyright: Copyright (c) Austin Seipp 2013-2017
author: Austin Seipp author: Austin Seipp
maintainer: Austin Seipp <aseipp@pobox.com> maintainer: Austin Seipp <aseipp@pobox.com>
build-type: Simple 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: description:
This package provides a simple, fast, self-contained copy of the This package provides a simple, fast, self-contained copy of the
@@ -24,6 +19,21 @@ description:
includes support for detached signatures, and thorough documentation includes support for detached signatures, and thorough documentation
on the design and implementation, including usage guidelines. 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: extra-source-files:
.travis.yml .travis.yml
AUTHORS.txt AUTHORS.txt
@@ -61,7 +71,7 @@ flag no-donna
library library
build-depends: build-depends:
ghc-prim >= 0.1 && < 0.12, ghc-prim >= 0.1 && < 1,
base >= 4 && < 5, base >= 4 && < 5,
bytestring >= 0.9 && < 0.13 bytestring >= 0.9 && < 0.13
@@ -97,8 +107,8 @@ test-suite properties
else else
build-depends: build-depends:
base >= 4 && < 5, base >= 4 && < 5,
bytestring >= 0.9 && < 0.12, bytestring >= 0.9 && < 0.13,
QuickCheck >= 2.4 && < 2.9, QuickCheck >= 2.4 && < 2.16,
ed25519 ed25519
-- --
@@ -115,8 +125,8 @@ test-suite hlint
buildable: False buildable: False
else else
build-depends: build-depends:
base >= 4 && < 5, base >= 4 && < 5,
hlint >= 1.7 && < 1.10 hlint >= 1.7 && < 4
test-suite doctests test-suite doctests
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
@@ -129,9 +139,9 @@ test-suite doctests
else else
build-depends: build-depends:
base >= 4 && < 5, base >= 4 && < 5,
filepath >= 1.0 && < 1.5, filepath >= 1.0 && < 1.6,
directory >= 1.0 && < 1.3, directory >= 1.0 && < 1.4,
doctest >= 0.10 && < 0.12 doctest >= 0.10 && < 0.24
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- Build pt 3: benchmarks -- Build pt 3: benchmarks
@@ -140,9 +150,9 @@ benchmark bench
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
build-depends: build-depends:
base >= 4 && < 5, base >= 4 && < 5,
bytestring >= 0.9 && < 0.12, bytestring >= 0.9 && < 0.13,
criterion >= 0.8 && < 1.2, criterion >= 0.8 && < 1.8,
deepseq >= 1.3 && < 1.5, deepseq >= 1.3 && < 1.6,
ed25519 ed25519
default-language: Haskell2010 default-language: Haskell2010

View File

@@ -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> Tue Oct 24 16:38:36 UTC 2023 - Peter Simons <psimons@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package ghc-ed25519 # 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 # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -26,7 +26,7 @@ Summary: Ed25519 cryptographic signatures
License: MIT License: MIT
URL: https://hackage.haskell.org/package/%{pkg_name} URL: https://hackage.haskell.org/package/%{pkg_name}
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz 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-Cabal-devel
BuildRequires: ghc-base-devel BuildRequires: ghc-base-devel
BuildRequires: ghc-base-prof BuildRequires: ghc-base-prof