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 6FAA0158086 for ; Fri, 5 Nov 2021 10:05:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9B67E0909; Fri, 5 Nov 2021 10:05:06 +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 9E83AE0909 for ; Fri, 5 Nov 2021 10:05:06 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA61934318B for ; Fri, 5 Nov 2021 07:38:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BAD61AD for ; Fri, 5 Nov 2021 07:38:25 +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: <1636097892.8a4bbc38921cb65c0cc64b9ecfe42cc3a3aee709.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/ecls/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/ecls/ecls-21.2.1-r4.ebuild X-VCS-Directories: dev-lisp/ecls/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 8a4bbc38921cb65c0cc64b9ecfe42cc3a3aee709 X-VCS-Branch: master Date: Fri, 5 Nov 2021 07:38:25 +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: 470ac0ba-d3cd-4a47-964c-3991529ed76b X-Archives-Hash: d907af1a89772c1691fc786b323108c9 commit: 8a4bbc38921cb65c0cc64b9ecfe42cc3a3aee709 Author: Ulrich Müller gentoo org> AuthorDate: Fri Nov 5 07:34:47 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Nov 5 07:38:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4bbc38 dev-lisp/ecls: Get rid of CDEPEND. Canonical ordering of variables Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Ulrich Müller gentoo.org> dev-lisp/ecls/ecls-21.2.1-r4.ebuild | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/dev-lisp/ecls/ecls-21.2.1-r4.ebuild b/dev-lisp/ecls/ecls-21.2.1-r4.ebuild index 9e59cfdf774..0e82d194e64 100644 --- a/dev-lisp/ecls/ecls-21.2.1-r4.ebuild +++ b/dev-lisp/ecls/ecls-21.2.1-r4.ebuild @@ -5,31 +5,27 @@ EAPI=7 inherit readme.gentoo-r1 -# test phase only works if ecls already installed #516876 -RESTRICT="test" - MY_P=ecl-${PV} - DESCRIPTION="ECL is an embeddable Common Lisp implementation" HOMEPAGE="https://common-lisp.net/project/ecl/" SRC_URI="https://common-lisp.net/project/ecl/static/files/release/${MY_P}.tgz" +S="${WORKDIR}/${MY_P}" LICENSE="BSD-2 LGPL-2.1+" SLOT="0/${PV}" KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux" IUSE="cxx debug emacs gengc precisegc cpu_flags_x86_sse +threads +unicode X" +# test phase only works if ecls already installed #516876 +RESTRICT="test" -CDEPEND="dev-libs/gmp:0= +RDEPEND="dev-libs/gmp:0= dev-libs/libffi:= dev-libs/libatomic_ops >=dev-libs/boehm-gc-7.1[threads?] >=dev-lisp/asdf-2.33-r3:=" -DEPEND="${CDEPEND} +DEPEND="${RDEPEND} app-text/texi2html emacs? ( >=app-editors/emacs-23.1:* >=app-eselect/eselect-emacs-1.12 )" -RDEPEND="${CDEPEND}" - -S="${WORKDIR}"/${MY_P} DOCS=( README.md CHANGELOG )