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