ocaml-gen/ocaml-gen.spec

115 lines
3.1 KiB
RPMSpec
Raw Normal View History

2017-10-12 01:52:51 +00:00
Name: ocaml-gen
Version: 0.5.1
2019-08-01 22:02:19 +00:00
Release: 9%{?dist}
2017-10-12 01:52:51 +00:00
Summary: Simple, efficient iterators for OCaml
License: BSD
URL: https://github.com/c-cube/gen
Source0: https://github.com/c-cube/gen/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: ocaml
BuildRequires: jbuilder
2017-10-12 01:52:51 +00:00
BuildRequires: ocaml-ocamlbuild
BuildRequires: ocaml-findlib
BuildRequires: opam-installer
2017-10-12 01:52:51 +00:00
%description
Iterators for OCaml, both restartable and consumable.
The implementation keeps a good balance between simplicity and performance.
%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 gen-%{version}
%build
2019-08-01 22:25:48 +00:00
jbuilder build --profile release @install
2017-10-12 01:52:51 +00:00
%install
mkdir -p %{buildroot}%{_libdir}/ocaml
2019-08-01 22:25:48 +00:00
jbuilder install --destdir=%{buildroot} --libdir=%{_libdir}/ocaml
# These files will be installed using doc and license directives.
2019-08-01 22:25:48 +00:00
rm -r %{buildroot}/usr/doc
2017-10-12 01:52:51 +00:00
# Makes *.cmxs executable such that they will be stripped.
find %{buildroot} -name '*.cmxs' -exec chmod 0755 {} \;
2017-10-12 01:52:51 +00:00
%check
jbuilder runtest --no-buffer
2017-10-12 01:52:51 +00:00
%files
2017-11-17 02:54:00 +00:00
%doc README.md CHANGELOG.md
2017-10-12 01:52:51 +00:00
%license LICENSE
%{_libdir}/ocaml/gen
%ifarch %{ocaml_native_compiler}
%exclude %{_libdir}/ocaml/gen/*.a
%exclude %{_libdir}/ocaml/gen/*.cmxa
%exclude %{_libdir}/ocaml/gen/*.cmx
%endif
%exclude %{_libdir}/ocaml/gen/*.ml
%exclude %{_libdir}/ocaml/gen/*.mli
%files devel
%doc README.md CHANGELOG.md
2017-10-12 01:52:51 +00:00
%license LICENSE
%ifarch %{ocaml_native_compiler}
%{_libdir}/ocaml/gen/*.a
%{_libdir}/ocaml/gen/*.cmxa
%{_libdir}/ocaml/gen/*.cmx
%endif
%{_libdir}/ocaml/gen/*.ml
%{_libdir}/ocaml/gen/*.mli
%changelog
2019-08-01 22:02:19 +00:00
* Thu Aug 01 2019 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-9
2019-08-01 22:25:48 +00:00
- Miscellaneous build system updates.
2019-08-01 22:02:19 +00:00
2019-08-01 21:57:19 +00:00
* Thu Aug 01 2019 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-8
- OCaml 4.08.1 (rc2) rebuild.
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2018-07-11 18:13:41 +00:00
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-4
- OCaml 4.07.0 (final) rebuild.
2018-06-20 19:31:22 +00:00
* Wed Jun 20 2018 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-3
- OCaml 4.07.0-rc1 rebuild.
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Feb 05 2018 Andy Li <andy@onthewings.net> - 0.5.1-1
- New upstream version 0.5.1. (RHBZ#1541679)
- Enable debug package.
2017-12-02 11:03:40 +00:00
* Sat Dec 02 2017 Richard W.M. Jones <rjones@redhat.com> - 0.5-2
- OCaml 4.06.0 rebuild.
2017-11-17 02:54:00 +00:00
* Fri Nov 17 2017 Andy Li <andy@onthewings.net> - 0.5-1
- New upstream version 0.5.
2017-10-12 01:52:51 +00:00
* Fri Jul 07 2017 Andy Li <andy@onthewings.net> - 0.4.0.1-1
- Initial RPM release.