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 1CD5E158086 for ; Mon, 3 Jan 2022 01:19:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99951E07D3; Mon, 3 Jan 2022 01:19:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93E56E07D1 for ; Mon, 3 Jan 2022 01:19:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3B130342FCD for ; Mon, 3 Jan 2022 01:19:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 764DD26D for ; Mon, 3 Jan 2022 01:19:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1641172753.363cfafa4c30a97c326da4e2b504fa358fedeac8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/asdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/asdf/asdf-3.3.5.ebuild X-VCS-Directories: dev-lisp/asdf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 363cfafa4c30a97c326da4e2b504fa358fedeac8 X-VCS-Branch: master Date: Mon, 3 Jan 2022 01:19:22 +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: d0570bf5-debe-476d-992a-7abf6da2afbb X-Archives-Hash: 99ad09d41e5913db282cc52492af7957 commit: 363cfafa4c30a97c326da4e2b504fa358fedeac8 Author: Sam James gentoo org> AuthorDate: Mon Jan 3 01:14:41 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 3 01:19:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=363cfafa dev-lisp/asdf: update EAPI 6 -> 7 Notably fix tests too. Signed-off-by: Sam James gentoo.org> dev-lisp/asdf/asdf-3.3.5.ebuild | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/dev-lisp/asdf/asdf-3.3.5.ebuild b/dev-lisp/asdf/asdf-3.3.5.ebuild index 508d690b0fbf..31ecf4bf0366 100644 --- a/dev-lisp/asdf/asdf-3.3.5.ebuild +++ b/dev-lisp/asdf/asdf-3.3.5.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit prefix common-lisp-3 @@ -16,37 +16,53 @@ IUSE="doc test" RESTRICT="!test? ( test )" DEPEND="!dev-lisp/cl-${PN} - !=dev-lisp/sbcl-1.4.0" ; then - (cd doc ; doinfo "${PN}.info" ) + ( + cd doc || die + doinfo ${PN}.info + ) fi } src_compile() { emake + use doc && emake -C doc } src_test() { common-lisp-export-impl-args "$(common-lisp-find-lisp-impl)" - test/run-tests.sh ${CL_BINARY} + + rm test/test-program.script || die + + # sbcl in common-lisp.eclass has --non-interactive in the binary name + # which seems to break this? + test/run-tests.sh ${CL_BINARY/--non-interactive/} || die } src_install() { insinto "${CLSOURCEROOT}/${PN}" doins -r build version.lisp-expr + dodoc README.md TODO use doc && install_docs + insinto /etc/common-lisp cd "${T}" || die - cp "${FILESDIR}/gentoo-init.lisp" "${FILESDIR}/source-registry.conf" . || die + cp "${FILESDIR}"/gentoo-init.lisp "${FILESDIR}"/source-registry.conf . || die eprefixify gentoo-init.lisp source-registry.conf doins gentoo-init.lisp source-registry.conf }