diff options
Diffstat (limited to 'dev-python/nevow')
-rw-r--r-- | dev-python/nevow/Manifest | 3 | ||||
-rw-r--r-- | dev-python/nevow/metadata.xml | 11 | ||||
-rw-r--r-- | dev-python/nevow/nevow-0.14.3.ebuild | 47 |
3 files changed, 0 insertions, 61 deletions
diff --git a/dev-python/nevow/Manifest b/dev-python/nevow/Manifest deleted file mode 100644 index 48a85179ca41..000000000000 --- a/dev-python/nevow/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST Nevow-0.14.3.tar.gz 548818 BLAKE2B 64b5bd46511a4c6c10bdd4335d1e2789e7dfe22e4e4bb014c03fd4949eb701f7f79095e8a239a974d89f0831399766e1b0fad0011f102c70af375d9460a7b63a SHA512 5488be9c771dc9d9b348ee705f8cb1f47400b4789ea574f5ed68c54ecb33e6cc2928d45193137921727f560256e16716adff66ca5179d2a79eb395e0d61c2f05 -EBUILD nevow-0.14.3.ebuild 1174 BLAKE2B 35e6cb2f7d738755ba2c1b7e343c1e425fd5f1f745aea7484e7ec9bf13e6d97acf4d66f1e921d7cc5561cb4adadb2116e31519e85f76b933738147dcab69ef07 SHA512 ad0b53296f7bf51c529e606fcdd6938be38fea48b3fe23c135ab35e365dc597c576def8458fe13870272c773aa19f9c21b414b4f5dbf74ec14212d39d6669aaa -MISC metadata.xml 308 BLAKE2B b7948b5e8794cdbcc882fcec0ec0c4d754e44232dd1cb65932a8d92193b16751bcde6c0cc4ea6f79f93083d948b9b64dfa8ea116d085cc87f121cfb9a2c1160f SHA512 f6315f9350d7d43c1c2df8665f38e6373a1b24ff9950001472333ed45aceb10fd7dcf376492643e6af0a995f561f3fa171341303a4935bd55d97ce2fd6db9229 diff --git a/dev-python/nevow/metadata.xml b/dev-python/nevow/metadata.xml deleted file mode 100644 index 916525ee0a88..000000000000 --- a/dev-python/nevow/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> - </maintainer> - <upstream> - <remote-id type="pypi">Nevow</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/nevow/nevow-0.14.3.ebuild b/dev-python/nevow/nevow-0.14.3.ebuild deleted file mode 100644 index 8aae2461513f..000000000000 --- a/dev-python/nevow/nevow-0.14.3.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python2_7 ) - -inherit twisted-r1 - -DESCRIPTION="A web templating framework that provides LivePage, an automatic AJAX toolkit" -HOMEPAGE="https://github.com/twisted/nevow https://pypi.org/project/Nevow/" -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86 ~x86-linux" -IUSE="doc test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/twisted[${PYTHON_USEDEP}] - dev-python/zope-interface[${PYTHON_USEDEP}]" -# JS tests require a JavaScript interpreter ('smjs' or 'js' in PATH) -# and the subunit library -DEPEND="${RDEPEND} - test? ( - dev-lang/spidermonkey - dev-python/subunit[${PYTHON_USEDEP}] - )" - -TWISTED_PLUGINS=( nevow.plugins ) - -python_test() { - trial formless nevow || die "tests failed with ${EPYTHON}" -} - -python_install() { - distutils-r1_python_install - - touch "${D}$(python_get_sitedir)"/nevow/plugins/dropin.cache || die -} - -python_install_all() { - distutils-r1_python_install_all - - # TODO: prevent installing it - rm -r "${D}"/usr/doc || die -} |