From: "Andrew Ammerlaan" <andrewammerlaan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: sci-mathematics/frama-c/
Date: Wed, 15 Dec 2021 10:43:00 +0000 (UTC) [thread overview]
Message-ID: <1639564965.5554acd11e9dfd3a9fffb4c39ab11507b055c3fc.andrewammerlaan@gentoo> (raw)
Message-ID: <20211215104300.GtZGfPF8pKzc8szYpQUG1yAvqQEB8IDIvqe4VL2-Dvs@z> (raw)
commit: 5554acd11e9dfd3a9fffb4c39ab11507b055c3fc
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 15 10:42:45 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Wed Dec 15 10:42:45 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5554acd1
sci-mathematics/frama-c: drop old
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
sci-mathematics/frama-c/Manifest | 1 -
sci-mathematics/frama-c/frama-c-22.0.ebuild | 104 ----------------------------
sci-mathematics/frama-c/metadata.xml | 33 ---------
3 files changed, 138 deletions(-)
diff --git a/sci-mathematics/frama-c/Manifest b/sci-mathematics/frama-c/Manifest
index 06b9632bc..94d4a0a85 100644
--- a/sci-mathematics/frama-c/Manifest
+++ b/sci-mathematics/frama-c/Manifest
@@ -1,2 +1 @@
-DIST frama-c-22.0-Titanium.tar.gz 6008520 BLAKE2B 957f1fd383913718598c8d14bd0ff4b6251cc5350633888ca061fa0e44fae17273b379dcc1b70fe8a187975364aee1f255e0df232a4ee349ff29f9cb922a7b60 SHA512 7366127da4726ffec0022adc06fd867b6ea37fc23b6a5ddccbe7562fcaa635abc6894397d0101fcb0afc339c565299c6d637006305c8331aa62a8ce734740a0f
DIST frama-c-23.1-Vanadium.tar.gz 6945715 BLAKE2B aa39c5263c3dd5f407eb97ae56cd734b6209d8dd9b976e67cfa2d3d9879463e47c6ca7b9c4760e111ffa6175e3c8abe698c0bbf7f54098bd7cdd90c704a53e62 SHA512 a96ef705479971991fcdee5440f07c0f30dcf434c7a855cdc894dc03275241599036aa1475b10f062b35045f7749e5d242b930e25ad2fd9e1708e29fca024c9e
diff --git a/sci-mathematics/frama-c/frama-c-22.0.ebuild b/sci-mathematics/frama-c/frama-c-22.0.ebuild
deleted file mode 100644
index 80111f49f..000000000
--- a/sci-mathematics/frama-c/frama-c-22.0.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools findlib toolchain-funcs
-
-DESCRIPTION="Framework for analysis of source codes written in C"
-HOMEPAGE="https://frama-c.com"
-NAME="Titanium"
-SRC_URI="https://frama-c.com/download/${P}-${NAME}.tar.gz"
-
-LICENSE="BSD LGPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+aorai +callgraph +dive +e-acsl +eva +from-analysis gtk +impact +inout +instantiate +loop-analysis +metrics +nonterm +obfuscator +ocamlopt +occurrence +pdg +postdominators +print-api +qed +report +rtegen +scope security-slicing +semantic-constant-folding +server +slicing +sparecode +studia +users +variadic +wp"
-RESTRICT="strip"
-
-# TODO: $(use_enable markdown-report mdr) -> missing dev-ml/ppx_deriving_yojson
-
-RDEPEND="
- >=dev-lang/ocaml-4.08.1[ocamlopt?]
- >=dev-ml/ocamlgraph-1.8.5[gtk(-)?,ocamlopt?]
- >=dev-ml/zarith-1.5[ocamlopt?]
- >=dev-ml/yojson-1.4.1[ocamlopt?]
- gtk? ( >=dev-ml/lablgtk-2.14:2=[sourceview,gnomecanvas,ocamlopt?] )
- wp? ( ~sci-mathematics/why3-1.3.3 )"
-DEPEND="${RDEPEND}
- media-gfx/graphviz"
-
-REQUIRED_USE="
- dive? ( eva studia )
- e-acsl? ( rtegen )
- from-analysis? ( eva callgraph )
- impact? ( pdg eva inout )
- inout? ( from-analysis eva callgraph )
- metrics? ( eva )
- nonterm? ( eva )
- occurrence? ( eva )
- pdg? ( from-analysis eva callgraph )
- scope? ( postdominators eva from-analysis pdg )
- security-slicing? ( slicing eva pdg gtk )
- semantic-constant-folding? ( eva )
- slicing? ( from-analysis pdg eva callgraph )
- sparecode? ( pdg eva )
- studia? ( eva )
- users? ( eva )
- wp? ( qed rtegen )"
-
-S="${WORKDIR}/${P}-${NAME}"
-
-src_prepare() {
- mv configure.in configure.ac || die
- sed -i 's/configure\.in/configure.ac/g' Makefile.generating Makefile || die
- sed -i '/\$(CC)/s/-O2 -g3/$(CFLAGS)/' src/plugins/e-acsl/Makefile.in || die
- sed -i "s/ranlib/$(tc-getRANLIB)/" src/plugins/e-acsl/Makefile.in || die
- touch config_file || die
- eautoreconf
- eapply_user
-}
-
-src_configure() {
- econf \
- --disable-landmarks \
- $(use_enable aorai) \
- $(use_enable callgraph) \
- $(use_enable dive) \
- $(use_enable e-acsl) \
- $(use_enable eva) \
- $(use_enable from-analysis) \
- $(use_enable gtk gui) \
- $(use_enable impact) \
- $(use_enable inout) \
- $(use_enable instantiate) \
- $(use_enable loop-analysis) \
- --disable-mdr \
- $(use_enable metrics) \
- $(use_enable nonterm) \
- $(use_enable obfuscator) \
- $(use_enable occurrence) \
- $(use_enable pdg) \
- $(use_enable postdominators) \
- $(use_enable print-api) \
- $(use_enable qed) \
- $(use_enable report) \
- $(use_enable rtegen) \
- $(use_enable scope) \
- $(use_enable security-slicing) \
- $(use_enable semantic-constant-folding) \
- $(use_enable server) \
- --disable-server-zmq \
- $(use_enable slicing) \
- $(use_enable sparecode) \
- $(use_enable studia) \
- $(use_enable users) \
- $(use_enable variadic) \
- $(use_enable wp) \
- --disable-wp-coq
-}
-
-src_compile() {
- tc-export AR
- default
-}
diff --git a/sci-mathematics/frama-c/metadata.xml b/sci-mathematics/frama-c/metadata.xml
index 6f03ebab4..62b378ff5 100644
--- a/sci-mathematics/frama-c/metadata.xml
+++ b/sci-mathematics/frama-c/metadata.xml
@@ -5,39 +5,6 @@
<name>François-Xavier Carton</name>
<email>fx.carton91@gmail.com</email>
</maintainer>
- <use>
- <flag name="aorai">Build the Aorai plugin</flag>
- <flag name="callgraph">Build the callgraph plugin</flag>
- <flag name="dive">Build the Dive plugin</flag>
- <flag name="e-acsl">Build the E-ACSL plugin</flag>
- <flag name="eva">Build the value analysis plugin</flag>
- <flag name="from-analysis">Build the from analysis plugin</flag>
- <flag name="gtk">Build the graphical user interface</flag>
- <flag name="impact">Build the impact plugin</flag>
- <flag name="inout">Build the inout analysis plugin</flag>
- <flag name="instantiate">Build the instantiate plugin</flag>
- <flag name="loop-analysis">Build the loop analysis plugin</flag>
- <flag name="metrics">Build the metrics analysis plugin</flag>
- <flag name="nonterm">Build the nonterm plugin</flag>
- <flag name="obfuscator">Build the Obfuscator plugin</flag>
- <flag name="occurrence">Build the occurrence analysis plugin</flag>
- <flag name="pdg">Build the pdg plugin</flag>
- <flag name="postdominators">Build the postdominators plugin</flag>
- <flag name="print-api">Build the print_api plugin</flag>
- <flag name="qed">Build the qed plugin</flag>
- <flag name="report">Build the report plugin</flag>
- <flag name="rtegen">Build the runtime error annotation plugin</flag>
- <flag name="scope">Build the scope plugin</flag>
- <flag name="security-slicing">Build the Security slicing plugin</flag>
- <flag name="semantic-constant-folding">Build the constant propagation plugin</flag>
- <flag name="server">Build the Server plugin</flag>
- <flag name="slicing">Build the slicing plugin</flag>
- <flag name="sparecode">Build the sparecode plugin</flag>
- <flag name="studia">Build the studia plugin</flag>
- <flag name="users">Build the users plugin</flag>
- <flag name="variadic">Build the variadic plugin</flag>
- <flag name="wp">Build the WP plugin</flag>
- </use>
<longdescription lang="en">
Frama-C is a suite of tools dedicated to the analysis of the source code
of software written in C. It gathers several static analysis techniques
next reply other threads:[~2021-12-15 10:43 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-15 10:42 Andrew Ammerlaan [this message]
2021-12-15 10:43 ` [gentoo-commits] repo/proj/guru:master commit in: sci-mathematics/frama-c/ Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2023-04-09 0:00 [gentoo-commits] repo/proj/guru:dev " Francois-Xavier Carton
2023-04-06 15:18 Arthur Zamarin
2022-09-08 10:24 Andrew Ammerlaan
2022-05-31 1:22 Francois-Xavier Carton
2022-05-24 21:31 Francois-Xavier Carton
2021-12-15 11:17 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-12-15 11:17 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-09-04 13:15 Francois-Xavier Carton
2021-05-16 16:11 Anna Vyalkova
2021-04-19 1:20 Francois-Xavier Carton
2021-03-30 19:53 Francois-Xavier Carton
2021-03-28 11:43 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-03-28 11:24 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-01-09 17:02 Francois-Xavier Carton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1639564965.5554acd11e9dfd3a9fffb4c39ab11507b055c3fc.andrewammerlaan@gentoo \
--to=andrewammerlaan@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox