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 C49E013888F for ; Sat, 31 Oct 2015 13:46:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E788721C00C; Sat, 31 Oct 2015 13:46: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 4935321C00D for ; Sat, 31 Oct 2015 13:46:52 +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 6DBE9340B53 for ; Sat, 31 Oct 2015 13:46:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7641F1C2E for ; Sat, 31 Oct 2015 13:46:49 +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: <1446299206.a478b783f8e4f536a13a7d07b1f6242f77bea7c1.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/autopep8/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/autopep8/autopep8-1.2.1.ebuild X-VCS-Directories: dev-python/autopep8/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: a478b783f8e4f536a13a7d07b1f6242f77bea7c1 X-VCS-Branch: master Date: Sat, 31 Oct 2015 13:46:49 +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: 2044bdd4-c99f-49ca-8319-7e45d70bdad1 X-Archives-Hash: d7b67d28c40223e2dbb1b34a42d5c002 commit: a478b783f8e4f536a13a7d07b1f6242f77bea7c1 Author: Justin Lecher gentoo org> AuthorDate: Sat Oct 31 13:46:28 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Oct 31 13:46:46 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a478b783 dev-python/autopep8: Add python3.5 support Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/autopep8/autopep8-1.2.1.ebuild | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/dev-python/autopep8/autopep8-1.2.1.ebuild b/dev-python/autopep8/autopep8-1.2.1.ebuild index 60c3f6c..1d34775 100644 --- a/dev-python/autopep8/autopep8-1.2.1.ebuild +++ b/dev-python/autopep8/autopep8-1.2.1.ebuild @@ -4,7 +4,7 @@ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) inherit distutils-r1 vcs-snapshot @@ -23,9 +23,6 @@ RDEPEND=" DEPEND="${DEPEND} test? ( >=dev-python/pydiff-0.1.2[${PYTHON_USEDEP}] )" -# https://github.com/hhatto/autopep8/issues/217 -RESTRICT=test - python_prepare_all() { # Prevent UnicodeDecodeError with LANG=C sed -e "/é/d" -i MANIFEST.in || die @@ -34,22 +31,4 @@ python_prepare_all() { python_test() { esetup.py test - # from the travis.yml - "${PYTHON}" test/test_autopep8.py || die - "${PYTHON}" test/acid.py -aaa --experimental test/example.py || die - "${PYTHON}" test/acid.py -aaa --experimental test/example_with_reduce.py || die - "${PYTHON}" test/acid.py -aaa --compare-bytecode --experimental test/example.py die - "${PYTHON}" test/acid.py --aggressive --line-range 550 610 test/inspect_example.py || die - "${PYTHON}" test/acid.py --line-range 289 925 test/vectors_example.py || die - "${PYTHON}" test/test_suite.py || die -} - -pkg_postinst() { - ewarn "Since this version of autopep depends on >=dev-python/pep8-1.3" - ewarn "it is affected by https://github.com/jcrocholl/pep8/issues/45" - ewarn "(indentation checks inside triple-quotes)." - ewarn "If you do not want to be affected by this, then add the" - ewarn "following lines to your local package.mask:" - ewarn " >=dev-python/pep8-1.3" - ewarn " >=dev-python/autopep8-0.6" }