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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8787C158089 for ; Sat, 16 Sep 2023 14:06:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD6B12BC01C; Sat, 16 Sep 2023 14:06:42 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95F2E2BC01C for ; Sat, 16 Sep 2023 14:06:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D7670335D1B for ; Sat, 16 Sep 2023 14:06:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5770811A2 for ; Sat, 16 Sep 2023 14:06:40 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1694873193.5ebb70847931586690ca3bc1e34f0b6599b5a1e1.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/clisp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/clisp/clisp-2.49.92-r1.ebuild X-VCS-Directories: dev-lisp/clisp/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 5ebb70847931586690ca3bc1e34f0b6599b5a1e1 X-VCS-Branch: master Date: Sat, 16 Sep 2023 14:06: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: 1bb04484-235b-41d2-baad-f2a2f4c5fa29 X-Archives-Hash: 0a24a17ced07a1da0c5c49921bf4b436 commit: 5ebb70847931586690ca3bc1e34f0b6599b5a1e1 Author: Ulrich Müller gentoo org> AuthorDate: Sat Sep 16 14:00:03 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Sep 16 14:06:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ebb7084 dev-lisp/clisp: Specify LICENSE more precisely, update EAPI to 8 Closes: https://bugs.gentoo.org/880171 Signed-off-by: Ulrich Müller gentoo.org> dev-lisp/clisp/clisp-2.49.92-r1.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dev-lisp/clisp/clisp-2.49.92-r1.ebuild b/dev-lisp/clisp/clisp-2.49.92-r1.ebuild index b27879b84797..dc22d9b9e28e 100644 --- a/dev-lisp/clisp/clisp-2.49.92-r1.ebuild +++ b/dev-lisp/clisp/clisp-2.49.92-r1.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -inherit flag-o-matic multilib toolchain-funcs xdg-utils +inherit flag-o-matic xdg-utils DESCRIPTION="A portable, bytecode-compiled implementation of Common Lisp" HOMEPAGE="https://clisp.sourceforge.io/" SRC_URI="mirror://gentoo/${P}.tar.bz2" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="2/8" KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 ~riscv sparc x86" IUSE="hyperspec X berkdb dbus fastcgi gdbm gtk +pcre postgres +readline svm threads +unicode +zlib" @@ -131,11 +131,12 @@ src_compile() { } src_install() { - pushd "${BUILDDIR}" + pushd "${BUILDDIR}" || die make DESTDIR="${D}" prefix="${EPREFIX}"/usr install-bin || die "Installation failed" doman clisp.1 dodoc ../SUMMARY README* ../src/NEWS ../unix/MAGIC.add ../ANNOUNCE - popd - dohtml doc/impnotes.{css,html} doc/regexp.html doc/clisp.png + popd || die dodoc doc/{CLOS-guide,LISP-tutorial}.txt + docinto html + dodoc doc/impnotes.{css,html} doc/regexp.html doc/clisp.png }