From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E761813829C for ; Sun, 12 Jun 2016 03:30:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8AE15E092A; Sun, 12 Jun 2016 03:30:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DDD65E092A for ; Sun, 12 Jun 2016 03:30:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F051340A85 for ; Sun, 12 Jun 2016 03:30:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 413931BA1 for ; Sun, 12 Jun 2016 03:30:22 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1465702220.261bb9fd3ee929a2d3db8d7b00b64d4a2e28aea9.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygccxml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pygccxml/Manifest dev-python/pygccxml/pygccxml-1.7.5.ebuild X-VCS-Directories: dev-python/pygccxml/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 261bb9fd3ee929a2d3db8d7b00b64d4a2e28aea9 X-VCS-Branch: master Date: Sun, 12 Jun 2016 03:30:22 +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: 0784b127-6335-44f8-86e6-bdc969231b1a X-Archives-Hash: 23aa544c61014b1e7b6346632b56bd1b commit: 261bb9fd3ee929a2d3db8d7b00b64d4a2e28aea9 Author: Benda Xu gentoo org> AuthorDate: Sun Jun 12 03:29:59 2016 +0000 Commit: Benda XU gentoo org> CommitDate: Sun Jun 12 03:30:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=261bb9fd dev-python/pygccxml: bump to 1.7.5, update to new HOMEPAGE and SRC_URI. Package-Manager: portage-2.2.28 dev-python/pygccxml/Manifest | 1 + dev-python/pygccxml/pygccxml-1.7.5.ebuild | 40 +++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-python/pygccxml/Manifest b/dev-python/pygccxml/Manifest index 20dc92a..c6b6069 100644 --- a/dev-python/pygccxml/Manifest +++ b/dev-python/pygccxml/Manifest @@ -1 +1,2 @@ DIST pygccxml-1.0.0.zip 21639068 SHA256 743a83ef67838db45e5d810e647e884272a65fe6cbbbda0f3ed1fdb3aeedb529 SHA512 d2a96b5bb27c3620527839051e43fa1eee8884692707a347c76863ff44a04502dcff35fe18b95a35c32fb8a4935ed8d5d91bf41eb98aee74f6df08c48ddc0b67 WHIRLPOOL 260075fe402c9eb40ee7ba93d0263fccd409020d261842983a9f2b39c00d51f3d3777a85fa0d94a258f52f57c5c2e30c499c258364c1c58cb8ba455b6fe148f0 +DIST pygccxml-1.7.5.tar.gz 3150295 SHA256 a8462c0d74c991534f81405fc52eb05ecd88372f3aff7a49f99bb6c98051a553 SHA512 f76e1748646beaf1b16bd498026e177008f5ebe19e4b35ce612bb27f4f9e6174cdfe4459771adbc657b95e8d5edeea0687756f9ba82cabc10703043c4a7e6e1e WHIRLPOOL a3756918f2933696f8d7bc406d571159c14e2d22dc32debcd7ef569492dd88bc9036efd198ff401f43559be5c148647cac9cf8d7c6a7302249cb65d7015e284e diff --git a/dev-python/pygccxml/pygccxml-1.7.5.ebuild b/dev-python/pygccxml/pygccxml-1.7.5.ebuild new file mode 100644 index 0000000..bfba0a8 --- /dev/null +++ b/dev-python/pygccxml/pygccxml-1.7.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 ) + +inherit distutils-r1 + +DESCRIPTION="Generate an XML description of a C++ program from GCC's internal representation" +HOMEPAGE="https://github.com/gccxml/pygccxml" +SRC_URI="https://github.com/gccxml/pygccxml/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="freedist Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND=" + app-arch/unzip + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" +RDEPEND=">=dev-cpp/gccxml-0.6" + +python_compile_all() { + use doc && emake html man +} + +python_test() { + "${PYTHON}" unittests/test_all.py +} + +python_install_all() { + if use doc ; then + local HTML_DOCS=( docs/_build/html ) + doman docs/_build/man/${PN}.1 + fi + + distutils-r1_python_install_all +}