2010-01-05 18:15:56 +00:00
|
|
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
2014-11-06 17:12:53 +00:00
|
|
|
%if !%{opt}
|
|
|
|
%global debug_package %{nil}
|
|
|
|
%endif
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
Name: ocaml-camlp5
|
2018-06-19 22:12:32 +00:00
|
|
|
Version: 7.05
|
2019-04-29 15:31:26 +00:00
|
|
|
Release: 6%{?dist}
|
2008-03-01 18:59:37 +00:00
|
|
|
Summary: Classical version of camlp4 OCaml preprocessor
|
|
|
|
|
|
|
|
License: BSD
|
2016-12-03 13:22:54 +00:00
|
|
|
URL: https://camlp5.github.io/
|
2014-08-01 09:29:37 +00:00
|
|
|
|
2018-06-19 22:12:32 +00:00
|
|
|
Source0: https://github.com/camlp5/camlp5/archive/rel705.tar.gz
|
2010-01-05 18:15:56 +00:00
|
|
|
|
2014-08-24 08:53:38 +00:00
|
|
|
# Kill -warn-error A
|
2014-11-06 17:12:53 +00:00
|
|
|
Patch0: camlp5-6.11-kill-warn-error.patch
|
2014-08-24 08:53:38 +00:00
|
|
|
|
2018-06-19 22:35:19 +00:00
|
|
|
# Patch to add support for OCaml 4.07.
|
|
|
|
# https://github.com/camlp5/camlp5/issues/22
|
|
|
|
Patch1: 194223346be22fa602594897a281d7eb4f3f1b1e.patch
|
|
|
|
|
2012-10-17 22:23:06 +00:00
|
|
|
BuildRequires: ocaml
|
2010-01-05 18:15:56 +00:00
|
|
|
BuildRequires: ocaml-ocamldoc
|
2008-03-01 18:59:37 +00:00
|
|
|
|
2010-01-06 14:43:13 +00:00
|
|
|
%global __ocaml_requires_opts -i Asttypes -i Parsetree -i Pa_extend
|
2010-01-13 17:29:30 +00:00
|
|
|
%global __ocaml_provides_opts -i Dynlink -i Dynlinkaux -i Pa_extend
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Camlp5 is a preprocessor-pretty-printer of OCaml.
|
|
|
|
|
|
|
|
It is the continuation of the classical camlp4 with new features.
|
|
|
|
|
|
|
|
OCaml 3.10 and above have an official camlp4 which is incompatible
|
|
|
|
with classical (<= 3.09) versions. You can find that in the
|
|
|
|
ocaml-camlp4 package.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and signature files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2018-06-19 22:12:32 +00:00
|
|
|
%setup -q -n camlp5-rel705
|
2015-05-15 13:02:18 +00:00
|
|
|
find . -name .gitignore -delete
|
2014-11-06 17:12:53 +00:00
|
|
|
%patch0 -p1
|
2018-06-19 22:35:19 +00:00
|
|
|
%patch1 -p1
|
2013-09-16 03:30:55 +00:00
|
|
|
|
|
|
|
# Build with debug information
|
2014-08-24 08:53:38 +00:00
|
|
|
sed -i 's,WARNERR="",WARNERR="-g",' configure
|
2013-09-16 03:30:55 +00:00
|
|
|
sed -i 's,-linkall,& -g,g' top/Makefile
|
|
|
|
for fil in compile/compile.sh $(find . -name Makefile); do
|
2014-11-06 17:12:53 +00:00
|
|
|
sed -i 's,\$[({]OCAMLN[})]c,& -g,;s,\$[({]OCAMLN[})]opt,& -g,;s,LINKFLAGS=,&-g ,' $fil
|
2013-09-16 03:30:55 +00:00
|
|
|
done
|
|
|
|
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
%build
|
2010-01-05 18:15:56 +00:00
|
|
|
./configure
|
2008-03-01 18:59:37 +00:00
|
|
|
%if %opt
|
2014-04-09 13:54:47 +00:00
|
|
|
# For ppc64 we need a larger stack than default to compile some files
|
|
|
|
# because the stages in the OCaml compiler are not mutually tail
|
|
|
|
# recursive.
|
|
|
|
%ifarch ppc64 ppc64le
|
|
|
|
ulimit -a
|
|
|
|
ulimit -Hs 65536
|
|
|
|
ulimit -Ss 65536
|
|
|
|
%endif
|
2013-09-16 03:30:55 +00:00
|
|
|
make world.opt
|
|
|
|
%else
|
|
|
|
make world
|
2008-03-01 18:59:37 +00:00
|
|
|
%endif
|
2013-09-16 03:30:55 +00:00
|
|
|
make -C doc/htmlp
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}
|
|
|
|
make install \
|
|
|
|
LIBDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml \
|
|
|
|
OLIBDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml \
|
|
|
|
BINDIR=$RPM_BUILD_ROOT%{_bindir} \
|
|
|
|
MANDIR=$RPM_BUILD_ROOT%{_mandir}
|
2013-09-16 03:30:55 +00:00
|
|
|
cp -p etc/META $RPM_BUILD_ROOT%{_libdir}/ocaml/camlp5
|
2015-05-15 13:02:18 +00:00
|
|
|
rm -f doc/htmlp/{*.sh,Makefile,html2*}
|
2008-03-01 18:59:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
2015-05-15 13:02:18 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc README
|
2008-03-01 18:59:37 +00:00
|
|
|
%{_libdir}/ocaml/camlp5
|
|
|
|
%if %opt
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.a
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.cmxa
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.cmx
|
|
|
|
%endif
|
|
|
|
%exclude %{_libdir}/ocaml/camlp5/*.mli
|
|
|
|
|
|
|
|
|
|
|
|
%files devel
|
2013-09-16 03:30:55 +00:00
|
|
|
%doc CHANGES ICHANGES DEVEL UPGRADING doc/html
|
2008-03-01 18:59:37 +00:00
|
|
|
%if %opt
|
|
|
|
%{_libdir}/ocaml/camlp5/*.a
|
|
|
|
%{_libdir}/ocaml/camlp5/*.cmxa
|
|
|
|
%{_libdir}/ocaml/camlp5/*.cmx
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/camlp5/*.mli
|
|
|
|
%{_bindir}/camlp5*
|
|
|
|
%{_bindir}/mkcamlp5*
|
|
|
|
%{_bindir}/ocpp5
|
|
|
|
%{_mandir}/man1/*.1*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2019-04-29 15:31:26 +00:00
|
|
|
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 7.05-6
|
|
|
|
- OCaml 4.08.0 (beta 3) rebuild.
|
|
|
|
|
2019-02-01 16:47:18 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.05-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 14:41:34 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.05-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-11 13:24:14 +00:00
|
|
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 7.05-3
|
|
|
|
- OCaml 4.07.0 (final) rebuild.
|
|
|
|
|
2018-06-19 22:39:35 +00:00
|
|
|
* Tue Jun 19 2018 Richard W.M. Jones <rjones@redhat.com> - 7.05-2
|
2018-06-19 22:12:32 +00:00
|
|
|
- New upstream version 7.05.
|
2018-06-19 22:10:12 +00:00
|
|
|
- Bump and rebuild for OCaml 4.07.0-rc1.
|
|
|
|
|
2018-04-26 18:00:43 +00:00
|
|
|
* Thu Apr 26 2018 Richard W.M. Jones <rjones@redhat.com> - 7.03-3
|
|
|
|
- OCaml 4.07.0-beta2 rebuild.
|
|
|
|
|
2018-02-08 08:47:12 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.03-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-18 11:33:32 +00:00
|
|
|
* Fri Nov 17 2017 Richard W.M. Jones <rjones@redhat.com> - 7.03-1
|
|
|
|
- New upstream version 7.03.
|
2017-11-17 23:47:28 +00:00
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-08-08 19:36:14 +00:00
|
|
|
* Tue Aug 08 2017 Richard W.M. Jones <rjones@redhat.com> - 7.00-4
|
|
|
|
- OCaml 4.05.0 rebuild.
|
|
|
|
|
2017-08-03 04:14:06 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.00-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:26:41 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.00-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-27 12:01:24 +00:00
|
|
|
* Tue Jun 27 2017 Richard W.M. Jones <rjones@redhat.com> - 7.00-1
|
|
|
|
- New upstream version 7.00, including support for
|
|
|
|
OCaml 4.04.2 rebuild.
|
2017-06-27 11:46:55 +00:00
|
|
|
|
2017-05-13 11:29:11 +00:00
|
|
|
* Sat May 13 2017 Richard W.M. Jones <rjones@redhat.com> - 6.17-3
|
|
|
|
- OCaml 4.04.1 rebuild.
|
|
|
|
|
2017-02-11 00:29:55 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.17-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-03 13:22:54 +00:00
|
|
|
* Sat Dec 03 2016 Richard W.M. Jones <rjones@redhat.com> - 6.17-1
|
|
|
|
- New upstream version 6.17 with support for OCaml 4.04.
|
|
|
|
|
2016-02-04 11:05:21 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.14-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-30 21:36:18 +00:00
|
|
|
* Thu Jul 30 2015 Richard W.M. Jones <rjones@redhat.com> - 6.14-1
|
|
|
|
- New upstream version 6.14.
|
|
|
|
|
2015-07-28 14:49:47 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 6.13-3
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-06-24 16:20:51 +00:00
|
|
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 6.13-2
|
|
|
|
- ocaml-4.02.2 final rebuild.
|
|
|
|
|
2015-06-17 14:28:27 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 6.13-1
|
|
|
|
- New upstream version 6.13.
|
2015-06-17 14:16:21 +00:00
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-05-15 13:02:18 +00:00
|
|
|
* Fri May 15 2015 Ville Skyttä <ville.skytta@iki.fi> - 6.12-3
|
|
|
|
- Mark LICENSE as %%license, don't ship .gitignore
|
|
|
|
|
2015-02-16 20:49:09 +00:00
|
|
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 6.12-2
|
|
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
|
2014-11-06 17:12:53 +00:00
|
|
|
* Thu Nov 6 2014 Jerry James <loganjerry@gmail.com> - 6.12-1
|
|
|
|
- Update to 6.12 final
|
|
|
|
- Drop upstreamed patches (all but -kill-warn-error)
|
|
|
|
- Drop debuginfo workaround; fixed upstream
|
|
|
|
|
2014-08-30 17:11:00 +00:00
|
|
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 6.12-0.5.git63a8c30f
|
|
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
|
2014-08-24 08:53:38 +00:00
|
|
|
* Sun Aug 24 2014 Richard W.M. Jones <rjones@redhat.com> - 6.12-0.4.git63a8c30f
|
|
|
|
- Fixes for 4.02.0+rc1.
|
|
|
|
- Kill -warn-error everywhere hopefully.
|
|
|
|
- Update parsing/location.mli from OCaml sources.
|
|
|
|
- Fix release numbering.
|
|
|
|
|
2014-08-23 16:16:25 +00:00
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 6.12-0.git63a8c30f.3
|
|
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
|
2014-08-17 12:46:33 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.12-0.git63a8c30f.2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-01 19:52:33 +00:00
|
|
|
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 6.12-0.git63a8c30f.1
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 build.
|
|
|
|
|
2014-08-01 09:29:37 +00:00
|
|
|
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 6.12-0.git63a8c30f
|
|
|
|
- Rebase to 6.12 prerelease which supports OCaml 4.02.
|
2014-07-21 10:22:26 +00:00
|
|
|
- OCaml 4.02.0 beta rebuild.
|
2014-08-01 09:29:37 +00:00
|
|
|
- New source URL.
|
2014-07-21 10:22:26 +00:00
|
|
|
|
2014-06-07 15:32:46 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.11-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-15 12:38:22 +00:00
|
|
|
* Tue Apr 15 2014 Richard W.M. Jones <rjones@redhat.com> - 6.11-3
|
|
|
|
- Remove ocaml_arches macro (RHBZ#1087794).
|
|
|
|
|
2014-04-09 13:54:47 +00:00
|
|
|
* Thu Apr 10 2014 Michel Normand <normand@linux.vnet.ibm.com> 6.11-2
|
|
|
|
- increase stack size for ppc64/ppc64le (RHBZ#1085850)
|
|
|
|
|
2013-09-16 03:30:55 +00:00
|
|
|
* Sat Sep 14 2013 Jerry James <loganjerry@gmail.com> - 6.11-1
|
|
|
|
- New upstream version 6.11 (provides OCaml 4.01.0 support)
|
|
|
|
- Build with debug information
|
|
|
|
- Drop upstreamed -typevar patch
|
|
|
|
- Upstream now provides its own META file
|
|
|
|
|
2013-08-03 14:49:09 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.07-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 08:55:44 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.07-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-17 22:23:06 +00:00
|
|
|
* Wed Oct 17 2012 Jerry James <loganjerry@gmail.com> - 6.07-1
|
|
|
|
- New upstream version 6.07 (provides OCaml 4.00.1 support)
|
2012-10-17 22:44:10 +00:00
|
|
|
- Add -typevar patch to fix the build
|
2012-10-17 22:23:06 +00:00
|
|
|
|
2012-07-28 15:01:28 +00:00
|
|
|
* Sat Jul 28 2012 Richard W.M. Jones <rjones@redhat.com> - 6.06-4
|
2012-07-28 15:00:51 +00:00
|
|
|
- Rebuild for OCaml 4.00.0 official release.
|
|
|
|
|
2012-07-20 05:52:28 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.06-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-10 21:09:43 +00:00
|
|
|
* Sun Jun 10 2012 Richard W.M. Jones <rjones@redhat.com> - 6.06-2
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-06-08 21:42:41 +00:00
|
|
|
* Fri Jun 8 2012 Jerry James <loganjerry@gmail.com> - 6.06-1
|
|
|
|
- New upstream version 6.06 (provides OCaml 4.0 support)
|
|
|
|
- Add HTML documentation to the -devel package
|
|
|
|
|
2012-01-06 14:55:17 +00:00
|
|
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 6.02.3-2
|
|
|
|
- Rebuild for OCaml 3.12.1.
|
|
|
|
|
2011-10-27 20:29:35 +00:00
|
|
|
* Thu Oct 27 2011 Jerry James <loganjerry@gmail.com> - 6.02.3-1
|
|
|
|
- New upstream version 6.02.3 (bz 691913).
|
|
|
|
- Switch from ExcludeArch to ExclusiveArch %%{ocaml_arches}.
|
|
|
|
- Drop unnecessary spec file elements (BuildRoot, etc.).
|
|
|
|
- Preserve timestamp on META.
|
|
|
|
|
2011-02-09 01:40:18 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.02.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-06 17:37:04 +00:00
|
|
|
* Thu Jan 6 2011 Richard W.M. Jones <rjones@redhat.com> - 6.02.1-1
|
|
|
|
- New upstream version 6.02.1.
|
|
|
|
- Remove upstream patches (both upstream).
|
|
|
|
- Rebuild for OCaml 3.12.0.
|
|
|
|
|
2010-01-13 17:29:30 +00:00
|
|
|
* Wed Jan 13 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-6
|
|
|
|
- Ignore bogus provides Dynlink and Dynlinkaux.
|
|
|
|
|
2010-01-06 14:43:13 +00:00
|
|
|
* Wed Jan 6 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-5
|
|
|
|
- Ignore ocaml(Pa_extend) bogus generated requires and provides.
|
|
|
|
|
2010-01-05 18:15:56 +00:00
|
|
|
* Tue Jan 5 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-4
|
|
|
|
- Include Debian patch to fix support for OCaml 3.11.2.
|
|
|
|
- Include Debian patch to fix typos in man page.
|
|
|
|
- Replace %%define with %%global.
|
|
|
|
- Use upstream RPM 4.8 OCaml dependency generator.
|
|
|
|
- Put ./configure in %%build section.
|
|
|
|
|
2009-12-30 13:48:18 +00:00
|
|
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 5.12-3
|
|
|
|
- Rebuild for OCaml 3.11.2.
|
|
|
|
|
2009-07-25 19:52:51 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.12-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-23 11:44:56 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 5.12-1
|
|
|
|
- New upstream version 5.12, excepted to fix 3.11.1 build problems.
|
|
|
|
|
2009-05-23 07:29:36 +00:00
|
|
|
* Sat May 23 2009 Richard W.M. Jones <rjones@redhat.com> - 5.11-1
|
|
|
|
- Rebuild for OCaml 3.11.1
|
|
|
|
- New upstream version 5.11.
|
|
|
|
- Remove META file listed twice in %%files.
|
|
|
|
|
2009-04-16 09:06:02 +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 06:52:26 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.10-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-04 16:47:49 +00:00
|
|
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 5.10-2
|
|
|
|
- Rebuild for OCaml 3.11.0+rc1.
|
|
|
|
|
2008-11-20 16:20:18 +00:00
|
|
|
* Thu Nov 20 2008 Richard W.M. Jones <rjones@redhat.com> - 5.10-1
|
|
|
|
- New upstream version 5.10.
|
|
|
|
|
|
|
|
* Wed Nov 19 2008 Richard W.M. Jones <rjones@redhat.com> - 5.09-2
|
|
|
|
- Rebuild for OCaml 3.11.0
|
|
|
|
|
2008-08-31 09:39:06 +00:00
|
|
|
* Sun Aug 31 2008 Richard W.M. Jones <rjones@redhat.com> - 5.09-1
|
|
|
|
- New upstream version 5.09.
|
|
|
|
|
2008-04-23 10:26:05 +00:00
|
|
|
* Wed Apr 23 2008 Richard W.M. Jones <rjones@redhat.com> - 5.08-3
|
|
|
|
- Rebuild for OCaml 3.10.2.
|
|
|
|
|
2008-03-01 19:03:19 +00:00
|
|
|
* Sat Mar 1 2008 Richard W.M. Jones <rjones@redhat.com> - 5.08-2
|
|
|
|
- Build on ppc64.
|
|
|
|
|
2008-03-01 18:59:37 +00:00
|
|
|
* Thu Feb 21 2008 Richard W.M. Jones <rjones@redhat.com> - 5.08-1
|
|
|
|
- New upstream version 5.08.
|
|
|
|
- BR ocaml >= 3.10.1.
|
|
|
|
|
|
|
|
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 5.04-2
|
|
|
|
- Strip the *.opt binaries.
|
|
|
|
|
|
|
|
* Thu Dec 13 2007 Stijn Hoop <stijn@win.tue.nl> - 5.04-1
|
|
|
|
- Update to 5.04
|
|
|
|
|
|
|
|
* Wed Aug 8 2007 Richard W.M. Jones <rjones@redhat.com> - 4.07-2
|
|
|
|
- Add a META file.
|
|
|
|
|
|
|
|
* Wed Aug 8 2007 Richard W.M. Jones <rjones@redhat.com> - 4.07-1
|
|
|
|
- Initial RPM release.
|