Use new OCaml macros.
This commit is contained in:
parent
a59f598c97
commit
5168ad31c3
@ -1,22 +1,17 @@
|
||||
%undefine _package_note_flags
|
||||
|
||||
%ifnarch %{ocaml_native_compiler}
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
# Break a circular dependency on ocaml-odoc
|
||||
%bcond_with doc
|
||||
|
||||
%global srcname ppx-hash
|
||||
%global upname ppx_hash
|
||||
|
||||
Name: ocaml-%{srcname}
|
||||
Name: ocaml-ppx-hash
|
||||
Version: 0.15.0
|
||||
Release: 6%{?dist}
|
||||
Summary: Generate hash functions from type expressions and definitions
|
||||
|
||||
License: MIT
|
||||
URL: https://github.com/janestreet/%{upname}
|
||||
Source0: %{url}/archive/v%{version}/%{upname}-%{version}.tar.gz
|
||||
URL: https://github.com/janestreet/ppx_hash
|
||||
Source0: %{url}/archive/v%{version}/ppx_hash-%{version}.tar.gz
|
||||
|
||||
BuildRequires: ocaml >= 4.08.0
|
||||
BuildRequires: ocaml-base-devel >= 0.15
|
||||
@ -25,10 +20,6 @@ BuildRequires: ocaml-ppx-compare-devel >= 0.15
|
||||
BuildRequires: ocaml-ppx-sexp-conv-devel >= 0.15
|
||||
BuildRequires: ocaml-ppxlib-devel >= 0.23.0
|
||||
|
||||
%if %{with doc}
|
||||
BuildRequires: ocaml-odoc
|
||||
%endif
|
||||
|
||||
%description
|
||||
Ppx_hash is a ppx rewriter that generates hash functions from type
|
||||
expressions and definitions.
|
||||
@ -39,75 +30,35 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: ocaml-base-devel%{?_isa}
|
||||
Requires: ocaml-ppx-compare-devel%{?_isa}
|
||||
Requires: ocaml-ppx-sexp-conv-devel%{?_isa}
|
||||
Requires: ocaml-ppxlib-devel%{?_isa}
|
||||
Requires: ocaml-sexplib0-devel%{?_isa}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and signature
|
||||
files for developing applications that use %{name}.
|
||||
|
||||
%prep
|
||||
%autosetup -n %{upname}-%{version}
|
||||
%autosetup -n ppx_hash-%{version}
|
||||
|
||||
%build
|
||||
dune build %{?_smp_mflags} --verbose --release
|
||||
%if %{with doc}
|
||||
dune build %{?_smp_mflags} @doc
|
||||
%endif
|
||||
%dune_build
|
||||
|
||||
%install
|
||||
dune install --destdir=%{buildroot}
|
||||
|
||||
%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
|
||||
%dune_install
|
||||
|
||||
%check
|
||||
dune runtest --release
|
||||
%dune_check
|
||||
|
||||
%files
|
||||
%files -f .ofiles
|
||||
%doc CHANGES.md README.md
|
||||
%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}
|
||||
%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}/*/*.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
|
||||
%files devel -f .ofiles-devel
|
||||
|
||||
%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
|
||||
- OCaml 4.14.0 rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user