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/xmlada/
Date: Sat, 01 Jul 2017 16:36:09
Message-Id: 1498926959.6eb698c4687330f5191db527666d78818d3c790a.tupone@gentoo
1 commit: 6eb698c4687330f5191db527666d78818d3c790a
2 Author: Tupone Alfredo <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 1 16:35:59 2017 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 1 16:35:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eb698c4
7
8 dev-ada/xmlada: rm 9999 version
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 dev-ada/xmlada/xmlada-9999.ebuild | 49 ---------------------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/dev-ada/xmlada/xmlada-9999.ebuild b/dev-ada/xmlada/xmlada-9999.ebuild
16 deleted file mode 100644
17 index 8527add2006..00000000000
18 --- a/dev-ada/xmlada/xmlada-9999.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit git-r3 multiprocessing
27 -
28 -MYP=${PN}-gpl-${PV}
29 -
30 -DESCRIPTION="Set of modules that provide a simple manipulation of XML streams"
31 -HOMEPAGE="http://libre.adacore.com/"
32 -SRC_URI=""
33 -EGIT_REPO_URI="https://github.com/AdaCore/xmlada.git"
34 -
35 -LICENSE="GPL-3"
36 -SLOT="0"
37 -KEYWORDS=""
38 -IUSE="+shared static static-pic"
39 -REQUIRED_USE="|| ( shared static static-pic )"
40 -
41 -RDEPEND="dev-lang/gnat-gpl:*"
42 -DEPEND="${RDEPEND}
43 - dev-ada/gprbuild"
44 -
45 -PATCHES=( "${FILESDIR}"/${PN}-2016-gentoo.patch )
46 -
47 -src_configure () {
48 - econf --prefix="${D}"/usr
49 -}
50 -
51 -src_compile () {
52 - for kind in shared static static-pic; do
53 - if use ${kind}; then
54 - emake PROCESSORS=$(makeopts_jobs) ${kind}
55 - fi
56 - done
57 -}
58 -
59 -src_install () {
60 - for kind in shared static static-pic; do
61 - if use ${kind}; then
62 - emake PROCESSORS=$(makeopts_jobs) DESTDIR="${D}" install-${kind}
63 - fi
64 - done
65 - einstalldocs
66 - dodoc features-* known-problems-* xmlada-roadmap.txt
67 - rm "${D}"/usr/share/doc/${PN}/.buildinfo || die
68 - mv "${D}"/usr/share/doc/${PN} "${D}"/usr/share/doc/${PF}/html || die
69 -}