From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AFFD11382C5 for ; Sat, 20 Mar 2021 10:44:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0636E0877; Sat, 20 Mar 2021 10:44:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BBCABE0877 for ; Sat, 20 Mar 2021 10:44:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A7673408F9 for ; Sat, 20 Mar 2021 10:44:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BE195B6 for ; Sat, 20 Mar 2021 10:44:35 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1616236871.9da87a3e3928d78da8fb8829bcfbdf92c94a3bb6.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/acl2/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/acl2/acl2-7.1.ebuild X-VCS-Directories: sci-mathematics/acl2/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 9da87a3e3928d78da8fb8829bcfbdf92c94a3bb6 X-VCS-Branch: master Date: Sat, 20 Mar 2021 10:44:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 96bdaa31-704c-46ba-a323-4e2b15d48a6b X-Archives-Hash: 5b5ab67eab799e6b50c82a9564181c76 commit: 9da87a3e3928d78da8fb8829bcfbdf92c94a3bb6 Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Mar 20 10:41:11 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Mar 20 10:41:11 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=9da87a3e sci-mathematics/acl2: drop old Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> sci-mathematics/acl2/acl2-7.1.ebuild | 50 ------------------------------------ 1 file changed, 50 deletions(-) diff --git a/sci-mathematics/acl2/acl2-7.1.ebuild b/sci-mathematics/acl2/acl2-7.1.ebuild deleted file mode 100644 index 04a8bdd7a..000000000 --- a/sci-mathematics/acl2/acl2-7.1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils - -DESCRIPTION="Industrial strength theorem prover" -HOMEPAGE="https://www.cs.utexas.edu/users/moore/acl2/" -MY_PN=${PN}-devel -SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="~amd64 ~x86" -IUSE="books" - -DEPEND=" - dev-lisp/sbcl:= - books? ( dev-lang/perl )" -RDEPEND="${DEPEND}" -S="${WORKDIR}/${MY_PN}-${PV}" - -src_compile() { - emake LISP="sbcl --noinform --noprint \ - --no-sysinit --no-userinit --disable-debugger" - - if use books; then - echo - einfo "Building certificates ..." - einfo "(this may take hours to finish)" - emake certify-books - fi -} - -src_install() { - SAVED_NAME=saved_acl2 - sed -e "s:${S}:/usr/share/acl2:g" -i ${SAVED_NAME} || die - if use books; then - sed -e "/5/a export ACL2_SYSTEM_BOOKS=/usr/share/acl2/books/" \ - -i ${SAVED_NAME} || die - fi - dobin ${SAVED_NAME} - - insinto /usr/share/acl2 - doins TAGS ${SAVED_NAME}.core - if use books; then - doins -r books - fi -}