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 5586D138359 for ; Fri, 2 Oct 2020 15:55:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 963FEE09A7; Fri, 2 Oct 2020 15:55:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 7BA41E09A7 for ; Fri, 2 Oct 2020 15:55:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 23FFD335D4E for ; Fri, 2 Oct 2020 15:55:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A19E373 for ; Fri, 2 Oct 2020 15:55:40 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1601654122.1da2c5c0b390c9c7b71fd5e948a2243cfbf0c1b3.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/acl2/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/acl2/acl2-8.3.ebuild sci-mathematics/acl2/metadata.xml X-VCS-Directories: sci-mathematics/acl2/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 1da2c5c0b390c9c7b71fd5e948a2243cfbf0c1b3 X-VCS-Branch: master Date: Fri, 2 Oct 2020 15:55:40 +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: 8085d5cc-d4c4-441b-9cf4-f3071f2ac0d3 X-Archives-Hash: 1377f1d868eeb797713165efb86b3486 commit: 1da2c5c0b390c9c7b71fd5e948a2243cfbf0c1b3 Author: Aisha Tammy aisha cc> AuthorDate: Fri Oct 2 15:55:22 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Fri Oct 2 15:55:22 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1da2c5c0 sci-mathematics/acl2: version bump Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> sci-mathematics/acl2/acl2-8.3.ebuild | 51 ++++++++++++++++++++++++++++++++++++ sci-mathematics/acl2/metadata.xml | 14 +++++----- 2 files changed, 57 insertions(+), 8 deletions(-) diff --git a/sci-mathematics/acl2/acl2-8.3.ebuild b/sci-mathematics/acl2/acl2-8.3.ebuild new file mode 100644 index 000000000..a360cd404 --- /dev/null +++ b/sci-mathematics/acl2/acl2-8.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils + +DESCRIPTION="Industrial strength theorem prover" +HOMEPAGE="http://www.cs.utexas.edu/users/moore/acl2/" +MY_PN=${PN}-devel +SRC_URI="https://github.com/${MY_PN}/${MY_PN}/releases/download/${PV}/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" +IUSE="books" + +BDEPEND="dev-lisp/sbcl" +DEPEND=" + dev-lisp/sbcl:= + books? ( dev-lang/perl ) +" +RDEPEND="${DEPEND}" + +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 +} diff --git a/sci-mathematics/acl2/metadata.xml b/sci-mathematics/acl2/metadata.xml index b77817aa3..6035ff684 100644 --- a/sci-mathematics/acl2/metadata.xml +++ b/sci-mathematics/acl2/metadata.xml @@ -11,15 +11,13 @@ Gentoo Mathematics Project -ACL2 is both a programming language in which you can model computer systems and -a tool to help you prove properties of those models. ACL2 is part of the -Boyer-Moore family of provers, for which its authors have received the 2005 ACM -Software System Award. - + ACL2 is both a programming language in which you can model computer systems and + a tool to help you prove properties of those models. ACL2 is part of the + Boyer-Moore family of provers, for which its authors have received the 2005 ACM + Software System Award. + - -build community books, the canonical collection of open-source libraries - + build community books, the canonical collection of open-source libraries acl2-devel/acl2-devel