idella4 14/12/23 07:01:50 Modified: autopep8-9999.ebuild ChangeLog Added: autopep8-1.1.ebuild Removed: autopep8-1.0.2.ebuild autopep8-1.0.3.ebuild autopep8-0.5.2-r1.ebuild Log: rm old impls, add pypy3, tidy and update deps, update test phase, rm old (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.10 dev-python/autopep8/autopep8-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-9999.ebuild?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-9999.ebuild?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-9999.ebuild?r1=1.9&r2=1.10 Index: autopep8-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-9999.ebuild,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- autopep8-9999.ebuild 24 Nov 2014 13:38:38 -0000 1.9 +++ autopep8-9999.ebuild 23 Dec 2014 07:01:50 -0000 1.10 @@ -1,9 +1,9 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-9999.ebuild,v 1.9 2014/11/24 13:38:38 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-9999.ebuild,v 1.10 2014/12/23 07:01:50 idella4 Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} ) +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) inherit distutils-r1 git-2 @@ -15,11 +15,12 @@ LICENSE="MIT" SLOT="0" KEYWORDS="" -IUSE="" +IUSE="test" -DEPEND=">=dev-python/pep8-1.4.6[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" +RDEPEND=">=dev-python/pep8-1.5.7[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${RDEPEND} + >=dev-python/pydiff-0.1.2[${PYTHON_USEDEP}] )" python_test() { "${PYTHON}" setup.py test || die 1.53 dev-python/autopep8/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.53&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?rev=1.53&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/ChangeLog?r1=1.52&r2=1.53 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- ChangeLog 24 Nov 2014 13:38:38 -0000 1.52 +++ ChangeLog 23 Dec 2014 07:01:50 -0000 1.53 @@ -1,6 +1,13 @@ # ChangeLog for dev-python/autopep8 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.52 2014/11/24 13:38:38 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/ChangeLog,v 1.53 2014/12/23 07:01:50 idella4 Exp $ + +*autopep8-1.1 (23 Dec 2014) + + 23 Dec 2014; Ian Delaney <idel...@gentoo.org> +autopep8-1.1.ebuild, + -autopep8-0.5.2-r1.ebuild, -autopep8-1.0.2.ebuild, -autopep8-1.0.3.ebuild, + autopep8-9999.ebuild: + rm old impls, add pypy3, tidy and update deps, update test phase, rm old 24 Nov 2014; Pacho Ramos <pa...@gentoo.org> autopep8-9999.ebuild: Support python 3.4 1.1 dev-python/autopep8/autopep8-1.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-1.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/autopep8/autopep8-1.1.ebuild?rev=1.1&content-type=text/plain Index: autopep8-1.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-1.1.ebuild,v 1.1 2014/12/23 07:01:50 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 ) inherit distutils-r1 vcs-snapshot DESCRIPTION="Automatically formats Python code to conform to the PEP 8 style guide" HOMEPAGE="https://github.com/hhatto/autopep8 http://pypi.python.org/pypi/autopep8" SRC_URI="https://github.com/hhatto/${PN}/tarball/ver${PV} -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="test" RDEPEND=">=dev-python/pep8-1.5.7[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( ${RDEPEND} >=dev-python/pydiff-0.1.2[${PYTHON_USEDEP}] )" python_prepare_all() { # Prevent UnicodeDecodeError with LANG=C sed -e "/é/d" -i MANIFEST.in || die distutils-r1_python_prepare_all } python_test() { esetup.py test # from the tox.ini "${PYTHON}" test/acid.py --aggressive test/example.py || die "${PYTHON}" test/acid.py --compare-bytecode test/example.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" }