Compare commits
84 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82f27c789c | ||
|
|
18fbb809c9 | ||
|
|
2b63aa88a1 | ||
|
|
88e3140e81 | ||
|
|
dcf5838132 | ||
|
|
64295557f3 | ||
|
|
40a492ede7 | ||
|
|
9a0f91d756 | ||
|
|
6ac4f6da9d | ||
|
|
05ea423cd3 | ||
|
|
ba8431d711 | ||
|
|
3e502c7f16 | ||
|
|
c51a68d81c | ||
|
|
84ee276a22 | ||
|
|
905101476e | ||
|
|
700776d7e3 | ||
|
|
54af0eb62e | ||
|
|
dc531ff342 | ||
|
|
cd1a90364b | ||
|
|
28e226adee | ||
|
|
d6cbdc1b84 | ||
|
|
9127d70aeb | ||
|
|
e1f00a7314 | ||
|
|
636edcf283 | ||
|
|
c6be3c1c19 | ||
|
|
5f3c23f8f9 | ||
|
|
8cd47acd6f | ||
|
|
4fd271a3c3 | ||
|
|
7c3fd4ba83 | ||
|
|
157989e039 | ||
|
|
97fcd3fcdc | ||
|
|
33218b7404 | ||
|
|
3727fb6127 | ||
|
|
43c7a68cb2 | ||
|
|
5a2a1fc6ee | ||
|
|
e167bfc490 | ||
|
|
cad03e673a | ||
|
|
4acf951e80 | ||
|
|
4a6d119321 | ||
|
|
a13cb309d6 | ||
|
|
a827084eea | ||
|
|
a64e10fca0 | ||
|
|
a0e7b744d0 | ||
|
|
39f1e4a438 | ||
|
|
47c61d9f0d | ||
|
|
3e5622f211 | ||
|
|
5556a39f81 | ||
|
|
02b1730dfc | ||
|
|
4e2cdf7ad7 | ||
|
|
d923210121 | ||
|
|
015c454708 | ||
|
|
6751934f65 | ||
|
|
b0964ea931 | ||
|
|
52804f46eb | ||
|
|
9c99ba24bc | ||
|
|
1c664d0436 | ||
|
|
a1cc00c1e0 | ||
|
|
e554dea4ea | ||
|
|
ed16ebed2f | ||
|
|
68c37858f3 | ||
|
|
b3d0d5575c | ||
|
|
bc527e4c04 | ||
|
|
d3f061f6ca | ||
|
|
a64c5b51f4 | ||
|
|
3a1c2e5276 | ||
|
|
cc2e910866 | ||
|
|
0c8dffd296 | ||
|
|
4b9bb6fe05 | ||
|
|
fe65de8c4e | ||
|
|
753f86eaf0 | ||
|
|
4874303133 | ||
|
|
3d748b82d8 | ||
|
|
f313d9c8b6 | ||
|
|
f30caafe4a | ||
|
|
aca58ae28d | ||
|
|
dec19cb695 | ||
|
|
5610aa98a1 | ||
|
|
469c6b6470 | ||
|
|
34d0dab4c8 | ||
|
|
2f9a539b4e | ||
|
|
97b508317a | ||
|
|
81c513145b | ||
|
|
399ce11876 | ||
|
|
dd0bda6d66 |
6 changed files with 314 additions and 58 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
/ocaml-ocamlbuild-0.9.3.tar.gz
|
||||
/ocaml-ocamlbuild-*.tar.gz
|
||||
/ocamlbuild-*.tar.gz
|
||||
|
|
|
|||
6
gating.yaml
Executable file
6
gating.yaml
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-*
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||
|
|
@ -1,37 +1,48 @@
|
|||
# OCaml packages not built on i686 since OCaml 5 / Fedora 39.
|
||||
ExcludeArch: %{ix86}
|
||||
|
||||
# NOTE: there is no devel subpackage because the main package *IS* a devel
|
||||
# package.
|
||||
|
||||
%ifnarch %{ocaml_native_compiler}
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
Name: ocaml-ocamlbuild
|
||||
Version: 0.9.3
|
||||
Release: 6%{?dist}
|
||||
Version: 0.16.1
|
||||
Release: 3%{?dist}
|
||||
|
||||
Summary: Build tool for OCaml libraries and programs
|
||||
|
||||
License: LGPLv2+ with exceptions
|
||||
License: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception
|
||||
|
||||
URL: https://github.com/ocaml/ocamlbuild
|
||||
Source0: https://github.com/ocaml/ocamlbuild/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
VCS: git:%{url}.git
|
||||
Source0: %{url}/archive/%{version}/ocamlbuild-%{version}.tar.gz
|
||||
|
||||
BuildRequires: ocaml >= 4.04.0
|
||||
BuildRequires: make
|
||||
BuildRequires: ocaml >= 4.08
|
||||
BuildRequires: ocaml-rpm-macros
|
||||
BuildRequires: ncurses
|
||||
BuildRequires: asciidoc
|
||||
BuildRequires: python3-pygments
|
||||
|
||||
# Ocamlbuild can invoke tput; see src/display.ml
|
||||
Requires: ncurses
|
||||
|
||||
# This can be removed when F42 reaches EOL
|
||||
Obsoletes: %{name}-devel < 0.14.0-37
|
||||
Provides: %{name}-devel = %{version}-%{release}
|
||||
|
||||
|
||||
%description
|
||||
OCamlbuild is a build tool for building OCaml libraries and programs.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
|
||||
%description devel
|
||||
This package contains development files for %{name}.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
License: CC0-1.0
|
||||
BuildArch: noarch
|
||||
|
||||
|
||||
%description doc
|
||||
|
|
@ -39,7 +50,7 @@ This package contains the manual for %{name}.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -n ocamlbuild-%{version}
|
||||
%autosetup -n ocamlbuild-%{version}
|
||||
|
||||
|
||||
%build
|
||||
|
|
@ -47,65 +58,285 @@ make configure \
|
|||
OCAMLBUILD_PREFIX=%{_prefix} \
|
||||
OCAMLBUILD_BINDIR=%{_bindir} \
|
||||
OCAMLBUILD_LIBDIR=%{_libdir}/ocaml \
|
||||
OCAMLBUILD_MANDIR=%{_mandir} \
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
OCAML_NATIVE=true
|
||||
OCAML_NATIVE=true \
|
||||
OCAML_NATIVE_TOOLS=true
|
||||
%else
|
||||
OCAML_NATIVE=false
|
||||
OCAML_NATIVE=false \
|
||||
OCAML_NATIVE_TOOLS=false
|
||||
%endif
|
||||
|
||||
make %{?_smp_mflags}
|
||||
# Parallel builds fail.
|
||||
make \
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
OCAMLC="ocamlc.opt -g" \
|
||||
OCAMLOPT="ocamlopt.opt -g"
|
||||
%else
|
||||
OCAMLC="ocamlc -g" \
|
||||
OCAMLOPT="ocamlopt -g"
|
||||
%endif
|
||||
|
||||
# Build the manual
|
||||
asciidoc manual/manual.adoc
|
||||
|
||||
|
||||
%install
|
||||
make install \
|
||||
DESTDIR=$RPM_BUILD_ROOT \
|
||||
CHECK_IF_PREINSTALLED=false
|
||||
%make_install CHECK_IF_PREINSTALLED=false
|
||||
|
||||
# Install the man page, which for some reason is not copied
|
||||
# in by the make install rule above.
|
||||
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1/
|
||||
install -p -m 0644 man/ocamlbuild.1 $RPM_BUILD_ROOT%{_mandir}/man1/
|
||||
# The install copies ocamlbuild & ocamlbuild.{byte or native}.
|
||||
# Symlink them instead.
|
||||
pushd $RPM_BUILD_ROOT/usr/bin
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
ln -sf ocamlbuild.native ocamlbuild
|
||||
%else
|
||||
ln -sf ocamlbuild.byte ocamlbuild
|
||||
%endif
|
||||
popd
|
||||
|
||||
# Remove the META file. It will be replaced by ocaml-ocamlfind (findlib).
|
||||
rm $RPM_BUILD_ROOT%{_libdir}/ocaml/ocamlbuild/META
|
||||
%ocaml_files -n
|
||||
|
||||
|
||||
%files
|
||||
%files -f .ofiles
|
||||
%doc Changes Readme.md VERSION
|
||||
%license LICENSE
|
||||
%{_bindir}/ocamlbuild
|
||||
%{_bindir}/ocamlbuild.byte
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
%{_bindir}/ocamlbuild.native
|
||||
%endif
|
||||
%{_mandir}/man1/ocamlbuild.1*
|
||||
%{_libdir}/ocaml/ocamlbuild
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
%exclude %{_libdir}/ocaml/ocamlbuild/*.a
|
||||
%exclude %{_libdir}/ocaml/ocamlbuild/*.o
|
||||
%exclude %{_libdir}/ocaml/ocamlbuild/*.cmx
|
||||
%exclude %{_libdir}/ocaml/ocamlbuild/*.cmxa
|
||||
%endif
|
||||
%exclude %{_libdir}/ocaml/ocamlbuild/*.mli
|
||||
|
||||
|
||||
%files devel
|
||||
%license LICENSE
|
||||
%ifarch %{ocaml_native_compiler}
|
||||
%{_libdir}/ocaml/ocamlbuild/*.a
|
||||
%{_libdir}/ocaml/ocamlbuild/*.o
|
||||
%{_libdir}/ocaml/ocamlbuild/*.cmx
|
||||
%{_libdir}/ocaml/ocamlbuild/*.cmxa
|
||||
%endif
|
||||
%{_libdir}/ocaml/ocamlbuild/*.mli
|
||||
|
||||
|
||||
%files doc
|
||||
%license LICENSE
|
||||
%doc manual/*
|
||||
%license manual/LICENSE
|
||||
%doc manual/manual.html
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Oct 13 2025 Richard W.M. Jones <rjones@redhat.com> - 0.16.1-3
|
||||
- OCaml 5.4.0 rebuild
|
||||
|
||||
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jul 11 2025 Jerry James <loganjerry@gmail.com> - 0.16.1-1
|
||||
- Version 0.16.1
|
||||
|
||||
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Thu Jan 9 2025 Jerry James <loganjerry@gmail.com> - 0.15.0-2
|
||||
- OCaml 5.3.0 rebuild for Fedora 42
|
||||
- Add VCS field
|
||||
|
||||
* Thu Jul 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Thu Jul 04 2024 Richard W.M. Jones <rjones@redhat.com> - 0.15.0-1
|
||||
- New upstream version 0.15.0 (RHBZ#1992935)
|
||||
|
||||
* Wed Jun 19 2024 Richard W.M. Jones <rjones@redhat.com> - 0.14.3-5
|
||||
- OCaml 5.2.0 ppc64le fix
|
||||
|
||||
* Wed May 29 2024 Richard W.M. Jones <rjones@redhat.com> - 0.14.3-4
|
||||
- OCaml 5.2.0 for Fedora 41
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Tue Jan 02 2024 Richard W.M. Jones <rjones@redhat.com> - 0.14.3-1
|
||||
- New upstream version 0.14.3 (RHBZ#1992935)
|
||||
|
||||
* Mon Dec 18 2023 Richard W.M. Jones <rjones@redhat.com> - 0.14.2-6
|
||||
- OCaml 5.1.1 + s390x code gen fix for Fedora 40
|
||||
|
||||
* Tue Dec 12 2023 Richard W.M. Jones <rjones@redhat.com> - 0.14.2-5
|
||||
- OCaml 5.1.1 rebuild for Fedora 40
|
||||
|
||||
* Thu Oct 05 2023 Richard W.M. Jones <rjones@redhat.com> - 0.14.2-4
|
||||
- OCaml 5.1 rebuild for Fedora 40
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jul 11 2023 Richard W.M. Jones <rjones@redhat.com> - 0.14.2-2
|
||||
- OCaml 5.0 rebuild for Fedora 39
|
||||
|
||||
* Mon Jul 10 2023 Jerry James <loganjerry@gmail.com> - 0.14.2-1
|
||||
- Version 0.14.2
|
||||
- Convert License tag to SPDX
|
||||
- Change license for the doc subpackage to CC0
|
||||
- Make the doc subpackage noarch
|
||||
- Fold the devel subpackage into the main package
|
||||
- Ship the manual as HTML instead of asciidoc source
|
||||
- Use new OCaml macros
|
||||
|
||||
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-36
|
||||
- Rebuild OCaml packages for F38
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-35
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-34
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jun 18 2022 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-33
|
||||
- OCaml 4.14.0 rebuild
|
||||
|
||||
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-32
|
||||
- Bump release and rebuild.
|
||||
|
||||
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-31
|
||||
- OCaml 4.13.1 rebuild to remove package notes
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-30
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Mon Oct 04 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-29
|
||||
- Bump and rebuild for OCaml 4.13.1
|
||||
|
||||
* Mon Oct 04 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-28
|
||||
- OCaml 4.13.1 build
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-27
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon Jul 19 2021 Jerry James <loganjerry@gmail.com> - 0.14.0-26
|
||||
- Specify OCAMLBUILD_MANDIR to fix man page installation
|
||||
|
||||
* Mon Mar 15 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-26
|
||||
- Bump and rebuild for ELN broken deps.
|
||||
|
||||
* Sun Feb 28 22:16:45 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-25
|
||||
- Bump release and rebuild.
|
||||
|
||||
* Sun Feb 28 22:08:24 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-24
|
||||
- OCaml 4.12.0 build
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Thu Dec 31 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-22
|
||||
- Fix license field (RHBZ#1911667).
|
||||
|
||||
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-21
|
||||
- OCaml 4.11.1 rebuild
|
||||
|
||||
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-20
|
||||
- OCaml 4.11.0 rebuild
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-19
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon May 04 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-17
|
||||
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
||||
|
||||
* Tue Apr 21 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-16
|
||||
- OCaml 4.11.0 pre-release attempt 2
|
||||
|
||||
* Fri Apr 17 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-15
|
||||
- OCaml 4.11.0 pre-release
|
||||
|
||||
* Thu Apr 02 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-14
|
||||
- Update all OCaml dependencies for RPM 4.16.
|
||||
|
||||
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-13
|
||||
- OCaml 4.10.0 final.
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Sat Jan 18 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-11
|
||||
- OCaml 4.10.0+beta1 rebuild.
|
||||
|
||||
* Thu Jan 09 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-10
|
||||
- Bump release and rebuild.
|
||||
|
||||
* Wed Jan 08 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-9
|
||||
- Bump and rebuild.
|
||||
|
||||
* Tue Jan 07 2020 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-8
|
||||
- OCaml 4.09.0 for riscv64
|
||||
|
||||
* Thu Dec 05 2019 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-7
|
||||
- Bump and rebuild for fixed ocaml(runtime) dependency.
|
||||
|
||||
* Thu Dec 05 2019 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-6
|
||||
- OCaml 4.09.0 (final) rebuild.
|
||||
|
||||
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-5
|
||||
- OCaml 4.08.1 (final) rebuild.
|
||||
|
||||
* Wed Jul 31 2019 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-4
|
||||
- OCaml 4.08.1 (rc2) rebuild.
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jun 27 2019 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-2
|
||||
- OCaml 4.08.0 (final) rebuild.
|
||||
|
||||
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 0.14.0-1
|
||||
- New upstream version 0.14.0.
|
||||
- OCaml 4.08.0 (beta 3) rebuild.
|
||||
- Remove the source tarball which was accidentally added to git.
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 0.12.0-5
|
||||
- OCaml 4.07.0 (final) rebuild.
|
||||
|
||||
* Tue Jun 19 2018 Richard W.M. Jones <rjones@redhat.com> - 0.12.0-4
|
||||
- OCaml 4.07.0-rc1 rebuild.
|
||||
|
||||
* Thu Apr 26 2018 Richard W.M. Jones <rjones@redhat.com> - 0.12.0-3
|
||||
- OCaml 4.07.0-beta2 rebuild.
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.12.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Dec 12 2017 Richard W.M. Jones <rjones@redhat.com> - 0.12.0-1
|
||||
- New upstream version 0.12.0.
|
||||
|
||||
* Tue Nov 07 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-11
|
||||
- Bump release and rebuild.
|
||||
|
||||
* Tue Nov 07 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-10
|
||||
- OCaml 4.06.0 rebuild.
|
||||
|
||||
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-9
|
||||
- Bump and rebuild.
|
||||
|
||||
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-8
|
||||
- Bump and rebuild.
|
||||
|
||||
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-7
|
||||
- OCaml 4.05.0 rebuild.
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Mon Jul 31 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-5
|
||||
- Enable debug symbols (-g).
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-3
|
||||
- OCaml 4.04.2 rebuild.
|
||||
|
||||
* Thu May 11 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-2
|
||||
- OCaml 4.04.1 rebuild.
|
||||
|
||||
* Wed May 10 2017 Richard W.M. Jones <rjones@redhat.com> - 0.11.0-1
|
||||
- New upstream version 0.11.0.
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
d5ba7ee06a51a3333f2168cd431df4ae ocaml-ocamlbuild-0.9.3.tar.gz
|
||||
SHA512 (ocamlbuild-0.16.1.tar.gz) = e918b9a0081f271e507c7a4f4d5d5a7cdf818ca51c52acec1bac85ddad5f6cad078cb3c568252fbcf5401c2d75323ed8f50fdd881bda1c9632840320408393ae
|
||||
|
|
|
|||
6
tests/basic-test.sh
Executable file
6
tests/basic-test.sh
Executable file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash -
|
||||
set -e
|
||||
set -x
|
||||
|
||||
# Just check ocamlbuild runs.
|
||||
ocamlbuild --version
|
||||
12
tests/tests.yml
Executable file
12
tests/tests.yml
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
required_packages:
|
||||
- ocaml
|
||||
- ocaml-ocamlbuild
|
||||
tests:
|
||||
- simple:
|
||||
dir: .
|
||||
run: ./basic-test.sh
|
||||
Loading…
Add table
Add a link
Reference in a new issue