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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A4692158004 for ; Fri, 25 Aug 2023 16:59:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C405F2BC016; Fri, 25 Aug 2023 16:59:08 +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 A745E2BC016 for ; Fri, 25 Aug 2023 16:59:08 +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 97920335D6E for ; Fri, 25 Aug 2023 16:59:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E98101064 for ; Fri, 25 Aug 2023 16:59:05 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1692982726.bca187d1811671e7dbe788ad903ca82858ca865d.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/git-2.39.2-r1.ebuild dev-vcs/git/git-2.39.2.ebuild X-VCS-Directories: dev-vcs/git/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: bca187d1811671e7dbe788ad903ca82858ca865d X-VCS-Branch: master Date: Fri, 25 Aug 2023 16:59:05 +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: 507c5831-d6cb-4e0c-9fc9-f19502f4eda8 X-Archives-Hash: ae97a4588cc0a3715202e4bbbb7f9220 commit: bca187d1811671e7dbe788ad903ca82858ca865d Author: Raul E Rangel chromium org> AuthorDate: Wed Aug 16 15:59:24 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Aug 25 16:58:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bca187d1 dev-vcs/git: Add missing BDEPEND We also need to declare curl as a BDEPEND because we require the `curl-config` command. i.e., ``` make: curl-config: Command not found ld.lld: error: undefined symbol: curl_easy_setopt >>> referenced by http-walker.c:381 (/build/arm64-generic/tmp/portage/dev-vcs/git-2.39.2/work/git-2.39.2/http-walker.c:381) >>> http-walker.o:(fetch_alternates) >>> referenced by http-walker.c:382 (/build/arm64-generic/tmp/portage/dev-vcs/git-2.39.2/work/git-2.39.2/http-walker.c:382) >>> http-walker.o:(fetch_alternates) >>> referenced by http-walker.c:383 (/build/arm64-generic/tmp/portage/dev-vcs/git-2.39.2/work/git-2.39.2/http-walker.c:383) >>> http-walker.o:(fetch_alternates) >>> referenced 109 more times ``` BUG=b:278728702 TEST=BOARD=arm64-generic bazel build @portage//internal/packages/stage2/target/board/portage-stable/dev-vcs/git:2.39.2-r1 Change-Id: I16e303367cb9092780d1e4ad20bd3c3d789669d2 Signed-off-by: Raul E Rangel chromium.org> Closes: https://github.com/gentoo/gentoo/pull/32342 Signed-off-by: Arthur Zamarin gentoo.org> dev-vcs/git/{git-2.39.2.ebuild => git-2.39.2-r1.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-vcs/git/git-2.39.2.ebuild b/dev-vcs/git/git-2.39.2-r1.ebuild similarity index 99% rename from dev-vcs/git/git-2.39.2.ebuild rename to dev-vcs/git/git-2.39.2-r1.ebuild index cdf63279c63f..efcc5111a594 100644 --- a/dev-vcs/git/git-2.39.2.ebuild +++ b/dev-vcs/git/git-2.39.2-r1.ebuild @@ -120,6 +120,7 @@ BDEPEND=" app-text/xmlto sys-apps/texinfo ) + curl? ( net-misc/curl ) keyring? ( virtual/pkgconfig ) nls? ( sys-devel/gettext ) test? ( app-crypt/gnupg )