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