2013-04-28 05:49:31 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-12-15 21:40:01 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyflakes/pyflakes-0.7.2.ebuild,v 1.7 2013/12/15 15:09:01 mgorny Exp $
|
2013-04-28 05:49:31 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2013-09-06 12:49:54 +04:00
|
|
|
PYTHON_COMPAT=(python{2_6,2_7,3_{2,3}} )
|
2013-04-28 05:49:31 +04:00
|
|
|
|
|
|
|
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"
|
2013-08-20 06:17:53 +04:00
|
|
|
KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~arm-linux ~x86-linux ~x86-macos"
|
2013-06-01 02:42:57 +04:00
|
|
|
IUSE="test"
|
2013-04-28 05:49:31 +04:00
|
|
|
|
2013-12-15 21:40:01 +04:00
|
|
|
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
|
2013-04-28 05:49:31 +04:00
|
|
|
|
|
|
|
python_test() {
|
2013-06-01 02:42:57 +04:00
|
|
|
# a known failure of 1 test in py3.2.4
|
|
|
|
# https://bugs.launchpad.net/pyflakes/+bug/1172463
|
2013-04-28 05:49:31 +04:00
|
|
|
esetup.py test --quiet
|
|
|
|
}
|