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 C0DF7139694 for ; Wed, 21 Jun 2017 14:01:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C68E1E0DDD; Wed, 21 Jun 2017 14:01:55 +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 9192DE0EBE for ; Wed, 21 Jun 2017 14:01:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 34464341902 for ; Wed, 21 Jun 2017 14:01:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5FF524BA for ; Wed, 21 Jun 2017 14:01:52 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1498053698.41982a2524f2d0f8fba36aee3eac0b879f5cc20b.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycobertura/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycobertura/Manifest dev-python/pycobertura/metadata.xml dev-python/pycobertura/pycobertura-0.10.0.ebuild X-VCS-Directories: dev-python/pycobertura/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 41982a2524f2d0f8fba36aee3eac0b879f5cc20b X-VCS-Branch: master Date: Wed, 21 Jun 2017 14:01:52 +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: 256e22a9-5137-45bb-bb6a-01f575da43b1 X-Archives-Hash: 2d72d404ad57a73ccf5789a198e6192c commit: 41982a2524f2d0f8fba36aee3eac0b879f5cc20b Author: Manuel Rüger gentoo org> AuthorDate: Wed Jun 21 14:01:38 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Wed Jun 21 14:01:38 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41982a25 dev-python/pycobertura: Initial version Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-python/pycobertura/Manifest | 1 + dev-python/pycobertura/metadata.xml | 16 +++++++++++++ dev-python/pycobertura/pycobertura-0.10.0.ebuild | 30 ++++++++++++++++++++++++ 3 files changed, 47 insertions(+) diff --git a/dev-python/pycobertura/Manifest b/dev-python/pycobertura/Manifest new file mode 100644 index 00000000000..dac2527048e --- /dev/null +++ b/dev-python/pycobertura/Manifest @@ -0,0 +1 @@ +DIST pycobertura-0.10.0.tar.gz 54209 SHA256 bca6b056dc166081fb6b450bcdd28a49185f0bd97ed9303cdd3fbf914e4777b2 SHA512 47e64c462aa09c871eb6ccffcb5cff8870b332082b79d7642da540014d3b5c3c59fcdef62ee71a2405af48b1393d4f13c79fabb9d182026024cc4887b8681422 WHIRLPOOL 9af42efe7a3080130e5df14c25ed6e99c0404f2d2f96c52feaa65640d46824878fbadd2492f64408191d36ccc1aa3a857d98e8bb998319b0459c9c384630a253 diff --git a/dev-python/pycobertura/metadata.xml b/dev-python/pycobertura/metadata.xml new file mode 100644 index 00000000000..207d762af9f --- /dev/null +++ b/dev-python/pycobertura/metadata.xml @@ -0,0 +1,16 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + + python@gentoo.org + Python + + + SurveyMonkey/pycobertura + pycoberutra + + diff --git a/dev-python/pycobertura/pycobertura-0.10.0.ebuild b/dev-python/pycobertura/pycobertura-0.10.0.ebuild new file mode 100644 index 00000000000..4eb805a2a6d --- /dev/null +++ b/dev-python/pycobertura/pycobertura-0.10.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_4 ) +inherit distutils-r1 + +DESCRIPTION="Cobertura coverage parser that can diff reports and show coverage progress" +HOMEPAGE="https://github.com/SurveyMonkey/pycobertura" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/click-4.0[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/tabulate[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools-git[${PYTHON_USEDEP}] + test? ( dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] )" + +python_test() { + py.test || die +}