Compare commits
No commits in common. "rawhide" and "f32" have entirely different histories.
@ -1,6 +1,3 @@
|
|||||||
# ocaml-fieldslib
|
# ocaml-fieldslib
|
||||||
|
|
||||||
The [fieldslib package](https://github.com/janestreet/fieldslib) contains an
|
The ocaml-fieldslib package
|
||||||
OCaml syntax extension to define first class values representing record
|
|
||||||
fields, to get and set record fields, iterate and fold over all fields of a
|
|
||||||
record and create new record values.
|
|
@ -1,5 +1,3 @@
|
|||||||
%undefine _package_note_flags
|
|
||||||
|
|
||||||
%ifarch %{ocaml_native_compiler}
|
%ifarch %{ocaml_native_compiler}
|
||||||
# The only source file for this package consists of a single "include" line.
|
# The only source file for this package consists of a single "include" line.
|
||||||
# It exports some private functions from the library in ocaml-base. Although
|
# It exports some private functions from the library in ocaml-base. Although
|
||||||
@ -18,17 +16,18 @@
|
|||||||
%global srcname fieldslib
|
%global srcname fieldslib
|
||||||
|
|
||||||
Name: ocaml-%{srcname}
|
Name: ocaml-%{srcname}
|
||||||
Version: 0.15.0
|
Version: 0.13.0
|
||||||
Release: 9%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: OCaml record fields as first class values
|
Summary: OCaml record fields as first class values
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/janestreet/%{srcname}
|
URL: https://github.com/janestreet/%{srcname}
|
||||||
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: ocaml >= 4.08.0
|
BuildRequires: ocaml >= 4.04.2
|
||||||
BuildRequires: ocaml-base-devel >= 0.15
|
BuildRequires: (ocaml-base-devel >= 0.13 and ocaml-base-devel < 0.14)
|
||||||
BuildRequires: ocaml-dune >= 2.0.0
|
BuildRequires: ocaml-dune >= 1.5.1
|
||||||
|
BuildRequires: ocaml-odoc
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package contains an OCaml syntax extension to define first class
|
This package contains an OCaml syntax extension to define first class
|
||||||
@ -48,92 +47,49 @@ developing applications that use %{name}.
|
|||||||
%autosetup -n %{srcname}-%{version}
|
%autosetup -n %{srcname}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%dune_build
|
dune build %{?_smp_mflags}
|
||||||
|
dune build %{?_smp_mflags} @doc
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%dune_install
|
dune install --destdir=%{buildroot}
|
||||||
|
|
||||||
%check
|
# We do not want the dune markers
|
||||||
%dune_check
|
find _build/default/_doc/_html -name .dune-keep -delete
|
||||||
|
|
||||||
%files -f .ofiles
|
# We do not want the ml files
|
||||||
|
find %{buildroot}%{_libdir}/ocaml -name \*.ml -delete
|
||||||
|
|
||||||
|
# We install the documentation with the doc macro
|
||||||
|
rm -fr %{buildroot}%{_prefix}/doc
|
||||||
|
|
||||||
|
%ifarch %{ocaml_native_compiler}
|
||||||
|
# Add missing executable bits
|
||||||
|
find %{buildroot}%{_libdir}/ocaml -name \*.cmxs -exec chmod a+x {} \+
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files
|
||||||
%doc CHANGES.md
|
%doc CHANGES.md
|
||||||
%license LICENSE.md
|
%license LICENSE.md
|
||||||
|
%dir %{_libdir}/ocaml/%{srcname}/
|
||||||
|
%{_libdir}/ocaml/%{srcname}/META
|
||||||
|
%{_libdir}/ocaml/%{srcname}/*.cma
|
||||||
|
%{_libdir}/ocaml/%{srcname}/*.cmi
|
||||||
|
%ifarch %{ocaml_native_compiler}
|
||||||
|
%{_libdir}/ocaml/%{srcname}/*.cmxs
|
||||||
|
%endif
|
||||||
|
|
||||||
%files devel -f .ofiles-devel
|
%files devel
|
||||||
|
%doc _build/default/_doc/_html/*
|
||||||
|
%{_libdir}/ocaml/%{srcname}/dune-package
|
||||||
|
%{_libdir}/ocaml/%{srcname}/opam
|
||||||
|
%ifarch %{ocaml_native_compiler}
|
||||||
|
%{_libdir}/ocaml/%{srcname}/*.a
|
||||||
|
%{_libdir}/ocaml/%{srcname}/*.cmx
|
||||||
|
%{_libdir}/ocaml/%{srcname}/*.cmxa
|
||||||
|
%endif
|
||||||
|
%{_libdir}/ocaml/%{srcname}/*.cmt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 0.15.0-9
|
|
||||||
- Rebuild OCaml packages for F38
|
|
||||||
|
|
||||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Oct 31 2022 Jerry James <loganjerry@gmail.com> - 0.15.0-7
|
|
||||||
- Rebuild for ocaml-base 0.15.1
|
|
||||||
|
|
||||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 20 2022 Jerry James <loganjerry@gmail.com> - 0.15.0-5
|
|
||||||
- Use new OCaml macros
|
|
||||||
|
|
||||||
* Sun Jun 19 2022 Richard W.M. Jones <rjones@redhat.com> - 0.15.0-5
|
|
||||||
- OCaml 4.14.0 rebuild
|
|
||||||
|
|
||||||
* Mon Feb 28 2022 Jerry James <loganjerry@gmail.com> - 0.15.0-4
|
|
||||||
- Version 0.15.0 rerelease
|
|
||||||
|
|
||||||
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 0.15.0-3
|
|
||||||
- OCaml 4.13.1 rebuild to remove package notes
|
|
||||||
|
|
||||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 30 2021 Jerry James <loganjerry@gmail.com> - 0.15.0-1
|
|
||||||
- Version 0.15.0
|
|
||||||
|
|
||||||
* Mon Oct 04 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-10
|
|
||||||
- OCaml 4.13.1 build
|
|
||||||
|
|
||||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jul 19 2021 Jerry James <loganjerry@gmail.com> - 0.14.0-8
|
|
||||||
- There is no circular dependency, so always builds docs
|
|
||||||
|
|
||||||
* Mon Mar 1 17:38:49 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-8
|
|
||||||
- OCaml 4.12.0 build
|
|
||||||
- Make the ocaml-odoc dependency conditional.
|
|
||||||
|
|
||||||
* Sat Feb 20 2021 Jerry James <loganjerry@gmail.com> - 0.14.0-7
|
|
||||||
- Bump and rebuild
|
|
||||||
|
|
||||||
* Sat Feb 20 2021 Jerry James <loganjerry@gmail.com> - 0.14.0-6
|
|
||||||
- Rebuild for ocaml-base 0.14.1
|
|
||||||
|
|
||||||
* Wed Feb 3 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-5
|
|
||||||
- Bump and rebuild for updated ocaml Dynlink dependency.
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-3
|
|
||||||
- OCaml 4.11.1 rebuild
|
|
||||||
|
|
||||||
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-2
|
|
||||||
- OCaml 4.11.0 rebuild
|
|
||||||
|
|
||||||
* Wed Aug 5 2020 Jerry James <loganjerry@gmail.com> - 0.14.0-1
|
|
||||||
- Version 0.14.0
|
|
||||||
|
|
||||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.0-4
|
|
||||||
- Second attempt - Rebuilt for
|
|
||||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 5 2020 Jerry James <loganjerry@gmail.com> - 0.13.0-2
|
* Fri Jun 5 2020 Jerry James <loganjerry@gmail.com> - 0.13.0-2
|
||||||
- Drop CONTRIBUTING.md
|
- Drop CONTRIBUTING.md
|
||||||
- Use boolean dependencies to more fully reflect upstream version dependencies
|
- Use boolean dependencies to more fully reflect upstream version dependencies
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (fieldslib-0.15.0.tar.gz) = 75a2802a87b16ed741dc1e845b728eb9f53343b1cec37e09cad690b3af5e4f04439f406df52fe46f0672662e2de28bdc0c6eea78a82f1883ab2a852b9d8343d8
|
SHA512 (fieldslib-0.13.0.tar.gz) = a216d94030350176937dad54f8b4bd4c5a24546ec8a3113d370735f338cab7e0e50fdeeed4e7032d73f57faad4e86d0fede049a8ab4755a7b44be6aaad420aa8
|
||||||
|
Loading…
Reference in New Issue
Block a user