Use new OCaml macros.
This commit is contained in:
parent
8b2046012a
commit
4e997fddbf
@ -1,32 +1,23 @@
|
|||||||
%undefine _package_note_flags
|
%undefine _package_note_flags
|
||||||
|
|
||||||
%ifnarch %{ocaml_native_compiler}
|
%ifnarch %{ocaml_native_compiler}
|
||||||
%global debug_package %{nil}
|
%global debug_package %{nil}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Break a circular dependency on ocaml-odoc
|
Name: ocaml-ppx-enumerate
|
||||||
%bcond_with doc
|
|
||||||
|
|
||||||
%global srcname ppx-enumerate
|
|
||||||
%global upname ppx_enumerate
|
|
||||||
|
|
||||||
Name: ocaml-%{srcname}
|
|
||||||
Version: 0.15.0
|
Version: 0.15.0
|
||||||
Release: 6%{?dist}
|
Release: 6%{?dist}
|
||||||
Summary: Generate a list containing all values of a finite type
|
Summary: Generate a list containing all values of a finite type
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/janestreet/%{upname}
|
URL: https://github.com/janestreet/ppx_enumerate
|
||||||
Source0: %{url}/archive/v%{version}/%{upname}-%{version}.tar.gz
|
Source0: %{url}/archive/v%{version}/ppx_enumerate-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: ocaml >= 4.08.0
|
BuildRequires: ocaml >= 4.08.0
|
||||||
BuildRequires: ocaml-base-devel >= 0.15
|
BuildRequires: ocaml-base-devel >= 0.15
|
||||||
BuildRequires: ocaml-dune >= 2.0.0
|
BuildRequires: ocaml-dune >= 2.0.0
|
||||||
BuildRequires: ocaml-ppxlib-devel >= 0.23.0
|
BuildRequires: ocaml-ppxlib-devel >= 0.23.0
|
||||||
|
|
||||||
%if %{with doc}
|
|
||||||
BuildRequires: ocaml-odoc
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Ppx_enumerate is a ppx rewriter which generates a definition for the
|
Ppx_enumerate is a ppx rewriter which generates a definition for the
|
||||||
list of all values of a type (for a type which has only finitely many
|
list of all values of a type (for a type which has only finitely many
|
||||||
@ -43,66 +34,27 @@ The %{name}-devel package contains libraries and signature
|
|||||||
files for developing applications that use %{name}.
|
files for developing applications that use %{name}.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{upname}-%{version}
|
%autosetup -n ppx_enumerate-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
dune build %{?_smp_mflags} --verbose --release
|
%dune_build
|
||||||
%if %{with doc}
|
|
||||||
dune build %{?_smp_mflags} @doc
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%install
|
%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
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
dune runtest --release
|
%dune_check
|
||||||
|
|
||||||
%files
|
%files -f .ofiles
|
||||||
%doc CHANGES.md README.md
|
%doc CHANGES.md README.md
|
||||||
%license LICENSE.md
|
%license LICENSE.md
|
||||||
%dir %{_libdir}/ocaml/%{upname}/
|
|
||||||
%dir %{_libdir}/ocaml/%{upname}/runtime-lib/
|
|
||||||
%{_libdir}/ocaml/%{upname}/META
|
|
||||||
%{_libdir}/ocaml/%{upname}/*.cma
|
|
||||||
%{_libdir}/ocaml/%{upname}/*.cmi
|
|
||||||
%{_libdir}/ocaml/%{upname}/runtime-lib/*.cma
|
|
||||||
%{_libdir}/ocaml/%{upname}/runtime-lib/*.cmi
|
|
||||||
%ifarch %{ocaml_native_compiler}
|
|
||||||
%{_libdir}/ocaml/%{upname}/*.cmxs
|
|
||||||
%{_libdir}/ocaml/%{upname}/runtime-lib/*.cmxs
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files devel
|
%files devel -f .ofiles-devel
|
||||||
%if %{with doc}
|
|
||||||
%doc _build/default/_doc/_html/*
|
|
||||||
%endif
|
|
||||||
%{_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}/runtime-lib/*.a
|
|
||||||
%{_libdir}/ocaml/%{upname}/runtime-lib/*.cmx
|
|
||||||
%{_libdir}/ocaml/%{upname}/runtime-lib/*.cmxa
|
|
||||||
%endif
|
|
||||||
%{_libdir}/ocaml/%{upname}/*.cmt
|
|
||||||
%{_libdir}/ocaml/%{upname}/*.cmti
|
|
||||||
%{_libdir}/ocaml/%{upname}/*.mli
|
|
||||||
%{_libdir}/ocaml/%{upname}/runtime-lib/*.cmt
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 20 2022 Jerry James <loganjerry@gmail.com> - 0.15.0-6
|
||||||
|
- Use new OCaml macros
|
||||||
|
|
||||||
* Sat Jun 18 2022 Richard W.M. Jones <rjones@redhat.com> - 0.15.0-6
|
* Sat Jun 18 2022 Richard W.M. Jones <rjones@redhat.com> - 0.15.0-6
|
||||||
- OCaml 4.14.0 rebuild
|
- OCaml 4.14.0 rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user