2023-07-11 10:36:23 +00:00
|
|
|
# OCaml packages not built on i686 since OCaml 5 / Fedora 39.
|
|
|
|
ExcludeArch: %{ix86}
|
|
|
|
|
2023-07-11 04:17:17 +00:00
|
|
|
%ifnarch %{ocaml_native_compiler}
|
2022-06-19 10:04:15 +00:00
|
|
|
%global debug_package %{nil}
|
2023-07-11 04:17:17 +00:00
|
|
|
%endif
|
2022-06-19 10:04:15 +00:00
|
|
|
|
2008-02-22 18:40:38 +00:00
|
|
|
Name: ocaml-fileutils
|
2023-07-11 04:17:17 +00:00
|
|
|
Version: 0.6.4
|
2024-01-25 09:59:07 +00:00
|
|
|
Release: 8%{?dist}
|
2008-02-22 18:40:38 +00:00
|
|
|
Summary: OCaml library for common file and filename operations
|
|
|
|
|
2023-07-11 04:17:17 +00:00
|
|
|
License: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception
|
|
|
|
URL: https://gildor478.github.io/ocaml-fileutils/
|
|
|
|
Source0: https://github.com/gildor478/ocaml-fileutils/releases/download/v%{version}/fileutils-%{version}.tbz
|
|
|
|
# Fedora does not need the stdlib-shims or seq forward compatibility packages
|
|
|
|
Patch0: ocaml-fileutils-0.6.4-forward-compat.patch
|
|
|
|
# Given two distinct files with identical contents, the cmp function evaluates
|
|
|
|
# to "Some x", where x is the size of each file, instead of None. This breaks
|
|
|
|
# the ocaml-gettext tests, which expect None in that case.
|
|
|
|
Patch1: ocaml-fileutils-0.6.4-cmp.patch
|
|
|
|
|
|
|
|
BuildRequires: ocaml >= 4.03.0
|
|
|
|
BuildRequires: ocaml-dune >= 1.11.0
|
2012-11-27 13:02:54 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} <= 6
|
2023-07-11 04:17:17 +00:00
|
|
|
BuildRequires: ocaml-ounit-devel >= 2.0.0
|
2012-11-27 13:02:54 +00:00
|
|
|
%endif
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
This library is intended to provide a basic interface to the most
|
|
|
|
common file and filename operations. It provides several different
|
|
|
|
filename functions: reduce, make_absolute, make_relative... It also
|
|
|
|
enables you to manipulate real files: cp, mv, rm, touch...
|
|
|
|
|
|
|
|
It is separated into two modules: SysUtil and SysPath. The first one
|
|
|
|
manipulates real files, the second one is made for manipulating
|
|
|
|
abstract filenames.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
2023-07-11 04:17:17 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2023-07-11 04:17:17 +00:00
|
|
|
%autosetup -n fileutils-%{version} -p1
|
2017-11-08 17:38:59 +00:00
|
|
|
|
2012-11-27 13:02:54 +00:00
|
|
|
|
2017-11-08 17:38:59 +00:00
|
|
|
%build
|
2023-07-11 04:17:17 +00:00
|
|
|
%dune_build
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2023-07-11 04:17:17 +00:00
|
|
|
%dune_install
|
2009-10-08 12:17:05 +00:00
|
|
|
|
|
|
|
|
2023-07-11 04:17:17 +00:00
|
|
|
# Do not run the tests (RHEL 7+ only) since they require ocaml-ounit.
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} <= 6
|
2009-10-08 12:17:05 +00:00
|
|
|
%check
|
2023-07-11 04:17:17 +00:00
|
|
|
%dune_check
|
2017-11-08 17:38:59 +00:00
|
|
|
%endif
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
2023-07-11 04:17:17 +00:00
|
|
|
%files -f .ofiles
|
|
|
|
%license LICENSE.txt
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
2023-07-11 04:17:17 +00:00
|
|
|
%files devel -f .ofiles-devel
|
|
|
|
%doc README.md CHANGES.md
|
|
|
|
%license LICENSE.txt
|
2008-02-22 18:40:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2024-01-25 09:59:07 +00:00
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 10:16:06 +00:00
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-12-18 15:05:57 +00:00
|
|
|
* Mon Dec 18 2023 Richard W.M. Jones <rjones@redhat.com> - 0.6.4-6
|
|
|
|
- OCaml 5.1.1 + s390x code gen fix for Fedora 40
|
|
|
|
|
2023-12-12 14:44:35 +00:00
|
|
|
* Tue Dec 12 2023 Richard W.M. Jones <rjones@redhat.com> - 0.6.4-5
|
|
|
|
- OCaml 5.1.1 rebuild for Fedora 40
|
|
|
|
|
2023-10-05 15:04:49 +00:00
|
|
|
* Thu Oct 05 2023 Richard W.M. Jones <rjones@redhat.com> - 0.6.4-4
|
|
|
|
- OCaml 5.1 rebuild for Fedora 40
|
|
|
|
|
2023-07-20 17:17:23 +00:00
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-07-11 23:17:42 +00:00
|
|
|
* Tue Jul 11 2023 Richard W.M. Jones <rjones@redhat.com> - 0.6.4-2
|
|
|
|
- OCaml 5.0 rebuild for Fedora 39
|
|
|
|
|
2023-07-11 04:17:17 +00:00
|
|
|
* Mon Jul 10 2023 Jerry James <loganjerry@gmail.com> - 0.6.4-1
|
|
|
|
- Version 0.6.4
|
|
|
|
- New project URLs
|
|
|
|
- Convert License tag to SPDX
|
|
|
|
- Drop upstreamed bytes and ounit2 patches
|
|
|
|
- Build with dune
|
|
|
|
|
2023-01-24 17:42:05 +00:00
|
|
|
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-36
|
|
|
|
- Bump release and rebuild
|
|
|
|
|
2023-01-24 14:37:36 +00:00
|
|
|
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-35
|
|
|
|
- Rebuild OCaml packages for F38
|
|
|
|
|
2023-01-19 22:08:04 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-34
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-22 01:13:43 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-33
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-19 09:57:09 +00:00
|
|
|
* Sun Jun 19 2022 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-32
|
|
|
|
- OCaml 4.14.0 rebuild
|
|
|
|
|
2022-02-04 16:09:31 +00:00
|
|
|
* Fri Feb 04 2022 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-31
|
|
|
|
- OCaml 4.13.1 rebuild to remove package notes
|
|
|
|
|
2022-01-20 21:43:58 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-30
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-10-05 09:27:23 +00:00
|
|
|
* Tue Oct 05 2021 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-29
|
|
|
|
- OCaml 4.13.1 build
|
|
|
|
|
2021-07-22 16:37:37 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-28
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-03-30 15:18:24 +00:00
|
|
|
* Tue Mar 30 2021 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-27
|
|
|
|
- Bump and rebuild for ELN.
|
|
|
|
|
2021-03-01 21:31:03 +00:00
|
|
|
* Mon Mar 1 21:31:03 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-26
|
|
|
|
- OCaml 4.12.0 build
|
|
|
|
|
2021-01-26 21:57:24 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-25
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-09-01 20:37:06 +00:00
|
|
|
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-24
|
|
|
|
- OCaml 4.11.1 rebuild
|
|
|
|
|
2020-08-21 18:15:10 +00:00
|
|
|
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-23
|
|
|
|
- OCaml 4.11.0 rebuild
|
|
|
|
|
2020-08-01 06:37:31 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-22
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-28 12:09:41 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-05 14:32:29 +00:00
|
|
|
* Tue May 05 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-20
|
|
|
|
- Bump and rebuild for s390x.
|
|
|
|
|
2020-05-05 13:36:02 +00:00
|
|
|
* Tue May 05 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-19
|
|
|
|
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
|
|
|
|
2020-04-21 21:21:10 +00:00
|
|
|
* Tue Apr 21 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-18
|
|
|
|
- OCaml 4.11.0 pre-release attempt 2
|
|
|
|
|
2020-04-04 09:21:46 +00:00
|
|
|
* Sat Apr 04 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-17
|
|
|
|
- Update all OCaml dependencies for RPM 4.16.
|
|
|
|
|
2020-02-26 14:17:08 +00:00
|
|
|
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-16
|
|
|
|
- OCaml 4.10.0 final.
|
|
|
|
|
2020-01-29 19:35:09 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-19 12:47:32 +00:00
|
|
|
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-14
|
|
|
|
- OCaml 4.10.0+beta1 rebuild.
|
|
|
|
|
2020-01-09 21:42:16 +00:00
|
|
|
* Thu Jan 09 2020 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-13
|
|
|
|
- OCaml 4.09.0 for riscv64
|
|
|
|
|
2019-12-06 13:06:48 +00:00
|
|
|
* Fri Dec 06 2019 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-12
|
|
|
|
- OCaml 4.09.0 (final) rebuild.
|
|
|
|
|
2019-08-16 14:49:11 +00:00
|
|
|
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-11
|
|
|
|
- OCaml 4.08.1 (final) rebuild.
|
|
|
|
|
2019-07-31 17:28:23 +00:00
|
|
|
* Wed Jul 31 2019 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-10
|
|
|
|
- OCaml 4.08.1 (rc2) rebuild.
|
|
|
|
|
2019-07-25 22:52:37 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-06-27 19:21:00 +00:00
|
|
|
* Thu Jun 27 2019 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-8
|
|
|
|
- OCaml 4.08.0 (final) rebuild.
|
|
|
|
|
2019-04-29 18:20:02 +00:00
|
|
|
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-7
|
|
|
|
- OCaml 4.08.0 (beta 3) rebuild.
|
|
|
|
|
2019-02-01 16:49:57 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 14:43:24 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-11 15:16:52 +00:00
|
|
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-4
|
|
|
|
- OCaml 4.07.0 (final) rebuild.
|
|
|
|
|
2018-06-20 08:54:55 +00:00
|
|
|
* Wed Jun 20 2018 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-3
|
|
|
|
- OCaml 4.07.0-rc1 rebuild.
|
|
|
|
|
2018-02-08 08:50:08 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-08 17:24:31 +00:00
|
|
|
* Wed Nov 08 2017 Richard W.M. Jones <rjones@redhat.com> - 0.5.2-1
|
|
|
|
- New upstream version 0.5.2.
|
2017-11-08 17:00:31 +00:00
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-08-07 21:42:26 +00:00
|
|
|
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-8
|
|
|
|
- OCaml 4.05.0 rebuild.
|
|
|
|
|
2017-08-03 04:15:42 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:28:06 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-26 19:53:04 +00:00
|
|
|
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-5
|
|
|
|
- OCaml 4.04.2 rebuild.
|
|
|
|
|
2017-05-12 09:09:55 +00:00
|
|
|
* Fri May 12 2017 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-4
|
|
|
|
- OCaml 4.04.1 rebuild.
|
|
|
|
|
2017-02-11 00:31:41 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-09 17:58:48 +00:00
|
|
|
* Wed Nov 09 2016 Dan Horák <dan@danny.cz> - 0.5.1-2
|
|
|
|
- rebuild for s390x codegen bug
|
|
|
|
|
2016-11-04 16:40:22 +00:00
|
|
|
* Fri Nov 04 2016 Richard W.M. Jones <rjones@redhat.com> - 0.5.1-1
|
|
|
|
- New upstream version 0.5.1.
|
2016-11-05 08:44:06 +00:00
|
|
|
- Add explicit dependency on ocamlbuild.
|
2016-11-04 16:40:22 +00:00
|
|
|
|
2016-09-12 10:02:32 +00:00
|
|
|
* Mon Sep 12 2016 Dan Horák <dan[at]danny.cz> - 0.4.5-17
|
|
|
|
- disable debuginfo subpackage on interpreted builds
|
|
|
|
|
2016-02-04 11:06:59 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.5-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-28 16:10:04 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-15
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-07-27 09:25:48 +00:00
|
|
|
* Mon Jul 27 2015 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-14
|
|
|
|
- Remove ExcludeArch since bytecode build should now work.
|
|
|
|
|
2015-06-23 17:42:40 +00:00
|
|
|
* Tue Jun 23 2015 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-13
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2015-06-17 17:31:14 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-12
|
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-02-16 22:55:39 +00:00
|
|
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-11
|
|
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
|
2014-08-30 19:29:35 +00:00
|
|
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-10
|
|
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
|
2014-08-23 17:08:21 +00:00
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-9
|
|
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
|
2014-08-17 12:53:00 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.5-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-02 08:27:51 +00:00
|
|
|
* Sat Aug 02 2014 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-7
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
|
|
|
|
2014-07-21 14:51:59 +00:00
|
|
|
* Mon Jul 21 2014 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-6
|
|
|
|
- OCaml 4.02.0 beta rebuild.
|
|
|
|
|
2014-07-14 11:51:14 +00:00
|
|
|
* Mon Jul 14 2014 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-5
|
2014-07-12 18:47:53 +00:00
|
|
|
- Rebuild for OCaml 4.02.0.
|
|
|
|
|
2014-06-07 15:38:01 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-09-14 06:34:55 +00:00
|
|
|
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 0.4.5-1
|
|
|
|
- New upstream version 0.4.5.
|
|
|
|
- Enable debuginfo.
|
|
|
|
|
2013-08-03 14:52:57 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.4-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 08:58:00 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.4-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-27 19:34:16 +00:00
|
|
|
* Tue Nov 27 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.4-4
|
|
|
|
- BR >= OCaml 4.00.1 so we can't be built against the wrong OCaml.
|
|
|
|
|
2012-11-27 13:02:54 +00:00
|
|
|
* Tue Nov 27 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.4-3
|
|
|
|
- Disable the tests on RHEL 7, since they require ocaml-ounit.
|
|
|
|
|
2012-10-19 13:45:49 +00:00
|
|
|
* Fri Oct 19 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.4-2
|
2012-10-19 13:04:30 +00:00
|
|
|
- New upstream version 0.4.4.
|
|
|
|
- Clean up the spec file.
|
|
|
|
- Fix homepage and download URLs.
|
2012-10-19 13:45:49 +00:00
|
|
|
- Don't use configure macro. Upstream are using some sort of non-autoconf
|
|
|
|
brokenness.
|
|
|
|
- Rename text files as *.txt. There is no 'api' directory any more.
|
2012-10-19 13:04:30 +00:00
|
|
|
|
2012-07-28 17:55:27 +00:00
|
|
|
* Sat Jul 28 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-10
|
|
|
|
- Bump and rebuild against new OCaml 4.00.0 official release.
|
|
|
|
|
2012-07-20 05:57:55 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-09 16:34:31 +00:00
|
|
|
* Sat Jun 09 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-8
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-05-14 19:39:57 +00:00
|
|
|
* Mon May 14 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-7
|
|
|
|
- Bump release and rebuild for new OCaml on ARM.
|
|
|
|
|
2012-01-06 15:22:04 +00:00
|
|
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-6
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-02-09 01:50:48 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-05 15:43:06 +00:00
|
|
|
* Wed Jan 05 2011 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-4
|
|
|
|
- Rebuild for OCaml 3.12 (http://fedoraproject.org/wiki/Features/OCaml3.12).
|
|
|
|
|
2009-12-30 13:54:42 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-3
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-10-08 12:47:33 +00:00
|
|
|
* Thu Oct 8 2009 Richard W.M. Jones <rjones@redhat.com> - 0.4.0-2
|
2009-10-08 12:17:05 +00:00
|
|
|
- New upstream version 0.4.0.
|
|
|
|
- Upstream build system has been rationalized, so remove all the
|
|
|
|
hacks we were using.
|
|
|
|
- Upstream now contains tests, run them.
|
2009-10-08 12:47:33 +00:00
|
|
|
- Needs ounit in order to carry out the tests.
|
2009-10-08 12:17:05 +00:00
|
|
|
|
2009-07-25 19:56:44 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.0-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 08:35:39 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-10
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
|
2009-04-16 09:06:07 +00:00
|
|
|
* Thu Apr 16 2009 S390x secondary arch maintainer <fedora-s390x@lists.fedoraproject.org>
|
|
|
|
- ExcludeArch sparc64, s390, s390x as we don't have OCaml on those archs
|
|
|
|
(added sparc64 per request from the sparc maintainer)
|
|
|
|
|
2009-02-26 07:04:39 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 19:21:00 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-8
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-24 11:18:47 +00:00
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-7
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-04-23 11:11:01 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-5
|
|
|
|
- Rebuild for OCaml 3.10.2
|
|
|
|
|
2008-03-01 08:41:14 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-4
|
|
|
|
- Rebuild for ppc64.
|
|
|
|
|
2008-02-22 18:40:38 +00:00
|
|
|
* Thu Feb 21 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-3
|
|
|
|
- Fixed grammar in the description section.
|
|
|
|
- License is LGPLv2 with exceptions
|
|
|
|
- Include license file with both RPMs.
|
|
|
|
- Include other documentation only in the -devel RPM.
|
|
|
|
|
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-2
|
|
|
|
- Added BR ocaml-camlp4-devel.
|
|
|
|
- Build into tmp directory under the build root.
|
|
|
|
|
|
|
|
* Wed Aug 8 2007 Richard W.M. Jones <rjones@redhat.com> - 0.3.0-1
|
|
|
|
- Initial RPM release.
|