diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2017-12-10 21:37:53 -0600 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2017-12-10 21:48:43 -0600 |
commit | 6a591d1cfe7138959909b0e2d7dccf42c9adfb5e (patch) | |
tree | 1edbbe81e7170f02457789e4aeddc61c487a126b /dev-python/zope-configuration/zope-configuration-4.1.0.ebuild | |
parent | dev-python/zope-i18nmessageid: adding for zope-configuration for mailman 3 (diff) | |
download | gentoo-6a591d1cfe7138959909b0e2d7dccf42c9adfb5e.tar.gz gentoo-6a591d1cfe7138959909b0e2d7dccf42c9adfb5e.tar.bz2 gentoo-6a591d1cfe7138959909b0e2d7dccf42c9adfb5e.zip |
dev-python/zope-configuration: adding for mailman 3
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'dev-python/zope-configuration/zope-configuration-4.1.0.ebuild')
-rw-r--r-- | dev-python/zope-configuration/zope-configuration-4.1.0.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild new file mode 100644 index 000000000000..9b2acc4b23b2 --- /dev/null +++ b/dev-python/zope-configuration/zope-configuration-4.1.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6}) + +inherit distutils-r1 +MY_PN=zope.configuration +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Zope Configuration Architecture" +HOMEPAGE="https://github.com/zopefoundation/zope.configuration http://docs.zope.org/zope.configuration/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="test" + +RDEPEND="dev-python/zope-i18nmessageid[${PYTHON_USEDEP}] + dev-python/zope-interface[${PYTHON_USEDEP}] + dev-python/zope-schema[${PYTHON_USEDEP}]" +DEPEND="test? ( ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${MY_P} + +RESTRICT="test" + +python_test() { + nosetests || die +} + +python_install_all() { + distutils-r1_python_install_all + + # remove .pth files since dev-python/namespace-zope handles the ns + find "${D}" -name '*.pth' -delete || die +} |