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 DAE1C139894 for ; Mon, 24 Aug 2015 10:12:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D08314203; Mon, 24 Aug 2015 10:12:28 +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 555AA141FE for ; Mon, 24 Aug 2015 10:12:26 +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 A24763408BE for ; Mon, 24 Aug 2015 10:12:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1D67183 for ; Mon, 24 Aug 2015 10:12:21 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1440411133.6bb753f819cbd5f0089e9d6dfb6ae651b5a3be6e.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scripttest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/scripttest/Manifest dev-python/scripttest/scripttest-1.3.ebuild X-VCS-Directories: dev-python/scripttest/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 6bb753f819cbd5f0089e9d6dfb6ae651b5a3be6e X-VCS-Branch: master Date: Mon, 24 Aug 2015 10:12:21 +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: 0d4f4ad6-ff09-4622-8d10-6b8a99415388 X-Archives-Hash: 754594c23bb330c3d6130a6e7b8da360 commit: 6bb753f819cbd5f0089e9d6dfb6ae651b5a3be6e Author: Justin Lecher gentoo org> AuthorDate: Mon Aug 24 07:18:59 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Aug 24 10:12:13 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bb753f8 dev-python/scripttest: Version Bump Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/scripttest/Manifest | 1 + dev-python/scripttest/scripttest-1.3.ebuild | 30 +++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/scripttest/Manifest b/dev-python/scripttest/Manifest index 7d557ad..4e88748 100644 --- a/dev-python/scripttest/Manifest +++ b/dev-python/scripttest/Manifest @@ -1 +1,2 @@ DIST ScriptTest-1.2.tar.gz 7208 SHA256 158c34cfa736288c33177588572c2bb3372b836eb4c90b05222911b4ff976942 SHA512 0dc09e6af5554f38aca6ee45b9afad2fa4c1c53a4d3c43edff95bbd6ea8d57e94bf6b7bdcfd26afff6bf2b10690795bd2816013801911f726c67e8171546cad2 WHIRLPOOL 2d23a9fec63c34bd6cf4a06fa01167a9fc05017950fa05bf39a14b5f44393ca38b11d4c7b6c8285ba49cd1a535520ebd83901fadc41497ce7513899356d935d3 +DIST scripttest-1.3.tar.gz 7546 SHA256 951cfc25219b0cd003493a565f2e621fd791beaae9f9a3bdd7024d8626419c38 SHA512 a54aab83e102a8aa9fdbbcbaff5e8b758886c2db2d1eefee9448895b5ebd8d10115a86d810a39acc82917c17664d9225403cb8fdb2a7631ab1b601a791897a0e WHIRLPOOL d48c2d05920450a022de68af69c1120a8b2f843d7430a6be6a3a6d2ea6f99850d28576ba82b13167595f09fab5d803ba765e406182a83283eb0bd1c00ee0b701 diff --git a/dev-python/scripttest/scripttest-1.3.ebuild b/dev-python/scripttest/scripttest-1.3.ebuild new file mode 100644 index 0000000..701e38e --- /dev/null +++ b/dev-python/scripttest/scripttest-1.3.ebuild @@ -0,0 +1,30 @@ +# 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,4} ) + +inherit distutils-r1 + +MY_PN="${PN}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A very small text templating language" +HOMEPAGE="http://pythonpaste.org/scripttest/ http://pypi.python.org/pypi/ScriptTest" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +python_test() { + esetup.py test +}