dev-ml/coq-menhirlib: drop old 20231231-r1

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2024-11-19 20:47:00 +01:00
parent f6ae4af467
commit 6463bc79f4
2 changed files with 0 additions and 45 deletions

View File

@@ -1,2 +1 @@
DIST menhir-20231231.tar.bz2 1245465 BLAKE2B 4ac27f693c9b0f34cf6f9c60343cba6c81cc5b4dc278df4da5c16de8484438238efc6e3e985b9f03676f72cc74a0153ea81fd93d057dd2914b86fe1f558d1f9f SHA512 6bcc3d32b9085e407d7ed7abc87bbbb7dcde52da7f5f343cbcf136df4aa2a9b640a94c3b809a125773d186d03bf9b806f9430dbc4a39ded7dd8ef685b1b1a65d
DIST menhir-20240715.tar.bz2 1245971 BLAKE2B b5f1a1fb234dd53e1d3f77b095e2721f8d2af354a3aa36da2b993dc9f699767bb7c98aae13316ff3405b8bcf80f9ba3addc824ace59f5548613f0f93d105adf7 SHA512 b18da35517702dbdab0d9f5819ad711f61f2ed13ec9e51db71b92fa2d6604cbf28aa6d684c36a41364324694ebbc5dc6aaed4dbb3779c14b399e49ded6fd5db6

View File

@@ -1,44 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="A support library for verified Coq parsers produced by Menhir"
HOMEPAGE="http://gallium.inria.fr/~fpottier/menhir/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.inria.fr/fpottier/menhir.git"
else
SRC_URI="https://gitlab.inria.fr/fpottier/menhir/-/archive/${PV}/menhir-${PV}.tar.bz2"
S="${WORKDIR}/menhir-${PV}"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-2 LGPL-2-with-linking-exception"
SLOT="0/${PV}"
IUSE="+ocamlopt"
RDEPEND="
<sci-mathematics/coq-8.20.0:=
>=dev-ml/menhir-${PV}:=
"
DEPEND="
${RDEPEND}
"
src_compile() {
emake -C "${PN}"
edune build @install --profile release -p "${PN}" || die
}
src_install() {
emake -C "${PN}" DESTDIR="${D}" install
dune_src_install
dodoc "${PN}/CHANGES.md" "${PN}/README.md"
}