Blame SPECS/ocaml.spec

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