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 82BDE1384C0 for ; Sun, 30 Aug 2015 00:01:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FDF7E089D; Sun, 30 Aug 2015 00:01:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2F82FE089D for ; Sun, 30 Aug 2015 00:01:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19ABC3408F0 for ; Sun, 30 Aug 2015 00:01:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86CCB170 for ; Sun, 30 Aug 2015 00:01:05 +0000 (UTC) From: "Alex Brandt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alex Brandt" Message-ID: <1440892799.5776a8ecf1dcef727a4d4b8cfb0f96d734f32065.alunduil@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/doublex-expects/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/doublex-expects/Manifest dev-python/doublex-expects/doublex-expects-0.7.0_rc1.ebuild X-VCS-Directories: dev-python/doublex-expects/ X-VCS-Committer: alunduil X-VCS-Committer-Name: Alex Brandt X-VCS-Revision: 5776a8ecf1dcef727a4d4b8cfb0f96d734f32065 X-VCS-Branch: master Date: Sun, 30 Aug 2015 00:01:05 +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: d103cb59-b5e7-4109-b8bb-cc5f35988c2a X-Archives-Hash: 5beb25eb5dd7d28fc6a3035e89a1cd18 commit: 5776a8ecf1dcef727a4d4b8cfb0f96d734f32065 Author: Alex Brandt gentoo org> AuthorDate: Sat Aug 29 23:59:59 2015 +0000 Commit: Alex Brandt gentoo org> CommitDate: Sat Aug 29 23:59:59 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5776a8ec dev-python/doublex-expects: add version 0.7.0_rc1 Package-Manager: portage-2.2.20.1 dev-python/doublex-expects/Manifest | 1 + .../doublex-expects-0.7.0_rc1.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/dev-python/doublex-expects/Manifest b/dev-python/doublex-expects/Manifest index 06e4626..7cfeb5b 100644 --- a/dev-python/doublex-expects/Manifest +++ b/dev-python/doublex-expects/Manifest @@ -1 +1,2 @@ DIST doublex-expects-0.4.0.tar.gz 4633 SHA256 59693e28bf9c15b9c2cb85bb2d7af53c48ea9ce4cd094746be375672eef45f1e SHA512 be8eabaf73684a2368d527838a18b3e8c516c4fe63aad3d87765e347b7a84450cb9b76d86ba26c2b684440ecb5d5ff77c82cc7f432ffa7f0ab28a2e01599dd10 WHIRLPOOL 5f2e271e7f50c4b6d74fb359f774074b80ea6fb830d3e2c706d046c199e2fbc2c0125ea72e755d245494a9e3d1b6109c420bf6398314cbce09cf85784e672297 +DIST doublex-expects-0.7.0_rc1.tar.gz 6087 SHA256 a83447e4a6ea1305c8971e3d8935f242c4f8813332b26db576064e75fbfe1088 SHA512 fa97080af78aa29c3efa70b89f3afeb4a5537393d3dbd3e94df01d590c046623fc70c25b147b761d1047cd0f154dcb46a3c07674b39fb591d0adcbccce491abd WHIRLPOOL b6732c0cdaffadca718da74e9ac8d1acc6d2742624c5e34306d0df01fe15e3ad2c315e13f0dceab2256fe8f2b13121d55894df19306b99970c9715bca1bc7745 diff --git a/dev-python/doublex-expects/doublex-expects-0.7.0_rc1.ebuild b/dev-python/doublex-expects/doublex-expects-0.7.0_rc1.ebuild new file mode 100644 index 0000000..d0ec5e6 --- /dev/null +++ b/dev-python/doublex-expects/doublex-expects-0.7.0_rc1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) + +inherit distutils-r1 vcs-snapshot + +MY_PV=${PV/_/} + +DESCRIPTION="Expects matchers for Doublex test doubles assertions" +HOMEPAGE="https://github.com/jaimegildesagredo/doublex-expects" +SRC_URI="https://github.com/jaimegildesagredo/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/mamba[${PYTHON_USEDEP}] ) +" +RDEPEND=" + dev-python/doublex[${PYTHON_USEDEP}] + >=dev-python/expects-0.8.0_rc1[${PYTHON_USEDEP}] +" + +python_test() { + mamba || die "Tests failed under ${EPYTHON}" +}