# Frama-C contains a forked version of ocaml-cil. We cannot use the Fedora # ocaml-cil package as a replacement, because Frama-C upstream has modified # their version in incompatible ways. %undefine _package_note_flags %ifnarch %{ocaml_native_compiler} %global debug_package %{nil} %endif # Without this, gcc flags are passed to frama-c in the test suite %undefine _auto_set_build_flags Name: frama-c Version: 24.0 Release: 7%{?dist} Summary: Framework for source code analysis of C software %global pkgversion %{version}-Chromium # Licensing breakdown in source file frama-c-1.6-licensing License: LGPLv2 and GPLv2 and GPLv2+ and BSD and QPL URL: https://frama-c.com/ Source0: https://frama-c.com/download/%{name}-%{pkgversion}.tar.gz Source1: https://frama-c.com/download/%{name}-%{pkgversion}-api.tar.gz Source2: frama-c-1.6.licensing Source3: com.%{name}.%{name}-gui.desktop Source4: com.%{name}.%{name}-gui.metainfo.xml Source5: acsl.el # Icons created with gimp from the official upstream icon Source6: %{name}-icons.tar.xz Source7: https://frama-c.com/download/user-manual-%{pkgversion}.pdf Source8: https://frama-c.com/download/plugin-development-guide-%{pkgversion}.pdf Source9: https://frama-c.com/download/acsl-implementation-%{pkgversion}.pdf Source10: https://frama-c.com/download/aorai-manual-%{pkgversion}.pdf Source11: https://frama-c.com/download/e-acsl/e-acsl-manual-%{pkgversion}.pdf Source12: https://frama-c.com/download/e-acsl/e-acsl-implementation-%{pkgversion}.pdf Source13: https://frama-c.com/download/eva-manual-%{pkgversion}.pdf Source14: https://frama-c.com/download/metrics-manual-%{pkgversion}.pdf Source15: https://frama-c.com/download/rte-manual-%{pkgversion}.pdf Source16: https://frama-c.com/download/wp-manual-%{pkgversion}.pdf # Adapt to coq 8.14 Patch0: %{name}-coq8.14.patch BuildRequires: alt-ergo BuildRequires: appstream BuildRequires: coq BuildRequires: desktop-file-utils BuildRequires: dos2unix BuildRequires: doxygen BuildRequires: emacs BuildRequires: flamegraph BuildRequires: graphviz BuildRequires: libgnomecanvas-devel BuildRequires: libtool BuildRequires: ltl2ba BuildRequires: make BuildRequires: ocaml >= 4.08.1 BuildRequires: ocaml-apron-devel BuildRequires: ocaml-findlib-devel BuildRequires: ocaml-lablgtk3-devel >= 3.1.0 BuildRequires: ocaml-lablgtk3-sourceview3-devel BuildRequires: ocaml-mlgmpidl-devel BuildRequires: ocaml-ocamldoc BuildRequires: ocaml-ocamlgraph-devel >= 1.8.8 BuildRequires: ocaml-ocp-indent-devel BuildRequires: ocaml-ppx-deriving-yojson-devel BuildRequires: ocaml-why3-devel >= 1.4.0 BuildRequires: ocaml-yojson-devel >= 1.6.0 BuildRequires: ocaml-zarith-devel >= 1.5 BuildRequires: ocaml-zmq-devel BuildRequires: python3-devel BuildRequires: time BuildRequires: why3 BuildRequires: z3 Requires: alt-ergo Requires: flamegraph Requires: gcc Requires: graphviz Requires: hicolor-icon-theme Requires: ltl2ba Requires: why3 Recommends: bash-completion Suggests: coq Suggests: z3 # Do not Require private ocaml interfaces that we don't Provide %global __requires_exclude ocaml\\\((Callgraph_api|Cg|Flags|Generator|Marks|Services|Uses|Why3Provers)\\\)|ocamlx\\\(Design|Dgraph_helper|Gtk_(form|helper)|Gui_parameters|History|Pretty_source|W(box|idget|palette|pane|table|text|util)\\\) # This can be removed when Fedora 38 reaches EOL Obsoletes: frama-c-xemacs < 23.1-2 %description Frama-C is a suite of tools dedicated to the analysis of the source code of software written in C. Frama-C gathers several static analysis techniques in a single collaborative framework. The collaborative approach of Frama-C allows static analyzers to build upon the results already computed by other analyzers in the framework. Thanks to this approach, Frama-C provides sophisticated tools, such as a slicer and dependency analysis. %package doc Summary: Large documentation files for %{name} Requires: %{name} = %{version}-%{release} BuildArch: noarch %description doc Large documentation files for %{name}. %package emacs Summary: Emacs support file for ACSL markup License: LGPLv2 Requires: %{name} = %{version}-%{release} Requires: emacs(bin) BuildArch: noarch %description emacs This package contains an Emacs support file for working with C source files marked up with ACSL. %prep %autosetup -n %{name}-%{pkgversion} -p1 %setup -q -T -D -a 1 -n %{name}-%{pkgversion} %setup -q -T -D -a 6 -n %{name}-%{pkgversion} fixtimestamp() { touch -r $1.orig $1 rm -f $1.orig } # Copy in the manuals mkdir doc/manuals cp -p %{SOURCE7} %{SOURCE8} %{SOURCE9} %{SOURCE10} %{SOURCE11} %{SOURCE12} \ %{SOURCE13} %{SOURCE14} %{SOURCE15} %{SOURCE16} doc/manuals # Link with the Fedora LDFLAGS, generate debuginfo, and fix an underlinked # plugin sed -e "/OLINKFLAGS/s|-linkall|& -runtime-variant _pic -ccopt '%{build_ldflags}'|" \ -e '/OCAMLMKLIB/s/\$(OPT_LIBS).*/& -lm/' \ -e 's/\$(OCAMLMKLIB)/& -g/' \ -i Makefile # Preserve timestamps when installing sed -ri 's/^CP[[:blank:]]+=.*/& -p/' share/Makefile.common # Build buckx with the right flags sed -i "s|-O3 -Wall|%{build_cflags} -fPIC|" Makefile # Do not use env for fil in share/analysis-scripts/{build_callgraph,detect_recursion,estimate_difficulty,find_fun,function_finder,heuristic_list_functions,list_files,make_template,make_wrapper,normalize_jcdb,print_callgraph,summary}.py; do sed -i.orig 's,%{_bindir}/env python3,%{_bindir}/python3,' $fil fixtimestamp $fil done %ifarch %{ocaml_native_compiler} # Some tests run the bytecode toplevel. This fails because why3 is built with # native code, not bytecode, so %%{_libdir}/ocaml/why3/why3.cma does not exist. sed -i 's/toplevel\.byte/toplevel.opt/g' \ tests/journal/control2.c \ tests/pdg/dyn_dpds.c %endif # Do not apply DESTDIR twice sed -i 's/\$(DESTDIR)//' share/Makefile.dynamic %build # This option prints the actual make commands so we can see what's # happening (eg: for debugging the spec file) %configure --enable-verbosemake make %install %make_install %ifarch %{ocaml_native_compiler} mv -f %{buildroot}%{_bindir}/ptests.opt %{buildroot}%{_bindir}/ptests %else mv -f %{buildroot}%{_bindir}/frama-c.byte %{buildroot}%{_bindir}/frama-c mv -f %{buildroot}%{_bindir}/frama-c-gui.byte %{buildroot}%{_bindir}/frama-c-gui mv -f %{buildroot}%{_bindir}/ptests.byte %{buildroot}%{_bindir}/ptests %endif # Two of the man pages are duplicates, so make one a link to the other. cat > %{buildroot}%{_mandir}/man1/frama-c-gui.1 << EOF .so man1/frama-c.1 EOF # Install the opam file cp -p opam/opam %{buildroot}%{_libdir}/frama-c # Install the desktop file desktop-file-install --dir=%{buildroot}%{_datadir}/applications/ %{SOURCE3} # Install the AppData file mkdir -p %{buildroot}%{_metainfodir} install -pm 644 %{SOURCE4} %{buildroot}%{_metainfodir} appstreamcli validate --no-net \ %{buildroot}%{_metainfodir}/com.%{name}.%{name}-gui.metainfo.xml # Install the icons mkdir -p %{buildroot}%{_datadir}/icons cp -a icons %{buildroot}%{_datadir}/icons/hicolor # Install the bash completion file mkdir -p %{buildroot}%{_datadir}/bash-completion/completions cp -p share/autocomplete_frama-c \ %{buildroot}%{_datadir}/bash-completion/completions/frama-c # Install and bytecompile the Emacs file mkdir -p %{buildroot}%{_emacs_sitelispdir} mv %{buildroot}%{_datadir}/frama-c/emacs/*.el %{buildroot}%{_emacs_sitelispdir} rmdir %{buildroot}%{_datadir}/frama-c/emacs chmod a-x %{buildroot}%{_emacs_sitelispdir}/*.el cd %{buildroot}%{_emacs_sitelispdir} %{_emacs_bytecompile} *.el mkdir -p %{buildroot}%{_emacs_sitestartdir} cp -p %{SOURCE5} %{buildroot}%{_emacs_sitestartdir} cd - # Remove files we don't actually want rm -f %{buildroot}%{_datadir}/frama-c/{autocomplete_frama-c,configure.ac} rm -f %{buildroot}%{_libdir}/frama-c/*.{cmo,cmx,o} %ifarch %{ocaml_native_compiler} rm -f %{buildroot}%{_bindir}/frama-c{,-gui}.byte %endif # The install step adds lots of spurious executable bits chmod a-x %{buildroot}%{_libdir}/frama-c/*.{a,cm{a,i,xa}} \ %{buildroot}%{_libdir}/frama-c/META* \ %{buildroot}%{_libdir}/frama-c/e-acsl/*.a \ %{buildroot}%{_libdir}/frama-c/plugins/*.cmi \ %{buildroot}%{_libdir}/frama-c/plugins/META* \ %{buildroot}%{_libdir}/frama-c/plugins/gui/*.cm{i,o} \ %{buildroot}%{_libdir}/frama-c/plugins/top/*.cm{i,o,x} \ %{buildroot}%{_mandir}/man1/* find %{buildroot}%{_datadir}/frama-c -type f -perm /0111 -exec chmod a-x {} + # But put back the correct executable bits chmod 0755 %{buildroot}%{_datadir}/frama-c/analysis-scripts/*.{pl,py,sh} # Remove spurious executable bits on generated files chmod 0644 src/plugins/value/domains/apron/*.ml # Unbundle flamegraph rm -f %{buildroot}%{_datadir}/frama-c/analysis-scripts/flamegraph.pl ln -s %{_bindir}/flamegraph.pl %{buildroot}%{_datadir}/frama-c/analysis-scripts # FIXME: tests only pass on x86_64 %ifarch x86_64 %check # Parallel testing sometimes fails make PTESTS_OPTS=-error-code tests %endif %files %doc VERSION %license licenses/* %{_bindir}/* %{_libdir}/frama-c/ %{_datadir}/frama-c/ %{_datadir}/applications/com.%{name}.%{name}-gui.desktop %{_datadir}/bash-completion/completions/frama-c %{_datadir}/icons/hicolor/*/apps/%{name}.png %{_metainfodir}/com.%{name}.%{name}-gui.metainfo.xml %{_mandir}/man1/* %files doc %doc doc/manuals/acsl-implementation-%{pkgversion}.pdf %doc doc/manuals/aorai-manual-%{pkgversion}.pdf %doc doc/manuals/e-acsl-implementation-%{pkgversion}.pdf %doc doc/manuals/e-acsl-manual-%{pkgversion}.pdf %doc doc/manuals/eva-manual-%{pkgversion}.pdf %doc doc/manuals/metrics-manual-%{pkgversion}.pdf %doc doc/manuals/plugin-development-guide-%{pkgversion}.pdf %doc doc/manuals/rte-manual-%{pkgversion}.pdf %doc doc/manuals/user-manual-%{pkgversion}.pdf %doc doc/manuals/wp-manual-%{pkgversion}.pdf %doc frama-c-api %files emacs %{_emacs_sitelispdir}/*.el* %{_emacs_sitestartdir}/acsl.el %changelog * Wed Jun 22 2022 Jerry James - 24.0-7 - Rebuild for coq 8.15.2 * Fri Mar 25 2022 Jerry James - 24.0-6 - Rebuild for coq 8.15.1 and ocaml-zmq 5.1.5 * Mon Feb 28 2022 Jerry James - 24.0-5 - Rebuild for coq 8.15.0 and why3 1.4.1 * Fri Feb 04 2022 Richard W.M. Jones - 24.0-4 - OCaml 4.13.1 rebuild to remove package notes * Thu Jan 20 2022 Fedora Release Engineering - 24.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Mon Dec 27 2021 Jerry James - 24.0-2 - Rebuild for ocaml-ppxlib 0.24.0 * Tue Dec 7 2021 Jerry James - 24.0-1 - Version 24.0 - Drop upstreamed fix for OCaml 4.13 * Tue Nov 30 2021 Jerry James - 23.1-5 - Rebuild for coq 8.14.1 and ocaml-sexplib0 0.15.0 * Thu Oct 21 2021 Jerry James - 23.1-4 - Rebuild for coq 8.14.0 and ocaml-zmq 5.1.4 - Add -coq8.14 patch - Drop XEmacs support * Tue Oct 05 2021 Richard W.M. Jones - 23.1-3 - OCaml 4.13.1 build * Mon Oct 04 2021 Richard W.M. Jones - 23.1-2 - Try to build on s390x with OCaml 4.13 * Wed Aug 11 2021 Jerry James - 23.1-1 - Version 23.1 * Fri Jul 30 2021 Jerry James - 23.0-3 - Rebuild for changed ocamlx(Dynlink) * Wed Jul 21 2021 Fedora Release Engineering - 23.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Wed Jul 14 2021 Jerry James - 23.0-1 - Update to Vanadium 23.0 * Tue Jun 8 2021 Jerry James - 22.0-11 - Rebuild for ocaml-ocamlgraph 2.0.0 * Mon Mar 15 2021 Richard W.M. Jones - 22.0-10 - Bump and rebuild for updated ocaml-findlib. * Wed Mar 3 2021 Jerry James - 22.0-9 - Rebuild for coq 8.13.1 and ocaml-zarith 1.12 * Tue Mar 2 11:40:01 GMT 2021 Richard W.M. Jones - 22.0-8 - OCaml 4.12.0 build * Sat Feb 20 2021 Jerry James - 22.0-7 - Rebuild for coq 8.13.0 - Update metainfo and install in metainfodir * Tue Jan 26 2021 Fedora Release Engineering - 22.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Sat Jan 2 2021 Jerry James - 22.0-5 - Rebuild for flocq 3.4.0 * Wed Dec 23 2020 Jerry James - 22.0-4 - Rebuild for coq 8.12.2 * Mon Dec 7 2020 Jerry James - 22.0-3 - Rebuild for ocaml-ppx-deriving-yojson 3.6.1 * Wed Dec 2 2020 Jerry James - 22.0-2 - Rebuild for coq 8.12.1 * Fri Nov 20 2020 Jerry James - 22.0-1 - Update to Titanium 22.0 - Add %%check script * Mon Nov 16 2020 Jerry James - 21.1-7 - Rebuild for ocaml-zarith 1.11 * Fri Sep 25 2020 Jerry James - 21.1-6 - Rebuild for apron 0.9.13 and why3 1.3.3 * Wed Sep 02 2020 Richard W.M. Jones - 21.1-5 - OCaml 4.11.1 rebuild * Tue Sep 1 2020 Jerry James - 21.1-4 - Rebuild for coq 8.12.0 * Mon Aug 24 2020 Richard W.M. Jones - 21.1-4 - OCaml 4.11.0 rebuild * Sat Aug 01 2020 Fedora Release Engineering - 21.1-3 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Mon Jul 27 2020 Fedora Release Engineering - 21.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Thu Jun 25 2020 Jerry James - 21.1-1 - Update to Scandium 21.1 * Mon Jun 15 2020 Jerry James - 21.0-2 - Rebuild for coq 8.11.2 * Sat Jun 13 2020 Jerry James - 21.0-1 - Update to Scandium 21.0 - Drop upstreamed -why3 patch * Wed May 20 2020 Jerry James - 20.0-4 - Rebuild for coq 8.11.1 * Tue May 05 2020 Richard W.M. Jones - 20.0-3 - OCaml 4.11.0+dev2-2020-04-22 rebuild * Sun Apr 05 2020 Richard W.M. Jones - 20.0-2 - Update all OCaml dependencies for RPM 4.16. * Wed Mar 25 2020 Jerry James - 20.0-1 - Update to Calcium 20.0 * Thu Jan 23 2020 Jerry James - 19.1-5 - Rebuild for apron 0.9.12 * Mon Dec 9 2019 Jerry James - 19.1-4 - OCaml 4.09.0 (final) rebuild. * Tue Oct 29 2019 Jerry James - 19.1-3 - Rebuild for why3 1.2.1 * Fri Oct 11 2019 Jerry James - 19.1-2 - Rebuild for ocaml-menhir 20190924 * Mon Sep 23 2019 Jerry James - 19.1-1 - Update to Potassium 19.1 * Fri Sep 6 2019 Jerry James - 19.0-3 - Unbundle flamegraph - Install bash completions in the right place * Fri Aug 2 2019 Jerry James - 19.0-2 - Fix list of filtered requires * Tue Jul 30 2019 Jerry James - 19.0-1 - Update to Potassium version * Thu Jul 25 2019 Fedora Release Engineering - 18.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Wed Jun 5 2019 Jerry James - 18.0-1 - Update to Argon version * Thu Jan 31 2019 Fedora Release Engineering - 17.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Sat Jan 26 2019 Jerry James - 17.0-1 - Update to Chlorine version * Fri Jul 13 2018 Fedora Release Engineering - 16.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Mon Feb 12 2018 Jerry James - 16.0-1 - Update to Sulfur version - Drop upstreamed -safe-string patch * Wed Feb 07 2018 Fedora Release Engineering - 15.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Thu Jan 11 2018 Igor Gnatenko - 15.0-7 - Remove obsolete scriptlets * Sat Dec 9 2017 Jerry James - 15.0-6 - Rebuild for why3 0.88.2 * Mon Dec 4 2017 Jerry James - 15.0-5 - Rebuild for mlgmpidl * Fri Nov 17 2017 Richard W.M. Jones - 15.0-4 - OCaml 4.06.0 rebuild. * Sat Oct 7 2017 Jerry James - 15.0-3 - Rebuild for why3 0.88.0 * Tue Sep 12 2017 Jerry James - 15.0-2 - More excludes so that provides match requires * Thu Sep 7 2017 Jerry James - 15.0-1 - Update to Phosphorus version - Switch to new upstream version numbering scheme - Install the bash completion file * Wed Sep 06 2017 Richard W.M. Jones - 1.14-6 - OCaml 4.05.0 rebuild. * Wed Aug 02 2017 Fedora Release Engineering - 1.14-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 1.14-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Tue Jun 27 2017 Richard W.M. Jones - 1.14-3 - OCaml 4.04.2 rebuild. * Fri May 12 2017 Richard W.M. Jones - 1.14-2 - OCaml 4.04.1 rebuild. * Fri Mar 24 2017 Jerry James - 1.14-1 - Update to Silicon version * Fri Feb 10 2017 Fedora Release Engineering - 1.13-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Thu Jan 12 2017 Jerry James - 1.13-7 - Rebuild for coq 8.6 * Wed Nov 30 2016 Jerry James - 1.13-6 - Rebuild for alt-ergo 1.30 * Mon Nov 07 2016 Richard W.M. Jones - 1.13-5 - Rebuild for OCaml 4.04.0. - Add small fixes for OCaml 4.04.0. * Fri Oct 28 2016 Jerry James - 1.13-4 - Rebuild for coq 8.5pl3 - Remove obsolete scriptlets * Thu Sep 1 2016 Jerry James - 1.13-3 - Rebuild for why3 0.87.2 * Wed Jul 13 2016 Jerry James - 1.13-2 - Rebuild for coq 8.5pl2 - Require ocaml-findlib (bz 1354515) * Wed Jun 1 2016 Jerry James - 1.13-1 - Update to Aluminium version * Fri Apr 22 2016 Jerry James - 1.12-4 - Rebuild for coq 8.5pl1 * Sat Apr 16 2016 Jerry James - 1.12-3 - Rebuild for ocaml-ocamlgraph 1.8.7 * Fri Mar 18 2016 Jerry James - 1.12-2 - Rebuild for why3 0.87.0 * Fri Feb 12 2016 Jerry James - 1.12-1 - Update to Magnesium version - Drop unneeded -why patch * Wed Feb 03 2016 Fedora Release Engineering - 1.11-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Wed Nov 25 2015 Jerry James - 1.11-9 - Rebuild for ocaml-zarith 1.4.1 * Thu Jul 30 2015 Richard W.M. Jones - 1.11-8 - OCaml 4.02.3 rebuild. * Wed Jun 24 2015 Richard W.M. Jones - 1.11-7 - ocaml-4.02.2 final rebuild. * Mon Jun 22 2015 Jerry James - 1.11-6 - Rebuild for why3 0.86.1 * Wed Jun 17 2015 Richard W.M. Jones - 1.11-5 - ocaml-4.02.2 rebuild. * Wed Jun 17 2015 Fedora Release Engineering - 1.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Sat May 16 2015 Jerry James - 1.11-3 - Rebuild for why3 0.86 * Sat Apr 11 2015 Jerry James - 1.11-2 - Rebuild for coq 8.4pl6 * Wed Mar 18 2015 Jerry James - 1.11-1 - Update to Sodium version - Drop all patches; all have been upstreamed - Add -why patch to fix the why build * Wed Feb 18 2015 Richard W.M. Jones - 1.10-21 - ocaml-4.02.1 rebuild. * Thu Oct 30 2014 Jerry James - 1.10-20 - Rebuild for coq 8.4pl5 * Tue Oct 14 2014 Jerry James - 1.10-19 - Rebuild for ocaml-zarith 1.3 * Thu Sep 18 2014 Jerry James - 1.10-18 - Bump release and rebuild * Thu Sep 18 2014 Jerry James - 1.10-17 - Rebuild for why3 0.85 * Thu Sep 4 2014 Jerry James - 1.10-16 - Adapt to why3 0.84 * Tue Sep 2 2014 Jerry James - 1.10-15 - Rebuild for final ocaml 4.02.0 release - Fix license handling * Mon Aug 25 2014 Jerry James - 1.10-14 - ocaml-4.02.0+rc1 rebuild. * Sat Aug 16 2014 Fedora Release Engineering - 1.10-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild * Sat Aug 09 2014 Richard W.M. Jones - 1.10-12 - ocaml-4.02.0-0.8.git10e45753.fc22 rebuild. * Mon Aug 4 2014 Jerry James - 1.10-11 - BR emacs instead of emacs-nox, which has gone away * Fri Aug 01 2014 Richard W.M. Jones - 1.10-11 - Bump release and rebuild. * Fri Aug 01 2014 Richard W.M. Jones - 1.10-10 - Bump release and rebuild. * Fri Jul 25 2014 Richard W.M. Jones - 1.10-9 - Rebuild for OCaml 4.02.0 beta. * Mon Jul 21 2014 Jerry James - 1.10-8 - Add comment to desktop file * Thu Jun 26 2014 Jerry James - 1.10-7 - Set LDFLAGS in a less destructive way (bz 1105265) * Sat Jun 07 2014 Fedora Release Engineering - 1.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Tue May 13 2014 Jerry James - 1.10-5 - Rebuild for coq 8.4pl4 * Mon Apr 21 2014 Jerry James - 1.10-4 - Rebuild for ocamlgraph 1.8.5; add -ocamlgraph patch to adapt * Tue Apr 15 2014 Richard W.M. Jones - 1.10-3 - Remove ocaml_arches macro (RHBZ#1087794). * Mon Mar 24 2014 Jerry James - 1.10-2 - Fix the icon name in the desktop file - Install icons - Drop unnecessary gmp-devel BR (pulled in by ocaml-zarith-devel) - Fix permissions later, else they get reset to the bad values * Mon Mar 17 2014 Jerry James - 1.10-1 - Update to Neon version - All patches have been upstreamed; drop them - The manuals are no longer included in the source distribution; add as Sources - BR ocaml-findlib instead of ocaml-findlib-devel - BR why3 to get coq + why3 support in the wp plugin * Wed Feb 26 2014 Jerry James - 1.9-9 - Rebuild for ocaml-ocamlgraph 1.8.4; add -ocamlgraph patch to adapt. - Add an Appdata file. * Wed Oct 02 2013 Richard W.M. Jones - 1.9-8 - Rebuild for ocaml-lablgtk 2.18. * Mon Sep 16 2013 Jerry James - 1.9-7 - Rebuild for OCaml 4.01.0 - Enable debuginfo * Fri Aug 9 2013 Jerry James - 1.9-6 - Update -fixes patch to fix startup failures on ARM * Sat Aug 03 2013 Fedora Release Engineering - 1.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Fri Jun 21 2013 Jerry James - 1.9-4 - Update to 20130601 bugfix Fluorine release * Mon Jun 3 2013 Jerry James - 1.9-3 - Add -fixes patch to fix code generation for inductive definitions * Thu May 23 2013 Jerry James - 1.9-2 - Update to bugfix Fluorine release * Tue May 14 2013 Jerry James - 1.9-1 - Update to Fluorine version - Merge -devel into the main package (bz 888865) * Wed Feb 13 2013 Fedora Release Engineering - 1.8-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Mon Jan 14 2013 Jerry James - 1.8-5 - Rebuild for coq 8.4pl1 and alt-ergo 0.95 * Mon Nov 5 2012 Jerry James - 1.8-4 - Build with zarith support * Mon Oct 22 2012 Jerry James - 1.8-3 - Update the Requires filter even more for Oxygen * Mon Oct 22 2012 Jerry James - 1.8-2 - Update the Requires filter for Oxygen * Fri Oct 19 2012 Jerry James - 1.8-1 - Update to Oxygen version * Tue Sep 11 2012 Jerry James - 1.7-9 - Disable dangerous code in src/type/type.ml that leads to segfaults. * Mon Aug 27 2012 Jerry James - 1.7-8 - Use a vastly simpler patch for OCaml 4 that fixes the native build. * Fri Aug 3 2012 Jerry James - 1.7-7 - Shipping the bytecode version works better if it isn't stripped. * Fri Aug 3 2012 Jerry James - 1.7-6 - Use upstream's version of the ocamlgraph patch. - Ship the bytecode binaries until the native breakage is diagnosed. * Mon Jul 30 2012 Richard W.M. Jones - 1.7-5 - Rebuild for OCaml 4.00.0 official. * Thu Jul 19 2012 Fedora Release Engineering - 1.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Mon Jan 9 2012 Jerry James - 1.7-3 - Rebuild for OCaml 3.12.1 * Tue Nov 8 2011 Jerry James - 1.7-2 - Rebuild to eliminate libpng dependency * Tue Oct 25 2011 Jerry James - 1.7-1 - Update to Nitrogen version * Mon Jul 11 2011 Jerry James - 1.6-1 - Update to Carbon version - Removed unnecessary spec file elements (BuildRoot, etc.) - Update approach to filtering provides and requires - Do not filter as much; why should Require some of the filtered names - Add (X)Emacs support packages - Add doc subpackage to hold large manual PDFs - Support for gtksourceview 1.x has been dropped * Wed Apr 13 2011 Karsten Hopp 1.5-3.1 - add ppc64 to archs with ocaml * Tue Feb 08 2011 Fedora Release Engineering - 1.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Sat Jan 22 2011 Dan HorĂ¡k - 1.5-2 - updated the supported arch list * Sat Jul 17 2010 Mark Rader 1.5-1 - Upgraded Frama C to Boron version and added ltl2ba dependencies. * Mon Jul 05 2010 Mark Rader 1.4-4 - Modified spec file to add new OCAML dependency structure for FC-13 * Sun Jun 06 2010 Mark Rader 1.4-3 - Added documentation to explain the various licensing entries. - Added .desktop file * Wed May 26 2010 Mark Rader 1.4-2 - Add SELinux context settings. * Wed Feb 10 2010 Alan Dunn 1.4-1 - Initial Fedora RPM