From 5c4bbb92c6ea04d5883c398be6aac953c769f95a Mon Sep 17 00:00:00 2001 From: Davide Madrisan Date: Fri, 5 Jan 2024 22:43:44 +0100 Subject: [PATCH] package created by autospec [release 1.6.4.1-1mamba;Mon Apr 13 2015] --- README.md | 4 ++++ ghc-SHA.spec | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 ghc-SHA.spec diff --git a/README.md b/README.md index db707dd..dedd307 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # 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. + diff --git a/ghc-SHA.spec b/ghc-SHA.spec new file mode 100644 index 0000000..7640cf1 --- /dev/null +++ b/ghc-SHA.spec @@ -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 +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 1.6.4.1-1mamba +- package created by autospec