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 447D81581D3 for ; Fri, 31 May 2024 20:12:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DA66E29FE; Fri, 31 May 2024 20:12:22 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6DDCBE29FE for ; Fri, 31 May 2024 20:12:22 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8052034068A for ; Fri, 31 May 2024 20:12:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F1E41704 for ; Fri, 31 May 2024 20:12:20 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1717186321.5babc055de0ec9084d08ec54e732d0fee9ac935a.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocamlbuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild X-VCS-Directories: dev-ml/ocamlbuild/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 5babc055de0ec9084d08ec54e732d0fee9ac935a X-VCS-Branch: master Date: Fri, 31 May 2024 20:12:20 +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: 6753a37b-3a1b-4f79-b4b2-917e9bddfbd4 X-Archives-Hash: 8029520165a698ec842bc62eb4abcbc1 commit: 5babc055de0ec9084d08ec54e732d0fee9ac935a Author: Alfredo Tupone gentoo org> AuthorDate: Fri May 31 20:11:31 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Fri May 31 20:12:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5babc055 dev-ml/ocamlbuild: QA_TEXTRELS Closes: https://bugs.gentoo.org/928109 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild b/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild index 5f09bae5b202..b3b5fb33ae0c 100644 --- a/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild +++ b/dev-ml/ocamlbuild/ocamlbuild-0.14.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -42,6 +42,10 @@ src_compile() { } src_install() { + # OCaml generates textrels on 32-bit arches + if use arm || use ppc || use x86 ; then + export QA_TEXTRELS='.*' + fi emake CHECK_IF_PREINSTALLED=false DESTDIR="${D}" install dodoc Changes }