commit: a478b783f8e4f536a13a7d07b1f6242f77bea7c1
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 31 13:46:28 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> 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 <jlec <AT> 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"
}