2017-11-21 06:29:12 +00:00
|
|
|
Name: ocaml-qcheck
|
2019-07-27 10:18:02 +00:00
|
|
|
Version: 0.10
|
2019-08-01 22:06:07 +00:00
|
|
|
Release: 2%{?dist}
|
2017-11-21 06:29:12 +00:00
|
|
|
Summary: QuickCheck inspired property-based testing for OCaml
|
|
|
|
|
|
|
|
License: BSD
|
|
|
|
URL: https://github.com/c-cube/qcheck
|
|
|
|
Source0: https://github.com/c-cube/qcheck/archive/%{version}/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildRequires: ocaml
|
2019-07-27 10:18:02 +00:00
|
|
|
BuildRequires: ocaml-dune
|
2017-11-21 06:29:12 +00:00
|
|
|
BuildRequires: ocaml-ocamlbuild
|
|
|
|
BuildRequires: ocaml-findlib
|
|
|
|
BuildRequires: ocaml-ounit-devel
|
2018-02-05 03:54:44 +00:00
|
|
|
BuildRequires: opam-installer
|
2017-11-21 06:29:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
This module allows to check invariants (properties of some types) over
|
|
|
|
randomly generated instances of the type. It provides combinators for
|
|
|
|
generating instances and printing them.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n qcheck-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
2019-07-27 10:18:02 +00:00
|
|
|
# do not build alcotest support since it is not packaged yet
|
|
|
|
dune build @install -p qcheck,qcheck-core,qcheck-ounit --verbose
|
2017-11-21 06:29:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2018-02-05 03:54:44 +00:00
|
|
|
mkdir -p %{buildroot}%{_libdir}/ocaml
|
2019-07-27 10:18:02 +00:00
|
|
|
dune install --destdir=%{buildroot} qcheck qcheck-core qcheck-ounit
|
2018-02-05 03:54:44 +00:00
|
|
|
|
|
|
|
# These files will be installed using doc and license directives.
|
2019-07-27 10:18:02 +00:00
|
|
|
rm -r %{buildroot}%{_prefix}/doc
|
2017-11-21 06:29:12 +00:00
|
|
|
|
2018-02-05 03:54:44 +00:00
|
|
|
# Makes *.cmxs executable such that they will be stripped.
|
|
|
|
find %{buildroot} -name '*.cmxs' -exec chmod 0755 {} \;
|
2017-11-21 06:29:12 +00:00
|
|
|
|
|
|
|
%check
|
2019-07-27 10:18:02 +00:00
|
|
|
dune runtest --no-buffer --profile release
|
2017-11-21 06:29:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README.adoc CHANGELOG.md
|
|
|
|
%license LICENSE
|
2019-07-27 10:18:02 +00:00
|
|
|
%{_libdir}/ocaml/*
|
|
|
|
%{_libdir}/ocaml/*/*
|
2017-11-21 06:29:12 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2019-07-27 10:18:02 +00:00
|
|
|
%exclude %{_libdir}/ocaml/*/{,*/}*.a
|
|
|
|
%exclude %{_libdir}/ocaml/*/{,*/}*.cmxa
|
|
|
|
%exclude %{_libdir}/ocaml/*/{,*/}*.cmx
|
2017-11-21 06:29:12 +00:00
|
|
|
%endif
|
2019-07-27 10:18:02 +00:00
|
|
|
%exclude %{_libdir}/ocaml/*/{,*/}*.ml
|
|
|
|
%exclude %{_libdir}/ocaml/*/{,*/}*.mli
|
2017-11-21 06:29:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc README.adoc CHANGELOG.md
|
|
|
|
%license LICENSE
|
|
|
|
%ifarch %{ocaml_native_compiler}
|
2019-07-27 10:18:02 +00:00
|
|
|
%{_libdir}/ocaml/*/{,*/}*.a
|
|
|
|
%{_libdir}/ocaml/*/{,*/}*.cmxa
|
|
|
|
%{_libdir}/ocaml/*/{,*/}*.cmx
|
2017-11-21 06:29:12 +00:00
|
|
|
%endif
|
2019-07-27 10:18:02 +00:00
|
|
|
%{_libdir}/ocaml/*/{,*/}*.ml
|
|
|
|
%{_libdir}/ocaml/*/{,*/}*.mli
|
|
|
|
%{_libdir}/ocaml/*/{,*/}*.cma
|
|
|
|
%{_libdir}/ocaml/*/{,*/}*.cmi
|
|
|
|
%{_libdir}/ocaml/*/{,*/}*.cmt
|
|
|
|
%{_libdir}/ocaml/*/{,*/}*.cmti
|
|
|
|
%{_libdir}/ocaml/*/dune-package
|
|
|
|
%{_libdir}/ocaml/*/META
|
|
|
|
%{_libdir}/ocaml/*/opam
|
2017-11-21 06:29:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2019-08-01 22:06:07 +00:00
|
|
|
* Thu Aug 01 2019 Richard W.M. Jones <rjones@redhat.com> - 0.10-2
|
|
|
|
- OCaml 4.08.1 (rc2) rebuild.
|
|
|
|
|
2019-07-27 10:18:02 +00:00
|
|
|
* Sat Jul 27 2019 Andy Li <andy@onthewings.net> - 0.10-1
|
|
|
|
- New upstream release.
|
|
|
|
- Update build system and commands from jbuilder to dune.
|
|
|
|
|
2019-07-25 23:00:01 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-01 16:56:41 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 14:47:48 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-11 18:55:53 +00:00
|
|
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 0.8-5
|
|
|
|
- OCaml 4.07.0 (final) rebuild.
|
|
|
|
|
2018-06-20 20:42:08 +00:00
|
|
|
* Wed Jun 20 2018 Richard W.M. Jones <rjones@redhat.com> - 0.8-4
|
|
|
|
- OCaml 4.07.0-rc1 rebuild.
|
|
|
|
|
2018-05-14 02:22:05 +00:00
|
|
|
* Mon May 14 2018 Andy Li <andy@onthewings.net> - 0.8-3
|
|
|
|
- Rebuilt against ounit.
|
|
|
|
|
2018-02-08 08:57:20 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-02-05 03:54:44 +00:00
|
|
|
* Mon Feb 05 2018 Andy Li <andy@onthewings.net> - 0.8-1
|
|
|
|
- New upstream release. (RHBZ#1541681)
|
|
|
|
- Enable debug package.
|
|
|
|
|
2017-12-02 11:07:59 +00:00
|
|
|
* Sat Dec 02 2017 Richard W.M. Jones <rjones@redhat.com> - 0.7-2
|
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-11-21 06:29:12 +00:00
|
|
|
* Mon Nov 20 2017 Andy Li <andy@onthewings.net> - 0.7-1
|
|
|
|
- Initial RPM release.
|