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 535E21584AD for ; Sun, 11 May 2025 08:26:30 +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 3AE8434301E for ; Sun, 11 May 2025 08:26:30 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 98D23110277; Sun, 11 May 2025 08:26:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 8CF32110277 for ; Sun, 11 May 2025 08:26:28 +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 1611F343014 for ; Sun, 11 May 2025 08:26:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51B2111F3 for ; Sun, 11 May 2025 08:26:26 +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: <1746951970.3f7e8925a489baacee8f5ba865b4db8ada783211.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/aws/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/aws/aws-25.1.0-r2.ebuild dev-ada/aws/aws-25.1.0-r3.ebuild X-VCS-Directories: dev-ada/aws/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 3f7e8925a489baacee8f5ba865b4db8ada783211 X-VCS-Branch: master Date: Sun, 11 May 2025 08:26:26 +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: e91012b8-cba2-4878-b45e-2c8128a49ad5 X-Archives-Hash: 3f5a5d880a7f36b234d54dc4c635af38 commit: 3f7e8925a489baacee8f5ba865b4db8ada783211 Author: Alfredo Tupone gentoo org> AuthorDate: Sun May 11 08:25:29 2025 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sun May 11 08:26:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f7e8925 dev-ada/aws: support gcc:15 Signed-off-by: Alfredo Tupone gentoo.org> dev-ada/aws/{aws-25.1.0-r2.ebuild => aws-25.1.0-r3.ebuild} | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/dev-ada/aws/aws-25.1.0-r2.ebuild b/dev-ada/aws/aws-25.1.0-r3.ebuild similarity index 88% rename from dev-ada/aws/aws-25.1.0-r2.ebuild rename to dev-ada/aws/aws-25.1.0-r3.ebuild index c0e99b807973..1ae10ae259e9 100644 --- a/dev-ada/aws/aws-25.1.0-r2.ebuild +++ b/dev-ada/aws/aws-25.1.0-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -ADA_COMPAT=( gcc_13 gcc_14 ) +ADA_COMPAT=( gcc_{13..15} ) PYTHON_COMPAT=( python3_{10..13} ) inherit ada python-any-r1 multiprocessing @@ -18,6 +18,7 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 ~arm64 x86" IUSE="doc +shared ssl wsdl" +RESTRICT="test" RDEPEND="${ADA_DEPS} >=dev-ada/gnatcoll-core-25:=[${ADA_USEDEP},shared?,static-libs] @@ -87,3 +88,13 @@ src_install() { rm -r "${D}"/usr/share/gpr/manifests || die } + +src_test() { + cd include + gnat check -files=filenames.check -rules -from=../aws.checks || die + cd ../ssl + gnat check -Pssl -rules -from=../aws.checks || die + cd ../src + gnat check -rules -from=../aws.checks -Psrc || die + cd .. +}