From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1601587-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 B058315808B for <garchives@archives.gentoo.org>; Sun, 18 Feb 2024 07:40:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5FB9E2ABC; Sun, 18 Feb 2024 07:40:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 C4B4CE2ABC for <gentoo-commits@lists.gentoo.org>; Sun, 18 Feb 2024 07:40:25 +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 D776833BEFF for <gentoo-commits@lists.gentoo.org>; Sun, 18 Feb 2024 07:40:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40DAE11CF for <gentoo-commits@lists.gentoo.org>; Sun, 18 Feb 2024 07:40:23 +0000 (UTC) From: "Rui Huang" <vowstar@gmail.com> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" <vowstar@gmail.com> Message-ID: <1708241964.8c4ed017eaee87750cdd560cecb34cc1b6d7d068.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/gpds/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/gpds/gpds-1.8.3.ebuild dev-libs/gpds/gpds-1.8.4.ebuild X-VCS-Directories: dev-libs/gpds/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: 8c4ed017eaee87750cdd560cecb34cc1b6d7d068 X-VCS-Branch: dev Date: Sun, 18 Feb 2024 07:40:23 +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: b21d7db2-d199-43db-a305-46883013117c X-Archives-Hash: 44d48ec4633b5b9076edfdf8d8f16c7e Message-ID: <20240218074023.cCafKUeg_PNP6yLpd8yheexm8YJlwJbetkqiCLvsMzA@z> commit: 8c4ed017eaee87750cdd560cecb34cc1b6d7d068 Author: Huang Rui <vowstar <AT> gmail <DOT> com> AuthorDate: Sun Feb 18 07:39:24 2024 +0000 Commit: Rui Huang <vowstar <AT> gmail <DOT> com> CommitDate: Sun Feb 18 07:39:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8c4ed017 dev-libs/gpds: fix installs .a without static-libs USE Closes: https://bugs.gentoo.org/924853 Signed-off-by: Huang Rui <vowstar <AT> gmail.com> dev-libs/gpds/gpds-1.8.3.ebuild | 2 +- dev-libs/gpds/gpds-1.8.4.ebuild | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-libs/gpds/gpds-1.8.3.ebuild b/dev-libs/gpds/gpds-1.8.3.ebuild index 448e5e5ace..b4340764b5 100644 --- a/dev-libs/gpds/gpds-1.8.3.ebuild +++ b/dev-libs/gpds/gpds-1.8.3.ebuild @@ -42,5 +42,5 @@ src_configure() { src_install() { cmake_src_install - # use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a || die + use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a || die } diff --git a/dev-libs/gpds/gpds-1.8.4.ebuild b/dev-libs/gpds/gpds-1.8.4.ebuild index da398d0dfa..0f02dffe4c 100644 --- a/dev-libs/gpds/gpds-1.8.4.ebuild +++ b/dev-libs/gpds/gpds-1.8.4.ebuild @@ -38,4 +38,5 @@ src_configure() { src_install() { cmake_src_install + use static-libs || rm "${ED}"/usr/$(get_libdir)/*.a || die }