Gentoo Archives: gentoo-commits

From: Michael Weber <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcxml/
Date: Fri, 29 Sep 2017 06:15:09
Message-Id: 1506665678.385bd19a89ff658345c56f531e6b996a68a06559.xmw@gentoo
1 commit: 385bd19a89ff658345c56f531e6b996a68a06559
2 Author: Michael Weber <xmw <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 29 06:14:38 2017 +0000
4 Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 29 06:14:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385bd19a
7
8 dev-libs/libcxml: Add live version for current dcpomatic.
9
10 Package-Manager: Portage-2.3.10, Repoman-2.3.3
11
12 dev-libs/libcxml/libcxml-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++
13 1 file changed, 38 insertions(+)
14
15 diff --git a/dev-libs/libcxml/libcxml-9999.ebuild b/dev-libs/libcxml/libcxml-9999.ebuild
16 new file mode 100644
17 index 00000000000..acb40482573
18 --- /dev/null
19 +++ b/dev-libs/libcxml/libcxml-9999.ebuild
20 @@ -0,0 +1,38 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
27 +PYTHON_REQ_USE="threads(+)"
28 +inherit git-r3 python-any-r1 waf-utils
29 +
30 +DESCRIPTION="small C++ library which makes it marginally neater to parse XML using libxml++"
31 +HOMEPAGE="http://carlh.net/libcxml"
32 +EGIT_REPO_URI="https://github.com/cth103/${PN}.git"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS=""
37 +IUSE=""
38 +
39 +RDEPEND="dev-cpp/libxmlpp:2.6
40 + dev-libs/boost
41 + dev-libs/locked_sstream"
42 +DEPEND="${RDEPEND}
43 + ${PYTHON_DEPS}
44 + dev-util/waf
45 + virtual/pkgconfig"
46 +
47 +PATCHES=( "${FILESDIR}"/${PN}-0.15.1-respect-cxxflags.patch )
48 +
49 +src_prepare() {
50 + rm -v waf || die
51 + export WAF_BINARY="${EROOT}usr/bin/waf"
52 +
53 + default
54 +}
55 +
56 +src_test() {
57 + ./run-tests.sh || die
58 +}