public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alfredo Tupone" <tupone@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/VSS/
Date: Wed, 07 May 2025 04:42:41 +0000 (UTC)	[thread overview]
Message-ID: <1746592946.4c1cfaf033a97bd46d4328f52dcff8361a6e7f90.tupone@gentoo> (raw)

commit:     4c1cfaf033a97bd46d4328f52dcff8361a6e7f90
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed May  7 04:41:52 2025 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed May  7 04:42:26 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c1cfaf0

dev-ada/VSS: drop 24.0.0-r2

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ada/VSS/Manifest             |  1 -
 dev-ada/VSS/VSS-24.0.0-r2.ebuild | 84 ----------------------------------------
 2 files changed, 85 deletions(-)

diff --git a/dev-ada/VSS/Manifest b/dev-ada/VSS/Manifest
index 1ced316e9510..f9d29d429290 100644
--- a/dev-ada/VSS/Manifest
+++ b/dev-ada/VSS/Manifest
@@ -1,2 +1 @@
-DIST VSS-24.0.0.tar.gz 1116669 BLAKE2B 5f703b4bf5234b38485a3104bd4e32ce0b2666fa00e2808b9a03df5c28c11ca0ac95c655f5490dbd04f113ef2894b45f2795f87cbf297ffa07f85f5a4e7d4710 SHA512 2b77646a299c073535ab0a315a9950e2fc6d43375fa62e0cb2e93ed4094ee42994ad74747c8a3d16ade5473c5520926edd59e4422321398c5deb17c6aedb66ee
 DIST VSS-25.0.0.tar.gz 1302728 BLAKE2B 1354e35a531b777aeef4a0f054d7f616bb3159e466d466b4566cd2eb3c6e3906cf52d1a92cfbc23d465a1436af78f430e1e0389fb626b92ee0096fdfab262505 SHA512 ca440d169e3b73134bb6b1df4473faf48fa867c79f91db1dfeaa2644e694bf9927e6d037fa364ec065c6da77e61efe8758a58a52217b6ce8c21282c1d9761ae6

diff --git a/dev-ada/VSS/VSS-24.0.0-r2.ebuild b/dev-ada/VSS/VSS-24.0.0-r2.ebuild
deleted file mode 100644
index 05a87a45c2ef..000000000000
--- a/dev-ada/VSS/VSS-24.0.0-r2.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 2021-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ADA_COMPAT=( gcc_12 gcc_13 gcc_14 )
-inherit ada multiprocessing
-
-DESCRIPTION="A high level string and text processing library"
-HOMEPAGE="https://github.com/AdaCore/VSS"
-SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz
-	-> ${P}.tar.gz"
-
-LICENSE="GPL-3 gcc-runtime-library-exception-3.1"
-SLOT="0/${PV}"
-KEYWORDS="amd64 x86"
-IUSE="+shared static-libs static-pic test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="${ADA_REQUIRED_USE}"
-
-RDEPEND="${ADA_DEPS}
-	dev-ada/xmlada:=[shared?,static-libs?,static-pic?,${ADA_USEDEP}]"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-ada/gprbuild[${ADA_USEDEP}]
-	test? (
-		app-i18n/unicode-data
-	)"
-
-src_prepare() {
-	ln -sf /usr/share/unicode-data data/ucd || die
-	default
-}
-
-src_compile() {
-	build () {
-		gprbuild -XVSS_LIBRARY_TYPE=$1 -p -j$(makeopts_jobs) -v \
-			gnat/vss_gnat.gpr \
-			-cargs:Ada ${ADAFLAGS} || die
-		gprbuild -XVSS_LIBRARY_TYPE=$1 -p -j$(makeopts_jobs) -v \
-			gnat/vss_text.gpr \
-			-cargs:Ada ${ADAFLAGS} || die
-		gprbuild -XVSS_LIBRARY_TYPE=$1 -p -j$(makeopts_jobs) -v \
-			gnat/vss_json.gpr \
-			-cargs:Ada ${ADAFLAGS} || die
-		gprbuild -XVSS_LIBRARY_TYPE=$1 -p -j$(makeopts_jobs) -v \
-			gnat/vss_regexp.gpr \
-			-cargs:Ada ${ADAFLAGS} || die
-		gprbuild -XVSS_LIBRARY_TYPE=$1 -p -j$(makeopts_jobs) -v \
-			gnat/vss_xml.gpr \
-			-cargs:Ada ${ADAFLAGS} || die
-		gprbuild -XVSS_LIBRARY_TYPE=$1 -p -j$(makeopts_jobs) -v \
-			gnat/vss_xml_templates.gpr \
-			-cargs:Ada ${ADAFLAGS} || die
-		gprbuild -XVSS_LIBRARY_TYPE=$1 -XXMLADA_BUILD=$1 -p \
-			-j$(makeopts_jobs) -v gnat/vss_xml_xmlada.gpr \
-			-cargs:Ada ${ADAFLAGS} || die
-	}
-	if use shared; then
-		build relocatable
-	fi
-	if use static-libs; then
-		build static
-	fi
-	if use static-pic; then
-		build static-pic
-	fi
-}
-
-src_test() {
-	emake -j1 GPRBUILD_FLAGS="-p -j$(makeopts_jobs) -v" build_tests
-	# To run all the test need to follow data/README.md
-	emake check_html
-}
-
-src_install() {
-	build () {
-		emake -j1 DESTDIR="${D}" install-libs-$1
-	}
-	use shared && build relocatable
-	use static-libs && build static
-	use static-pic && build static-pic
-	rm -r "${D}"/usr/share/gpr/manifests || die
-	einstalldocs
-}


             reply	other threads:[~2025-05-07  4:42 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-07  4:42 Alfredo Tupone [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-07  4:42 [gentoo-commits] repo/gentoo:master commit in: dev-ada/VSS/ Alfredo Tupone
2025-03-10  0:31 Sam James
2025-03-10  0:22 Sam James
2025-01-05 21:54 Alfredo Tupone
2025-01-05 20:18 Alfredo Tupone
2024-12-29 13:41 Alfredo Tupone
2024-12-29 13:27 Alfredo Tupone
2024-12-29 10:54 Sam James
2024-12-29 10:54 Sam James
2024-10-15 18:30 Alfredo Tupone
2024-03-18 22:04 Alfredo Tupone
2024-03-17 18:41 Alfredo Tupone
2023-11-30 21:26 Alfredo Tupone
2023-03-21 21:02 Alfredo Tupone
2023-03-20 20:40 Alfredo Tupone
2023-02-05 20:41 Alfredo Tupone
2023-01-15 10:08 Alfredo Tupone
2023-01-15  9:57 Alfredo Tupone
2022-12-15  8:52 Alfredo Tupone
2022-12-04 21:08 Alfredo Tupone
2022-12-04 21:08 Alfredo Tupone
2022-09-28 16:33 Alfredo Tupone
2021-12-28 10:26 Alfredo Tupone
2021-12-27 15:39 Alfredo Tupone

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1746592946.4c1cfaf033a97bd46d4328f52dcff8361a6e7f90.tupone@gentoo \
    --to=tupone@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox