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 15BD6158041 for ; Fri, 22 Mar 2024 14:18:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D02BE29E0; Fri, 22 Mar 2024 14:18:38 +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 1B03AE29E0 for ; Fri, 22 Mar 2024 14:18:38 +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 1ADF834069F for ; Fri, 22 Mar 2024 14:18:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E99D13C3 for ; Fri, 22 Mar 2024 14:18:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1711117060.dcef216ff6c4f8667b68535d22c0cccd8977a3ae.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgit2/libgit2-1.7.2.ebuild dev-libs/libgit2/libgit2-1.8.0.ebuild X-VCS-Directories: dev-libs/libgit2/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dcef216ff6c4f8667b68535d22c0cccd8977a3ae X-VCS-Branch: master Date: Fri, 22 Mar 2024 14:18:35 +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: 20649238-e49f-4a89-bf2e-deeae7a85fa6 X-Archives-Hash: 267f5d192f26fedad340aedf176cf81a commit: dcef216ff6c4f8667b68535d22c0cccd8977a3ae Author: Michał Górny gentoo org> AuthorDate: Fri Mar 22 14:17:40 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 22 14:17:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcef216f dev-libs/libgit2: Enable LFS support for 32-bit arches Closes: https://bugs.gentoo.org/925207 Signed-off-by: Michał Górny gentoo.org> dev-libs/libgit2/libgit2-1.7.2.ebuild | 4 +++- dev-libs/libgit2/libgit2-1.8.0.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-libs/libgit2/libgit2-1.7.2.ebuild b/dev-libs/libgit2/libgit2-1.7.2.ebuild index 1efddddfb2f3..baf3b72e642b 100644 --- a/dev-libs/libgit2/libgit2-1.7.2.ebuild +++ b/dev-libs/libgit2/libgit2-1.7.2.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit cmake python-any-r1 +inherit cmake flag-o-matic python-any-r1 DESCRIPTION="A linkable library for Git" HOMEPAGE="https://libgit2.org/" @@ -44,6 +44,8 @@ src_configure() { -DUSE_HTTP_PARSER=system -DREGEX_BACKEND=pcre2 ) + # https://bugs.gentoo.org/925207 + append-lfs-flags cmake_src_configure } diff --git a/dev-libs/libgit2/libgit2-1.8.0.ebuild b/dev-libs/libgit2/libgit2-1.8.0.ebuild index ad67fc2de444..9f21956dbf5b 100644 --- a/dev-libs/libgit2/libgit2-1.8.0.ebuild +++ b/dev-libs/libgit2/libgit2-1.8.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit cmake python-any-r1 +inherit cmake flag-o-matic python-any-r1 DESCRIPTION="A linkable library for Git" HOMEPAGE="https://libgit2.org/" @@ -44,6 +44,8 @@ src_configure() { -DUSE_HTTP_PARSER=system -DREGEX_BACKEND=pcre2 ) + # https://bugs.gentoo.org/925207 + append-lfs-flags cmake_src_configure }