tstellar / rpms / ocaml

Forked from rpms/ocaml 3 years ago
Clone
ead83e2
# OCaml has a bytecode backend that works on anything with a C
ead83e2
# compiler, and a native code backend available on a subset of
ead83e2
# architectures.  A further subset of architectures support native
ead83e2
# dynamic linking.
ead83e2
ead83e2
%ifarch %{ocaml_native_compiler}
ead83e2
%global native_compiler 1
ead83e2
%else
ead83e2
%global native_compiler 0
ead83e2
%endif
ead83e2
ead83e2
%ifarch %{ocaml_natdynlink}
ead83e2
%global natdynlink 1
ead83e2
%else
ead83e2
%global natdynlink 0
ead83e2
%endif
ead83e2
22dd712
# These are all the architectures that the tests run on.  The tests
22dd712
# take a long time to run, so don't run them on slow machines.
22dd712
%global test_arches aarch64 %{power64} x86_64
22dd712
# These are the architectures for which the tests must pass otherwise
22dd712
# the build will fail.
4644b25
%global test_arches_required aarch64 ppc64le x86_64
22dd712
22dd712
# Architectures where parallel builds fail.
5f905fc
#%global no_parallel_build_arches aarch64
22dd712
fdf6a5a
Name:           ocaml
a4c8f9a
Version:        4.06.0
42201e8
Release:        5%{?dist}
fdf6a5a
1837515
Summary:        OCaml compiler and programming environment
fdf6a5a
fdf6a5a
License:        QPL and (LGPLv2+ with exceptions)
f7302e6
fdf6a5a
URL:            http://www.ocaml.org
f7302e6
a4c8f9a
Source0:        http://caml.inria.fr/pub/distrib/ocaml-4.06/ocaml-%{version}.tar.xz
22dd712
a071122
# IMPORTANT NOTE:
a071122
#
a071122
# These patches are generated from unpacked sources stored in a
fcd7508
# pagure.io git repository.  If you change the patches here, they will
fcd7508
# be OVERWRITTEN by the next update.  Instead, request commit access
fcd7508
# to the pagure project:
a071122
#
fcd7508
# https://pagure.io/fedora-ocaml
a071122
#
a4c8f9a
# Current branch: fedora-28-4.06.0
7335bbf
#
a071122
# ALTERNATIVELY add a patch to the end of the list (leaving the
a071122
# existing patches unchanged) adding a comment to note that it should
a071122
# be incorporated into the git repo at a later time.
a071122
#
5f905fc
5f905fc
# Fedora-specific downstream patches.
a4c8f9a
Patch0001:      0001-Don-t-add-rpaths-to-libraries.patch
a4c8f9a
Patch0002:      0002-ocamlbyteinfo-ocamlplugininfo-Useful-utilities-from-.patch
a4c8f9a
Patch0003:      0003-configure-Allow-user-defined-C-compiler-flags.patch
5f905fc
a4c8f9a
# Out of tree patch for RISC-V support.
3faf975
# https://github.com/nojb/riscv-ocaml
a4c8f9a
Patch0004:      0004-Add-RISC-V-backend.patch
42201e8
Patch0005:      0005-Copyright-untabify.patch
42201e8
Patch0006:      0006-fix-caml_c_call-reload-caml_young_limit.patch
37ad9be
bcd06cf
BuildRequires:  gcc
22dd712
BuildRequires:  binutils-devel
fdf6a5a
BuildRequires:  ncurses-devel
03108e3
BuildRequires:  gdbm-devel
a48061f
%ifnarch riscv64
fdf6a5a
BuildRequires:  emacs
a48061f
%endif
8859c79
BuildRequires:  gawk
f1516cc
BuildRequires:  perl-interpreter
bf42eca
BuildRequires:  util-linux
a5dcf3e
BuildRequires:  libICE-devel
a5dcf3e
BuildRequires:  libSM-devel
03108e3
BuildRequires:  libX11-devel
a5dcf3e
BuildRequires:  libXaw-devel
a5dcf3e
BuildRequires:  libXext-devel
a5dcf3e
BuildRequires:  libXft-devel
a5dcf3e
BuildRequires:  libXmu-devel
a5dcf3e
BuildRequires:  libXrender-devel
a5dcf3e
BuildRequires:  libXt-devel
25069bf
BuildRequires:  chrpath
66cff0b
6c6aa24
Requires:       gcc
66cff0b
7439bfe
# Because we pass -c flag to ocaml-find-requires (to avoid circular
7439bfe
# dependencies) we also have to explicitly depend on the right version
7439bfe
# of ocaml-runtime.
7439bfe
Requires:       ocaml-runtime = %{version}-%{release}
7439bfe
0d053e7
# Bundles an MD5 implementation in byterun/md5.{c,h}
0d053e7
Provides:       bundled(md5-plumb)
0d053e7
fdf6a5a
Provides:       ocaml(compiler) = %{version}
01afb12
22dd712
%global __ocaml_requires_opts -c -f '%{buildroot}%{_bindir}/ocamlrun %{buildroot}%{_bindir}/ocamlobjinfo.byte'
22dd712
%global __ocaml_provides_opts -f '%{buildroot}%{_bindir}/ocamlrun %{buildroot}%{_bindir}/ocamlobjinfo.byte'
fdf6a5a
f7302e6
cvsextras be41c84
%description
1837515
OCaml is a high-level, strongly-typed, functional and object-oriented
1837515
programming language from the ML family of languages.
cvsextras be41c84
cvsextras be41c84
This package comprises two batch compilers (a fast bytecode compiler
cvsextras be41c84
and an optimizing native-code compiler), an interactive toplevel system,
7335bbf
parsing tools (Lex,Yacc), a replay debugger, a documentation generator,
cvsextras be41c84
and a comprehensive library.
cvsextras be41c84
a5dcf3e
6c6aa24
%package runtime
1837515
Summary:        OCaml runtime environment
bf42eca
Requires:       util-linux
fdf6a5a
Provides:       ocaml(runtime) = %{version}
6c6aa24
6c6aa24
%description runtime
1837515
OCaml is a high-level, strongly-typed, functional and object-oriented
1837515
programming language from the ML family of languages.
6c6aa24
1837515
This package contains the runtime environment needed to run OCaml
1837515
bytecode.
6c6aa24
6c6aa24
6c6aa24
%package source
1837515
Summary:        Source code for OCaml libraries
6c6aa24
Requires:       ocaml = %{version}-%{release}
6c6aa24
6c6aa24
%description source
1837515
Source code for OCaml libraries.
6c6aa24
6c6aa24
6c6aa24
%package x11
1837515
Summary:        X11 support for OCaml
6c6aa24
Requires:       ocaml-runtime = %{version}-%{release}
6c6aa24
Requires:       libX11-devel
6c6aa24
6c6aa24
%description x11
1837515
X11 support for OCaml.
6c6aa24
6c6aa24
cvsextras be41c84
%package ocamldoc
2d6392e
Summary:        Documentation generator for OCaml
fdf6a5a
Requires:       ocaml = %{version}-%{release}
fd5d937
Provides:	ocamldoc
cvsextras be41c84
cvsextras be41c84
%description ocamldoc
1837515
Documentation generator for OCaml.
cvsextras be41c84
a5dcf3e
a48061f
%ifnarch riscv64
cvsextras be41c84
%package emacs
1837515
Summary:        Emacs mode for OCaml
fdf6a5a
Requires:       ocaml = %{version}-%{release}
1ea9148
Requires:       emacs(bin)
cvsextras be41c84
cvsextras be41c84
%description emacs
1837515
Emacs mode for OCaml.
a48061f
%endif
cvsextras be41c84
a5dcf3e
cvsextras be41c84
%package docs
1837515
Summary:        Documentation for OCaml
fdf6a5a
Requires:       ocaml = %{version}-%{release}
fdf6a5a
Requires(post): /sbin/install-info
6c6aa24
Requires(preun): /sbin/install-info
6c6aa24
cvsextras be41c84
cvsextras be41c84
%description docs
1837515
OCaml is a high-level, strongly-typed, functional and object-oriented
1837515
programming language from the ML family of languages.
6c6aa24
e65cf15
This package contains man pages.
cvsextras be41c84
a5dcf3e
1837515
%package compiler-libs
1837515
Summary:        Compiler libraries for OCaml
1837515
Requires:       ocaml = %{version}-%{release}
1837515
1837515
1837515
%description compiler-libs
1837515
OCaml is a high-level, strongly-typed, functional and object-oriented
1837515
programming language from the ML family of languages.
1837515
1837515
This package contains some modules used internally by the OCaml
1837515
compilers, useful for the development of some OCaml applications.
1837515
Note that this exposes internal details of the OCaml compiler which
1837515
may not be portable between versions.
1837515
1837515
cvsextras be41c84
%prep
c99809b
%setup -q -T -b 0 -n %{name}-%{version}
22dd712
%autopatch -p1
817b039
a5dcf3e
cvsextras be41c84
%build
a4c8f9a
%ifnarch %{no_parallel_build_arches}
a4c8f9a
make="make %{?_smp_mflags}"
a4c8f9a
%else
f67fde6
unset MAKEFLAGS
22dd712
make=make
a4c8f9a
%endif
518f1af
5d60b03
CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" \
9cefc9c
./configure \
cvsextras be41c84
    -bindir %{_bindir} \
cvsextras be41c84
    -libdir %{_libdir}/ocaml \
eafcfe6
    -x11lib %{_libdir} \
eafcfe6
    -x11include %{_includedir} \
1196986
    -mandir %{_mandir}/man1 \
1196986
    -no-curses
22dd712
$make world
01afb12
%if %{native_compiler}
22dd712
$make opt
22dd712
$make opt.opt
01afb12
%endif
a48061f
%ifnarch riscv64
fa207eb
make -C emacs ocamltags
a48061f
%endif
6c6aa24
a06adc6
# Currently these tools are supplied by Debian, but are expected
a06adc6
# to go upstream at some point.
84643c6
includes="-nostdlib -I stdlib -I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I otherlibs/unix -I otherlibs/str -I otherlibs/dynlink"
84643c6
boot/ocamlrun ./ocamlc $includes dynlinkaux.cmo ocamlbyteinfo.ml -o ocamlbyteinfo
2d6392e
# ocamlplugininfo doesn't compile because it needs 'dynheader' (type
2d6392e
# decl) and I have no idea where that comes from
c6dd15b
#cp otherlibs/dynlink/natdynlink.ml .
c6dd15b
#boot/ocamlrun ./ocamlopt $includes unix.cmxa str.cmxa natdynlink.ml ocamlplugininfo.ml -o ocamlplugininfo
a06adc6
a5dcf3e
78b8ce3
%check
22dd712
%ifarch %{test_arches}
78b8ce3
cd testsuite
78b8ce3
22dd712
%ifarch %{test_arches_required}
22dd712
make -j1 all
22dd712
%else
22dd712
make -j1 all ||:
22dd712
%endif
78b8ce3
%endif
78b8ce3
78b8ce3
cvsextras be41c84
%install
6c6aa24
make install \
6c6aa24
     BINDIR=$RPM_BUILD_ROOT%{_bindir} \
6c6aa24
     LIBDIR=$RPM_BUILD_ROOT%{_libdir}/ocaml \
6c6aa24
     MANDIR=$RPM_BUILD_ROOT%{_mandir}
cvsextras be41c84
perl -pi -e "s|^$RPM_BUILD_ROOT||" $RPM_BUILD_ROOT%{_libdir}/ocaml/ld.conf
6c6aa24
a48061f
%ifnarch riscv64
cvsextras be41c84
(
6c6aa24
    # install emacs files
cvsextras be41c84
    cd emacs;
6c6aa24
    make install \
fdf6a5a
         BINDIR=$RPM_BUILD_ROOT%{_bindir} \
fdf6a5a
         EMACSDIR=$RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp
cvsextras be41c84
    make install-ocamltags BINDIR=$RPM_BUILD_ROOT%{_bindir}
cvsextras be41c84
)
a48061f
%endif
6c6aa24
6a495c8
echo %{version} > $RPM_BUILD_ROOT%{_libdir}/ocaml/fedora-ocaml-release
6c6aa24
25069bf
# Remove rpaths from stublibs .so files.
25069bf
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/ocaml/stublibs/*.so
25069bf
a06adc6
install -m 0755 ocamlbyteinfo $RPM_BUILD_ROOT%{_bindir}
c6dd15b
#install -m 0755 ocamlplugininfo $RPM_BUILD_ROOT%{_bindir}
a06adc6
2d6392e
find $RPM_BUILD_ROOT -name .ignore -delete
2d6392e
34fde6c
# Remove .cmt and .cmti files, for now.  We could package them later.
34fde6c
# See also: http://www.ocamlpro.com/blog/2012/08/20/ocamlpro-and-4.00.0.html
34fde6c
find $RPM_BUILD_ROOT \( -name '*.cmt' -o -name '*.cmti' \) -a -delete
34fde6c
6c6aa24
cvsextras be41c84
%files
2d6392e
%doc LICENSE
6c6aa24
%{_bindir}/ocaml
22dd712
a06adc6
%{_bindir}/ocamlbyteinfo
a4c8f9a
%{_bindir}/ocamlcmt
22dd712
%{_bindir}/ocamldebug
22dd712
#%{_bindir}/ocamlplugininfo
22dd712
%{_bindir}/ocamlyacc
22dd712
22dd712
# symlink to either .byte or .opt version
6c6aa24
%{_bindir}/ocamlc
6c6aa24
%{_bindir}/ocamlcp
6c6aa24
%{_bindir}/ocamldep
6c6aa24
%{_bindir}/ocamllex
6c6aa24
%{_bindir}/ocamlmklib
6c6aa24
%{_bindir}/ocamlmktop
6c6aa24
%{_bindir}/ocamlobjinfo
22dd712
%{_bindir}/ocamloptp
22dd712
%{_bindir}/ocamlprof
22dd712
22dd712
# bytecode versions
22dd712
%{_bindir}/ocamlc.byte
22dd712
%{_bindir}/ocamlcp.byte
22dd712
%{_bindir}/ocamldep.byte
22dd712
%{_bindir}/ocamllex.byte
22dd712
%{_bindir}/ocamlmklib.byte
22dd712
%{_bindir}/ocamlmktop.byte
22dd712
%{_bindir}/ocamlobjinfo.byte
22dd712
%{_bindir}/ocamloptp.byte
22dd712
%{_bindir}/ocamlprof.byte
22dd712
22dd712
%if %{native_compiler}
22dd712
# native code versions
22dd712
%{_bindir}/ocamlc.opt
22dd712
%{_bindir}/ocamlcp.opt
22dd712
%{_bindir}/ocamldep.opt
22dd712
%{_bindir}/ocamllex.opt
22dd712
%{_bindir}/ocamlmklib.opt
22dd712
%{_bindir}/ocamlmktop.opt
22dd712
%{_bindir}/ocamlobjinfo.opt
22dd712
%{_bindir}/ocamloptp.opt
22dd712
%{_bindir}/ocamlprof.opt
22dd712
%endif
22dd712
01afb12
%if %{native_compiler}
6c6aa24
%{_bindir}/ocamlopt
22dd712
%{_bindir}/ocamlopt.byte
6c6aa24
%{_bindir}/ocamlopt.opt
01afb12
%endif
22dd712
c6dd15b
#%{_libdir}/ocaml/addlabels
c6dd15b
#%{_libdir}/ocaml/scrapelabels
6c6aa24
%{_libdir}/ocaml/camlheader
6c6aa24
%{_libdir}/ocaml/camlheader_ur
6c6aa24
%{_libdir}/ocaml/expunge
6c6aa24
%{_libdir}/ocaml/extract_crc
6c6aa24
%{_libdir}/ocaml/ld.conf
6c6aa24
%{_libdir}/ocaml/Makefile.config
6c6aa24
%{_libdir}/ocaml/*.a
01afb12
%if %{natdynlink}
f7302e6
%{_libdir}/ocaml/*.cmxs
d31f3e6
%endif
01afb12
%if %{native_compiler}
6c6aa24
%{_libdir}/ocaml/*.cmxa
6c6aa24
%{_libdir}/ocaml/*.cmx
6c6aa24
%{_libdir}/ocaml/*.o
c5cb967
%{_libdir}/ocaml/libasmrun_shared.so
01afb12
%endif
01afb12
%{_libdir}/ocaml/*.mli
f7302e6
%{_libdir}/ocaml/libcamlrun_shared.so
c6dd15b
%{_libdir}/ocaml/objinfo_helper
6c6aa24
%{_libdir}/ocaml/vmthreads/*.mli
6c6aa24
%{_libdir}/ocaml/vmthreads/*.a
01afb12
%if %{native_compiler}
6c6aa24
%{_libdir}/ocaml/threads/*.a
6c6aa24
%{_libdir}/ocaml/threads/*.cmxa
6c6aa24
%{_libdir}/ocaml/threads/*.cmx
01afb12
%endif
6c6aa24
%{_libdir}/ocaml/caml
6c6aa24
%exclude %{_libdir}/ocaml/graphicsX11.mli
6c6aa24
6c6aa24
6c6aa24
%files runtime
22dd712
%doc README.adoc LICENSE Changes
6c6aa24
%{_bindir}/ocamlrun
6c6aa24
%dir %{_libdir}/ocaml
1837515
%{_libdir}/ocaml/VERSION
6c6aa24
%{_libdir}/ocaml/*.cmo
6c6aa24
%{_libdir}/ocaml/*.cmi
6c6aa24
%{_libdir}/ocaml/*.cma
6c6aa24
%{_libdir}/ocaml/stublibs
6c6aa24
%dir %{_libdir}/ocaml/vmthreads
6c6aa24
%{_libdir}/ocaml/vmthreads/*.cmi
6c6aa24
%{_libdir}/ocaml/vmthreads/*.cma
6c6aa24
%dir %{_libdir}/ocaml/threads
6c6aa24
%{_libdir}/ocaml/threads/*.cmi
6c6aa24
%{_libdir}/ocaml/threads/*.cma
6c6aa24
%{_libdir}/ocaml/fedora-ocaml-release
6c6aa24
%exclude %{_libdir}/ocaml/graphicsX11.cmi
cvsextras be41c84
a5dcf3e
6c6aa24
%files source
2d6392e
%doc LICENSE
6c6aa24
%{_libdir}/ocaml/*.ml
6c6aa24
6c6aa24
6c6aa24
%files x11
2d6392e
%doc LICENSE
6c6aa24
%{_libdir}/ocaml/graphicsX11.cmi
6c6aa24
%{_libdir}/ocaml/graphicsX11.mli
6c6aa24
6c6aa24
cvsextras be41c84
%files ocamldoc
2d6392e
%doc LICENSE
2d6392e
%doc ocamldoc/Changes.txt
cvsextras be41c84
%{_bindir}/ocamldoc*
cvsextras be41c84
%{_libdir}/ocaml/ocamldoc
cvsextras be41c84
a5dcf3e
cvsextras be41c84
%files docs
7335bbf
%{_mandir}/man1/*
6c6aa24
%{_mandir}/man3/*
cvsextras be41c84
a5dcf3e
a48061f
%ifnarch riscv64
cvsextras be41c84
%files emacs
2d6392e
%doc emacs/README
cvsextras be41c84
%{_datadir}/emacs/site-lisp/*
cvsextras be41c84
%{_bindir}/ocamltags
a48061f
%endif
cvsextras be41c84
a5dcf3e
1837515
%files compiler-libs
2d6392e
%doc LICENSE
1837515
%dir %{_libdir}/ocaml/compiler-libs
5f905fc
%{_libdir}/ocaml/compiler-libs/*.mli
1837515
%{_libdir}/ocaml/compiler-libs/*.cmi
1837515
%{_libdir}/ocaml/compiler-libs/*.cmo
1837515
%{_libdir}/ocaml/compiler-libs/*.cma
1837515
%if %{native_compiler}
1837515
%{_libdir}/ocaml/compiler-libs/*.a
1837515
%{_libdir}/ocaml/compiler-libs/*.cmxa
1837515
%{_libdir}/ocaml/compiler-libs/*.cmx
1837515
%{_libdir}/ocaml/compiler-libs/*.o
1837515
%endif
1837515
1837515
cvsextras be41c84
%changelog
42201e8
* Sun Feb 25 2018 Richard W.M. Jones <rjones@redhat.com> - 4.06.0-5
42201e8
- Add another couple of RISC-V patches from nojb branch.
42201e8
23c0207
* Sat Feb 24 2018 Richard W.M. Jones <rjones@redhat.com> - 4.06.0-4
23c0207
- Remove mesa* dependencies which are not needed.
23c0207
c4e7f1c
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.06.0-3
c4e7f1c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c4e7f1c
e65cf15
* Wed Jan 10 2018 Richard W.M. Jones <rjones@redhat.com> - 4.06.0-2
e65cf15
- Drop non-free documentation (RHBZ#1530647).
e65cf15
a4c8f9a
* Mon Nov 06 2017 Richard W.M. Jones <rjones@redhat.com> - 4.06.0-1
a4c8f9a
- New upstream version 4.06.0.
a4c8f9a
- Enable parallel builds again.
a4c8f9a
- Rebase patches.
a4c8f9a
- New binary ocamlcmt.
a4c8f9a
b562129
* Wed Sep 13 2017 Richard W.M. Jones <rjones@redhat.com> - 4.05.0-4
b562129
- Add final upstream fix for aarch64/binutils relocation problems.
b562129
  https://github.com/ocaml/ocaml/pull/1330
b562129
5ea3c98
* Wed Sep 06 2017 Richard W.M. Jones <rjones@redhat.com> - 4.05.0-3
5ea3c98
- Include interim fix for aarch64/binutils relocation problems.
5ea3c98
59545ee
* Sat Aug 05 2017 Richard W.M. Jones <rjones@redhat.com> - 4.05.0-2
5f905fc
- New upstream version 4.05.0.
5f905fc
- Disable parallel builds for now.
5f905fc
- *.mli files are now included in ocaml-compiler-libs.
5f905fc
- Add possible fix for aarch64 with new binutils.
5f905fc
dd7a7dc
* Sat Aug 05 2017 Richard W.M. Jones <rjones@redhat.com> - 4.04.2-4
dd7a7dc
- Disable tests on aarch64 (https://caml.inria.fr/mantis/view.php?id=7602)
dd7a7dc
bf330de
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.04.2-3
bf330de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
bf330de
ec776d5
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.04.2-2
ec776d5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ec776d5
310b7aa
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 4.04.2-1
310b7aa
- New upstream version 4.04.2.
310b7aa
- Fix: ocaml: Insufficient sanitisation allows privilege escalation for
310b7aa
  setuid binaries (CVE-2017-9772) (RHBZ#1464920).
310b7aa
62c9a88
* Wed May 10 2017 Richard W.M. Jones <rjones@redhat.com> - 4.04.1-1
62c9a88
- New upstream version 4.04.1.
62c9a88
1d4f546
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.04.0-9
1d4f546
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1d4f546
Igor Gnatenko 0d95d2c
* Thu Jan 12 2017 Igor Gnatenko <ignatenko@redhat.com> - 4.04.0-8
Igor Gnatenko 0d95d2c
- Rebuild for readline 7.x
Igor Gnatenko 0d95d2c
22d2d1d
* Wed Nov 23 2016 Richard W.M. Jones <rjones@redhat.com> - 4.04.0-7
22d2d1d
- riscv: Further fixes for https://github.com/nojb/riscv-ocaml/issues/2
0e2c656
1b4063e
* Tue Nov 22 2016 Richard W.M. Jones <rjones@redhat.com> - 4.04.0-5
1b4063e
- Update RISC-V support to fix
1b4063e
  https://github.com/nojb/riscv-ocaml/issues/2
1b4063e
2730b0f
* Fri Nov 11 2016 Richard W.M. Jones <rjones@redhat.com> - 4.04.0-4
2730b0f
- riscv64: Fix intermediate operands.
2730b0f
  (https://github.com/nojb/riscv-ocaml/issues/1)
a48061f
- Temporarily disable emacs subpackage on riscv64.
2730b0f
02890f7
* Wed Nov 09 2016 Richard W.M. Jones <rjones@redhat.com> - 4.04.0-3
02890f7
- s390x: Fix address of caml_raise_exn in native dynlink modules.
02890f7
  (https://caml.inria.fr/mantis/view.php?id=7405)
02890f7
3faf975
* Tue Nov 08 2016 Richard W.M. Jones <rjones@redhat.com> - 4.04.0-2
3faf975
- Add support for RISC-V using out of tree support from:
3faf975
  https://github.com/nojb/riscv-ocaml
3faf975
c99809b
* Fri Nov 04 2016 Richard W.M. Jones <rjones@redhat.com> - 4.04.0-1
c99809b
- New upstream version 4.04.0.
c99809b
22dd712
* Thu Nov 03 2016 Richard W.M. Jones <rjones@redhat.com> - 4.04.0-0.1.beta2
22dd712
- New upstream version 4.04.0+beta2.
22dd712
- Remove our downstream ppc64 backends, and switch to upstream power backend.
22dd712
- Use autopatch instead of git for patching.
22dd712
- Allow parallel builds again.
22dd712
- Restore ppc stack limits.
22dd712
- Remove ocamlbuild.
22dd712
- Add *.byte bytecode binaries.
22dd712
496d4e4
* Wed May 04 2016 Richard W.M. Jones <rjones@redhat.com> - 4.02.3-3
496d4e4
- CVE-2015-8869 ocaml: sizes arguments are sign-extended from
496d4e4
  32 to 64 bits (RHBZ#1332090)
496d4e4
32ff87d
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.02.3-2
32ff87d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
32ff87d
34fde6c
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.3-1
34fde6c
- New upstream version: 4.02.3.
34fde6c
cf3cc5b
* Mon Jun 29 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.2-4
223db9b
- Couple of minor build fixes for ppc64 and ppc64le.
cf3cc5b
- ppc64/ppc64le: Fix behaviour of Int64.max_int ÷ -1 (RHBZ#1236615).
223db9b
78b8ce3
* Fri Jun 26 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.2-2
78b8ce3
- Enable the test suite during the build.  Currently the results are
78b8ce3
  only advisory.
78b8ce3
bdf7af5
* Tue Jun 23 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.2-1
bdf7af5
- New upstream version: 4.02.2.
bdf7af5
- No need for a mass rebuild, since this version is identical to RC1.
bdf7af5
c5c148d
* Tue Jun 16 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.2-0.rc1.1
c5cb967
- New upstream version: 4.02.2+rc1.
c5cb967
- Dropped two aarch64 patches which are now included upstream.
c5cb967
- Includes libasmrun_shared.so (RHBZ#1195025).
c5cb967
23620d4
* Wed Jun 10 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.1-7
23620d4
- aarch64: Use upstream version of patch that fixes RHBZ#1224815.
23620d4
5b56684
* Tue Jun 09 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.1-6
5b56684
- aarch64: AArch64 backend generates invalid asm: conditional branch
5b56684
  out of range (RHBZ#1224815).
5b56684
0697d20
* Thu May 28 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.1-5
0697d20
- ppc64le: Fix calling convention of external functions with > 8 parameters
0697d20
  (RHBZ#1225995).
0697d20
c8a94cd
* Wed May  6 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.1-4
c8a94cd
- Fix gdb stack traces on aarch64 (upstream PR6490).  Thanks: Mark Shinwell.
c8a94cd
4c52516
* Thu Apr 23 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.1-3
4c52516
- ppc, ppc64, ppc64le: Properly mark stack as non-executable.
4c52516
  The upstream fix was not applied completely.
4c52516
9ca8e1e
* Thu Feb 26 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.1-2
9ca8e1e
- Kill dependency on rpm-build.  Added in 2009, apparently by accident.
9ca8e1e
  (Thanks: Jon Ludlam)
9ca8e1e
fa72b7f
* Mon Feb 16 2015 Richard W.M. Jones <rjones@redhat.com> - 4.02.1-1
fa72b7f
- New upstream version 4.02.1.
fa72b7f
- Rebase patches on top.
fa72b7f
c4dd5fe
* Fri Oct 24 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-6
a7ead0b
- Fixes for ppc64/ppc64le (RHBZ#1156300).
a7ead0b
eaa1438
* Mon Oct 20 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-4
1ea9148
- ocaml-emacs should require emacs(bin) (RHBZ#1154513).
1ea9148
5d60b03
* Thu Sep 11 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-3
5d60b03
- Use -fno-strict-aliasing when building the compiler (RHBZ#990540).
5d60b03
- ppc, ppc64, ppc64le: Mark stack as non-executable.
5d60b03
e4cc04a
* Tue Sep  9 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-2
e4cc04a
- Fix bug in argument parsing (RHBZ#1139790).
e4cc04a
91c6a95
* Sat Aug 30 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-1
91c6a95
- New upstream OCaml 4.02.0 final.
91c6a95
- Add patch for ocaml-camlimages
91c6a95
  (see http://caml.inria.fr/mantis/view.php?id=6517)
91c6a95
1dbbca1
* Fri Aug 22 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-0.11.gitc48fc015
1dbbca1
- Rebase on top of OCaml 4.02+rc1 (same as git commit c48fc015).
1dbbca1
e5ae10d
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.02.0-0.10.git10e45753
e5ae10d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e5ae10d
88f9772
* Fri Aug 08 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-0.9
88f9772
- Add fix for Coq build issue:
88f9772
  http://caml.inria.fr/mantis/view.php?id=6507
88f9772
f482b15
* Fri Aug 01 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-0.8
f482b15
- Rebase on top of 4.02.0 beta commit 10e45753.
f482b15
7439bfe
* Sat Jul 19 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-0.7
5815ad5
- Rebase on top of 4.02.0 beta commit c4f3a6c7.
5815ad5
- Remove the patch to disable CSE, since that problem is fixed upstream.
5815ad5
- Remove the patch fixing caml_callback2 on aarch64 since that patch is
5815ad5
  now upstream.
7439bfe
- Make the compiler depend on ocaml-runtime explicitly.
5815ad5
fd2e30f
* Tue Jul 15 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-0.5
c852c24
- Disable CSE optimization which is broken on armv7hl and aarch64.
fd2e30f
- Fix broken caml_callback2 on aarch64
fd2e30f
  http://caml.inria.fr/mantis/view.php?id=6489
e575a86
7335bbf
* Sat Jul 12 2014 Richard W.M. Jones <rjones@redhat.com> - 4.02.0-0.1
7335bbf
- Update to 4.02.0-beta1 + patches from the upstream 4.02 branch.
7335bbf
- REMOVED labltk and camlp4 packages, since these are now packaged
7335bbf
  separately upstream.
7335bbf
- Upstream includes fix for stack alignment issues on i686, so remove hack.
7335bbf
- Upstream now uses mkstemp where available, so patch removed.
7335bbf
- Upstream includes Aarch64 backend, so remove our own backport.
7335bbf
- Drop BR on ocaml-srpm-macros, since it is now included in Fedora.
7335bbf
98f566b
* Thu Jun 26 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-20
98f566b
- BR binutils-devel so ocamlobjinfo supports *.cmxs files (RHBZ#1113735).
98f566b
c6f3eac
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.01.0-19
c6f3eac
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c6f3eac
5e25399
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 4.01.0-18
5e25399
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
5e25399
95cf7b3
* Sat May 10 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-17
95cf7b3
- Mark stack as non-executable on ARM (32 bit) and Aarch64.
95cf7b3
37ad9be
* Tue Apr 22 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-16
37ad9be
- Remove ocaml-srpm-macros subpackage.
37ad9be
  This is now a separate package, see RHBZ#1087893.
37ad9be
a80eeaf
* Tue Apr 15 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-15
a80eeaf
- Fix s390x builds (no native compiler).
a80eeaf
ead83e2
* Tue Apr 15 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-14
ead83e2
- Remove ExclusiveArch.
ead83e2
- Add ocaml-srpm-macros subpackage containing arch macros.
ead83e2
- See: RHBZ#1087794
ead83e2
31bf86c
* Mon Apr 14 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-13
31bf86c
- Fix aarch64 relocation problems again.
31bf86c
  Earlier patch was dropped accidentally.
31bf86c
a0eedc0
* Wed Apr  9 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-12
a0eedc0
- Add ppc64le support (thanks: Michel Normand) (RHBZ#1077767).
a0eedc0
0db310c
* Tue Apr  1 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-11
0db310c
- Fix --flag=arg patch (thanks: Anton Lavrik, Ignas Vyšniauskas).
0db310c
073715b
* Mon Mar 24 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-10
bf77c63
- Include a fix for aarch64 relocation problems
bf77c63
  http://caml.inria.fr/mantis/view.php?id=6283
bf77c63
0666b78
* Wed Jan  8 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-8
0666b78
- Don't use ifarch around Patch lines, as it means the patch files
0666b78
  don't get included in the spec file.
0666b78
179ac32
* Mon Jan  6 2014 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-7
179ac32
- Work around gcc stack alignment issues, see
179ac32
  http://caml.inria.fr/mantis/view.php?id=5700
179ac32
2b6c21a
* Tue Dec 31 2013 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-6
efb2ca1
- Add aarch64 (arm64) code generator.
efb2ca1
0d053e7
* Thu Nov 21 2013 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-4
0d053e7
- Add bundled(md5-plumb) (thanks: Tomas Mraz).
f231f65
- Add NON-upstream (but being sent upstream) patch to allow --flag=arg
f231f65
  as an alternative to --flag arg (RHBZ#1028650).
f231f65
1196986
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-3
1196986
- Disable -lcurses.  This is not actually used, just linked with unnecessarily.
1196986
71bcc7c
* Sat Sep 14 2013 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-2
71bcc7c
- Fix the build on ppc64.
71bcc7c
2d6392e
* Fri Sep 13 2013 Richard W.M. Jones <rjones@redhat.com> - 4.01.0-1
f231f65
- Update to new major version OCaml 4.01.0.
2d6392e
- Rebase patches.
2d6392e
- Remove bogus Requires 'ncurses-devel'.  The base ocaml package already
2d6392e
  pulls in the library implicitly.
2d6392e
- Remove bogus Requires 'gdbm-devel'.  Nothing in the source mentions gdbm.
2d6392e
- Use mkstemp instead of mktemp in ocamlyacc.
2d6392e
- Add LICENSE as doc to some subpackages to keep rpmlint happy.
2d6392e
- Remove .ignore file from some packages.
2d6392e
- Remove period from end of Summary.
2d6392e
0f377d2
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.00.1-3
0f377d2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0f377d2
6dab9e0
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.00.1-2
6dab9e0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
6dab9e0
ed0c3aa
* Tue Oct 16 2012 Richard W.M. Jones <rjones@redhat.com> - 4.00.1-1
ed0c3aa
- Update to upstream version 4.00.1.
ed0c3aa
- Clean up the spec file further.
ed0c3aa
0612b77
* Thu Aug 16 2012 Richard W.M. Jones <rjones@redhat.com> - 4.00.0-2
0612b77
- ppc supports natdynlink.
0612b77
24e662a
* Sat Jul 28 2012 Richard W.M. Jones <rjones@redhat.com> - 4.00.0-1
24e662a
- Upgrade to OCaml 4.00.0 official release.
24e662a
- Remove one patch (add -lpthread) which went upstream.
24e662a
e5596c3
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.00.0-0.6.beta2
e5596c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e5596c3
55e460c
* Sun Jun 10 2012 Richard W.M. Jones <rjones@redhat.com> - 4.00.0-0.5.beta2
55e460c
- No change, just fix up changelog.
324bd0d
dca4925
* Thu Jun  7 2012 Richard W.M. Jones <rjones@redhat.com> 4.00.0-0.3.beta2
1837515
- Upgrade to OCaml 4.00.0 beta 2.
1837515
- The language is now officially called OCaml (not Objective Caml, O'Caml etc)
1837515
- Rebase patches on top:
1837515
  . New ARM backend patch no longer required, since upstream.
1837515
  . Replacement config.guess, config.sub no longer required, since upstream
1837515
    versions are newer.
518f1af
- PPC64 backend rebased and fixed.
518f1af
  . Increase the default size of the stack when compiling.
1837515
- New tool: ocamloptp (ocamlopt profiler).
1837515
- New VERSION file in ocaml-runtime package.
1837515
- New ocaml-compiler-libs subpackage.
1837515
- Rearrange ExclusiveArch alphanumerically.
1837515
- alpha, ia64 native backends have been removed upstream, so they are
1837515
  no longer supported as native compiler targets.
1837515
- Remove defattr.
dca4925
- Make OCaml dependency generator self-contained so it doesn't need
dca4925
  previous version of OCaml around.
1837515
f67fde6
* Wed Jun  6 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-12
f67fde6
- ppc64: Include fix for minor heap corruption because of unaligned
f67fde6
  minor heap register (RHBZ#826649).
f67fde6
- Unset MAKEFLAGS before running build.
f67fde6
958f1c1
* Wed Jun  6 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-11
958f1c1
- ppc64: Fix position of stack arguments to external C functions
958f1c1
  when there are more than 8 parameters.
958f1c1
963a64f
* Tue Jun  5 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-10
963a64f
- Include patch to link dllthreads.so with -lpthread explicitly, to
963a64f
  fix problem with 'pthread_atfork' symbol missing (statically linked)
963a64f
  on ppc64.
963a64f
1296d4b
* Sun Jun  3 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-9
1296d4b
- Include svn rev 12548 to fix invalid generation of Thumb-2 branch
1296d4b
  instruction TBH (upstream PR#5623, RHBZ#821153).
1296d4b
31ee479
* Wed May 30 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-8
f3cfaea
- Modify the ppc64 patch to reduce the delta between power64 and
9cefc9c
  upstream power backends.
9cefc9c
- Clean up the spec file and bring it up to modern standards.
9cefc9c
  * Remove patch fuzz directive.
9cefc9c
  * Remove buildroot directive.
9cefc9c
  * Rearrange source unpacking.
9cefc9c
  * Remove chmod of GNU config.* files, since git does it.
9cefc9c
  * Don't need to remove buildroot in install section.
9cefc9c
  * Remove clean section.
64a0f51
  * git am 
9cefc9c
- Note there is no functional change in the above.
f3cfaea
66cff0b
* Tue May 29 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-6
a071122
- Move patches to external git repo:
a071122
  http://git.fedorahosted.org/git/?p=fedora-ocaml.git
a071122
  There should be no change introduced here.
a071122
a071122
* Tue May 15 2012 Karsten Hopp <karsten@redhat.com> 3.12.1-4
4acc11f
- ppc64 got broken by the new ARM backend, add a minor patch
4acc11f
814f517
* Sat Apr 28 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-3
814f517
- New ARM backend by Benedikt Meurer, backported to OCaml 3.12.1.
814f517
  This has several advantages, including enabling natdynlink on ARM.
814f517
- Provide updated config.guess and config.sub (from OCaml upstream tree).
814f517
4863fbd
* Thu Jan 12 2012 Richard W.M. Jones <rjones@redhat.com> 3.12.1-2
4863fbd
- add back ocaml-ppc64.patch for ppc secondary arch, drop .cmxs files
4863fbd
  from file list on ppc (cherry picked from F16 - this should have
4863fbd
  gone into Rawhide originally then been cherry picked back to F16)
4863fbd
a334c49
* Fri Jan  6 2012 Richard W.M. Jones <rjones@redhat.com> - 3.12.1-1
a334c49
- New upstream version 3.12.1.  This is a bugfix update.
a334c49
01afb12
* Thu Dec  8 2011 Richard W.M. Jones <rjones@redhat.com> - 3.12.0-7
01afb12
- Allow this package to be compiled on platforms without native
01afb12
  support and/or natdynlink, specifically ppc64.  This updates (and
01afb12
  hopefully does not break) DJ's previous *.cmxs change for arm.
01afb12
d31f3e6
* Fri Sep 23 2011 DJ Delorie <dj@redhat.com> - 3.12.0-6
d31f3e6
- Add arm type directive patch.
d31f3e6
- Allow more arm arches.
d31f3e6
- Don't package *.cmxs on arm.
d31f3e6
170eee2
* Wed Mar 30 2011 Richard W.M. Jones <rjones@redhat.com> - 3.12.0-5
170eee2
- Fix for invalid assembler generation (RHBZ#691896).
170eee2
f83ef8e
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.0-4
f83ef8e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f83ef8e
781dace
* Wed Jan  5 2011 Richard W.M. Jones <rjones@redhat.com> - 3.12.0-3
781dace
- Rebuild with self.
781dace
0c497e0
* Tue Jan  4 2011 Richard W.M. Jones <rjones@redhat.com> - 3.12.0-2
0c497e0
- Try depending on OCaml BR to fix:
0c497e0
  /usr/lib/rpm/ocaml-find-provides.sh: /builddir/build/BUILDROOT/ocaml-3.12.0-1.fc15.i386/usr/bin/ocamlobjinfo: /usr/bin/ocamlrun: bad interpreter: No such file or directory
0c497e0
c6dd15b
* Tue Jan  4 2011 Richard W.M. Jones <rjones@redhat.com> - 3.12.0-1
c6dd15b
- New upstream version 3.12.0.
c6dd15b
  http://fedoraproject.org/wiki/Features/OCaml3.12
c6dd15b
- Remove ppc64 support patch.
c6dd15b
- Rebase rpath removal patch.
c6dd15b
- ocamlobjinfo is now an official tool, so no need to compile it by hand.
c6dd15b
  Add objinfo_helper.
c6dd15b
- Disable ocamlplugininfo.
c6dd15b
- Remove addlabels, scrapelabels.
c6dd15b
- Remove ocaml/stublibs/dlltkanim.so.
c6dd15b
982825f
* Fri Jan 29 2010 Richard W.M. Jones <rjones@redhat.com> - 3.11.2-2
982825f
- Update reference manual to latest version from website.
982825f
62846e7
* Wed Jan 20 2010 Richard W.M. Jones <rjones@redhat.com> - 3.11.2-1
62846e7
- Update to 3.11.2 official release.
62846e7
6409abf
* Tue Jan  5 2010 Richard W.M. Jones <rjones@redhat.com> - 3.11.2-0.rc1.2
6409abf
- ocaml-labltk-devel should require tcl-devel and tk-devel.
6409abf
7de6ce6
* Tue Dec 29 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.2-0.rc1.1
7de6ce6
- Update to (release candidate) 3.11.2+rc1.
7de6ce6
7975f6b
* Wed Dec 16 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-8
7975f6b
- Use __ocaml_requires_opts / __ocaml_provides_opts.
7975f6b
be42b9a
* Wed Dec 16 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-7
be42b9a
- Remove ocaml-find-{requires,provides}.sh from this package.  These are
be42b9a
  now in upstream RPM 4.8 (RHBZ#545116).
be42b9a
- define -> global in a few places.
be42b9a
d59fc82
* Thu Nov 05 2009 Dennis Gilmore <dennis@ausil.us> - 3.11.1-6
d59fc82
- include sparcv9 in the arch list
d59fc82
84831b9
* Tue Oct 27 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-5
84831b9
- Install ocaml.info files correctly (RHBZ#531204).
84831b9
84643c6
* Fri Oct 16 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-4
84643c6
- Set includes so building the *info programs works without
84643c6
  having OCaml already installed.
84643c6
a06adc6
* Fri Oct 16 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-3
a06adc6
- Add ocamlbyteinfo and ocamlplugininfo programs from Debian.
a06adc6
7f67559
* Sun Oct  4 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-2
7f67559
- ocaml-find-requires.sh: Calculate runtime version using ocamlrun
7f67559
  -version instead of fedora-ocaml-release file.
7f67559
44da866
* Wed Sep 30 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-1
44da866
- OCaml 3.11.1 (this is virtually the same as the release candidate
44da866
  that we were using for Fedora 12).
44da866
97bb1e5
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11.1-0.rc1.2.1
97bb1e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
97bb1e5
72e4275
* Wed Jun  3 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-0.rc1.2
72e4275
- Remember to upload the source this time.
72e4275
adf1368
* Wed Jun  3 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-0.rc1.1
adf1368
- New upstream release candidate 3.11.1+rc1.
adf1368
- Remove ocamlbuild -where patch (now upstream).
adf1368
c7840b7
* Tue Jun  2 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-0.rc0.3
c7840b7
- Move dllgraphics.so into runtime package (RHBZ#468506).
c7840b7
1f353c5
* Tue May 26 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-0.rc0.2
1f353c5
- Backport ocamlbuild -where fix.
1f353c5
9f89b6c
* Fri May 22 2009 Richard W.M. Jones <rjones@redhat.com> - 3.11.1-0.rc0.1
9f89b6c
- 3.11.1 release candidate 0.
9f89b6c
ee837aa
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.11.0-2
ee837aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ee837aa
ab974e5
* Thu Dec  4 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0-1
ab974e5
- Official release of 3.11.0.
ab974e5
bbb190b
* Thu Dec  4 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0-0.6.rc1
bbb190b
- Fixed sources file.
bbb190b
ff34342
* Thu Dec  4 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0-0.5.rc1
ff34342
- New upstream version 3.11.0+rc1.
ff34342
ff34342
* Mon Nov 24 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0-0.4.beta1
9494291
- Rebuild.
9494291
670a239
* Thu Nov 20 2008 Rex Dieter <rdieter@fedoraproject.org> - 3.11.0-0.3.beta1
670a239
- fix NVR to match packaging guidelines
670a239
08dd76f
* Thu Nov 20 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0+beta1-2
08dd76f
- Fix Invalid_argument("String.index_from") with patch from upstream.
08dd76f
f7302e6
* Tue Nov 18 2008 Richard W.M. Jones <rjones@redhat.com> - 3.11.0+beta1-1
f7302e6
- Rebuild for major new upstream release of 3.11.0 for Fedora 11.
f7302e6
31ee479
* Fri Aug 29 2008 Richard W.M. Jones <rjones@redhat.com> - 3.10.2-5
71268b2
- Rebuild with patch fuzz.
71268b2
123fdae
* Mon Jun  9 2008 Richard W.M. Jones <rjones@redhat.com> - 3.10.2-4
123fdae
- Add ocaml-3.11-dev12-no-executable-stack.patch (bz #450551).
123fdae
fd5d937
* Wed Jun  4 2008 Richard W.M. Jones <rjones@redhat.com> - 3.10.2-3
fd5d937
- ocaml-ocamldoc provides ocamldoc (bz #449931).
fd5d937
- REMOVED provides of labltk, camlp4.  Those are libraries and all
fd5d937
  packages should now depend on ocaml-labltk / ocaml-camlp4 / -devel
fd5d937
  as appropriate.
fd5d937
1ae7a89
* Thu May  8 2008 Richard W.M. Jones <rjones@redhat.com> - 3.10.2-2
1ae7a89
- Pass MAP_32BIT to mmap (bz #445545).
1ae7a89
fdf6a5a
* Mon Apr 21 2008 Richard W.M. Jones <rjones@redhat.com> - 3.10.2-1
fdf6a5a
- New upstream version 3.10.2 for Fedora 10.
fdf6a5a
- Cleaned up several rpmlint errors & warnings.
fdf6a5a
7d100ce
* Fri Feb 29 2008 David Woodhouse <dwmw2@infradead.org> - 3.10.1-2
7d100ce
- ppc64 port
7d100ce
a775fd8
* Tue Feb 12 2008 Richard W.M. Jones <rjones@redhat.com> - 3.10.1-1
a775fd8
- new upstream version 3.10.1
a775fd8
a1071e3
* Fri Jan  4 2008 Gerard Milmeister <gemi@bluewin.ch> - 3.10.0-8
a1071e3
- patch for building with tcl/tk 8.5
a1071e3
25069bf
* Thu Sep  6 2007 Richard W.M. Jones <rjones@redhat.com> - 3.10.0-7
25069bf
- Run chrpath to delete rpaths used on some of the stublibs.
25069bf
- Ignore Parsetree module in dependency calculation.
25069bf
- Fixed ocaml-find-{requires,provides}.sh regexp calculation so it doesn't
25069bf
  over-match module names.
25069bf
34cb4f2
* Mon Sep  3 2007 Richard W.M. Jones <rjones@redhat.com> - 3.10.0-6
34cb4f2
- ocaml-runtime provides ocaml(runtime) = 3.10.0, and
34cb4f2
  ocaml-find-requires.sh modified so that it adds this requires
34cb4f2
  to other packages.  Now can upgrade base ocaml packages without
34cb4f2
  needing to rebuild everything else.
34cb4f2
6a495c8
* Mon Sep  3 2007 Richard W.M. Jones <rjones@redhat.com> - 3.10.0-5
6a495c8
- Don't include the release number in fedora-ocaml-release file, so
6a495c8
  that packages built against this won't depend on the Fedora release.
6a495c8
7e41c47
* Wed Aug 29 2007 Gerard Milmeister <gemi@bluewin.ch> - 3.10.0-4
7e41c47
- added BR util-linux-ng
7e41c47
8859c79
* Wed Aug 29 2007 Gerard Milmeister <gemi@bluewin.ch> - 3.10.0-3
7e41c47
- added BR gawk
8859c79
10dd3e5
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 3.10.0-2
10dd3e5
- Rebuild for selinux ppc32 issue.
10dd3e5
6c6aa24
* Sat Jun  2 2007 Gerard Milmeister <gemi@bluewin.ch> - 3.10.0-1
6c6aa24
- new version 3.10.0
6c6aa24
- split off devel packages
6c6aa24
- rename subpackages to use ocaml- prefix
6c6aa24
fa207eb
* Thu May 24 2007 Gerard Milmeister <gemi@bluewin.ch> - 3.09.3-2
fa207eb
- added ocamlobjinfo
fa207eb
3b2827b
* Sat Dec  2 2006 Gerard Milmeister <gemi@bluewin.ch> - 3.09.3-1
3b2827b
- new version 3.09.3
3b2827b
bf70092
* Mon Aug 28 2006 Gerard Milmeister <gemi@bluewin.ch> - 3.09.2-2
bf70092
- Rebuild for FE6
bf70092
266d4d2
* Sun Apr 30 2006 Gerard Milmeister <gemi@bluewin.ch> - 3.09.2-1
266d4d2
- new version 3.09.2
266d4d2
a6e4b14
* Fri Feb 17 2006 Gerard Milmeister <gemi@bluewin.ch> - 3.09.1-2
a6e4b14
- Rebuild for Fedora Extras 5
a6e4b14
5e1a828
* Thu Jan  5 2006 Gerard Milmeister <gemi@bluewin.ch> - 3.09.1-1
5e1a828
- new version 3.09.1
5e1a828
03108e3
* Sun Jan  1 2006 Gerard Milmeister <gemi@bluewin.ch> - 3.09.0-1
03108e3
- new version 3.09.0
03108e3
0d2d47e
* Sun Sep 11 2005 Gerard Milmeister <gemi@bluewin.ch> - 3.08.4-1
0d2d47e
- New Version 3.08.4
0d2d47e
332bd58
* Wed May 25 2005 Toshio Kuratomi <toshio-tiki-lounge.com> - 3.08.3-5
332bd58
- Bump and re-release as last build failed due to rawhide syncing.
332bd58
326271f
* Sun May 22 2005 Toshio Kuratomi <toshio-tiki-lounge.com> - 3.08.3-4
817b039
- Fix for gcc4 and the 32 bit assembly in otherlibs/num.
817b039
- Fix to allow compilation with RPM_OPT_FLAG defined -O level.
817b039
d95206a
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 3.08.3-3
d95206a
- rebuild on all arches
d95206a
31ee479
* Fri Apr  8 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
c39241b
- rebuilt
c39241b
aa4861b
* Sat Mar 26 2005 Gerard Milmeister <gemi@bluewin.ch> - 3.08.3-1
aa4861b
- New Version 3.08.3
aa4861b
c5c9c16
* Sat Feb 12 2005 Gerard Milmeister <gemi@bluewin.ch> - 0:3.08.2-2
c5c9c16
- Added patch for removing rpath from shared libs
c5c9c16
186fbe9
* Sat Feb 12 2005 Gerard Milmeister <gemi@bluewin.ch> - 0:3.08.2-1
186fbe9
- New Version 3.08.2
186fbe9
0b1d488
* Thu Dec 30 2004 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 0:3.07-6
fdf6a5a
- add -x11lib _prefix/X11R6/_lib to configure; fixes labltk build
0b1d488
  on x86_64
0b1d488
cvsextras be41c84
* Tue Dec  2 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:3.07-0.fdr.5
cvsextras be41c84
- ocamldoc -> ocaml-ocamldoc
cvsextras be41c84
- ocaml-doc -> ocaml-docs
cvsextras be41c84
cvsextras be41c84
* Fri Nov 28 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:3.07-0.fdr.4
cvsextras be41c84
- Make separate packages for labltk, camlp4, ocamldoc, emacs and documentation
cvsextras be41c84
cvsextras be41c84
* Thu Nov 27 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:3.07-0.fdr.2
cvsextras be41c84
- Changed license tag
cvsextras be41c84
- Register info files
cvsextras be41c84
- Honor RPM_OPT_FLAGS
cvsextras be41c84
- New Patch
cvsextras be41c84
cvsextras be41c84
* Fri Oct 31 2003 Gerard Milmeister <gemi@bluewin.ch> - 0:3.07-0.fdr.1
cvsextras be41c84
- First Fedora release
cvsextras be41c84
cvsextras be41c84
* Mon Oct 13 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
cvsextras be41c84
- Updated to 3.07.
cvsextras be41c84
cvsextras be41c84
* Wed Apr  9 2003 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
cvsextras be41c84
- Rebuilt for Red Hat 9.
cvsextras be41c84
cvsextras be41c84
* Tue Nov 26 2002 Axel Thimm <Axel.Thimm@physik.fu-berlin.de>
fdf6a5a
- Added _mandir/mano/* entry