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 1520913888F for ; Mon, 19 Oct 2015 16:30:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EA0E21C06C; Mon, 19 Oct 2015 16:29:52 +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 2944C21C071 for ; Mon, 19 Oct 2015 16:29:42 +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 72551340817 for ; Mon, 19 Oct 2015 16:29:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01FE61362 for ; Mon, 19 Oct 2015 16:29:37 +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: <1445272151.3ee7bff4696dc78534eecb2ae36d901a194bf331.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/serpent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/serpent/serpent-1.11.ebuild X-VCS-Directories: dev-python/serpent/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 3ee7bff4696dc78534eecb2ae36d901a194bf331 X-VCS-Branch: master Date: Mon, 19 Oct 2015 16:29:37 +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: 779ab4a7-e929-40e1-9188-3566c8d6ed74 X-Archives-Hash: 3e8ed008c532141ff9c99671ce84da5b commit: 3ee7bff4696dc78534eecb2ae36d901a194bf331 Author: Justin Lecher gentoo org> AuthorDate: Mon Oct 19 16:14:03 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Oct 19 16:29:11 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ee7bff4 dev-python/serpent: Add python3.5 support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/serpent/serpent-1.11.ebuild | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dev-python/serpent/serpent-1.11.ebuild b/dev-python/serpent/serpent-1.11.ebuild index 483d33a..559ec68 100644 --- a/dev-python/serpent/serpent-1.11.ebuild +++ b/dev-python/serpent/serpent-1.11.ebuild @@ -3,15 +3,23 @@ # $Id$ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) inherit distutils-r1 DESCRIPTION="A simple serialization library based on ast.literal_eval" -HOMEPAGE="https://pypi.python.org/packages/source/s/serpent/" +HOMEPAGE="https://pypi.python.org/pypi/serpent https://github.com/irmen/Serpent" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" + +# not bundled +RESTRICT="test" + +python_test() { + ${PYTHON} -bb test_serpent.py || die +}