2020-03-25 18:59:19 +00:00
|
|
|
%ifnarch %{ocaml_native_compiler}
|
2014-04-30 14:41:40 +00:00
|
|
|
%global debug_package %{nil}
|
2011-12-21 15:43:28 +00:00
|
|
|
%endif
|
|
|
|
|
2020-04-02 13:34:15 +00:00
|
|
|
%bcond_without coq
|
2020-01-19 13:15:01 +00:00
|
|
|
|
2011-12-21 15:43:28 +00:00
|
|
|
Name: ocaml-menhir
|
2020-03-25 18:59:19 +00:00
|
|
|
Version: 20200211
|
2020-04-02 13:34:15 +00:00
|
|
|
Release: 3%{?dist}
|
2011-12-21 15:43:28 +00:00
|
|
|
Summary: LR(1) parser generator for OCaml
|
|
|
|
|
2017-05-19 02:03:48 +00:00
|
|
|
# The generator is GPLv2
|
|
|
|
License: GPLv2
|
2011-12-21 15:43:28 +00:00
|
|
|
URL: http://gallium.inria.fr/~fpottier/menhir/
|
2018-11-15 01:48:44 +00:00
|
|
|
Source0: https://gitlab.inria.fr/fpottier/menhir/-/archive/%{version}/menhir-%{version}.tar.bz2
|
2011-12-21 15:43:28 +00:00
|
|
|
|
2020-01-22 16:24:15 +00:00
|
|
|
%if %{with coq}
|
2019-09-24 16:00:24 +00:00
|
|
|
BuildRequires: coq
|
2020-01-19 13:15:01 +00:00
|
|
|
%endif
|
2018-06-07 02:49:16 +00:00
|
|
|
BuildRequires: hevea
|
|
|
|
BuildRequires: ImageMagick
|
2011-12-21 15:43:28 +00:00
|
|
|
BuildRequires: ocaml
|
2020-03-25 18:59:19 +00:00
|
|
|
BuildRequires: ocaml-dune
|
|
|
|
BuildRequires: ocaml-odoc
|
2017-07-15 17:50:44 +00:00
|
|
|
BuildRequires: tex(latex)
|
2018-06-07 02:49:16 +00:00
|
|
|
BuildRequires: tex(comment.sty)
|
2017-07-15 17:50:44 +00:00
|
|
|
BuildRequires: tex(moreverb.sty)
|
2011-12-21 15:43:28 +00:00
|
|
|
|
2020-03-25 18:59:19 +00:00
|
|
|
Requires: ocaml-menhirlib-devel%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
# This can be removed when F32 reaches EOL
|
|
|
|
Obsoletes: %{name}-devel < 20200211-1
|
|
|
|
Provides: %{name}-devel = %{version}-%{release}
|
|
|
|
|
2011-12-21 15:43:28 +00:00
|
|
|
%description
|
|
|
|
Menhir is a LR(1) parser generator for the Objective Caml programming
|
|
|
|
language. That is, Menhir compiles LR(1) grammar specifications down to
|
|
|
|
OCaml code. Menhir was designed and implemented by François Pottier and
|
|
|
|
Yann Régis-Gianas.
|
|
|
|
|
2020-03-25 18:59:19 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for %{name}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description doc
|
|
|
|
Documentation for %{name}.
|
|
|
|
|
|
|
|
%package -n ocaml-menhirlib
|
|
|
|
Summary: Runtime library for parsers produced by Menhir
|
2017-05-19 02:03:48 +00:00
|
|
|
# The library is LGPLv2 with a linking exception.
|
|
|
|
License: LGPLv2 with exceptions
|
2011-12-21 15:43:28 +00:00
|
|
|
|
2020-03-25 18:59:19 +00:00
|
|
|
%description -n ocaml-menhirlib
|
|
|
|
This package contains the runtime library for parsers produced by Menhir.
|
|
|
|
|
|
|
|
%package -n ocaml-menhirlib-devel
|
|
|
|
Summary: Development files for ocaml-menhirlib
|
|
|
|
# The library is LGPLv2 with a linking exception.
|
|
|
|
License: LGPLv2 with exceptions
|
|
|
|
Requires: ocaml-menhirlib%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n ocaml-menhirlib-devel
|
|
|
|
This ocaml-menhirlib-devel package contains libraries and signature
|
|
|
|
files for building applications with a parser produced by Menhir.
|
2011-12-21 15:43:28 +00:00
|
|
|
|
2020-01-22 16:24:15 +00:00
|
|
|
%if %{with coq}
|
|
|
|
%package -n coq-menhirlib
|
|
|
|
Summary: Support library for verified Coq parsers produced by Menhir
|
|
|
|
License: LGPLv3+
|
2020-03-25 18:59:19 +00:00
|
|
|
Requires: coq%{?_isa}
|
2020-01-22 16:24:15 +00:00
|
|
|
|
|
|
|
%description -n coq-menhirlib
|
|
|
|
The Menhir parser generator, in --coq mode, can produce Coq parsers.
|
|
|
|
These parsers must be linked against this library, which provides both an
|
|
|
|
interpreter (which allows running the generated parser) and a validator
|
|
|
|
(which allows verifying, at parser construction time, that the generated
|
|
|
|
parser is correct and complete with respect to the grammar).
|
|
|
|
%endif
|
|
|
|
|
2011-12-21 15:43:28 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n menhir-%{version}
|
|
|
|
|
2013-09-16 16:41:44 +00:00
|
|
|
# Enable debuginfo
|
|
|
|
sed -i 's/-j 0/-cflag -g -lflag -g &/' src/Makefile
|
|
|
|
|
2015-09-19 17:15:49 +00:00
|
|
|
# Do not ship the obsolete demos
|
|
|
|
rm -fr demos/obsolete
|
2015-01-05 18:38:15 +00:00
|
|
|
|
2011-12-21 15:43:28 +00:00
|
|
|
%build
|
2020-03-25 18:59:19 +00:00
|
|
|
dune build %{?_smp_mflags}
|
2020-01-22 16:24:15 +00:00
|
|
|
%if %{with coq}
|
|
|
|
make -C coq-menhirlib
|
2020-01-19 13:15:01 +00:00
|
|
|
%endif
|
2020-03-25 18:59:19 +00:00
|
|
|
dune build %{?_smp_mflags} @doc
|
2011-12-21 15:43:28 +00:00
|
|
|
|
|
|
|
%install
|
2020-03-25 18:59:19 +00:00
|
|
|
dune install --destdir=%{buildroot}
|
2011-12-21 15:43:28 +00:00
|
|
|
|
2020-01-22 16:24:15 +00:00
|
|
|
%if %{with coq}
|
|
|
|
make -C coq-menhirlib install DESTDIR=%{buildroot}
|
2020-04-02 13:18:45 +00:00
|
|
|
%else
|
|
|
|
# Even if coq is disabled, dune will put a META file and dune-package
|
|
|
|
# here.
|
|
|
|
rm -rf %{buildroot}%{_libdir}/ocaml/coq-menhirlib/
|
2020-01-22 16:24:15 +00:00
|
|
|
%endif
|
|
|
|
|
2020-03-25 18:59:19 +00:00
|
|
|
# We do not want the dune markers
|
|
|
|
find _build/default/_doc/_html -name .dune-keep -delete
|
|
|
|
|
|
|
|
# We do not want the ml files
|
|
|
|
find %{buildroot}%{_libdir}/ocaml -name \*.ml -delete
|
|
|
|
|
|
|
|
# We install the documentation with the doc macro
|
|
|
|
rm -fr %{buildroot}%{_prefix}/doc
|
2019-09-24 16:00:24 +00:00
|
|
|
|
2020-03-25 18:59:19 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
|
|
|
# Add missing executable bits
|
|
|
|
find %{buildroot}%{_libdir}/ocaml -name \*.cmxs -exec chmod a+x {} \+
|
|
|
|
%endif
|
2018-10-23 03:01:54 +00:00
|
|
|
|
2011-12-21 15:43:28 +00:00
|
|
|
%files
|
2020-03-25 18:59:19 +00:00
|
|
|
%doc CHANGES.md README.md doc/manual.pdf
|
2014-08-04 17:48:46 +00:00
|
|
|
%license LICENSE
|
2015-09-19 17:15:49 +00:00
|
|
|
%{_bindir}/menhir
|
2011-12-21 15:43:28 +00:00
|
|
|
%{_mandir}/man1/menhir.1*
|
2020-03-25 18:59:19 +00:00
|
|
|
%{_libdir}/ocaml/menhir/
|
|
|
|
%{_libdir}/ocaml/menhirSdk/
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
%doc _build/default/_doc/_html/
|
|
|
|
%doc _build/default/_doc/_mlds/
|
|
|
|
%doc _build/default/_doc/_odoc/
|
|
|
|
%license LICENSE
|
|
|
|
|
|
|
|
%files -n ocaml-menhirlib
|
2018-10-23 03:01:54 +00:00
|
|
|
%dir %{_libdir}/ocaml/menhirLib/
|
2020-03-25 18:59:19 +00:00
|
|
|
%license LICENSE
|
2018-10-23 03:01:54 +00:00
|
|
|
%{_libdir}/ocaml/menhirLib/META
|
2020-03-25 18:59:19 +00:00
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.cma
|
2018-10-23 03:01:54 +00:00
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.cmi
|
2020-03-25 18:59:19 +00:00
|
|
|
%ifarch %{ocaml_native_compiler}
|
2018-10-23 03:01:54 +00:00
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.cmxs
|
2020-03-25 18:59:19 +00:00
|
|
|
%endif
|
2011-12-21 15:43:28 +00:00
|
|
|
|
2020-03-25 18:59:19 +00:00
|
|
|
%files -n ocaml-menhirlib-devel
|
|
|
|
%{_libdir}/ocaml/menhirLib/dune-package
|
|
|
|
%ifarch %{ocaml_native_compiler}
|
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.a
|
2018-10-23 03:01:54 +00:00
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.cmx
|
2020-03-25 18:59:19 +00:00
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.cmxa
|
|
|
|
%endif
|
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.cmt
|
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.cmti
|
2018-10-23 03:01:54 +00:00
|
|
|
%{_libdir}/ocaml/menhirLib/menhirLib.mli
|
2011-12-21 15:43:28 +00:00
|
|
|
|
2020-01-22 16:24:15 +00:00
|
|
|
%if %{with coq}
|
|
|
|
%files -n coq-menhirlib
|
|
|
|
%doc coq-menhirlib/CHANGES.md coq-menhirlib/README.md
|
|
|
|
%license coq-menhirlib/LICENSE
|
|
|
|
%{_libdir}/coq/user-contrib/MenhirLib/
|
2020-03-25 18:59:19 +00:00
|
|
|
%{_libdir}/ocaml/coq-menhirlib/
|
2020-01-22 16:24:15 +00:00
|
|
|
%endif
|
|
|
|
|
2011-12-21 15:43:28 +00:00
|
|
|
%changelog
|
2020-04-02 13:34:15 +00:00
|
|
|
* Thu Apr 02 2020 Richard W.M. Jones <rjones@redhat.com> - 20200211-3
|
|
|
|
- Re-enable Coq bindings after OCaml bootstrap.
|
|
|
|
|
2020-04-02 13:05:59 +00:00
|
|
|
* Thu Apr 02 2020 Richard W.M. Jones <rjones@redhat.com> - 20200211-2
|
|
|
|
- Update all OCaml dependencies for RPM 4.16.
|
|
|
|
|
2020-03-25 18:59:19 +00:00
|
|
|
* Wed Mar 25 2020 Jerry James <loganjerry@gmail.com> - 20200211-1
|
|
|
|
- Version 20200211
|
|
|
|
- Dune is now used to build the package
|
|
|
|
- Split the build-time and runtime parts into separate packages
|
|
|
|
|
2020-02-26 10:56:30 +00:00
|
|
|
* Wed Feb 26 2020 Richard W.M. Jones <rjones@redhat.com> - 20190924-9
|
|
|
|
- OCaml 4.10.0 final.
|
2020-02-26 11:25:40 +00:00
|
|
|
- Disable Coq for 4.10.0 build.
|
2020-02-26 10:56:30 +00:00
|
|
|
|
2020-01-29 19:38:32 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20190924-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-22 16:24:15 +00:00
|
|
|
* Wed Jan 22 2020 Jerry James <loganjerry@gmail.com> - 20190924-7
|
|
|
|
- Reenable coq support
|
|
|
|
- Add coq-menhirlib subpackage, without which coq support is rather pointless
|
|
|
|
|
2020-01-19 13:32:42 +00:00
|
|
|
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 20190924-6
|
|
|
|
- OCaml 4.10.0+beta1 rebuild.
|
|
|
|
|
2020-01-19 13:20:48 +00:00
|
|
|
* Sun Jan 19 2020 Richard W.M. Jones <rjones@redhat.com> - 20190924-5
|
|
|
|
- Disable coq for now.
|
|
|
|
|
2019-12-06 09:10:27 +00:00
|
|
|
* Fri Dec 06 2019 Richard W.M. Jones <rjones@redhat.com> - 20190924-4
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2019-12-05 22:40:39 +00:00
|
|
|
* Thu Dec 05 2019 Richard W.M. Jones <rjones@redhat.com> - 20190924-3
|
|
|
|
- Bump release and rebuild.
|
|
|
|
|
2019-12-05 20:10:09 +00:00
|
|
|
* Thu Dec 05 2019 Richard W.M. Jones <rjones@redhat.com> - 20190924-2
|
|
|
|
- OCaml 4.09.0 (final) rebuild.
|
|
|
|
|
2019-09-24 16:00:24 +00:00
|
|
|
* Tue Sep 24 2019 Jerry James <loganjerry@gmail.com> - 20190924-1
|
|
|
|
- New upstream version
|
|
|
|
- BR coq to get coq_makefile
|
|
|
|
|
2019-08-16 10:03:36 +00:00
|
|
|
* Fri Aug 16 2019 Richard W.M. Jones <rjones@redhat.com> - 20190626-4
|
|
|
|
- OCaml 4.08.1 (final) rebuild.
|
|
|
|
|
2019-07-31 12:16:48 +00:00
|
|
|
* Wed Jul 31 2019 Richard W.M. Jones <rjones@redhat.com> - 20190626-3
|
|
|
|
- OCaml 4.08.1 (rc2) rebuild.
|
|
|
|
|
2019-07-25 22:55:15 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20190626-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-13 17:21:57 +00:00
|
|
|
* Fri Jul 12 2019 Jerry James <loganjerry@gmail.com> - 20190626-1
|
|
|
|
- New upstream version
|
|
|
|
|
2019-06-27 17:57:59 +00:00
|
|
|
* Thu Jun 27 2019 Richard W.M. Jones <rjones@redhat.com> - 20190620-2
|
|
|
|
- OCaml 4.08.0 (final) rebuild.
|
|
|
|
|
2019-06-27 03:22:11 +00:00
|
|
|
* Wed Jun 26 2019 Jerry James <loganjerry@gmail.com> - 20190620-1
|
|
|
|
- New upstream version
|
|
|
|
|
2019-06-19 02:33:57 +00:00
|
|
|
* Tue Jun 18 2019 Jerry James <loganjerry@gmail.com> - 20190613-1
|
|
|
|
- New upstream version
|
|
|
|
|
2019-04-29 18:23:43 +00:00
|
|
|
* Mon Apr 29 2019 Richard W.M. Jones <rjones@redhat.com> - 20181113-4
|
|
|
|
- OCaml 4.08.0 (beta 3) rebuild.
|
|
|
|
|
2019-03-27 02:29:33 +00:00
|
|
|
* Tue Mar 26 2019 Jerry James <loganjerry@gmail.com> - 20181113-3
|
|
|
|
- Add missing R on ocamlfind (bz 1692434)
|
|
|
|
|
2019-02-01 16:52:26 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 20181113-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-11-15 01:48:44 +00:00
|
|
|
* Wed Nov 14 2018 Jerry James <loganjerry@gmail.com> - 20181113-1
|
|
|
|
- New upstream version
|
|
|
|
- New source URL
|
|
|
|
|
2018-10-23 03:01:54 +00:00
|
|
|
* Mon Oct 22 2018 Jerry James <loganjerry@gmail.com> - 20181006-1
|
|
|
|
- New upstream version
|
|
|
|
- Ship libraries in the main package
|
|
|
|
|
2018-09-28 03:03:01 +00:00
|
|
|
* Thu Sep 27 2018 Jerry James <loganjerry@gmail.com> - 20180905-1
|
|
|
|
- New upstream version
|
|
|
|
|
2018-07-13 14:44:58 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20180530-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-11 15:30:37 +00:00
|
|
|
* Wed Jul 11 2018 Richard W.M. Jones <rjones@redhat.com> - 20180530-3
|
|
|
|
- OCaml 4.07.0 (final) rebuild.
|
|
|
|
|
2018-06-20 09:12:02 +00:00
|
|
|
* Wed Jun 20 2018 Richard W.M. Jones <rjones@redhat.com> - 20180530-2
|
|
|
|
- OCaml 4.07.0-rc1 rebuild.
|
|
|
|
|
2018-06-07 02:49:16 +00:00
|
|
|
* Wed Jun 6 2018 Jerry James <loganjerry@gmail.com> - 20180530-1
|
|
|
|
- New upstream version
|
|
|
|
|
2018-02-08 08:52:39 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 20171222-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-12-24 18:03:01 +00:00
|
|
|
* Sat Dec 23 2017 Jerry James <loganjerry@gmail.com> - 20171222-1
|
|
|
|
- New upstream version
|
|
|
|
|
2017-12-09 20:03:34 +00:00
|
|
|
* Sat Dec 9 2017 Jerry James <loganjerry@gmail.com> - 20171206-1
|
|
|
|
- New upstream version
|
|
|
|
|
2017-11-08 18:18:52 +00:00
|
|
|
* Wed Nov 08 2017 Richard W.M. Jones <rjones@redhat.com> - 20170712-5
|
|
|
|
- OCaml 4.06.0 rebuild.
|
|
|
|
|
2017-08-07 22:40:22 +00:00
|
|
|
* Mon Aug 07 2017 Richard W.M. Jones <rjones@redhat.com> - 20170712-4
|
|
|
|
- OCaml 4.05.0 rebuild.
|
|
|
|
|
2017-08-03 04:17:11 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20170712-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 01:29:13 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20170712-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-15 17:50:44 +00:00
|
|
|
* Sat Jul 15 2017 Jerry James <loganjerry@gmail.com> - 20170712-1
|
|
|
|
- New upstream version
|
|
|
|
- Build the manual from LaTeX sources
|
|
|
|
|
2017-06-26 20:09:35 +00:00
|
|
|
* Mon Jun 26 2017 Richard W.M. Jones <rjones@redhat.com> - 20170607-2
|
|
|
|
- OCaml 4.04.2 rebuild.
|
|
|
|
|
2017-06-10 20:26:17 +00:00
|
|
|
* Sat Jun 10 2017 Jerry James <loganjerry@gmail.com> - 20170607-1
|
|
|
|
- New upstream version
|
|
|
|
|
2017-05-19 02:03:48 +00:00
|
|
|
* Fri May 19 2017 Jerry James <loganjerry@gmail.com> - 20170509-1
|
|
|
|
- New upstream version
|
|
|
|
- License change: QPL with exceptions to GPLv2
|
|
|
|
|
2017-05-12 12:20:06 +00:00
|
|
|
* Fri May 12 2017 Richard W.M. Jones <rjones@redhat.com> - 20170101-3
|
|
|
|
- OCaml 4.04.1 rebuild.
|
|
|
|
|
2017-02-11 00:33:04 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 20170101-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-02 17:06:43 +00:00
|
|
|
* Mon Jan 2 2017 Jerry James <loganjerry@gmail.com> - 20170101-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-11-16 02:28:39 +00:00
|
|
|
* Tue Nov 15 2016 Jerry James <loganjerry@gmail.com> - 20161115-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-11-15 03:41:33 +00:00
|
|
|
* Mon Nov 14 2016 Jerry James <loganjerry@gmail.com> - 20161114-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-11-05 15:31:17 +00:00
|
|
|
* Sat Nov 05 2016 Richard W.M. Jones <rjones@redhat.com> - 20160825-2
|
|
|
|
- Rebuild for OCaml 4.04.0.
|
2016-11-05 15:36:48 +00:00
|
|
|
- Add explicit dep on ocamlbuild.
|
2016-11-05 15:31:17 +00:00
|
|
|
|
2016-08-27 17:36:25 +00:00
|
|
|
* Sat Aug 27 2016 Jerry James <loganjerry@gmail.com> - 20160825-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-07-04 22:11:03 +00:00
|
|
|
* Mon Jul 4 2016 Jerry James <loganjerry@gmail.com> - 20160526-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-05-13 14:19:46 +00:00
|
|
|
* Thu May 12 2016 Jerry James <loganjerry@gmail.com> - 20160504-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-03-04 04:38:57 +00:00
|
|
|
* Thu Mar 3 2016 Jerry James <loganjerry@gmail.com> - 20160303-1
|
|
|
|
- New upstream version
|
|
|
|
|
2016-02-04 11:08:20 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 20151112-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-13 02:31:51 +00:00
|
|
|
* Thu Nov 12 2015 Jerry James <loganjerry@gmail.com> - 20151112-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-10-27 03:39:41 +00:00
|
|
|
* Mon Oct 26 2015 Jerry James <loganjerry@gmail.com> - 20151026-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-10-24 18:07:01 +00:00
|
|
|
* Sat Oct 24 2015 Jerry James <loganjerry@gmail.com> - 20151023-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-10-15 01:54:17 +00:00
|
|
|
* Wed Oct 14 2015 Jerry James <loganjerry@gmail.com> - 20151012-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-10-09 14:50:14 +00:00
|
|
|
* Fri Oct 9 2015 Jerry James <loganjerry@gmail.com> - 20151005-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-09-19 17:15:49 +00:00
|
|
|
* Sat Sep 19 2015 Jerry James <loganjerry@gmail.com> - 20150914-1
|
|
|
|
- New upstream version
|
|
|
|
|
2015-07-28 16:33:00 +00:00
|
|
|
* Tue Jul 28 2015 Richard W.M. Jones <rjones@redhat.com> - 20141215-5
|
|
|
|
- OCaml 4.02.3 rebuild.
|
|
|
|
|
2015-06-24 18:52:39 +00:00
|
|
|
* Wed Jun 24 2015 Richard W.M. Jones <rjones@redhat.com> - 20141215-4
|
|
|
|
- ocaml-4.02.2 final rebuild.
|
|
|
|
|
2015-06-17 19:58:14 +00:00
|
|
|
* Wed Jun 17 2015 Richard W.M. Jones <rjones@redhat.com> - 20141215-3
|
|
|
|
- ocaml-4.02.2 rebuild.
|
|
|
|
|
2015-02-17 10:10:01 +00:00
|
|
|
* Tue Feb 17 2015 Richard W.M. Jones <rjones@redhat.com> - 20141215-2
|
|
|
|
- ocaml-4.02.1 rebuild.
|
|
|
|
|
2015-01-05 18:38:15 +00:00
|
|
|
* Mon Jan 5 2015 Jerry James <loganjerry@gmail.com> - 20141215-1
|
|
|
|
- New upstream version
|
|
|
|
|
2014-08-31 09:43:05 +00:00
|
|
|
* Sun Aug 31 2014 Richard W.M. Jones <rjones@redhat.com> - 20140422-7
|
|
|
|
- ocaml-4.02.0 final rebuild.
|
|
|
|
|
2014-08-23 18:49:30 +00:00
|
|
|
* Sat Aug 23 2014 Richard W.M. Jones <rjones@redhat.com> - 20140422-6
|
|
|
|
- ocaml-4.02.0+rc1 rebuild.
|
|
|
|
|
2014-08-17 12:58:23 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140422-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-04 17:48:46 +00:00
|
|
|
* Mon Aug 4 2014 Jerry James <loganjerry@gmail.com> - 20140422-4
|
|
|
|
- ocaml-4.02.0-0.8.git10e45753.fc22 rebuild.
|
|
|
|
- Fix license handling
|
|
|
|
|
2014-07-21 17:42:25 +00:00
|
|
|
* Mon Jul 21 2014 Jerry James <loganjerry@gmail.com> - 20140422-3
|
|
|
|
- OCaml 4.02.0 beta rebuild
|
|
|
|
|
2014-06-07 15:42:05 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20140422-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-30 14:41:40 +00:00
|
|
|
* Wed Apr 30 2014 Jerry James <loganjerry@gmail.com> - 20140422-1
|
|
|
|
- New upstream version
|
|
|
|
- Fix standard.mly character encoding
|
|
|
|
|
2014-04-18 20:28:29 +00:00
|
|
|
* Fri Apr 18 2014 Jerry James <loganjerry@gmail.com> - 20130911-3
|
|
|
|
- Remove ocaml_arches macro (bz 1087794)
|
|
|
|
|
2013-09-16 16:41:44 +00:00
|
|
|
* Mon Sep 16 2013 Jerry James <loganjerry@gmail.com> - 20130911-2
|
|
|
|
- Rebuild for OCaml 4.01.0
|
|
|
|
|
2013-09-12 20:07:47 +00:00
|
|
|
* Thu Sep 12 2013 Jerry James <loganjerry@gmail.com> - 20130911-1
|
|
|
|
- New upstream version
|
|
|
|
- Allow debuginfo generation since ocaml 4 supports it
|
|
|
|
|
2013-08-03 14:56:23 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20130116-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 09:00:00 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20130116-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-21 18:45:29 +00:00
|
|
|
* Mon Jan 21 2013 Jerry James <loganjerry@gmail.com> - 20130116-1
|
|
|
|
- New upstream version
|
|
|
|
|
2012-10-17 15:22:13 +00:00
|
|
|
* Wed Oct 17 2012 Jerry James <loganjerry@gmail.com> - 20120123-5
|
|
|
|
- Rebuild for OCaml 4.00.1.
|
|
|
|
|
2012-07-20 06:02:58 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 20120123-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-11 08:10:44 +00:00
|
|
|
* Mon Jun 11 2012 Richard W.M. Jones <rjones@redhat.com> - 20120123-3
|
|
|
|
- Rebuild for OCaml 4.00.0.
|
|
|
|
|
2012-06-08 22:13:37 +00:00
|
|
|
* Fri Jun 8 2012 Jerry James <loganjerry@gmail.com> - 20120123-2
|
|
|
|
- Rebuild for OCaml 4.00.0
|
|
|
|
|
2012-01-23 18:14:36 +00:00
|
|
|
* Mon Jan 23 2012 Jerry James <loganjerry@gmail.com> - 20120123-1
|
|
|
|
- New upstream version
|
|
|
|
|
2012-01-06 17:25:35 +00:00
|
|
|
* Fri Jan 6 2012 Jerry James <loganjerry@gmail.com> - 20111019-3
|
|
|
|
- Rebuild for ocaml 3.12.1
|
|
|
|
|
2011-12-21 15:43:28 +00:00
|
|
|
* Mon Dec 19 2011 Jerry James <loganjerry@gmail.com> - 20111019-2
|
|
|
|
- Change the subpackages to match Debian
|
|
|
|
- Add patch to allow building demos outside of the menhir source tree
|
|
|
|
|
|
|
|
* Wed Nov 9 2011 Jerry James <loganjerry@gmail.com> - 20111019-1
|
|
|
|
- Initial RPM
|