commit:     d480aaec2cb9acedec8dfab023dad602d68923c0
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 30 12:53:23 2023 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Sat Sep 30 14:24:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d480aaec

dev-lang/dafny-bin: bump to 4.3.0

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 dev-lang/dafny-bin/Manifest               |  1 +
 dev-lang/dafny-bin/dafny-bin-4.3.0.ebuild | 53 +++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-lang/dafny-bin/Manifest b/dev-lang/dafny-bin/Manifest
index c646a4d3bec6..eb1839c5ec9f 100644
--- a/dev-lang/dafny-bin/Manifest
+++ b/dev-lang/dafny-bin/Manifest
@@ -1,2 +1,3 @@
 DIST dafny-3.12.0-x64-ubuntu-16.04.zip 76588835 BLAKE2B 
144928b5e9a32c770d4552be31373defd1153a7ce481aa3948c5fe6c30ff2ce5f20b3d057a587c7762f3c37d63f683275fcf60bbd4ca3754f8713132b3bdfdc9
 SHA512 
2ea5f97b4fe0f8aaeefd16f739306482824f76ae6c5a37038fedda60bacb2496abc02715c0973a05f845972fd81aeb06e62c3c41d6908c2cf7416006ce8519d4
 DIST dafny-4.2.0-x64-ubuntu-20.04.zip 62475183 BLAKE2B 
d8be842c80bf0cbaaf6fb6b56c8a57f5a45b54dd1b1020fb5062a01ce4d5366bf2ff7a7847d1bdcd9a1217300cded0af0c88d1c6871d4b039178517c8f618dc3
 SHA512 
86a91592af1b386130855ed73bfb60ec2362bdcadacac43b27a4b2cc36dd6f0894508242357659f7a5120c66ba6438fe23acaef3a65dfbd0912d2438c851a7ca
+DIST dafny-4.3.0-x64-ubuntu-20.04.zip 62691627 BLAKE2B 
edbff278472e5b0494fac38907adefa8fcfb94c3675df828e9ee022429d9595eed398d95333b223a70040ed69f07682e8aeaf90978f7466f4b9a412207d54d58
 SHA512 
14a861a6b0b55ee71db08f4c73e741fd92e5433d62411a2b17b177470b23148e288d835f80c2bdb388297f37be249b8a47bd3f83c2268082248f27d218b9cb9a

diff --git a/dev-lang/dafny-bin/dafny-bin-4.3.0.ebuild 
b/dev-lang/dafny-bin/dafny-bin-4.3.0.ebuild
new file mode 100644
index 000000000000..0f5cd85b46af
--- /dev/null
+++ b/dev-lang/dafny-bin/dafny-bin-4.3.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Verification-aware programming language"
+HOMEPAGE="https://dafny.org/
+       https://github.com/dafny-lang/dafny/";
+SRC_URI="https://github.com/dafny-lang/dafny/releases/download/v${PV}/dafny-${PV}-x64-ubuntu-20.04.zip";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+REQUIRED_USE="elibc_glibc"
+
+RDEPEND="
+       !dev-lang/dafny
+       dev-libs/userspace-rcu
+       dev-util/lttng-ust:0/2.12
+       sci-mathematics/z3
+"
+BDEPEND="app-arch/unzip"
+
+S="${WORKDIR}/dafny"
+QA_PREBUILT="*"
+
+src_prepare() {
+       default
+
+       # Remove bundled z3.
+       # NOTICE: New versions do not need the bundled one but older versions
+       # hardcoded the path relative to "dafny" binary.
+       # While bumping make sure to verify that system's "z3" is used
+       # by, for example, compiling/verifying a simple dafny program.
+       rm -r z3 || die
+}
+
+src_install() {
+       local dest=/opt/dafny
+
+       insinto ${dest}
+       # Maybe too general, but this installation mode matched how it arrives.
+       insopts -m0755
+       doins "${S}"/*
+
+       local bin
+       for bin in DafnyServer dafny ; do
+               dosym ../../${dest}/${bin} /usr/bin/${bin}
+       done
+
+       # Make "dafny-server" clients happy.
+       dosym ../../${dest}/DafnyServer /usr/bin/dafny-server
+}

Reply via email to