commit: 414bf899c6bc5f06bc062911c0e1892bce2efee1 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue May 9 12:05:01 2017 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue May 9 15:35:26 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=414bf899
dev-python/configparser: Fix namespace support .../configparser/configparser-3.5.0-r1.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/dev-python/configparser/configparser-3.5.0-r1.ebuild b/dev-python/configparser/configparser-3.5.0-r1.ebuild new file mode 100644 index 00000000000..80eb34a5059 --- /dev/null +++ b/dev-python/configparser/configparser-3.5.0-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 pypy ) +inherit distutils-r1 + +DESCRIPTION="Backport of Python-3 built-in configparser" +HOMEPAGE="https://pypi.python.org/pypi/configparser/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND="dev-python/backports[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_install_all() { + distutils-r1_python_install_all + + find "${D}" -name '*.pth' -delete || die +}