From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id BC1441582EF for ; Sun, 16 Feb 2025 20:53:27 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A7B4634309F for ; Sun, 16 Feb 2025 20:53:27 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 921321102CD; Sun, 16 Feb 2025 20:53:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 8941E1102CD for ; Sun, 16 Feb 2025 20:53:26 +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 4A1C834309F for ; Sun, 16 Feb 2025 20:53:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D83F92728 for ; Sun, 16 Feb 2025 20:53:24 +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: <1739739186.23f78eb8281afb19bc5389a984f16993c269f985.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gprbuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/gprbuild/gprbuild-24.0.0-r2.ebuild dev-ada/gprbuild/gprbuild-24.0.0-r3.ebuild dev-ada/gprbuild/gprbuild-25.0.0-r2.ebuild dev-ada/gprbuild/gprbuild-25.0.0-r3.ebuild X-VCS-Directories: dev-ada/gprbuild/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 23f78eb8281afb19bc5389a984f16993c269f985 X-VCS-Branch: master Date: Sun, 16 Feb 2025 20:53:24 +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: 1d205984-7a2d-4bc7-a6e7-955e5b496013 X-Archives-Hash: dbea600af6506f37d8da9f577aaf35cc commit: 23f78eb8281afb19bc5389a984f16993c269f985 Author: Alfredo Tupone gentoo org> AuthorDate: Sun Feb 16 20:52:20 2025 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sun Feb 16 20:53:06 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f78eb8 dev-ada/gprbuild: Fix version in --version Closes: https://bugs.gentoo.org/949836 Signed-off-by: Alfredo Tupone gentoo.org> .../{gprbuild-24.0.0-r2.ebuild => gprbuild-24.0.0-r3.ebuild} | 7 ++++++- .../{gprbuild-25.0.0-r2.ebuild => gprbuild-25.0.0-r3.ebuild} | 5 +++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/dev-ada/gprbuild/gprbuild-24.0.0-r2.ebuild b/dev-ada/gprbuild/gprbuild-24.0.0-r3.ebuild similarity index 92% rename from dev-ada/gprbuild/gprbuild-24.0.0-r2.ebuild rename to dev-ada/gprbuild/gprbuild-24.0.0-r3.ebuild index 1813eaa4b76e..ccf43c9a6a3a 100644 --- a/dev-ada/gprbuild/gprbuild-24.0.0-r2.ebuild +++ b/dev-ada/gprbuild/gprbuild-24.0.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -35,6 +35,11 @@ src_prepare() { -e "s:@GNATBIND@:${GNATBIND}:g" \ src/gprlib.adb \ || die + sed -i \ + -e "s:18.0w:$(ver_cut 1-2):" \ + -e "/Build_Type :/s:Gnatpro:FSF:" \ + gpr/src/gpr-version.ads \ + || die cd gpr/src || die ln -s gpr-util-put_resource_usage__unix.adb \ gpr-util-put_resource_usage.adb diff --git a/dev-ada/gprbuild/gprbuild-25.0.0-r2.ebuild b/dev-ada/gprbuild/gprbuild-25.0.0-r3.ebuild similarity index 94% rename from dev-ada/gprbuild/gprbuild-25.0.0-r2.ebuild rename to dev-ada/gprbuild/gprbuild-25.0.0-r3.ebuild index e4b4ece9db50..21151fa50d5f 100644 --- a/dev-ada/gprbuild/gprbuild-25.0.0-r2.ebuild +++ b/dev-ada/gprbuild/gprbuild-25.0.0-r3.ebuild @@ -52,6 +52,11 @@ src_prepare() { -e "s|\"gnatbind\"|\"gnatbind-${GCC_PV}\"|" \ src/gprbind.adb \ || die + sed -i \ + -e "s:18.0w:$(ver_cut 1-2):" \ + -e "/Build_Type :/s:Gnatpro:FSF:" \ + gpr/src/gpr-version.ads \ + || die cd gpr/src || die ln -s gpr-util-put_resource_usage__unix.adb \ gpr-util-put_resource_usage.adb