commit:     ea162b812cb64c737eba031c8fcb8bbef7a2084a
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 12 21:24:23 2020 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Jun 12 21:24:23 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea162b81

sci-mathematics/why3-for-spark: fix flags and compression

Closes: https://bugs.gentoo.org/728032
Closes: https://bugs.gentoo.org/728050
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 .../files/why3-for-spark-2019-flags.patch          |  28 +++++
 .../why3-for-spark/why3-for-spark-2019-r2.ebuild   | 116 +++++++++++++++++++++
 2 files changed, 144 insertions(+)

diff --git 
a/sci-mathematics/why3-for-spark/files/why3-for-spark-2019-flags.patch 
b/sci-mathematics/why3-for-spark/files/why3-for-spark-2019-flags.patch
new file mode 100644
index 00000000000..b562bb02cd8
--- /dev/null
+++ b/sci-mathematics/why3-for-spark/files/why3-for-spark-2019-flags.patch
@@ -0,0 +1,28 @@
+--- a/Makefile.in      2020-06-12 21:03:33.375534124 +0200
++++ b/Makefile.in      2020-06-12 21:03:48.623283408 +0200
+@@ -96,7 +96,7 @@
+ 
+ WARNINGS = A-4-9-41-44-45-50-52@5@8@48
+ 
+-OFLAGS = -w $(WARNINGS) -safe-string -keep-locs -bin-annot -dtypes -g 
$(INCLUDES)
++OFLAGS = -w $(WARNINGS) -safe-string -keep-locs -bin-annot -dtypes -g 
$(INCLUDES) -cclib "$(LDFLAGS)" -ccopt "$(CFLAGS)"
+ BFLAGS = -w $(WARNINGS) -safe-string -keep-locs -bin-annot -dtypes -g 
$(INCLUDES)
+ 
+ OLINKFLAGS = -linkall $(EXTCMXA)
+@@ -664,13 +664,13 @@
+ all: $(TOOLS)
+ 
+ lib/why3server$(EXE): $(SERVER_O)
+-      $(CC) -Wall -o $@ $^
++      $(CC) -Wall $(CFLAGS) -o $@ $^ $(LDFLAGS)
+ 
+ lib/why3cpulimit$(EXE): $(CPULIM_O)
+-      $(CC) -Wall -o $@ $^
++      $(CC) -Wall $(CFLAGS) -o $@ $^ $(LDFLAGS)
+ 
+ %.o: %.c
+-      $(CC) -Wall -O -g -o $@ -c $<
++      $(CC) -Wall -O -g $(CFLAGS) -o $@ -c $<
+ 
+ uninstall-bin::
+       rm -f $(LIBDIR)/why3/why3server$(EXE) $(LIBDIR)/why3/why3cpulimit$(EXE)

diff --git a/sci-mathematics/why3-for-spark/why3-for-spark-2019-r2.ebuild 
b/sci-mathematics/why3-for-spark/why3-for-spark-2019-r2.ebuild
new file mode 100644
index 00000000000..e27b1427040
--- /dev/null
+++ b/sci-mathematics/why3-for-spark/why3-for-spark-2019-r2.ebuild
@@ -0,0 +1,116 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MYP=why3-${PV}-20190517-197BB-src
+
+DESCRIPTION="Platform for deductive program verification"
+HOMEPAGE="http://why3.lri.fr/";
+SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf915d31e87a8f1c967d54
+       -> ${MYP}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="coq doc emacs gtk html hypothesis-selection +ocamlopt zarith zip"
+RESTRICT=strip
+
+DEPEND=">=dev-lang/ocaml-4.09.0[ocamlopt?]
+       >=dev-ml/ocamlbuild-0.14.0
+       dev-ml/menhir
+       dev-ml/num
+       coq? ( >=sci-mathematics/coq-8.9.1 )
+       doc? ( dev-tex/rubber )
+       gtk? ( >=dev-ml/lablgtk-2.18.8[sourceview] )
+       emacs? ( >=app-editors/emacs-23.1:* )
+       html? ( dev-tex/hevea )
+       hypothesis-selection? ( dev-ml/ocamlgraph )
+       zarith? ( dev-ml/zarith )
+       zip? ( >=dev-ml/camlzip-1.07 )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"/${MYP}
+
+PATCHES=(
+       "${FILESDIR}"/${P}-gentoo.patch
+       "${FILESDIR}"/${P}-flags.patch
+)
+
+QA_FLAGS_IGNORED=(
+       /usr/lib64/why3/commands/why3shell
+       /usr/lib64/why3/commands/why3extract
+       /usr/lib64/why3/commands/why3execute
+       /usr/lib64/why3/commands/why3prove
+       /usr/lib64/why3/commands/why3wc
+       /usr/lib64/why3/commands/why3doc
+       /usr/lib64/why3/commands/why3replay
+       /usr/lib64/why3/commands/why3webserver
+       /usr/lib64/why3/plugins/python.cmxs
+       /usr/lib64/why3/plugins/hypothesis_selection.cmxs
+       /usr/lib64/why3/plugins/tptp.cmxs
+       /usr/lib64/why3/plugins/dimacs.cmxs
+       /usr/lib64/why3/plugins/genequlin.cmxs
+       /usr/lib64/ocaml/why3/why3.cmxs
+       /usr/lib64/ocaml/why3/why3extract.cmxs
+       /usr/bin/why3
+       /usr/bin/why3config
+       /usr/bin/why3session
+       /usr/bin/gnat_server
+       /usr/bin/gnatwhy3
+       /usr/bin/why3realize
+)
+
+REQUIRED_USE="html? ( doc )"
+
+src_prepare() {
+       find examples -name \*gz | xargs gunzip
+       default
+}
+
+src_configure() {
+       econf \
+               --disable-pvs-libs \
+               --disable-isabelle-libs \
+               --enable-verbose-make \
+               $(use_enable coq coq-libs) \
+               $(use_enable doc) \
+               $(use_enable emacs emacs-compilation) \
+               $(use_enable gtk ide) \
+               $(use_enable html html-doc) \
+               $(use_enable hypothesis-selection) \
+               $(use_enable ocamlopt native-code) \
+               $(use_enable zarith) \
+               $(use_enable zip)
+}
+
+src_compile() {
+       emake -j1
+       if use ocamlopt; then
+               emake byte
+       fi
+       use doc && emake doc
+}
+
+src_install() {
+       emake DESTDIR="${D}" -j1 install
+       emake DESTDIR="${D}" -j1 install-lib
+       emake DESTDIR="${D}" install_spark2014_dev
+       local cmdPath=/usr/$(get_libdir)/why3/commands
+       dosym ../why3server ${cmdPath}/why3server
+       # Remove duplicated files
+       for filename in config ide realize server session; do
+               rm "${D}"${cmdPath}/why3${filename}
+               dosym ../../../bin/why3${filename} ${cmdPath}/why3${filename}
+       done
+       rm "${D}"/usr/$(get_libdir)/why3/why3cpulimit
+       dosym ../../../bin/why3cpulimit /usr/$(get_libdir)/why3/why3cpulimit
+
+       einstalldocs
+       docompress -x /usr/share/doc/${PF}/examples
+       dodoc -r examples
+       if use doc; then
+               dodoc doc/manual.pdf
+               use html && dodoc -r doc/html
+       fi
+}

Reply via email to