diff options
Diffstat (limited to 'dev-python/namespace-paste/namespace-paste-1.ebuild')
-rw-r--r-- | dev-python/namespace-paste/namespace-paste-1.ebuild | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-python/namespace-paste/namespace-paste-1.ebuild b/dev-python/namespace-paste/namespace-paste-1.ebuild deleted file mode 100644 index 7df8c0ef142e..000000000000 --- a/dev-python/namespace-paste/namespace-paste-1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_6} ) -inherit python-r1 - -DESCRIPTION="Namespace package declaration for paste" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages" -SRC_URI="" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="" - -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - ${PYTHON_DEPS}" -DEPEND="${PYTHON_DEPS}" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -src_unpack() { - mkdir -p "${S}"/paste || die - cat > "${S}"/paste/__init__.py <<-EOF || die - __import__('pkg_resources').declare_namespace(__name__) - EOF -} - -src_install() { - python_foreach_impl python_domodule paste -} |