package created by autospec [release 1.6.4.1-1mamba;Mon Apr 13 2015]

This commit is contained in:
Davide Madrisan 2024-01-05 22:43:44 +01:00
parent 785c610070
commit 5c4bbb92c6
2 changed files with 68 additions and 0 deletions

View File

@ -1,2 +1,6 @@
# ghc-SHA # ghc-SHA
This library implements the SHA suite of message digest functions, according to NIST FIPS 180-2 (with the SHA-224 addendum), as well as the SHA-based HMAC routines.
The functions have been tested against most of the NIST and RFC test vectors for the various functions.
While some attention has been paid to performance, these do not presently reach the speed of well-tuned libraries, like OpenSSL.

64
ghc-SHA.spec Normal file
View File

@ -0,0 +1,64 @@
%define ghc_ver %(ghc --numeric-version)
%define pkgname %(echo %name | sed "s|^ghc-||")
Name: ghc-SHA
Version: 1.6.4.1
Release: 1mamba
Summary: GHC library: Implementations of the SHA suite of message digest functions
Group: Development/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Davide Madrisan <davide.madrisan@gmail.com>
URL: http://hackage.haskell.org/package/%{pkgname}
Source: http://hackage.haskell.org/package/SHA-%{version}/SHA-%{version}.tar.gz
License: BSD
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: ghc
BuildRequires: hscolour
Requires: ghc = %{ghc_ver}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
This library implements the SHA suite of message digest functions, according to NIST FIPS 180-2 (with the SHA-224 addendum), as well as the SHA-based HMAC routines.
The functions have been tested against most of the NIST and RFC test vectors for the various functions.
While some attention has been paid to performance, these do not presently reach the speed of well-tuned libraries, like OpenSSL.
%prep
%setup -q -n SHA-%{version}
%build
runghc Setup.hs configure -v2 \
--prefix=%{_prefix} \
--libdir=%{_libdir} \
--libexecdir=%{_libexecdir} \
--docdir=%{_docdir}/%{name}-%{version}
runghc Setup.hs build
runghc Setup.hs haddock --executable --html-location=URL --hyperlink-source
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
runghc Setup.hs copy --destdir=%{buildroot}
runghc Setup.hs register \
--gen-pkg-config="%{buildroot}%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf"
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post
ghc-pkg register %{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}/%{pkgname}-%{version}.conf &>/dev/null || :
%preun
ghc-pkg unregister %{pkgname}-%{version} &>/dev/null || :
%files
%defattr(-,root,root)
%{_libdir}/ghc-%{ghc_ver}/%{pkgname}-%{version}
%dir %{_docdir}/%{name}-%{version}
%{_docdir}/%{name}-%{version}/LICENSE
%{_docdir}/%{name}-%{version}/html
%changelog
* Mon Apr 13 2015 Davide Madrisan <davide.madrisan@gmail.com> 1.6.4.1-1mamba
- package created by autospec