Compare commits

...

12 Commits
f35 ... rawhide

Author SHA1 Message Date
Jerry James
36d022dcde Verified that License tag is valid SPDX. 2023-02-15 11:48:15 -07:00
Richard W.M. Jones
684979dc77 Rebuild OCaml packages for F38 2023-01-24 14:37:36 +00:00
Fedora Release Engineering
fe30af4dc0 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-19 22:07:55 +00:00
Jerry James
75687ae132 Rebuild for ocaml-base 0.15.1. 2022-11-01 10:14:01 -06:00
Fedora Release Engineering
4e1d979414 Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-22 01:13:32 +00:00
Jerry James
df22af03ed Use new OCaml macros. 2022-07-20 15:22:05 -06:00
Richard W.M. Jones
7cb613890f OCaml 4.14.0 rebuild 2022-06-19 13:16:37 +01:00
Jerry James
c0dbb90551 Version 0.15.0 rerelease. 2022-02-28 13:31:42 -07:00
Richard W.M. Jones
d1b0bb2a81 OCaml 4.13.1 rebuild to remove package notes 2022-02-04 20:04:12 +00:00
Fedora Release Engineering
240036451d - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-20 21:43:49 +00:00
Jerry James
a2bc472c51 Version 0.15.0. 2021-11-30 10:28:58 -07:00
Richard W.M. Jones
b87cd3afad OCaml 4.13.1 build 2021-10-04 22:40:06 +01:00
3 changed files with 49 additions and 37 deletions

View File

@ -1,3 +1,6 @@
# ocaml-fieldslib
The ocaml-fieldslib package
The [fieldslib package](https://github.com/janestreet/fieldslib) contains an
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.

View File

@ -1,3 +1,5 @@
%undefine _package_note_flags
%ifarch %{ocaml_native_compiler}
# 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
@ -16,7 +18,7 @@
%global srcname fieldslib
Name: ocaml-%{srcname}
Version: 0.14.0
Version: 0.15.0
Release: 9%{?dist}
Summary: OCaml record fields as first class values
@ -24,10 +26,9 @@ License: MIT
URL: https://github.com/janestreet/%{srcname}
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
BuildRequires: ocaml >= 4.04.2
BuildRequires: ocaml-base-devel >= 0.14
BuildRequires: ocaml >= 4.08.0
BuildRequires: ocaml-base-devel >= 0.15
BuildRequires: ocaml-dune >= 2.0.0
BuildRequires: ocaml-odoc
%description
This package contains an OCaml syntax extension to define first class
@ -47,46 +48,54 @@ developing applications that use %{name}.
%autosetup -n %{srcname}-%{version}
%build
dune build %{?_smp_mflags}
dune build %{?_smp_mflags} @doc
%dune_build
%install
dune install --destdir=%{buildroot}
%dune_install
%if %{with doc}
# We do not want the dune markers
find _build/default/_doc/_html -name .dune-keep -delete
%endif
%check
%dune_check
# 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
%files
%files -f .ofiles
%doc CHANGES.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
%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
%files devel -f .ofiles-devel
%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

View File

@ -1 +1 @@
SHA512 (fieldslib-0.14.0.tar.gz) = 245987817585222060c389a632fa229fa3c928090548a0b759e3b1eb06c868d06c0593b01bc41f453c209854a15115fa7650cc36888036f9e305cf2b79a5004c
SHA512 (fieldslib-0.15.0.tar.gz) = 75a2802a87b16ed741dc1e845b728eb9f53343b1cec37e09cad690b3af5e4f04439f406df52fe46f0672662e2de28bdc0c6eea78a82f1883ab2a852b9d8343d8