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 6FE6C13888F for ; Wed, 21 Oct 2015 13:42:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E55A21C057; Wed, 21 Oct 2015 13:41:31 +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 6A26E21C059 for ; Wed, 21 Oct 2015 13:41:30 +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 A9EF9340940 for ; Wed, 21 Oct 2015 13:41:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28A6D1544 for ; Wed, 21 Oct 2015 13:41:26 +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: <1445434824.f379e65bc7843c42faaf372b87a035932f78cb2b.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ujson/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ujson/ujson-1.33.ebuild X-VCS-Directories: dev-python/ujson/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: f379e65bc7843c42faaf372b87a035932f78cb2b X-VCS-Branch: master Date: Wed, 21 Oct 2015 13:41:26 +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: 3a048e2f-63d6-41b3-97d1-9ff74894f447 X-Archives-Hash: 841a797b1fcd3b7ba62b8dda7921617b commit: f379e65bc7843c42faaf372b87a035932f78cb2b Author: Justin Lecher gentoo org> AuthorDate: Tue Oct 20 19:22:04 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Oct 21 13:40:24 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f379e65b dev-python/ujson: Add python3.5 support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/ujson/ujson-1.33.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/ujson/ujson-1.33.ebuild b/dev-python/ujson/ujson-1.33.ebuild index 83591d2..b0660cb 100644 --- a/dev-python/ujson/ujson-1.33.ebuild +++ b/dev-python/ujson/ujson-1.33.ebuild @@ -2,11 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI=5 # One test; FAIL: test_encodeToUTF8 (__main__.UltraJSONTests) under py2.5. # Fix and repair and re-insert if it's REALLY needed -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) inherit distutils-r1 @@ -35,7 +35,7 @@ python_test() { if [[ "${EPYTHON}" =~ 'python3' ]]; then cd "${BUILD_DIR}"/lib || die cp -a "${S}"/tests/ . || die - 2to3 -w tests/tests.py + 2to3 -w tests/tests.py || die "${PYTHON}" tests/tests.py || die rm -rf tests/ || die else