From: "Maciej Barć" <xgqt@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/boogie/
Date: Fri, 18 Nov 2022 00:53:10 +0000 (UTC) [thread overview]
Message-ID: <1668732788.2032b3219be48ea8e435211bbc23a6f8b2aa6d8c.xgqt@gentoo> (raw)
commit: 2032b3219be48ea8e435211bbc23a6f8b2aa6d8c
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 18 00:43:43 2022 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Fri Nov 18 00:53:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2032b321
dev-lang/boogie: bump to 2.15.9
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
dev-lang/boogie/Manifest | 1 +
dev-lang/boogie/boogie-2.15.9.ebuild | 94 ++++++++++++++++++++++++++++++++++++
2 files changed, 95 insertions(+)
diff --git a/dev-lang/boogie/Manifest b/dev-lang/boogie/Manifest
index 0215e7b7d733..9136617d22f7 100644
--- a/dev-lang/boogie/Manifest
+++ b/dev-lang/boogie/Manifest
@@ -1,2 +1,3 @@
DIST boogie-2.15.8-deps.tar.xz 71100772 BLAKE2B 1249627710fe0cc08c640ac7fe5e518793d237291810dc2df5d26bae2a4fd0fec15f0529b6fb799231002881665c2b2cf66b3a6a88494c780e96e51d78086959 SHA512 ee8df5693264c6b6e925f966a85e312e2df80d121c6e81786e7672d1591cdab8a66601c7d740df9db9704330a82f5aa01982d758cc4d5f151838be41c4d0b76f
DIST boogie-2.15.8.tar.gz 1548233 BLAKE2B cd3d46b6702eb9c16cdb94ae9776ee52bb142be57e3b0dfd014e59c2f3a98aec84d891544cbd239d773c49ac6bc0b3e1eb5e1eb5cda1f1a0b9aa029f0ee674f2 SHA512 5e214a6451b0ac6a33088797957661cdb35e7fc99f880935f0f1d9329975c11a0849f5ba6244e90f528e6cc31dc2fc83636506130f59464889bf04ecf6130990
+DIST boogie-2.15.9.tar.gz 1542068 BLAKE2B eb4802a628b3b96b02dd4736e6958f3b4362142f948e675e0f13c2270d062e42f1e441ddee427340e974cf6dbb3b6700b750318570e830ba0541c6737096991e SHA512 93eab4ba7f746c78c054f6ee8355c408e4435a836fc45def5485c973e4aec50e419412ecd376ff412632cb466384ad9df90bb368af4dc5e23cd7e207e47b5b1f
diff --git a/dev-lang/boogie/boogie-2.15.9.ebuild b/dev-lang/boogie/boogie-2.15.9.ebuild
new file mode 100644
index 000000000000..f4b0b0eea17f
--- /dev/null
+++ b/dev-lang/boogie/boogie-2.15.9.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOTNET_COMPAT=6.0
+
+inherit edo multiprocessing
+
+DESCRIPTION="SMT-based program verifier"
+HOMEPAGE="https://github.com/boogie-org/boogie/"
+SRC_URI="
+ https://github.com/boogie-org/${PN}/archive/v${PV}.tar.gz
+ -> ${P}.tar.gz
+ https://dev.gentoo.org/~xgqt/distfiles/deps/${PN}-2.15.8-deps.tar.xz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="debug test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="virtual/dotnet-sdk:${DOTNET_COMPAT}"
+RDEPEND="
+ ${BDEPEND}
+ sci-mathematics/z3
+"
+BDEPEND+="
+ test? (
+ dev-python/lit
+ dev-python/OutputCheck
+ )
+"
+
+# Generated by dotnet.
+QA_PREBUILT="/usr/share/boogie/BoogieDriver"
+
+src_prepare() {
+ export DOTNET_CLI_TELEMETRY_OPTOUT=1
+ export DOTNET_NOLOGO=1
+ export DOTNET_CONFIGURATION=$(usex debug Debug Release)
+ export DOTNET_OUTPUT="${WORKDIR}"/${P}_net${DOTNET_COMPAT}_${DOTNET_CONFIGURATION}/${PN}
+ export NUGET_PACKAGES="${WORKDIR}"/${PN}-2.15.8/Source/nuget_packages
+
+ default
+
+ # Remove bad tests.
+ local bad_tests=(
+ civl/inductive-sequentialization/BroadcastConsensus.bpl
+ livevars/bla1.bpl
+ prover/cvc5.bpl
+ test0/MaxKeepGoingSplits.bpl
+ test15/CaptureInlineUnroll.bpl
+ test15/CaptureState.bpl
+ test15/CommonVariablesPruning.bpl
+ )
+ local bad_test
+ for bad_test in ${bad_tests[@]} ; do
+ rm "${S}"/Test/${bad_test} || die
+ done
+
+ # Update the boogieBinary variable.
+ sed "/^boogieBinary/s|= .*|= '${DOTNET_OUTPUT}/BoogieDriver.dll'|" \
+ -i "${S}"/Test/lit.site.cfg || die "failed to update lit.site.cfg"
+}
+
+src_configure() {
+ edob dotnet restore "${S}"/Source \
+ --source "${NUGET_PACKAGES}" -p:TargetFramework=net${DOTNET_COMPAT}
+}
+
+src_compile() {
+ local myopts=(
+ --configuration ${DOTNET_CONFIGURATION}
+ --no-restore
+ --no-self-contained
+ --nologo
+ --output "${DOTNET_OUTPUT}"
+ -consoleLoggerParameters:ErrorsOnly
+ -maxCpuCount:$(makeopts_jobs)
+ )
+ edob dotnet build ${myopts[@]} "${S}"/Source
+}
+
+src_test() {
+ lit "${S}"/Test || die "tests failed"
+}
+
+src_install() {
+ mkdir -p "${ED}"/usr/share/ || die
+ cp -r "${DOTNET_OUTPUT}" "${ED}"/usr/share/ || die
+ dosym -r /usr/share/${PN}/BoogieDriver /usr/bin/boogie
+}
next reply other threads:[~2022-11-18 0:53 UTC|newest]
Thread overview: 77+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-18 0:53 Maciej Barć [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-25 18:52 [gentoo-commits] repo/gentoo:master commit in: dev-lang/boogie/ Maciej Barć
2024-10-25 18:52 Maciej Barć
2024-10-23 17:03 Sam James
2024-10-23 15:44 Maciej Barć
2024-10-23 15:44 Maciej Barć
2024-10-15 14:30 Maciej Barć
2024-10-13 19:23 Maciej Barć
2024-10-08 23:07 Maciej Barć
2024-10-08 23:07 Maciej Barć
2024-09-27 5:30 Arthur Zamarin
2024-09-12 12:08 Maciej Barć
2024-09-12 12:08 Maciej Barć
2024-09-12 12:08 Maciej Barć
2024-09-03 18:32 Jakov Smolić
2024-08-24 13:12 Michał Górny
2024-08-16 16:21 Maciej Barć
2024-08-16 16:21 Maciej Barć
2024-08-10 18:55 Arthur Zamarin
2024-07-31 0:03 Maciej Barć
2024-07-19 11:02 Maciej Barć
2024-07-04 12:44 Maciej Barć
2024-06-27 22:42 Maciej Barć
2024-06-25 22:03 Sam James
2024-05-23 22:08 Maciej Barć
2024-05-23 22:08 Maciej Barć
2024-05-23 22:08 Maciej Barć
2024-05-18 3:19 Sam James
2024-04-24 17:10 Maciej Barć
2024-04-24 17:10 Maciej Barć
2024-04-17 23:11 Sam James
2024-04-13 22:56 Maciej Barć
2024-04-13 22:56 Maciej Barć
2024-04-13 22:56 Maciej Barć
2024-04-13 22:56 Maciej Barć
2024-04-11 4:55 Arthur Zamarin
2024-03-13 16:40 Maciej Barć
2024-03-10 0:29 Maciej Barć
2024-03-08 22:18 Maciej Barć
2024-03-08 22:18 Maciej Barć
2024-03-08 13:09 Arthur Zamarin
2024-03-05 18:46 Maciej Barć
2024-03-05 18:46 Maciej Barć
2024-03-04 21:58 Maciej Barć
2024-03-04 21:58 Maciej Barć
2024-02-27 23:57 Sam James
2024-02-19 20:54 Maciej Barć
2024-02-10 16:24 Maciej Barć
2024-02-03 8:22 Arthur Zamarin
2024-02-02 23:06 Maciej Barć
2024-02-02 23:06 Maciej Barć
2024-01-27 20:06 Ionen Wolkens
2024-01-22 22:19 Maciej Barć
2024-01-12 23:22 Maciej Barć
2023-12-27 23:44 Maciej Barć
2023-12-27 23:44 Maciej Barć
2023-12-08 8:31 Maciej Barć
2023-12-08 8:31 Maciej Barć
2023-11-29 19:31 Maciej Barć
2023-11-21 18:37 Maciej Barć
2023-11-16 23:38 Maciej Barć
2023-11-16 23:38 Maciej Barć
2023-11-13 22:04 Sam James
2023-10-11 0:19 Maciej Barć
2023-10-07 22:39 Maciej Barć
2023-09-17 22:37 Maciej Barć
2023-09-16 14:48 Maciej Barć
2023-09-15 20:49 Maciej Barć
2023-06-19 18:29 Maciej Barć
2023-06-19 18:29 Maciej Barć
2023-02-28 18:03 Maciej Barć
2022-11-28 20:33 Maciej Barć
2022-10-06 20:56 Maciej Barć
2022-10-06 14:27 Maciej Barć
2022-10-04 15:24 Maciej Barć
2022-10-04 1:50 Maciej Barć
2022-10-03 21:38 Maciej Barć
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=1668732788.2032b3219be48ea8e435211bbc23a6f8b2aa6d8c.xgqt@gentoo \
--to=xgqt@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