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 197B41384B4 for ; Thu, 17 Dec 2015 16:28:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD047E085C; Thu, 17 Dec 2015 16:28:25 +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 C36C6E085B for ; Thu, 17 Dec 2015 16:28:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D46A3340702 for ; Thu, 17 Dec 2015 16:28:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48AA2CE6 for ; Thu, 17 Dec 2015 16:28: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: <1450369694.378ccfd5dad89a85441c70e5af4d9fa8c652e8ac.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sure/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sure/sure-1.2.5-r1.ebuild X-VCS-Directories: dev-python/sure/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 378ccfd5dad89a85441c70e5af4d9fa8c652e8ac X-VCS-Branch: master Date: Thu, 17 Dec 2015 16:28: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: 635599b4-2d8f-47c7-9016-f5d1ba7b9cc7 X-Archives-Hash: 943e85a2524d8303481bf5f980dce6fa commit: 378ccfd5dad89a85441c70e5af4d9fa8c652e8ac Author: Justin Lecher gentoo org> AuthorDate: Thu Dec 17 16:12:40 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Dec 17 16:28:14 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378ccfd5 dev-python/sure: Add python3.5 support and fix QA issues Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/sure/sure-1.2.5-r1.ebuild | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/dev-python/sure/sure-1.2.5-r1.ebuild b/dev-python/sure/sure-1.2.5-r1.ebuild index 177d280..dbb9ff4 100644 --- a/dev-python/sure/sure-1.2.5-r1.ebuild +++ b/dev-python/sure/sure-1.2.5-r1.ebuild @@ -3,16 +3,15 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python2_7 python3_{3,4} pypy ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) inherit distutils-r1 vcs-snapshot -DESCRIPTION="utility belt for automated testing in python for python" +DESCRIPTION="Utility belt for automated testing in python for python" HOMEPAGE="https://github.com/gabrielfalcao/sure" SRC_URI="https://github.com/gabrielfalcao/${PN}/archive/${PV}.tar.gz -> ${P}-r1.tar.gz" -S="${WORKDIR}/${P}-r1" - LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 x86" @@ -28,15 +27,12 @@ DEPEND=" " RDEPEND="${CDEPEND}" +S="${WORKDIR}/${P}-r1" + python_prepare_all() { - ebegin 'patching setup.py' sed \ -e "82s/read_version()/'${PV}'/" \ - -i setup.py - STATUS=$? - eend ${STATUS} - [[ ${STATUS} -gt 0 ]] && die - + -i setup.py || die distutils-r1_python_prepare_all }