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 E7723158020 for ; Wed, 12 Oct 2022 18:15:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6B86E0956; Wed, 12 Oct 2022 18:15:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CAD37E0956 for ; Wed, 12 Oct 2022 18:15:11 +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 A21BE33BEFE for ; Wed, 12 Oct 2022 18:15:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A2C0608 for ; Wed, 12 Oct 2022 18:15:09 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1665598503.280be1cadfdfd607d422dcefa33e9f15bf9c638c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ninja/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ninja/ninja-1.11.1-r1.ebuild dev-util/ninja/ninja-1.11.1.ebuild dev-util/ninja/ninja-9999.ebuild X-VCS-Directories: dev-util/ninja/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 280be1cadfdfd607d422dcefa33e9f15bf9c638c X-VCS-Branch: master Date: Wed, 12 Oct 2022 18:15:09 +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: 1b9367a5-bca3-47f6-b01d-d104fbf43b35 X-Archives-Hash: 0d722e6a53004ed64abe21a9d8b164d9 commit: 280be1cadfdfd607d422dcefa33e9f15bf9c638c Author: Sam James gentoo org> AuthorDate: Wed Oct 12 18:14:24 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 12 18:15:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=280be1ca dev-util/ninja: enable LFS support again Avoids issues like this when building libreoffice-bin on x86: ``` ninja: build stopped: stat(lib/libLLVM-14.so): Value too large for defined data type. ``` Signed-off-by: Sam James gentoo.org> dev-util/ninja/{ninja-1.11.1.ebuild => ninja-1.11.1-r1.ebuild} | 2 ++ dev-util/ninja/ninja-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dev-util/ninja/ninja-1.11.1.ebuild b/dev-util/ninja/ninja-1.11.1-r1.ebuild similarity index 99% rename from dev-util/ninja/ninja-1.11.1.ebuild rename to dev-util/ninja/ninja-1.11.1-r1.ebuild index 68d015410a2a..9c9215bc267c 100644 --- a/dev-util/ninja/ninja-1.11.1.ebuild +++ b/dev-util/ninja/ninja-1.11.1-r1.ebuild @@ -59,6 +59,8 @@ src_compile() { # configure.py appends CFLAGS to CXXFLAGS unset CFLAGS + append-lfs-flags + run_for_build ${EPYTHON} configure.py --bootstrap --verbose || die if tc-is-cross-compiler; then diff --git a/dev-util/ninja/ninja-9999.ebuild b/dev-util/ninja/ninja-9999.ebuild index bedb66f577c5..03f094c4df22 100644 --- a/dev-util/ninja/ninja-9999.ebuild +++ b/dev-util/ninja/ninja-9999.ebuild @@ -59,6 +59,8 @@ src_compile() { # configure.py appends CFLAGS to CXXFLAGS unset CFLAGS + append-lfs-flags + run_for_build ${EPYTHON} configure.py --bootstrap --verbose || die if tc-is-cross-compiler; then