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 27EA7158041 for ; Thu, 21 Mar 2024 07:24:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9163E29A9; Thu, 21 Mar 2024 07:24:43 +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 A3C7FE29A9 for ; Thu, 21 Mar 2024 07:24:43 +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 8E82B34164C for ; Thu, 21 Mar 2024 07:24:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D042D13C3 for ; Thu, 21 Mar 2024 07:24:40 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1711005803.9e84d5653bff366e36ebe6d751c069e5677ba56d.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cargo-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cargo-c/cargo-c-0.9.30.ebuild X-VCS-Directories: dev-util/cargo-c/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 9e84d5653bff366e36ebe6d751c069e5677ba56d X-VCS-Branch: master Date: Thu, 21 Mar 2024 07:24:40 +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: ec33e897-c153-4041-9af8-b778f5dec196 X-Archives-Hash: 0c99127bcf08c7d4d46fa23a605e4a52 commit: 9e84d5653bff366e36ebe6d751c069e5677ba56d Author: Ionen Wolkens gentoo org> AuthorDate: Thu Mar 21 07:06:01 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Mar 21 07:23:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e84d565 dev-util/cargo-c: fix build with >=libgit2-1.8.0 libgit2-sys crate has a upper bound for <1.8.0 and refuses to build otherwise, but not seeing(?) any issues with it. Just a quick emergency fix, will likely be fixed next libgit2-sys version. Kept full version in the sed's path rather than a glob to force re-checking this when the crate is bumped. Alternatively could drop LIBGIT2_NO_VENDOR or set an upper bound in RDEPEND, but does not seem necessary. Signed-off-by: Ionen Wolkens gentoo.org> dev-util/cargo-c/cargo-c-0.9.30.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-util/cargo-c/cargo-c-0.9.30.ebuild b/dev-util/cargo-c/cargo-c-0.9.30.ebuild index efd999171092..e17e9888da42 100644 --- a/dev-util/cargo-c/cargo-c-0.9.30.ebuild +++ b/dev-util/cargo-c/cargo-c-0.9.30.ebuild @@ -370,6 +370,10 @@ src_unpack() { if [[ -n ${MY_P} ]] ; then tar -xf "${DISTDIR}"/"${MY_P}.crate" -C "${WORKDIR}" || die fi + + # libgit2-sys unnecessarily(?) requests