From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 16BD11396D0 for ; Fri, 29 Sep 2017 06:15:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 621EA2BC00C; Fri, 29 Sep 2017 06:15:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D2992BC00C for ; Fri, 29 Sep 2017 06:15:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D41AB34175F for ; Fri, 29 Sep 2017 06:15:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B0568F9D for ; Fri, 29 Sep 2017 06:15:04 +0000 (UTC) From: "Michael Weber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Weber" Message-ID: <1506665678.385bd19a89ff658345c56f531e6b996a68a06559.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcxml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libcxml/libcxml-9999.ebuild X-VCS-Directories: dev-libs/libcxml/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: 385bd19a89ff658345c56f531e6b996a68a06559 X-VCS-Branch: master Date: Fri, 29 Sep 2017 06:15:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0aef7f03-2d25-4340-b35d-26a478472a22 X-Archives-Hash: 7477a0a83f74ab81ba0298753208e9ed commit: 385bd19a89ff658345c56f531e6b996a68a06559 Author: Michael Weber gentoo org> AuthorDate: Fri Sep 29 06:14:38 2017 +0000 Commit: Michael Weber gentoo org> CommitDate: Fri Sep 29 06:14:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385bd19a dev-libs/libcxml: Add live version for current dcpomatic. Package-Manager: Portage-2.3.10, Repoman-2.3.3 dev-libs/libcxml/libcxml-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/dev-libs/libcxml/libcxml-9999.ebuild b/dev-libs/libcxml/libcxml-9999.ebuild new file mode 100644 index 00000000000..acb40482573 --- /dev/null +++ b/dev-libs/libcxml/libcxml-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 ) +PYTHON_REQ_USE="threads(+)" +inherit git-r3 python-any-r1 waf-utils + +DESCRIPTION="small C++ library which makes it marginally neater to parse XML using libxml++" +HOMEPAGE="http://carlh.net/libcxml" +EGIT_REPO_URI="https://github.com/cth103/${PN}.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="dev-cpp/libxmlpp:2.6 + dev-libs/boost + dev-libs/locked_sstream" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + dev-util/waf + virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${PN}-0.15.1-respect-cxxflags.patch ) + +src_prepare() { + rm -v waf || die + export WAF_BINARY="${EROOT}usr/bin/waf" + + default +} + +src_test() { + ./run-tests.sh || die +}