diff --git a/dev-lang/boogie/Manifest b/dev-lang/boogie/Manifest deleted file mode 100644 index a71dd87..0000000 --- a/dev-lang/boogie/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST boogie-2.9.6.tar.gz 1508725 BLAKE2B 6226789a95d5a762db27b386eb1e6e3fdd4ff541f43bb6ae2a66bed2d2eb35cd0d948a9235d9b60f9c9538ab3a1701f36c601f834c177585c021e7900052071c SHA512 40ab3fd259031a4006279b16ca2912bfbf898cd8e283bb8900a74a31cde2fec2c0a0fc787a94164cbdcc76e61de83d8afcecb876fe77db60de636c2864b827e1 diff --git a/dev-lang/boogie/boogie-2.9.6.ebuild b/dev-lang/boogie/boogie-2.9.6.ebuild deleted file mode 100644 index 485a0c1..0000000 --- a/dev-lang/boogie/boogie-2.9.6.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DOTNET_FRAMEWORK="5.0" - -DESCRIPTION="Intermediate verification language built on .NET" -HOMEPAGE="https://github.com/boogie-org/boogie" - -if [[ "${PV}" == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/boogie-org/${PN}.git" -else - SRC_URI="https://github.com/boogie-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -# TODO: src_test -RESTRICT="network-sandbox test" -LICENSE="MIT" -SLOT="0" -IUSE="debug" - -DEPEND=" - virtual/dotnet-sdk:${DOTNET_FRAMEWORK} -" -RDEPEND=" - ${DEPEND} - sci-mathematics/z3 -" - -# Generated via dotnet -QA_PREBUILT="usr/share/boogie/BoogieDriver" - -src_prepare() { - if use debug; then - DOTNET_CONFIGURATION="Debug" - else - DOTNET_CONFIGURATION="Release" - fi - export DOTNET_CONFIGURATION - einfo "DOTNET_CONFIGURATION=${DOTNET_CONFIGURATION}" - - default -} - -src_configure() { - dotnet restore --no-cache ./Source/Boogie.sln || - die "dotnet restore filed" -} - -src_compile() { - dotnet build --configuration "${DOTNET_CONFIGURATION}" ./Source/Boogie.sln || - die "dotnet build failed" -} - -src_install() { - insinto /usr/share/${PN} - doins -r ./Source/BoogieDriver/bin/${DOTNET_CONFIGURATION}/net${DOTNET_FRAMEWORK}/* - - fperms +x /usr/share/${PN}/BoogieDriver - dosym ../share/${PN}/BoogieDriver /usr/bin/${PN} -} diff --git a/dev-lang/boogie/metadata.xml b/dev-lang/boogie/metadata.xml deleted file mode 100644 index 10a5d44..0000000 --- a/dev-lang/boogie/metadata.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - xgqt@riseup.net - Maciej Barć - - - Boogie is an intermediate verification language (IVL), intended as - a layer on which to build program verifiers for other languages. - Several program verifiers have been built in this way, including the VCC - and HAVOC verifiers for C and the verifiers for Dafny, Chalice, and Spec#. - For a sample verifier for a toy language built on top of Boogie, see Forro. - Boogie is also the name of a tool. The tool accepts the Boogie language - as input, optionally infers some invariants in the given Boogie program, - and then generates verification conditions that are passed to an SMT solver. - The default SMT solver is Z3. - - - https://github.com/boogie-org/boogie/issues - boogie-org/boogie - -