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 107BA15817D for ; Fri, 7 Jun 2024 13:56:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56113E2A0C; Fri, 7 Jun 2024 13:56:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 301F0E2A0C for ; Fri, 7 Jun 2024 13:56:24 +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 386E733E3A9 for ; Fri, 7 Jun 2024 13:56:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC3FA126B for ; Fri, 7 Jun 2024 13:56:21 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1717768562.bd18ffe50893a1eaa2177bf6a760a4563e00e8ae.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-calculators/xsv/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-calculators/xsv/xsv-0.13.0-r1.ebuild sci-calculators/xsv/xsv-0.13.0.ebuild X-VCS-Directories: sci-calculators/xsv/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: bd18ffe50893a1eaa2177bf6a760a4563e00e8ae X-VCS-Branch: master Date: Fri, 7 Jun 2024 13:56:21 +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: a278bd23-d0cb-4b4c-b13b-6217d9989e30 X-Archives-Hash: 59122ae58a574c2832afb8711970de50 commit: bd18ffe50893a1eaa2177bf6a760a4563e00e8ae Author: James Le Cuirot gentoo org> AuthorDate: Fri Jun 7 13:56:02 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Fri Jun 7 13:56:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd18ffe5 sci-calculators/xsv: EAPI 8, silence LDFLAGS warning We know it isn't respected with Cargo. Closes: https://bugs.gentoo.org/797493 Signed-off-by: James Le Cuirot gentoo.org> sci-calculators/xsv/{xsv-0.13.0.ebuild => xsv-0.13.0-r1.ebuild} | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sci-calculators/xsv/xsv-0.13.0.ebuild b/sci-calculators/xsv/xsv-0.13.0-r1.ebuild similarity index 92% rename from sci-calculators/xsv/xsv-0.13.0.ebuild rename to sci-calculators/xsv/xsv-0.13.0-r1.ebuild index 39510584561d..f13e2444516d 100644 --- a/sci-calculators/xsv/xsv-0.13.0.ebuild +++ b/sci-calculators/xsv/xsv-0.13.0-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 2021-2022 Gentoo Authors +# Copyright 2021-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 CRATES=" aho-corasick-0.7.18 @@ -56,7 +56,7 @@ inherit cargo DESCRIPTION="A fast CSV command line toolkit written in Rust" HOMEPAGE="https://github.com/BurntSushi/xsv" -SRC_URI="$(cargo_crate_uris ${CRATES}) +SRC_URI="${CARGO_CRATE_URIS} https://github.com/BurntSushi/xsv/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( MIT Unlicense ) Apache-2.0 Boost-1.0 MIT Unlicense" SLOT="0" @@ -65,6 +65,8 @@ IUSE="" BDEPEND="${RUST_DEPEND}" +QA_FLAGS_IGNORED="usr/bin/${PN}" + src_prepare() { rm Cargo.lock || die "Failed to remove stale Cargo.lock" default