2008-02-16 00:27:58 +00:00
|
|
|
%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
|
|
|
%define debug_package %{nil}
|
|
|
|
|
|
|
|
Name: ocaml-cryptokit
|
2011-01-05 19:14:52 +00:00
|
|
|
Version: 1.4
|
2011-01-05 19:35:06 +00:00
|
|
|
Release: 2%{?dist}
|
2008-02-16 00:27:58 +00:00
|
|
|
Summary: OCaml library of cryptographic and hash functions
|
|
|
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPLv2 with exceptions
|
2011-01-05 19:14:52 +00:00
|
|
|
URL: http://forge.ocamlcore.org/projects/cryptokit/
|
|
|
|
Source0: https://forge.ocamlcore.org/frs/download.php/460/cryptokit-%{version}.tar.gz
|
2008-02-16 00:27:58 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2009-04-16 09:06:03 +00:00
|
|
|
ExcludeArch: sparc64 s390 s390x
|
2008-02-16 00:27:58 +00:00
|
|
|
|
2011-01-05 19:35:06 +00:00
|
|
|
BuildRequires: ocaml
|
|
|
|
BuildRequires: ocaml-ocamldoc
|
|
|
|
BuildRequires: zlib-devel
|
|
|
|
BuildRequires: chrpath
|
2008-02-16 00:27:58 +00:00
|
|
|
|
|
|
|
%define _use_internal_dependency_generator 0
|
|
|
|
%define __find_requires /usr/lib/rpm/ocaml-find-requires.sh
|
|
|
|
%define __find_provides /usr/lib/rpm/ocaml-find-provides.sh
|
|
|
|
|
|
|
|
%description
|
|
|
|
The Cryptokit library for Objective Caml provides a variety of
|
|
|
|
cryptographic primitives that can be used to implement cryptographic
|
|
|
|
protocols in security-sensitive applications. The primitives provided
|
|
|
|
include:
|
|
|
|
|
|
|
|
* Symmetric-key cryptography: AES, DES, Triple-DES, ARCfour, in ECB,
|
|
|
|
CBC, CFB and OFB modes.
|
|
|
|
* Public-key cryptography: RSA encryption and signature; Diffie-Hellman
|
|
|
|
key agreement.
|
|
|
|
* Hash functions and MACs: SHA-1, SHA-256, RIPEMD-160, MD5, and MACs
|
|
|
|
based on AES and DES.
|
|
|
|
* Random number generation.
|
|
|
|
* Encodings and compression: base 64, hexadecimal, Zlib compression.
|
|
|
|
|
|
|
|
Additional ciphers and hashes can easily be used in conjunction with
|
|
|
|
the library. In particular, basic mechanisms such as chaining modes,
|
|
|
|
output buffering, and padding are provided by generic classes that can
|
|
|
|
easily be composed with user-provided ciphers. More generally, the
|
|
|
|
library promotes a "Lego"-like style of constructing and composing
|
|
|
|
transformations over character streams.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n cryptokit-%{version}
|
2011-01-05 19:14:52 +00:00
|
|
|
./configure --destdir $RPM_BUILD_ROOT
|
2008-02-16 00:27:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%build
|
2011-01-05 19:14:52 +00:00
|
|
|
# Some sort of circular dependency, so sometimes the first make fails.
|
|
|
|
# Just run make twice.
|
|
|
|
make ||:
|
|
|
|
make
|
2008-02-16 00:27:58 +00:00
|
|
|
|
2011-01-05 19:14:52 +00:00
|
|
|
chrpath --delete _build/src/dllcryptokit.so
|
|
|
|
strip _build/src/dllcryptokit.so
|
2008-02-16 00:27:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
# This opens /dev/random but never reads from it.
|
|
|
|
make test
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2011-01-05 19:14:52 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/ocaml/stublibs
|
|
|
|
export DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
export OCAMLFIND_DESTDIR=$RPM_BUILD_ROOT/%{_libdir}/ocaml
|
|
|
|
make install
|
2008-02-16 00:27:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2011-01-05 19:14:52 +00:00
|
|
|
%doc LICENSE.txt
|
2008-09-02 13:02:46 +00:00
|
|
|
%{_libdir}/ocaml/cryptokit
|
2008-02-16 00:27:58 +00:00
|
|
|
%if %opt
|
2008-09-02 13:02:46 +00:00
|
|
|
%exclude %{_libdir}/ocaml/cryptokit/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/cryptokit/*.cmxa
|
2011-01-05 19:14:52 +00:00
|
|
|
#%exclude %{_libdir}/ocaml/cryptokit/*.cmx
|
2008-02-16 00:27:58 +00:00
|
|
|
%endif
|
2008-09-02 13:02:46 +00:00
|
|
|
%exclude %{_libdir}/ocaml/cryptokit/*.mli
|
2011-01-05 19:14:52 +00:00
|
|
|
%{_libdir}/ocaml/stublibs/*.so*
|
2008-02-16 00:27:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2011-01-05 19:14:52 +00:00
|
|
|
%doc README.txt LICENSE.txt Changes
|
2008-02-16 00:27:58 +00:00
|
|
|
%if %opt
|
2008-09-02 13:02:46 +00:00
|
|
|
%{_libdir}/ocaml/cryptokit/*.a
|
|
|
|
%{_libdir}/ocaml/cryptokit/*.cmxa
|
2011-01-05 19:14:52 +00:00
|
|
|
#%{_libdir}/ocaml/cryptokit/*.cmx
|
2008-02-16 00:27:58 +00:00
|
|
|
%endif
|
2008-09-02 13:02:46 +00:00
|
|
|
%{_libdir}/ocaml/cryptokit/*.mli
|
2008-02-16 00:27:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2011-01-05 19:35:06 +00:00
|
|
|
* Wed Jan 5 2011 Richard W.M. Jones <rjones@redhat.com> - 1.4-2
|
2011-01-05 19:14:52 +00:00
|
|
|
- New upstream version 1.4.
|
|
|
|
- Project has moved to a new location.
|
|
|
|
- META file is included in the project.
|
|
|
|
- Rebuild for OCaml 3.12.0.
|
|
|
|
- Build system changed.
|
|
|
|
- *.cmx files are no longer installed during build.
|
2011-01-05 19:35:06 +00:00
|
|
|
- Missing BR ocamldoc.
|
2011-01-05 19:14:52 +00:00
|
|
|
|
2009-12-30 13:48:48 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 1.3-11
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-07-25 19:54:10 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-22 21:52:46 +00:00
|
|
|
* Fri May 22 2009 Richard W.M. Jones <rjones@redhat.com> - 1.3-9
|
|
|
|
- Rebuild for OCaml 3.11.1.
|
|
|
|
|
2009-04-16 09:06:03 +00:00
|
|
|
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x@lists.fedoraproject.org>
|
|
|
|
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
|
|
|
|
(added sparc64 per request from the sparc maintainer)
|
|
|
|
|
2009-02-26 06:56:07 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 16:37:30 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 1.3-7
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 10:58:52 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 1.3-6
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-09-02 13:02:46 +00:00
|
|
|
* Tue Sep 2 2008 Richard W.M. Jones <rjones@redhat.com> - 1.3-5
|
|
|
|
- Install in cryptokit subdirectory.
|
|
|
|
- Include a META file (from Debian) (resolves rhbz#460844).
|
|
|
|
|
2008-04-23 10:26:03 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 1.3-4
|
|
|
|
- Rebuild for OCaml 3.10.2
|
|
|
|
|
2008-02-29 20:27:56 +00:00
|
|
|
* Fri Feb 29 2008 David Woodhouse <dwmw2@infradead.org> 1.3-3
|
|
|
|
- Build on PPC64
|
|
|
|
|
2008-02-16 00:27:58 +00:00
|
|
|
* Fri Feb 15 2008 Richard W.M. Jones <rjones@redhat.com> - 1.3-2
|
|
|
|
- Don't duplicate the README file in both packages.
|
|
|
|
- Change the license to LGPLv2 with exceptions.
|
|
|
|
|
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 1.3-1
|
|
|
|
- Initial RPM release.
|