# # spec file for package coq # # Copyright (c) 2021 SUSE LLC # Copyright (c) 2012-2018 Peter Trommler, peter.trommler at ohm-hochschule.de # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via https://bugs.opensuse.org/ # %bcond_without ide Name: coq Version: 8.14.0 Release: 0 Summary: Proof Assistant based on the Calculus of Inductive Constructions License: LGPL-2.1-only Group: Productivity/Scientific/Math URL: https://coq.inria.fr/ Source: https://github.com/coq/coq/archive/V%{version}.tar.gz#/%{name}-%{version}.tar.gz Source1: coq.desktop Source2: coq.xml Source50: coq-refman-%{version}.tar.xz Source51: coq-stdlib-%{version}.tar.xz Source100: %{name}-rpmlintrc BuildRequires: desktop-file-utils BuildRequires: make >= 3.81 BuildRequires: ocaml >= 4.05.0 BuildRequires: ocaml-camlp5-devel >= 5.08 BuildRequires: ocaml-dune >= 2.5.1 BuildRequires: ocamlfind(findlib) BuildRequires: ocamlfind(zarith) %if %{with ide} BuildRequires: update-desktop-files BuildRequires: ocamlfind(lablgtk3-sourceview3) %endif %description Proof assistant which allows to handle calculus assertions, check mechanically proofs of these assertions, helps to find formal proofs and extracts a certified program from the constructive proof of its formal specification. This package contains shared files and the command line interface. For a graphical interface install %{name}-ide. %package ide Summary: IDE for The Coq Proof Assistant Group: Productivity/Scientific/Math Requires: %{name} = %{version} %description ide The Coq Integrated Development Interface is a graphical interface for the Coq proof assistant. %package devel Summary: Development files for coq Group: Development/Libraries/Other Requires: %{name} = %{version} Requires: ocaml >= 4.05.0 Requires: ocamlfind(findlib) %description devel This package contains development files for Coq. %package doc Summary: Documentation for coq Group: Documentation/HTML Requires: %{name} = %{version} %description doc HTML reference manual for Coq and full documentation of the standard library. %prep %setup -q -a 50 -a 51 %build export CFLAGS='%{optflags}' # TODO: Add -with-doc yes ./configure \ -prefix %{_prefix} \ -bindir %{_bindir} \ -libdir %{_libdir}/coq \ -mandir %{_mandir} \ -datadir %{_datadir}/%{name} \ -docdir %{_docdir}/%{name} \ -configdir %{_sysconfdir}/xdg/%{name} \ -coqdocdir %{_datadir}/texmf/tex/latex/misc \ %if %{with ide} -coqide opt \ %else -coqide no \ %endif -native-compiler yes \ -natdynlink yes \ -browser "xdg-open %s" make %{?_smp_mflags} world %install make DESTDIR=%{buildroot} install # For some reason, some of the files are installed into /usr/lib. %if "%{_libdir}" != "%{_prefix}/lib" mv %{buildroot}%{_prefix}/lib/* %{buildroot}%{_libdir} %endif %if %{with ide} %suse_update_desktop_file -i %{SOURCE1} install -D -m 644 %{SOURCE1} %{buildroot}%{_datadir}/applications/coq.desktop install -D -m 644 %{SOURCE2} %{buildroot}%{_datadir}/mime/packages/coq.xml mkdir -p %{buildroot}%{_datadir}/icons/hicolor/256x256/apps ln -s %{_datadir}/coq/coq.png %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/coq.png %else rm %{buildroot}%{_bindir}/coqidetop{.byte,.opt} %endif # Sometimes we get identical x and x.opt files, replace by symlink x -> x.opt. for bin in %{buildroot}%{_bindir}/*.opt do if [ -f ${bin%.opt} ] && diff $bin ${bin%.opt} then rm ${bin%.opt} ln -s ${bin#%{buildroot}} ${bin%.opt} fi done # Fix executable bit and shebangs, preferring python3. # (https://www.python.org/dev/peps/pep-0394/#for-python-runtime-distributors) chmod -x %{buildroot}%{_libdir}/coq-core/tools/TimeFileMaker.py sed -i '1s|^#!/usr/bin/env *|#!/usr/bin/|;1s|^#!/usr/bin/python$|#!/usr/bin/python3|' \ %{buildroot}%{_libdir}/coq-core/tools/make-{one-time-file,both-{time,single-timing}-files}.py # Remove /usr/doc that's not FHS-compliant, also we have the files elsewhere. rm -r %{buildroot}%{_prefix}/doc # Remove superfluous man page. rm %{buildroot}%{_mandir}/man1/coqtop.byte.1 # Remove unneeded empty *.vos files. find %{buildroot}%{_libdir}/coq -empty -name '*.vos' -delete # Build lists of runtime and devel files by ending. # Compiled theories and shared objects are needed at runtime. find %{buildroot}%{_libdir} -type d | sed "s|%{buildroot}|%%dir |g" >dir.list sed -i '1d; /coq-core\/tools/d' dir.list find %{buildroot}%{_libdir} -name '*.cmxs' \ -or -name '*.so' \ -or -name '*.vo' | sed "s|%{buildroot}||g" >runtime.list # Object files, static libraries and import definitions are only needed for development. # For now, we also put the standard library Coq sources here, since the runtime # package contains the HTML documentation for the standard library. find %{buildroot}%{_libdir} -name '*.a' \ -or -name '*.cma' \ -or -name '*.cmi' \ -or -name '*.cmt' \ -or -name '*.cmti' \ -or -name '*.cmx' \ -or -name '*.cmxa' \ -or -name '*.glob' \ -or -name '*.ml' \ -or -name '*.mli' \ -or -name '*.o' \ -or -name '*.v' | sed "s|%{buildroot}||g" >devel.list # Until we can build it, we fetch the documentation from the official website: # svn export https://github.com/coq/doc/trunk/V%{version}/refman # svn export https://github.com/coq/doc/trunk/V%{version}/stdlib # tar --sort=name --owner=0 --group=0 --mtime="@$(stat -c %%Y refman/index.html)" \ # --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime \ # -cJf coq-refman-%{version}.tar.xz refman # tar --sort=name --owner=0 --group=0 --mtime="@$(stat -c %%Y stdlib/index.html)" \ # --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime \ # -cJf coq-stdlib-%{version}.tar.xz stdlib # Drop some CSS files and headers in stdlib documentation, add some margin directly. find stdlib/ -name '*.html' -exec sed -i ' s#//coq.inria.fr/sites/all/themes/coq/coqdoc.css#%{_libdir}/coq-core/tools/coqdoc/coqdoc.css# //d /
/s/>/ style="margin:1em;">/ /^
$/,/^ <\/div>$/d /^