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 B0D6E13829C for ; Sun, 12 Jun 2016 17:17:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17769E0B48; Sun, 12 Jun 2016 17:17: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 79D46E0AF1 for ; Sun, 12 Jun 2016 17:17:54 +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 A094A340BDE for ; Sun, 12 Jun 2016 17:17:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BE5A2320 for ; Sun, 12 Jun 2016 17:17:50 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1465751847.53c05903a69beb5c3f1e2667ea5862ff150c7ece.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/iocapture/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/iocapture/Manifest dev-python/iocapture/iocapture-0.1.2.ebuild dev-python/iocapture/metadata.xml X-VCS-Directories: dev-python/iocapture/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 53c05903a69beb5c3f1e2667ea5862ff150c7ece X-VCS-Branch: master Date: Sun, 12 Jun 2016 17:17:50 +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: 80b3a73c-7b67-4464-8548-49e75779f4e3 X-Archives-Hash: 340c49f1fd24731fb20f98d2e8d3a5f2 commit: 53c05903a69beb5c3f1e2667ea5862ff150c7ece Author: Patrick Lauer gentoo org> AuthorDate: Sun Jun 12 15:24:01 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sun Jun 12 17:17:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c05903 dev-python/iocapture: Initial import, test dep for argh Package-Manager: portage-2.3.0_rc1 dev-python/iocapture/Manifest | 1 + dev-python/iocapture/iocapture-0.1.2.ebuild | 30 +++++++++++++++++++++++++++++ dev-python/iocapture/metadata.xml | 11 +++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/iocapture/Manifest b/dev-python/iocapture/Manifest new file mode 100644 index 0000000..d1e01fa --- /dev/null +++ b/dev-python/iocapture/Manifest @@ -0,0 +1 @@ +DIST iocapture-0.1.2.tar.gz 13114 SHA256 57056d1a99a9c584ae2bb23a1aa855292fd2bcc01a8a6ad5467d7ca2e739d31b SHA512 1205d13b107d83dcb45d5546038d8b0b5417a20a51149c405123111488c351ff81a447f10653cd3dd9ecc236e01a0fcceb6647091e38ff2fa34c69e0baff1567 WHIRLPOOL 808ca4412f7c024e1c272777fb1bb86c00d976c28bf0bd4966769b60c1153178f5cabdf61d4f1028b994249c2a84ba70c83ced838199aa13fc12019f6a58c86b diff --git a/dev-python/iocapture/iocapture-0.1.2.ebuild b/dev-python/iocapture/iocapture-0.1.2.ebuild new file mode 100644 index 0000000..05b83a6 --- /dev/null +++ b/dev-python/iocapture/iocapture-0.1.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Capture stdout,stderr easily" +HOMEPAGE="https://pypi.python.org/pypi/iocapture/" +SRC_URI="https://github.com/oinume/iocapture/archive/${PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +LICENSE="MIT" +IUSE="test" + +RDEPEND="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy) + ${RDEPEND} + )" + +python_test() { + py.test || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/iocapture/metadata.xml b/dev-python/iocapture/metadata.xml new file mode 100644 index 0000000..959ac8f --- /dev/null +++ b/dev-python/iocapture/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + iocapture + +