ocaml-ppx-sexp-conv/ocaml-ppx-sexp-conv.spec

192 lines
5.7 KiB
RPMSpec
Raw Normal View History

%undefine _package_note_flags
2020-06-11 16:48:33 +00:00
%ifnarch %{ocaml_native_compiler}
%global debug_package %{nil}
%endif
# Break a circular dependency on ocaml-odoc
%bcond_with doc
2020-08-06 23:01:25 +00:00
# This package is now a transitive dependency of ocaml-ppx-inline-test, so using
# it to test this package creates a circular dependency.
%bcond_with tests
2020-06-11 16:48:33 +00:00
%global srcname ppx-sexp-conv
%global upname ppx_sexp_conv
Name: ocaml-%{srcname}
2021-11-30 18:49:29 +00:00
Version: 0.15.0
Release: 4%{?dist}
2020-06-11 16:48:33 +00:00
Summary: Generate S-expression conversion functions from type definitions
License: MIT
URL: https://github.com/janestreet/%{upname}
Source0: %{url}/archive/v%{version}/%{upname}-%{version}.tar.gz
2021-11-30 18:49:29 +00:00
BuildRequires: ocaml >= 4.08.0
BuildRequires: ocaml-base-devel >= 0.15
2020-08-06 23:01:25 +00:00
BuildRequires: ocaml-dune >= 2.0.0
2021-11-30 18:49:29 +00:00
BuildRequires: ocaml-ppxlib-devel >= 0.23.0
BuildRequires: ocaml-sexplib0-devel >= 0.15
2020-08-06 23:01:25 +00:00
%if %{with doc}
BuildRequires: ocaml-odoc
%endif
2020-08-06 23:01:25 +00:00
%if %{with tests}
BuildRequires: ocaml-ppx-inline-test-devel
%endif
2020-06-11 16:48:33 +00:00
%description
Ppx_sexp_conv is a PPX syntax extension that generates code for
converting OCaml types to and from s-expressions, as defined in the
sexplib0 library.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: ocaml-base-devel%{?_isa}
Requires: ocaml-ppxlib-devel%{?_isa}
2021-12-30 23:40:22 +00:00
Requires: ocaml-sexplib0-devel%{?_isa}
2020-06-11 16:48:33 +00:00
%description devel
The %{name}-devel package contains libraries and signature
files for developing applications that use %{name}.
%prep
%autosetup -n %{upname}-%{version}
%build
2021-11-30 18:49:29 +00:00
dune build %{?_smp_mflags} --verbose --profile release
%if %{with doc}
2020-06-11 16:48:33 +00:00
dune build %{?_smp_mflags} @doc
%endif
2020-06-11 16:48:33 +00:00
%install
dune install --destdir=%{buildroot}
%if %{with doc}
2020-06-11 16:48:33 +00:00
# We do not want the dune markers
find _build/default/_doc/_html -name .dune-keep -delete
%endif
2020-06-11 16:48:33 +00:00
# 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
2020-08-06 23:01:25 +00:00
%if %{with tests}
2020-06-11 16:48:33 +00:00
%check
2021-12-30 23:40:22 +00:00
dune runtest --profile release
2020-08-06 23:01:25 +00:00
%endif
2020-06-11 16:48:33 +00:00
%files
%doc CHANGES.md README.org
%license LICENSE.md
%dir %{_libdir}/ocaml/%{upname}/
%dir %{_libdir}/ocaml/%{upname}/expander/
%dir %{_libdir}/ocaml/%{upname}/runtime-lib/
%{_libdir}/ocaml/%{upname}/META
%{_libdir}/ocaml/%{upname}/*.cma
%{_libdir}/ocaml/%{upname}/*.cmi
%{_libdir}/ocaml/%{upname}/*/*.cma
%{_libdir}/ocaml/%{upname}/*/*.cmi
%ifarch %{ocaml_native_compiler}
%{_libdir}/ocaml/%{upname}/*.cmxs
%{_libdir}/ocaml/%{upname}/*/*.cmxs
%endif
%files devel
%if %{with doc}
2020-06-11 16:48:33 +00:00
%doc _build/default/_doc/_html/*
%endif
2020-06-11 16:48:33 +00:00
%{_libdir}/ocaml/%{upname}/dune-package
%{_libdir}/ocaml/%{upname}/opam
%ifarch %{ocaml_native_compiler}
%{_libdir}/ocaml/%{upname}/*.a
%{_libdir}/ocaml/%{upname}/*.cmx
%{_libdir}/ocaml/%{upname}/*.cmxa
%{_libdir}/ocaml/%{upname}/*/*.a
%{_libdir}/ocaml/%{upname}/*/*.cmx
%{_libdir}/ocaml/%{upname}/*/*.cmxa
%endif
%{_libdir}/ocaml/%{upname}/*.cmt
%{_libdir}/ocaml/%{upname}/*.cmti
%{_libdir}/ocaml/%{upname}/*.mli
%{_libdir}/ocaml/%{upname}/*/*.cmt
%{_libdir}/ocaml/%{upname}/*/*.cmti
%{_libdir}/ocaml/%{upname}/*/*.mli
%changelog
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 0.15.0-4
- OCaml 4.13.1 rebuild to remove package notes
* Thu Feb 3 2022 Jerry James <loganjerry@gmail.com> - 0.15.0-3
- Conditionally build docs to avoid circular dependency on odoc
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
2021-12-30 23:40:22 +00:00
* Mon Dec 27 2021 Jerry James <loganjerry@gmail.com> - 0.15.0-2
- Rebuild for ocaml-ppxlib 0.24.0
2021-11-30 18:49:29 +00:00
* Tue Nov 30 2021 Jerry James <loganjerry@gmail.com> - 0.15.0-1
- Version 0.15.0
2021-10-05 08:52:16 +00:00
* Tue Oct 05 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.3-7
- OCaml 4.13.1 build
2021-09-01 21:59:38 +00:00
* Wed Sep 1 2021 Jerry James <loganjerry@gmail.com> - 0.14.3-6
- Rebuild for ocaml-ppxlib 0.23.0
2021-07-29 23:01:34 +00:00
* Thu Jul 29 2021 Jerry James <loganjerry@gmail.com> - 0.14.3-5
- Rebuild for ocaml-ppxlib 0.22.2
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Jun 22 2021 Jerry James <loganjerry@gmail.com> - 0.14.3-3
- Rebuild for ocaml-ppxlib 0.22.1
- There is no circular dependency, so build with ocaml-odoc always
2021-03-01 17:34:00 +00:00
* Mon Mar 1 17:33:59 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.3-2
- OCaml 4.12.0 build
- Make ocaml-odoc dependency conditional.
2021-03-01 17:34:00 +00:00
2021-02-21 04:41:19 +00:00
* Sat Feb 20 2021 Jerry James <loganjerry@gmail.com> - 0.14.3-1
- Version 0.14.3
* Tue Feb 2 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.1-3
- Bump and rebuild for updated ocaml Dynlink dependency.
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
2020-12-08 21:30:58 +00:00
* Mon Dec 7 2020 Jerry James <loganjerry@gmail.com> - 0.14.1-1
- Version 0.14.1
2020-09-01 23:11:35 +00:00
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-4
- OCaml 4.11.1 rebuild
2020-08-22 05:38:18 +00:00
* Sat Aug 22 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-3
- Bump and rebuild.
2020-08-21 19:05:34 +00:00
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-2
- OCaml 4.11.0 rebuild
2020-08-06 23:01:25 +00:00
* Thu Aug 6 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
2020-06-11 16:48:33 +00:00
* Sun Jun 7 2020 Jerry James <loganjerry@gmail.com> - 0.13.0-2
- Drop CONTRIBUTING.md
- Use boolean dependencies to more fully reflect upstream version dependencies
* Thu May 7 2020 Jerry James <loganjerry@gmail.com> - 0.13.0-1
- Initial RPM