diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-07-02 18:45:19 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-07-02 18:45:19 +0000 |
commit | 0913eac4ad28bbe162dcaca09383aabbebd19eba (patch) | |
tree | 93c7327b3cb790c5c5807c84abc5218b51f95151 /dev-python/pyflakes | |
parent | Clean up (diff) | |
download | gentoo-2-0913eac4ad28bbe162dcaca09383aabbebd19eba.tar.gz gentoo-2-0913eac4ad28bbe162dcaca09383aabbebd19eba.tar.bz2 gentoo-2-0913eac4ad28bbe162dcaca09383aabbebd19eba.zip |
Version bump.
(Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-python/pyflakes')
-rw-r--r-- | dev-python/pyflakes/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pyflakes/pyflakes-0.7.3.ebuild | 22 |
2 files changed, 28 insertions, 1 deletions
diff --git a/dev-python/pyflakes/ChangeLog b/dev-python/pyflakes/ChangeLog index 06a2183bc919..afaab2c0d4aa 100644 --- a/dev-python/pyflakes/ChangeLog +++ b/dev-python/pyflakes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyflakes # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyflakes/ChangeLog,v 1.30 2013/05/31 06:32:53 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyflakes/ChangeLog,v 1.31 2013/07/02 18:45:19 radhermit Exp $ + +*pyflakes-0.7.3 (02 Jul 2013) + + 02 Jul 2013; Tim Harder <radhermit@gentoo.org> +pyflakes-0.7.3.ebuild: + Version bump. 31 May 2013; Ian Delaney <idella4@gentoo.org> pyflakes-0.7.2.ebuild: added apparent support of healthy py2.[5-6], py3.2 diff --git a/dev-python/pyflakes/pyflakes-0.7.3.ebuild b/dev-python/pyflakes/pyflakes-0.7.3.ebuild new file mode 100644 index 000000000000..b750f7e690d8 --- /dev/null +++ b/dev-python/pyflakes/pyflakes-0.7.3.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyflakes/pyflakes-0.7.3.ebuild,v 1.1 2013/07/02 18:45:19 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=(python{2_5,2_6,2_7,3_{2,3}} ) + +inherit distutils-r1 + +DESCRIPTION="Passive checker for Python programs" +HOMEPAGE="https://launchpad.net/pyflakes http://pypi.python.org/pypi/pyflakes" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~x86-macos" + +DOCS=(AUTHORS NEWS.txt README.rst) + +python_test() { + esetup.py test --quiet +} |