Compare commits
99 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
dcd76554d3 | ||
|
979f8b676d | ||
|
5fcfb0274d | ||
|
4dc5e00cfb | ||
|
39471845d4 | ||
|
97160be640 | ||
|
69b7070749 | ||
|
47bb928d91 | ||
|
51f1474e92 | ||
|
898c2f2366 | ||
|
855e720e36 | ||
|
6a17caa8b8 | ||
|
512923173e | ||
|
9b92758266 | ||
|
3a8d4d777e | ||
|
d47187327e | ||
|
2632c31284 | ||
|
613f1f2995 | ||
|
ab14ef71d5 | ||
|
bffad43f1c | ||
|
3f8125c358 | ||
|
2e57e11d58 | ||
|
8a37e57374 | ||
|
7abaa82fd2 | ||
|
1e023e8801 | ||
|
2ba6cd32b7 | ||
|
ba2fd7ea9b | ||
|
beab619d95 | ||
|
7c782e268c | ||
|
02ee537a99 | ||
|
42759de697 | ||
|
a6f461f854 | ||
|
b89a13d383 | ||
|
be75454c81 | ||
|
f0a4cd31eb | ||
|
4910c217f6 | ||
|
10354b3d7b | ||
|
0163df3ec4 | ||
|
ba008944e8 | ||
|
8ff16b8602 | ||
|
7b6eaf8bdb | ||
|
8dc74dba9f | ||
|
8e1b0761c4 | ||
|
7de318ebc1 | ||
|
97f3d0f18d | ||
|
66afc2f7bf | ||
|
0b3fc448d5 | ||
|
25a8f09504 | ||
|
df699c752e | ||
|
2a44bfd4b1 | ||
|
1afe5c3bc4 | ||
|
ea46ed074f | ||
|
a803c3e55d | ||
|
863742b2fc | ||
|
a440de2a60 | ||
|
210e09dbbe | ||
|
35c615683c | ||
|
9f780fd83a | ||
|
71ee0681d5 | ||
|
c25ad8c7bf | ||
|
e01d55e64d | ||
|
be1f695071 | ||
|
3a83cdb85d | ||
|
892df99986 | ||
|
8eb89e83ef | ||
|
d5b9b703e7 | ||
|
c6e3b00a58 | ||
|
3bfde46e4f | ||
|
035eb4bf5e | ||
|
1e66b3d1a4 | ||
|
257252e7b6 | ||
|
2fb75ff396 | ||
|
cc93a96521 | ||
|
4f5c34022a | ||
|
ffb7336cb5 | ||
|
77ebc57e80 | ||
|
dfccee1746 | ||
|
e0c0b7c375 | ||
|
83658c433d | ||
|
6362181282 | ||
|
5b63fa885c | ||
|
acfe8e9bc7 | ||
|
0e6d1b4912 | ||
|
55d9cda45a | ||
|
99a5833028 | ||
|
40a889c7fd | ||
|
6f1ecee27e | ||
|
dc581fee4b | ||
|
51290466f9 | ||
|
35db57463e | ||
|
8988429b73 | ||
|
9545c0e3b1 | ||
|
bce37dd17a | ||
|
a75605f2ff | ||
|
056ae723cb | ||
|
5a5606ea80 | ||
|
55eb1438e3 | ||
|
963d05962a | ||
|
6a00d13f73 |
13
.gitignore
vendored
13
.gitignore
vendored
@ -1 +1,12 @@
|
|||||||
camlp5-5.09.tgz
|
/camlp5-6.12.tgz
|
||||||
|
/camlp5-6.13.tgz
|
||||||
|
/camlp5-6.14.tgz
|
||||||
|
/rel617.tar.gz
|
||||||
|
/rel700.tar.gz
|
||||||
|
/rel703.tar.gz
|
||||||
|
/rel705.tar.gz
|
||||||
|
/camlp5-7.07-git9b9eb124c.tar.gz
|
||||||
|
/rel710.tar.gz
|
||||||
|
/rel711.tar.gz
|
||||||
|
/rel712.tar.gz
|
||||||
|
/rel8.00.tar.gz
|
||||||
|
36
2865ecfe5e02f8895c555396993b49b3b08a3550.patch
Normal file
36
2865ecfe5e02f8895c555396993b49b3b08a3550.patch
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
From 2865ecfe5e02f8895c555396993b49b3b08a3550 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Chet Murthy <chetsky@gmail.com>
|
||||||
|
Date: Fri, 15 Jan 2021 12:35:50 -0800
|
||||||
|
Subject: [PATCH] fix META file generation (DESTDIR) issue; Fix #75
|
||||||
|
|
||||||
|
---
|
||||||
|
Makefile | 2 +-
|
||||||
|
etc/Makefile | 2 +-
|
||||||
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile b/Makefile
|
||||||
|
index c9adcc46..7748ddd6 100644
|
||||||
|
--- a/Makefile
|
||||||
|
+++ b/Makefile
|
||||||
|
@@ -51,7 +51,7 @@ depend:
|
||||||
|
|
||||||
|
local-install::
|
||||||
|
$(RM) -rf local-install && mkdir -p local-install/lib/ocaml
|
||||||
|
- $(MAKE) DESTDIR=`pwd`/local-install/ LIBDIR=lib BINDIR=bin MANDIR=man install
|
||||||
|
+ $(MAKE) DESTDIR= LIBDIR=`pwd`/local-install/lib BINDIR=`pwd`/local-install/bin MANDIR=man install
|
||||||
|
|
||||||
|
install:
|
||||||
|
$(NOVERBOSE) if test -z "$(LIBDIR)"; then \
|
||||||
|
diff --git a/etc/Makefile b/etc/Makefile
|
||||||
|
index ef4593cc..f8913866 100644
|
||||||
|
--- a/etc/Makefile
|
||||||
|
+++ b/etc/Makefile
|
||||||
|
@@ -106,7 +106,7 @@ install:
|
||||||
|
-$(MKDIR) "$(DESTDIR)$(LIBDIR)/$(CAMLP5N)" "$(DESTDIR)$(BINDIR)"
|
||||||
|
$(RM) -f "$(DESTDIR)$(LIBDIR)/$(CAMLP5N)/pa_lex.cmo"
|
||||||
|
cp $(OBJS) $(INSTALL_CMI) "$(DESTDIR)$(LIBDIR)/$(CAMLP5N)/."
|
||||||
|
- sed -e "s|@VERSION@|$(VERSION)|" -e "s|@CAMLP5DIR@|$(DESTDIR)$(LIBDIR)/$(CAMLP5N)|" META.tpl > META
|
||||||
|
+ sed -e "s|@VERSION@|$(VERSION)|" -e "s|@CAMLP5DIR@|$(LIBDIR)/$(CAMLP5N)|" META.tpl > META
|
||||||
|
cp META "$(DESTDIR)$(LIBDIR)/$(CAMLP5N)/."
|
||||||
|
cp lib.sml "$(DESTDIR)$(LIBDIR)/$(CAMLP5N)/."
|
||||||
|
cp $(CAMLP5N)o$(EXE) $(CAMLP5N)sch$(EXE) "$(DESTDIR)$(BINDIR)/."
|
15
camlp5-8.00-kill-warn-error.patch
Normal file
15
camlp5-8.00-kill-warn-error.patch
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
--- camlp5-rel8.00.old/configure 2020-12-27 22:26:24.000000000 +0000
|
||||||
|
+++ camlp5-rel8.00/configure 2021-02-28 22:38:08.341646880 +0000
|
||||||
|
@@ -243,11 +243,7 @@
|
||||||
|
OCAMLC_W_Y=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
-if [ "$($ocamlc -warn-error +A-11 2>&1)" = "" ]; then
|
||||||
|
- WARNERR="-warn-error +A-11"
|
||||||
|
-else
|
||||||
|
- WARNERR=""
|
||||||
|
-fi
|
||||||
|
+WARNERR=""
|
||||||
|
|
||||||
|
if make -f config/Makefile.check --no-print-directory >/dev/null 2>&1; then
|
||||||
|
NO_PR_DIR=--no-print-directory
|
95
camlp5-META
95
camlp5-META
@ -1,95 +0,0 @@
|
|||||||
# Specifications for the "camlp5" preprocessor:
|
|
||||||
requires = ""
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Base for Camlp5 syntax extensions"
|
|
||||||
directory = "+camlp5"
|
|
||||||
|
|
||||||
# For the toploop:
|
|
||||||
archive(byte,toploop,camlp5o) = "camlp5o.cma"
|
|
||||||
archive(byte,toploop,camlp5r) = "camlp5r.cma"
|
|
||||||
|
|
||||||
# Scheme-like syntax:
|
|
||||||
# Do #predicates "syntax,camlp5scheme", followed by #require "camlp5"
|
|
||||||
archive(byte,toploop,camlp5scheme) = "camlp5sch.cma"
|
|
||||||
|
|
||||||
# Standard ML-like syntax:
|
|
||||||
# Do #predicates "syntax,camlp5sml", followed by #require "camlp5"
|
|
||||||
archive(byte,toploop,camlp5sml) = "gramlib.cma camlp5_top.cma pa_sml.cmo"
|
|
||||||
|
|
||||||
# Lisp-like syntax:
|
|
||||||
# Do #predicates "syntax,camlp5lisp", followed by #require "camlp5"
|
|
||||||
archive(byte,toploop,camlp5lisp) = "gramlib.cma camlp5_top.cma pa_lisp.cmo"
|
|
||||||
|
|
||||||
# For the preprocessor itself:
|
|
||||||
archive(syntax,preprocessor,camlp5o) = "pa_o.cmo pa_op.cmo pr_dump.cmo"
|
|
||||||
archive(syntax,preprocessor,camlp5r) = "pa_r.cmo pa_rp.cmo pr_dump.cmo"
|
|
||||||
archive(syntax,preprocessor,camlp5sml) = "pa_sml.cmo pr_dump.cmo"
|
|
||||||
archive(syntax,preprocessor,camlp5scheme) = "pa_scheme.cmo pr_dump.cmo"
|
|
||||||
archive(syntax,preprocessor,camlp5lisp) = "pa_lisp.cmo pr_dump.cmo"
|
|
||||||
preprocessor = "camlp5 -nolib"
|
|
||||||
|
|
||||||
package "gramlib" (
|
|
||||||
requires(toploop) = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Grammar library to create syntax extensions"
|
|
||||||
archive(byte) = "gramlib.cma"
|
|
||||||
archive(byte,toploop) = "" # already contained in camlp5*.cma
|
|
||||||
archive(native) = "gramlib.cmxa"
|
|
||||||
)
|
|
||||||
|
|
||||||
package "quotations" (
|
|
||||||
requires = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Syntax extension: Quotations to create AST nodes"
|
|
||||||
archive(syntax,preprocessor) = "q_MLast.cmo"
|
|
||||||
archive(syntax,toploop) = "q_MLast.cmo"
|
|
||||||
)
|
|
||||||
|
|
||||||
package "phony_quotations" (
|
|
||||||
requires = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Syntax extension: Phony quotations"
|
|
||||||
archive(syntax,preprocessor) = "q_phony.cmo"
|
|
||||||
archive(syntax,toploop) = "q_phony.cmo"
|
|
||||||
)
|
|
||||||
|
|
||||||
package "extend" (
|
|
||||||
requires = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Syntax extension: EXTEND the camlp5 grammar"
|
|
||||||
archive(syntax,preprocessor) = "pa_extend.cmo"
|
|
||||||
archive(syntax,toploop) = "pa_extend.cmo"
|
|
||||||
)
|
|
||||||
|
|
||||||
package "extfun" (
|
|
||||||
requires = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Syntax extension: Extensible functions"
|
|
||||||
archive(syntax,preprocessor) = "pa_extfun.cmo"
|
|
||||||
archive(syntax,toploop) = "pa_extfun.cmo"
|
|
||||||
)
|
|
||||||
|
|
||||||
package "fstream" (
|
|
||||||
requires = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Syntax extension: Functional stream parsers"
|
|
||||||
archive(syntax,preprocessor) = "pa_fstream.cmo"
|
|
||||||
archive(syntax,toploop) = "pa_fstream.cmo"
|
|
||||||
)
|
|
||||||
|
|
||||||
package "macro" (
|
|
||||||
requires = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Syntax extension: Conditional compilation"
|
|
||||||
archive(syntax,preprocessor) = "pa_macro.cmo"
|
|
||||||
archive(syntax,toploop) = "pa_macro.cmo"
|
|
||||||
)
|
|
||||||
|
|
||||||
package "unit_constraints" (
|
|
||||||
requires = "camlp5"
|
|
||||||
version = "[distributed with Ocaml]"
|
|
||||||
description = "Syntax extension: Type constraints of type unit (revised syntax only)"
|
|
||||||
archive(syntax,preprocessor,camlp5r) = "pa_ru.cmo"
|
|
||||||
archive(syntax,toploop,camlp5r) = "pa_ru.cmo"
|
|
||||||
error(syntax,-camlp5r) = "Not available"
|
|
||||||
)
|
|
@ -1,23 +1,35 @@
|
|||||||
%define opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
%global opt %(test -x %{_bindir}/ocamlopt && echo 1 || echo 0)
|
||||||
%define debug_package %{nil}
|
%if !%{opt}
|
||||||
|
%global debug_package %{nil}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%global major 8
|
||||||
|
%global minor 00
|
||||||
|
|
||||||
Name: ocaml-camlp5
|
Name: ocaml-camlp5
|
||||||
Version: 5.09
|
Version: %{major}.%{minor}
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Classical version of camlp4 OCaml preprocessor
|
Summary: Classical version of camlp4 OCaml preprocessor
|
||||||
|
|
||||||
Group: Development/Libraries
|
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://pauillac.inria.fr/~ddr/camlp5/
|
URL: https://camlp5.github.io/
|
||||||
Source0: http://pauillac.inria.fr/~ddr/camlp5/distrib/src/camlp5-%{version}.tgz
|
|
||||||
Source1: camlp5-META
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
|
|
||||||
BuildRequires: ocaml >= 3.10.1, ocaml-ocamldoc
|
Source0: https://github.com/camlp5/camlp5/archive/rel%{major}.%{minor}.tar.gz
|
||||||
|
|
||||||
%define _use_internal_dependency_generator 0
|
# Kill -warn-error A
|
||||||
%define __find_requires /usr/lib/rpm/ocaml-find-requires.sh -i Asttypes -i Parsetree
|
Patch0: camlp5-8.00-kill-warn-error.patch
|
||||||
%define __find_provides /usr/lib/rpm/ocaml-find-provides.sh -i Pa_extend
|
|
||||||
|
# https://github.com/camlp5/camlp5/issues/75
|
||||||
|
# Upstream in > 8.00.
|
||||||
|
Patch1: 2865ecfe5e02f8895c555396993b49b3b08a3550.patch
|
||||||
|
|
||||||
|
BuildRequires: make
|
||||||
|
BuildRequires: ocaml
|
||||||
|
BuildRequires: ocaml-ocamldoc
|
||||||
|
BuildRequires: perl
|
||||||
|
|
||||||
|
%global __ocaml_requires_opts -i Asttypes -i Parsetree -i Pa_extend
|
||||||
|
%global __ocaml_provides_opts -i Dynlink -i Dynlinkaux -i Pa_extend
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Camlp5 is a preprocessor-pretty-printer of OCaml.
|
Camlp5 is a preprocessor-pretty-printer of OCaml.
|
||||||
@ -31,7 +43,6 @@ ocaml-camlp4 package.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %{name}
|
Summary: Development files for %{name}
|
||||||
Group: Development/Libraries
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
|
||||||
@ -41,38 +52,50 @@ developing applications that use %{name}.
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n camlp5-%{version}
|
%setup -q -n camlp5-rel%{major}.%{minor}
|
||||||
./configure
|
%autopatch -p1
|
||||||
|
find . -name .gitignore -delete
|
||||||
|
|
||||||
|
# Build with debug information
|
||||||
|
sed -i 's,WARNERR="",WARNERR="-g",' configure
|
||||||
|
sed -i 's,-linkall,& -g,g' top/Makefile
|
||||||
|
for fil in compile/compile.sh $(find . -name Makefile); do
|
||||||
|
sed -i 's,\$[({]OCAMLN[})]c,& -g,;s,\$[({]OCAMLN[})]opt,& -g,;s,LINKFLAGS=,&-g ,' $fil
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make all
|
# Upstream uses hand-written configure, grrrrrr.
|
||||||
|
./configure \
|
||||||
|
--prefix %{_prefix} \
|
||||||
|
--bindir %{_bindir} \
|
||||||
|
--libdir %{_libdir}/ocaml \
|
||||||
|
--mandir %{_mandir}
|
||||||
%if %opt
|
%if %opt
|
||||||
make opt
|
make %{_smp_mflags} world.opt
|
||||||
strip meta/camlp5r.opt etc/camlp5o.opt
|
%else
|
||||||
|
make %{_smp_mflags} world
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml
|
||||||
|
# This is a hack because the make install rule is broken upstream.
|
||||||
|
# We move the file later.
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/ocaml/ocaml
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
mkdir -p $RPM_BUILD_ROOT%{_bindir}
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_mandir}
|
mkdir -p $RPM_BUILD_ROOT%{_mandir}
|
||||||
make install \
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
LIBDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml \
|
cp -p etc/META $RPM_BUILD_ROOT%{_libdir}/ocaml/camlp5
|
||||||
OLIBDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml \
|
rm -f doc/htmlp/{*.sh,Makefile,html2*}
|
||||||
BINDIR=$RPM_BUILD_ROOT%{_bindir} \
|
pushd $RPM_BUILD_ROOT%{_libdir}/ocaml
|
||||||
MANDIR=$RPM_BUILD_ROOT%{_mandir}
|
mv ocaml/topfind.camlp5 .
|
||||||
cp %{SOURCE1} $RPM_BUILD_ROOT%{_libdir}/ocaml/camlp5/META
|
rmdir ocaml
|
||||||
|
popd
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%license LICENSE
|
||||||
%doc README LICENSE
|
%doc README.md
|
||||||
%{_libdir}/ocaml/camlp5
|
%{_libdir}/ocaml/camlp5
|
||||||
%if %opt
|
%if %opt
|
||||||
%exclude %{_libdir}/ocaml/camlp5/*.a
|
%exclude %{_libdir}/ocaml/camlp5/*.a
|
||||||
@ -80,12 +103,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%exclude %{_libdir}/ocaml/camlp5/*.cmx
|
%exclude %{_libdir}/ocaml/camlp5/*.cmx
|
||||||
%endif
|
%endif
|
||||||
%exclude %{_libdir}/ocaml/camlp5/*.mli
|
%exclude %{_libdir}/ocaml/camlp5/*.mli
|
||||||
%{_libdir}/ocaml/camlp5/META
|
%{_libdir}/ocaml/topfind.camlp5
|
||||||
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%doc CHANGES ICHANGES DEVEL UPGRADING doc/html
|
||||||
%doc README LICENSE CHANGES ICHANGES DEVEL UPGRADING
|
|
||||||
%if %opt
|
%if %opt
|
||||||
%{_libdir}/ocaml/camlp5/*.a
|
%{_libdir}/ocaml/camlp5/*.a
|
||||||
%{_libdir}/ocaml/camlp5/*.cmxa
|
%{_libdir}/ocaml/camlp5/*.cmxa
|
||||||
@ -99,6 +121,282 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Feb 28 22:24:15 GMT 2021 Richard W.M. Jones <rjones@redhat.com> - 8.00-1
|
||||||
|
- New upstream version 8.00.
|
||||||
|
- OCaml 4.12.0 build
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.12-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Sep 02 2020 Richard W.M. Jones <rjones@redhat.com> - 7.12-9
|
||||||
|
- Rebuild with correct tag.
|
||||||
|
|
||||||
|
* Tue Sep 01 2020 Richard W.M. Jones <rjones@redhat.com> - 7.12-8
|
||||||
|
- OCaml 4.11.1 rebuild
|
||||||
|
|
||||||
|
* Fri Aug 21 2020 Richard W.M. Jones <rjones@redhat.com> - 7.12-1
|
||||||
|
- New upstream version 7.12.
|
||||||
|
- Remove upstream patches.
|
||||||
|
- OCaml 4.11.0 rebuild
|
||||||
|
- Remove topfind.camlp5 - seems to have been removed from upstream.
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.11-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 04 2020 Richard W.M. Jones <rjones@redhat.com> - 7.11-5
|
||||||
|
- OCaml 4.11.0+dev2-2020-04-22 rebuild
|
||||||
|
|
||||||
|
* Mon May 04 2020 Richard W.M. Jones <rjones@redhat.com> - 7.11-4
|
||||||
|
- Include all upstream pre-7.12 patches.
|
||||||
|
- Fixes support for OCaml 4.11.
|
||||||
|
|
||||||
|
* Fri Apr 17 2020 Richard W.M. Jones <rjones@redhat.com> - 7.11-3
|
||||||
|
- OCaml 4.11.0 pre-release
|
||||||
|
|
||||||
|
* Thu Apr 02 2020 Richard W.M. Jones <rjones@redhat.com> - 7.11-2
|
||||||
|
- Update all OCaml dependencies for RPM 4.16.
|
||||||
|
|
||||||
|
* Sun Mar 08 2020 Richard W.M. Jones <rjones@redhat.com> - 7.11-1
|
||||||
|
- Update to 7.11.
|
||||||
|
- Remove OCaml 4.10 support patch, now included upstream.
|
||||||
|
|
||||||
|
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 7.10-6
|
||||||
|
- OCaml 4.10.0 final.
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7.10-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 7.10-4
|
||||||
|
- Add patch for OCaml 4.10 support.
|
||||||
|
|
||||||
|
* Sat Jan 18 2020 Richard W.M. Jones <rjones@redhat.com> - 7.10-3
|
||||||
|
- OCaml 4.10.0+beta1 rebuild.
|
||||||
|
|
||||||
|
* Thu Jan 09 2020 Richard W.M. Jones <rjones@redhat.com> - 7.10-2
|
||||||
|
- OCaml 4.09.0 for riscv64
|
||||||
|
|
||||||
|
* Thu Dec 05 2019 Richard W.M. Jones <rjones@redhat.com> - 7.10-1
|
||||||
|
- Update to release 7.10.
|
||||||
|
- OCaml 4.09.0 (final) rebuild.
|
||||||
|
|
||||||
|
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 7.08-0.5.git9b9eb124c
|
||||||
|
- OCaml 4.08.1 (final) rebuild.
|
||||||
|
|
||||||
|
* Wed Jul 31 2019 Richard W.M. Jones <rjones@redhat.com> - 7.08-0.4.git9b9eb124c
|
||||||
|
- OCaml 4.08.1 (rc2) rebuild.
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.08-0.3.git9b9eb124c
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 27 2019 Richard W.M. Jones <rjones@redhat.com> - 7.08-0.2.git9b9eb124c
|
||||||
|
- OCaml 4.08.0 (final) rebuild.
|
||||||
|
|
||||||
|
* Thu Jun 27 2019 Richard W.M. Jones <rjones@redhat.com> - 7.08-0.1
|
||||||
|
- Update to prerelease of 7.08 which will support OCaml 4.08.
|
||||||
|
- Enable parallel builds.
|
||||||
|
|
||||||
|
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 7.05-8
|
||||||
|
- Bump release and rebuild.
|
||||||
|
|
||||||
|
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 7.05-7
|
||||||
|
- Bump release and rebuild.
|
||||||
|
|
||||||
|
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 7.05-6
|
||||||
|
- OCaml 4.08.0 (beta 3) rebuild.
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 7.05-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.05-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 7.05-3
|
||||||
|
- OCaml 4.07.0 (final) rebuild.
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Richard W.M. Jones <rjones@redhat.com> - 7.05-2
|
||||||
|
- New upstream version 7.05.
|
||||||
|
- Bump and rebuild for OCaml 4.07.0-rc1.
|
||||||
|
|
||||||
|
* Thu Apr 26 2018 Richard W.M. Jones <rjones@redhat.com> - 7.03-3
|
||||||
|
- OCaml 4.07.0-beta2 rebuild.
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7.03-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 17 2017 Richard W.M. Jones <rjones@redhat.com> - 7.03-1
|
||||||
|
- New upstream version 7.03.
|
||||||
|
- OCaml 4.06.0 rebuild.
|
||||||
|
|
||||||
|
* Tue Aug 08 2017 Richard W.M. Jones <rjones@redhat.com> - 7.00-4
|
||||||
|
- OCaml 4.05.0 rebuild.
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.00-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7.00-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* Sat May 13 2017 Richard W.M. Jones <rjones@redhat.com> - 6.17-3
|
||||||
|
- OCaml 4.04.1 rebuild.
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 6.17-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 6.14-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 30 2015 Richard W.M. Jones <rjones@redhat.com> - 6.14-1
|
||||||
|
- New upstream version 6.14.
|
||||||
|
|
||||||
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 6.13-3
|
||||||
|
- OCaml 4.02.3 rebuild.
|
||||||
|
|
||||||
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 6.13-2
|
||||||
|
- ocaml-4.02.2 final rebuild.
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 6.13-1
|
||||||
|
- New upstream version 6.13.
|
||||||
|
- ocaml-4.02.2 rebuild.
|
||||||
|
|
||||||
|
* Fri May 15 2015 Ville Skyttä <ville.skytta@iki.fi> - 6.12-3
|
||||||
|
- Mark LICENSE as %%license, don't ship .gitignore
|
||||||
|
|
||||||
|
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 6.12-2
|
||||||
|
- ocaml-4.02.1 rebuild.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 6.12-0.5.git63a8c30f
|
||||||
|
- ocaml-4.02.0 final rebuild.
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 6.12-0.git63a8c30f.3
|
||||||
|
- ocaml-4.02.0+rc1 rebuild.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
- OCaml 4.02.0 beta rebuild.
|
||||||
|
- New source URL.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Tue Apr 15 2014 Richard W.M. Jones <rjones@redhat.com> - 6.11-3
|
||||||
|
- Remove ocaml_arches macro (RHBZ#1087794).
|
||||||
|
|
||||||
|
* Thu Apr 10 2014 Michel Normand <normand@linux.vnet.ibm.com> 6.11-2
|
||||||
|
- increase stack size for ppc64/ppc64le (RHBZ#1085850)
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Wed Oct 17 2012 Jerry James <loganjerry@gmail.com> - 6.07-1
|
||||||
|
- New upstream version 6.07 (provides OCaml 4.00.1 support)
|
||||||
|
- Add -typevar patch to fix the build
|
||||||
|
|
||||||
|
* Sat Jul 28 2012 Richard W.M. Jones <rjones@redhat.com> - 6.06-4
|
||||||
|
- Rebuild for OCaml 4.00.0 official release.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Sun Jun 10 2012 Richard W.M. Jones <rjones@redhat.com> - 6.06-2
|
||||||
|
- Rebuild for OCaml 4.00.0.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Fri Jan 06 2012 Richard W.M. Jones <rjones@redhat.com> - 6.02.3-2
|
||||||
|
- Rebuild for OCaml 3.12.1.
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* Wed Jan 13 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-6
|
||||||
|
- Ignore bogus provides Dynlink and Dynlinkaux.
|
||||||
|
|
||||||
|
* Wed Jan 6 2010 Richard W.M. Jones <rjones@redhat.com> - 5.12-5
|
||||||
|
- Ignore ocaml(Pa_extend) bogus generated requires and provides.
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* Wed Dec 30 2009 Richard W.M. Jones <rjones@redhat.com> - 5.12-3
|
||||||
|
- Rebuild for OCaml 3.11.2.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* 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)
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Wed Nov 26 2008 Richard W.M. Jones <rjones@redhat.com> - 5.10-2
|
||||||
|
- Rebuild for OCaml 3.11.0+rc1.
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
* Sun Aug 31 2008 Richard W.M. Jones <rjones@redhat.com> - 5.09-1
|
* Sun Aug 31 2008 Richard W.M. Jones <rjones@redhat.com> - 5.09-1
|
||||||
- New upstream version 5.09.
|
- New upstream version 5.09.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user