From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1518360-garchives=archives.gentoo.org@lists.gentoo.org> 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 4446B15806E for <garchives@archives.gentoo.org>; Sun, 14 May 2023 08:12:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80417E083E; Sun, 14 May 2023 08:12:57 +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 6810BE083E for <gentoo-commits@lists.gentoo.org>; Sun, 14 May 2023 08:12:57 +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 9328333BEBB for <gentoo-commits@lists.gentoo.org>; Sun, 14 May 2023 08:12:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D85E2A37 for <gentoo-commits@lists.gentoo.org>; Sun, 14 May 2023 08:12:54 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1684051570.b297ef3e92e4e810409341e2f9e77b475ddb3cce.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cssc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/cssc/cssc-1.4.1.ebuild X-VCS-Directories: dev-vcs/cssc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b297ef3e92e4e810409341e2f9e77b475ddb3cce X-VCS-Branch: master Date: Sun, 14 May 2023 08:12:54 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e5e39dcf-0289-4987-958e-98b68adcf55b X-Archives-Hash: 3c9bae07650cb1f0852c89bce40e775e commit: b297ef3e92e4e810409341e2f9e77b475ddb3cce Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun May 14 08:04:45 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun May 14 08:06:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b297ef3e dev-vcs/cssc: fix disable-valgrind flag Closes: https://bugs.gentoo.org/906318 Fixes: 6952d230a11be325d68ec744cc7f8cffadbcde60 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-vcs/cssc/cssc-1.4.1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-vcs/cssc/cssc-1.4.1.ebuild b/dev-vcs/cssc/cssc-1.4.1.ebuild index 3705d88715ba..e8d51771989e 100644 --- a/dev-vcs/cssc/cssc-1.4.1.ebuild +++ b/dev-vcs/cssc/cssc-1.4.1.ebuild @@ -2,16 +2,18 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools CSSC_PN="${PN^^}" CSSC_P="${CSSC_PN}-${PV}" DESCRIPTION="The GNU Project's replacement for SCCS" -SRC_URI="mirror://gnu/${PN}/${CSSC_P}.tar.gz" HOMEPAGE="https://www.gnu.org/software/cssc/" -SLOT="0" +SRC_URI="mirror://gnu/${PN}/${CSSC_P}.tar.gz" + LICENSE="GPL-3" +SLOT="0" KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="test" RESTRICT="!test? ( test )" @@ -32,7 +34,7 @@ src_prepare() { src_configure() { # Valgrind is only used for tests econf \ - --disable-valgrind \ + --without-valgrind \ --enable-binary }