7b38e703fd
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
157 lines
5.4 KiB
RPMSpec
157 lines
5.4 KiB
RPMSpec
# TESTING NOTE: The ppx_jane module is needed to run the tests. However,
|
|
# ppx_jane transitively requires this module. Therefore, we cannot run the
|
|
# tests at all until we are able to add ppx_jane to Fedora, and even then we
|
|
# will only be able to run the tests in non-bootstrap mode.
|
|
|
|
%global srcname base
|
|
|
|
Name: ocaml-%{srcname}
|
|
Version: 0.14.0
|
|
Release: 2%{?dist}
|
|
Summary: Jane Street standard library for OCaml
|
|
|
|
License: MIT
|
|
URL: https://github.com/janestreet/%{srcname}
|
|
Source0: %{url}/archive/v%{version}/%{srcname}-%{version}.tar.gz
|
|
|
|
BuildRequires: ocaml >= 4.07.0
|
|
BuildRequires: ocaml-dune-devel >= 2.0.0
|
|
BuildRequires: (ocaml-sexplib0-devel >= 0.14 and ocaml-sexplib0-devel < 0.15)
|
|
|
|
%description
|
|
Base is a standard library for OCaml. It provides a standard set of
|
|
general purpose modules that are well-tested, performant, and
|
|
fully-portable across any environment that can run OCaml code. Unlike
|
|
other standard library projects, Base is meant to be used as a wholesale
|
|
replacement of the standard library distributed with the OCaml compiler.
|
|
In particular it makes different choices and doesn't re-export features
|
|
that are not fully portable such as I/O, which are left to other
|
|
libraries.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
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 %{srcname}-%{version} -p1
|
|
|
|
%build
|
|
dune build %{?_smp_mflags}
|
|
|
|
# TODO: Once odoc is available, BR it and run this to generate documentation:
|
|
# dune build %{?_smp_mflags} @doc
|
|
|
|
# Dune passes %%build_ldflags to ocamlmklib without -ldopt, resulting in
|
|
# "Unknown option" warnings from ocamlmklib and a library that has not been
|
|
# linked with the correct flags. We can't add -ldopt ourselves, since that
|
|
# breaks compilation of the cmxs files. This seems to be a weakness of dune;
|
|
# linker flags and libraries to be linked with have to be specified together,
|
|
# and nothing takes care of separating them and adding ldopt as necessary. We
|
|
# relink manually to address the problem.
|
|
pushd _build/default/src
|
|
ocamlmklib -g -ldopt "%build_ldflags" -o base_stubs *.o
|
|
cd ../hash_types/src
|
|
ocamlmklib -g -ldopt "%build_ldflags" -o base_internalhash_types_stubs *.o
|
|
popd
|
|
|
|
%install
|
|
dune install --destdir=%{buildroot}
|
|
|
|
# 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 README.org ROADMAP.md
|
|
%license LICENSE.md
|
|
%dir %{_libdir}/ocaml/%{srcname}/
|
|
%dir %{_libdir}/ocaml/%{srcname}/base_internalhash_types/
|
|
%dir %{_libdir}/ocaml/%{srcname}/caml/
|
|
%dir %{_libdir}/ocaml/%{srcname}/md5/
|
|
%dir %{_libdir}/ocaml/%{srcname}/shadow_stdlib/
|
|
%{_libdir}/ocaml/%{srcname}/META
|
|
%{_libdir}/ocaml/%{srcname}/*.cma
|
|
%{_libdir}/ocaml/%{srcname}/*.cmi
|
|
%{_libdir}/ocaml/%{srcname}/*.js
|
|
%{_libdir}/ocaml/%{srcname}/*/*.cma
|
|
%{_libdir}/ocaml/%{srcname}/*/*.cmi
|
|
%{_libdir}/ocaml/%{srcname}/*/*.js
|
|
%ifarch %{ocaml_native_compiler}
|
|
%{_libdir}/ocaml/%{srcname}/*.cmxs
|
|
%{_libdir}/ocaml/%{srcname}/*/*.cmxs
|
|
%endif
|
|
%{_libdir}/ocaml/stublibs/dllbase_stubs.so
|
|
%{_libdir}/ocaml/stublibs/dllbase_internalhash_types_stubs.so
|
|
|
|
%files devel
|
|
%{_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
|
|
%{_libdir}/ocaml/%{srcname}/*/*.a
|
|
%{_libdir}/ocaml/%{srcname}/*/*.cmx
|
|
%{_libdir}/ocaml/%{srcname}/*/*.cmxa
|
|
%endif
|
|
%{_libdir}/ocaml/%{srcname}/*.cmt
|
|
%{_libdir}/ocaml/%{srcname}/*.cmti
|
|
%{_libdir}/ocaml/%{srcname}/*.ml
|
|
%{_libdir}/ocaml/%{srcname}/*.mli
|
|
%{_libdir}/ocaml/%{srcname}/*/*.cmt
|
|
%{_libdir}/ocaml/%{srcname}/*/*.cmti
|
|
%{_libdir}/ocaml/%{srcname}/*/*.h
|
|
%{_libdir}/ocaml/%{srcname}/*/*.ml
|
|
%{_libdir}/ocaml/%{srcname}/*/*.mli
|
|
|
|
%changelog
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
* Wed Jun 17 2020 Jerry James <loganjerry@gmail.com> - 0.14.0-1
|
|
- Version 0.14.0
|
|
|
|
* Tue May 12 2020 Jerry James <loganjerry@gmail.com> - 0.13.2-1
|
|
- Version 0.13.2
|
|
|
|
* Mon May 04 2020 Richard W.M. Jones <rjones@redhat.com> - 0.13.1-5
|
|
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
|
|
|
* Tue Apr 21 2020 Richard W.M. Jones <rjones@redhat.com> - 0.13.1-4
|
|
- OCaml 4.11.0 pre-release attempt 2
|
|
|
|
* Fri Apr 03 2020 Richard W.M. Jones <rjones@redhat.com> - 0.13.1-3
|
|
- Update all OCaml dependencies for RPM 4.16.
|
|
|
|
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 0.13.1-2
|
|
- OCaml 4.10.0 final.
|
|
|
|
* Tue Feb 18 2020 Jerry James <loganjerry@gmail.com> - 0.13.1-1
|
|
- Version 0.13.1
|
|
- Drop upstreamed -gc patch
|
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.0-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
* Wed Jan 22 2020 Jerry James <loganjerry@gmail.com> - 0.13.0-3
|
|
- Add -gc patch to fix FTBFS with OCaml 4.10
|
|
|
|
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 0.13.0-3
|
|
- OCaml 4.10.0+beta1 rebuild.
|
|
|
|
* Wed Jan 15 2020 Jerry James <loganjerry@gmail.com> - 0.13.0-2
|
|
- Add R on ocaml-sexplib0-devel to the -devel subpackage
|
|
- Pass smp_mflags to dune build
|
|
|
|
* Thu Jan 2 2020 Jerry James <loganjerry@gmail.com> - 0.13.0-1
|
|
- Initial RPM
|