osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-cryptohash-sha256 revision:7, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-cryptohash-sha256?expand=0&rev=25
This commit is contained in:
parent
a7b4d15eb6
commit
e91f7e8c61
@ -1,7 +1,7 @@
|
|||||||
cabal-version: 1.12
|
cabal-version: 1.12
|
||||||
name: cryptohash-sha256
|
name: cryptohash-sha256
|
||||||
version: 0.11.101.0
|
version: 0.11.101.0
|
||||||
x-revision: 1
|
x-revision: 2
|
||||||
|
|
||||||
synopsis: Fast, pure and practical SHA-256 implementation
|
synopsis: Fast, pure and practical SHA-256 implementation
|
||||||
description: {
|
description: {
|
||||||
@ -16,8 +16,6 @@ to be as fast as the standard [sha256sum(1) tool](https://linux.die.net/man/1/sh
|
|||||||
for instance, on an /Intel Core i7-3770/ at 3.40GHz this implementation can
|
for instance, on an /Intel Core i7-3770/ at 3.40GHz this implementation can
|
||||||
compute a SHA-256 hash over 230 MiB of data in under one second.
|
compute a SHA-256 hash over 230 MiB of data in under one second.
|
||||||
(If, instead, you require a pure Haskell implementation and performance is secondary, please refer to the [SHA package](https://hackage.haskell.org/package/SHA).)
|
(If, instead, you require a pure Haskell implementation and performance is secondary, please refer to the [SHA package](https://hackage.haskell.org/package/SHA).)
|
||||||
.
|
|
||||||
|
|
||||||
.
|
.
|
||||||
Additionally, this package provides support for
|
Additionally, this package provides support for
|
||||||
.
|
.
|
||||||
@ -26,6 +24,13 @@ Additionally, this package provides support for
|
|||||||
.
|
.
|
||||||
conforming to [RFC6234](https://tools.ietf.org/html/rfc6234), [RFC4231](https://tools.ietf.org/html/rfc4231), [RFC5869](https://tools.ietf.org/html/rfc5869), et al..
|
conforming to [RFC6234](https://tools.ietf.org/html/rfc6234), [RFC4231](https://tools.ietf.org/html/rfc4231), [RFC5869](https://tools.ietf.org/html/rfc5869), et al..
|
||||||
.
|
.
|
||||||
|
=== Packages in the @cryptohash-*@ family
|
||||||
|
.
|
||||||
|
- <https://hackage.haskell.org/package/cryptohash-md5 cryptohash-md5>
|
||||||
|
- <https://hackage.haskell.org/package/cryptohash-sha1 cryptohash-sha1>
|
||||||
|
- <https://hackage.haskell.org/package/cryptohash-sha256 cryptohash-sha256>
|
||||||
|
- <https://hackage.haskell.org/package/cryptohash-sha512 cryptohash-sha512>
|
||||||
|
.
|
||||||
=== Relationship to the @cryptohash@ package and its API
|
=== Relationship to the @cryptohash@ package and its API
|
||||||
.
|
.
|
||||||
This package has been originally a fork of @cryptohash-0.11.7@ because the @cryptohash@
|
This package has been originally a fork of @cryptohash-0.11.7@ because the @cryptohash@
|
||||||
@ -76,7 +81,7 @@ library
|
|||||||
Trustworthy
|
Trustworthy
|
||||||
Unsafe
|
Unsafe
|
||||||
|
|
||||||
build-depends: base >= 4.5 && < 4.12
|
build-depends: base >= 4.5 && < 4.13
|
||||||
, bytestring >= 0.9.2 && < 0.11
|
, bytestring >= 0.9.2 && < 0.11
|
||||||
|
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
|
@ -26,7 +26,7 @@ License: BSD-3-Clause
|
|||||||
Group: Development/Libraries/Haskell
|
Group: Development/Libraries/Haskell
|
||||||
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/1.cabal#/%{pkg_name}.cabal
|
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
@ -63,6 +63,13 @@ conforming to [RFC6234](https://tools.ietf.org/html/rfc6234),
|
|||||||
[RFC4231](https://tools.ietf.org/html/rfc4231),
|
[RFC4231](https://tools.ietf.org/html/rfc4231),
|
||||||
[RFC5869](https://tools.ietf.org/html/rfc5869), et al..
|
[RFC5869](https://tools.ietf.org/html/rfc5869), et al..
|
||||||
|
|
||||||
|
=== Packages in the 'cryptohash-*' family
|
||||||
|
|
||||||
|
- <https://hackage.haskell.org/package/cryptohash-md5 cryptohash-md5> -
|
||||||
|
<https://hackage.haskell.org/package/cryptohash-sha1 cryptohash-sha1> -
|
||||||
|
<https://hackage.haskell.org/package/cryptohash-sha256 cryptohash-sha256> -
|
||||||
|
<https://hackage.haskell.org/package/cryptohash-sha512 cryptohash-sha512>
|
||||||
|
|
||||||
=== Relationship to the 'cryptohash' package and its API
|
=== Relationship to the 'cryptohash' package and its API
|
||||||
|
|
||||||
This package has been originally a fork of 'cryptohash-0.11.7' because the
|
This package has been originally a fork of 'cryptohash-0.11.7' because the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user