2015-01-23 20:38:43 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-06-05 00:17:51 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2014-06-05 00:17:51 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
2015-11-05 09:25:41 +03:00
|
|
|
PYTHON_COMPAT=( python2_7 pypy pypy3 )
|
2014-06-05 00:17:51 +04:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Python function signatures from PEP362 for Python 2.7"
|
|
|
|
HOMEPAGE="https://pypi.python.org/pypi/funcsigs"
|
|
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
LICENSE="Apache-2.0"
|
2015-11-23 10:32:16 +03:00
|
|
|
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux"
|
2014-06-05 00:17:51 +04:00
|
|
|
IUSE="test"
|
|
|
|
|
2015-01-23 20:38:43 +03:00
|
|
|
DEPEND="
|
|
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
|
|
test? ( dev-python/unittest2[${PYTHON_USEDEP}] )"
|
|
|
|
RDEPEND=""
|
2014-06-05 00:17:51 +04:00
|
|
|
|
|
|
|
python_test() {
|
|
|
|
esetup.py test
|
|
|
|
}
|