summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Barć <xgqt@gentoo.org>2024-02-03 13:51:40 +0100
committerMaciej Barć <xgqt@gentoo.org>2024-02-03 14:00:12 +0100
commit6ae753304c2c5dd621d5381313b804e6a0d1bac2 (patch)
treed66369bd9c7badcb631a7fee7a2c059c852630b5 /sci-mathematics
parentapp-containers/earthly: bump to 0.8.3 (diff)
downloadgentoo-6ae753304c2c5dd621d5381313b804e6a0d1bac2.tar.gz
gentoo-6ae753304c2c5dd621d5381313b804e6a0d1bac2.tar.bz2
gentoo-6ae753304c2c5dd621d5381313b804e6a0d1bac2.zip
sci-mathematics/easycrypt: drop old 2022.04_p20230324
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/easycrypt/Manifest1
-rw-r--r--sci-mathematics/easycrypt/easycrypt-2022.04_p20230324.ebuild51
2 files changed, 0 insertions, 52 deletions
diff --git a/sci-mathematics/easycrypt/Manifest b/sci-mathematics/easycrypt/Manifest
index 3d5b671859fb..3c2d7f0d022c 100644
--- a/sci-mathematics/easycrypt/Manifest
+++ b/sci-mathematics/easycrypt/Manifest
@@ -1,2 +1 @@
-DIST easycrypt-2022.04_p20230324.tar.gz 1296898 BLAKE2B 119cb10ad5c2cd50db9f70eb858e2779cae0350b9e5370060b8045f36684a9de87ad746e75c6a7e7fcc7ad93e40bde2164866bb16e67dd2ebc3409657760cbd8 SHA512 917d5ff2fe65a1fd02a19d700cfb77910290746023458b6ed9eb9dc1290faa5469571a3c77510caac8734ad7d2ada6c7fbfc75bb933d0a57e9c303a8cf207026
DIST easycrypt-2023.09.tar.gz 1317177 BLAKE2B 98e1c13b530f1cac6f3e166a01627cfb9cd0f1660f51187dac66397caad9cd71fe6b8923ac9757015a50ee479d3427d4906dcdf3bd36012559087657904489b8 SHA512 06fbd3993db951b620c946679566910c8f32035da6d0e8991c794edbc95a31acf3c60c5d3e909a60535ba0252dadf86ccfba2d1998a3929c4653e159d9a4dfac
diff --git a/sci-mathematics/easycrypt/easycrypt-2022.04_p20230324.ebuild b/sci-mathematics/easycrypt/easycrypt-2022.04_p20230324.ebuild
deleted file mode 100644
index 8434aa25bbc1..000000000000
--- a/sci-mathematics/easycrypt/easycrypt-2022.04_p20230324.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit dune
-
-DESCRIPTION="Computer-Aided Cryptographic Proofs"
-HOMEPAGE="https://github.com/EasyCrypt/easycrypt/"
-
-if [[ ${PV} == *9999* ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/EasyCrypt/${PN}.git"
-else
- if [[ ${PV} == *_p20230324 ]] ; then
- COMMIT=f62625928cc0970c88839c84897d1f6b17437519
- SRC_URI="https://github.com/EasyCrypt/${PN}/archive/${COMMIT}.tar.gz
- -> ${P}.tar.gz"
- S="${WORKDIR}"/${PN}-${COMMIT}
- else
- SRC_URI="https://github.com/EasyCrypt/${PN}/archive/${PV}.tar.gz
- -> ${P}.tar.gz"
- fi
- KEYWORDS="~amd64"
-fi
-
-LICENSE="MIT"
-SLOT="0/${PV}"
-IUSE="+ocamlopt"
-
-RDEPEND="
- >=dev-lang/ocaml-4.08.0:=[ocamlopt?]
- >=sci-mathematics/why3-1.6:= <sci-mathematics/why3-1.7:=
- dev-ml/batteries:=
- dev-ml/camlp-streams:=
- dev-ml/camlzip:=
- dev-ml/dune-build-info:=
- dev-ml/dune-site:=
- dev-ml/ocaml-inifiles:=
- dev-ml/pcre-ocaml:=
- dev-ml/yojson:=
- dev-ml/zarith:=
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- local theories="[\"$(ocamlc -where)/easycrypt/theories\"]"
- sed -i "s|EcRelocate\.Sites\.theories|${theories}|g" src/ec.ml || die
-
- default
-}