Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gnatcoll-core/
Date: Fri, 14 May 2021 06:25:17
Message-Id: 1620973472.1f444aa8d207f897bbfab2545a9c1e93e1dbdb2e.tupone@gentoo
1 commit: 1f444aa8d207f897bbfab2545a9c1e93e1dbdb2e
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 06:24:32 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 06:24:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f444aa8
7
8 dev-ada/gnatcoll-core: remove old version
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
12
13 dev-ada/gnatcoll-core/Manifest | 1 -
14 dev-ada/gnatcoll-core/gnatcoll-core-2019-r1.ebuild | 73 ----------------------
15 2 files changed, 74 deletions(-)
16
17 diff --git a/dev-ada/gnatcoll-core/Manifest b/dev-ada/gnatcoll-core/Manifest
18 index 88b8a3deb11..d6fb26ddb5a 100644
19 --- a/dev-ada/gnatcoll-core/Manifest
20 +++ b/dev-ada/gnatcoll-core/Manifest
21 @@ -1,2 +1 @@
22 -DIST gnatcoll-core-2019-20190515-24AD8-src.tar.gz 1423276 BLAKE2B 154b7a7f77c1f0d6414cb407958d64b84be8d19b7e3a12f69bd3dd1253b71df394aa0c842d2caf9d2de071ea5466589111526329155291f0d967c8b4cc2b18ac SHA512 9b2101448b96ac46cebada1fe3cb7b583cbf296f9b7d627771e83c56c78ce72c50ede5474f64f16feba252a18fd46b473901820766902b0c68d63beaf55a884a
23 DIST gnatcoll-core-2020-20200429-19B7C-src.tar.gz 1396475 BLAKE2B 329e7f799ad62dfc6f71ca78a736bfc8c768a576f817d03b0d73e25b6e97ae0de0ad5a055bb800f7b83d7449ef8fe703c2779f73fc13a09bbcc1d3d8cc880fd1 SHA512 320878335f2ea1ce91a7770cc181e9cc228c80b1f7a3926a4e27c3822eb8f58726c62a014e2fa4c3f8699851ea87424be26d619ab4931b2e969e3a2e96e58b73
24
25 diff --git a/dev-ada/gnatcoll-core/gnatcoll-core-2019-r1.ebuild b/dev-ada/gnatcoll-core/gnatcoll-core-2019-r1.ebuild
26 deleted file mode 100644
27 index a1f0dc711f4..00000000000
28 --- a/dev-ada/gnatcoll-core/gnatcoll-core-2019-r1.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -ADA_COMPAT=( gnat_201{6,7,8,9} )
36 -inherit ada multiprocessing
37 -
38 -MYP=${P}-20190515-24AD8
39 -
40 -DESCRIPTION="GNAT Component Collection Core packages"
41 -HOMEPAGE="http://libre.adacore.com"
42 -SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8ae231e87a8f1d425052
43 - -> ${MYP}-src.tar.gz"
44 -
45 -LICENSE="GPL-3"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="+shared static-libs static-pic"
49 -
50 -RDEPEND="
51 - ~dev-ada/libgpr-2019[${ADA_USEDEP},shared?,static-libs?,static-pic?]"
52 -DEPEND="${RDEPEND}
53 - dev-ada/gprbuild[${ADA_USEDEP}]"
54 -
55 -REQUIRED_USE="${ADA_REQUIRED_USE}"
56 -
57 -S="${WORKDIR}"/${MYP}-src
58 -
59 -PATCHES=( "${FILESDIR}"/${PN}-2018-gentoo.patch )
60 -
61 -src_prepare() {
62 - default
63 - sed -i \
64 - -e "s:@GNATLS@:${GNATLS}:g" \
65 - src/gnatcoll-projects.ads \
66 - || die
67 -}
68 -
69 -src_configure() {
70 - emake prefix="${D}"/usr PROCESSORS=$(makeopts_jobs) setup
71 -}
72 -
73 -src_compile() {
74 - build () {
75 - gprbuild -p -m -j$(makeopts_jobs) \
76 - -XBUILD=PROD -v -XGNATCOLL_VERSION=${PV} \
77 - -XLIBRARY_TYPE=$1 -XXMLADA_BUILD=$* -XGPR_BUILD=$1 \
78 - gnatcoll.gpr -cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} || die
79 - }
80 - if use shared; then
81 - build relocatable
82 - fi
83 - if use static-pic; then
84 - build static-pic
85 - fi
86 - if use static-libs; then
87 - build static
88 - fi
89 -}
90 -
91 -src_install() {
92 - if use shared; then
93 - emake install-relocatable
94 - fi
95 - if use static-pic; then
96 - emake install-static-pic
97 - fi
98 - if use static-libs; then
99 - emake install-static
100 - fi
101 - rm -r "${D}"/usr/share/gpr/manifests || die
102 - einstalldocs
103 -}