2015-01-02 11:56:43 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-04-13 00:04:59 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2014-04-13 00:04:59 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2015-06-14 15:31:49 +03:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
|
2014-04-13 00:04:59 +04:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Passive checker for Python programs"
|
2015-08-24 15:08:46 +03:00
|
|
|
HOMEPAGE="https://launchpad.net/pyflakes https://pypi.python.org/pypi/pyflakes"
|
2014-04-13 00:04:59 +04:00
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
2015-11-18 17:56:57 +03:00
|
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
2014-04-13 00:04:59 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
DOCS=(AUTHORS NEWS.txt README.rst)
|
|
|
|
|
|
|
|
python_test() {
|
|
|
|
esetup.py test --quiet
|
|
|
|
}
|