Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-cpp/castxml/
Date: Sat, 20 Apr 2019 23:21:59
Message-Id: 1555738315.1479fefbd0bfef1a5154474d0e5acf6239bf8579.chymera@gentoo
1 commit: 1479fefbd0bfef1a5154474d0e5acf6239bf8579
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Sat Apr 20 05:31:55 2019 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Sat Apr 20 05:31:55 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1479fefb
7
8 dev-cpp/castxml: version bump 0.2.0
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
12
13 dev-cpp/castxml/castxml-0.2.0.ebuild | 31 +++++++++++++++++++++++++++++++
14 1 file changed, 31 insertions(+)
15
16 diff --git a/dev-cpp/castxml/castxml-0.2.0.ebuild b/dev-cpp/castxml/castxml-0.2.0.ebuild
17 new file mode 100644
18 index 000000000..cf81e7209
19 --- /dev/null
20 +++ b/dev-cpp/castxml/castxml-0.2.0.ebuild
21 @@ -0,0 +1,31 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +inherit cmake-utils llvm
28 +
29 +MY_PN="CastXML"
30 +
31 +DESCRIPTION="CastXML is a C-family abstract syntax tree XML output tool."
32 +HOMEPAGE="https://github.com/CastXML/CastXML"
33 +SRC_URI="https://github.com/CastXML/CastXML/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="Apache-2.0"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +DEPEND="${RDEPEND}"
40 +RDEPEND="
41 + dev-libs/glib:2
42 + dev-libs/libxml2
43 + sys-devel/llvm:=
44 + sys-devel/clang:=
45 + "
46 +
47 +S="${WORKDIR}/${MY_PN}-${PV}"
48 +
49 +src_test() {
50 + cd "${BUILD_DIR}" || die
51 + ctest -j 20
52 +}