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 2CD0D159C9B for ; Fri, 9 Aug 2024 11:31:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 451DF2BC037; Fri, 9 Aug 2024 11:31:20 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 208EA2BC037 for ; Fri, 9 Aug 2024 11:31:20 +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 0574134027D for ; Fri, 9 Aug 2024 11:31:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F80E174C for ; Fri, 9 Aug 2024 11:31:17 +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: <1723203010.f44b79874e5b5c4f570bdb603183e2ea04b0f52e.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/rpm-sequoia/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/rpm-sequoia/rpm-sequoia-1.6.0.ebuild app-crypt/rpm-sequoia/rpm-sequoia-1.7.0.ebuild X-VCS-Directories: app-crypt/rpm-sequoia/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: f44b79874e5b5c4f570bdb603183e2ea04b0f52e X-VCS-Branch: master Date: Fri, 9 Aug 2024 11:31:17 +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: e03eca5b-e74a-431e-b9da-899726cc0110 X-Archives-Hash: 2e7777e5cebe60feb440b998bada756e commit: f44b79874e5b5c4f570bdb603183e2ea04b0f52e Author: James Le Cuirot gentoo org> AuthorDate: Fri Aug 9 11:30:10 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Fri Aug 9 11:30:10 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f44b7987 app-crypt/rpm-sequoia: Fix installation of rpm-sequoia.pc It is always generated in target/, regardless of CARGO_BUILD_TARGET. Signed-off-by: James Le Cuirot gentoo.org> app-crypt/rpm-sequoia/rpm-sequoia-1.6.0.ebuild | 3 ++- app-crypt/rpm-sequoia/rpm-sequoia-1.7.0.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app-crypt/rpm-sequoia/rpm-sequoia-1.6.0.ebuild b/app-crypt/rpm-sequoia/rpm-sequoia-1.6.0.ebuild index 2a08f5e3c9eb..da34f4210ca1 100644 --- a/app-crypt/rpm-sequoia/rpm-sequoia-1.6.0.ebuild +++ b/app-crypt/rpm-sequoia/rpm-sequoia-1.6.0.ebuild @@ -294,5 +294,6 @@ src_install() { dosym librpm_sequoia.so.1 /usr/$(get_libdir)/librpm_sequoia.so insinto /usr/$(get_libdir)/pkgconfig - doins "$(cargo_target_dir)"/rpm-sequoia.pc + # build.rs sets the output dir to be target/, so don't use helper. + doins target/$(usex debug debug release)/rpm-sequoia.pc } diff --git a/app-crypt/rpm-sequoia/rpm-sequoia-1.7.0.ebuild b/app-crypt/rpm-sequoia/rpm-sequoia-1.7.0.ebuild index 62ee66a20875..082e1f09d371 100644 --- a/app-crypt/rpm-sequoia/rpm-sequoia-1.7.0.ebuild +++ b/app-crypt/rpm-sequoia/rpm-sequoia-1.7.0.ebuild @@ -306,5 +306,6 @@ src_install() { dosym librpm_sequoia.so.1 /usr/$(get_libdir)/librpm_sequoia.so insinto /usr/$(get_libdir)/pkgconfig - doins "$(cargo_target_dir)"/rpm-sequoia.pc + # build.rs sets the output dir to be target/, so don't use helper. + doins target/$(usex debug debug release)/rpm-sequoia.pc }