Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nevow/
Date: Fri, 05 Jan 2018 13:26:19
Message-Id: 1515158740.2c5f8604dcf487ffb8d6997bbf92519575856bc5.mgorny@gentoo
1 commit: 2c5f8604dcf487ffb8d6997bbf92519575856bc5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 09:52:46 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 13:25:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c5f8604
7
8 dev-python/nevow: Clean old up
9
10 dev-python/nevow/Manifest | 1 -
11 dev-python/nevow/nevow-0.14.2.ebuild | 52 ------------------------------------
12 2 files changed, 53 deletions(-)
13
14 diff --git a/dev-python/nevow/Manifest b/dev-python/nevow/Manifest
15 index cf9882b1f08..caf893ea902 100644
16 --- a/dev-python/nevow/Manifest
17 +++ b/dev-python/nevow/Manifest
18 @@ -1,3 +1,2 @@
19 DIST Nevow-0.11.1.tar.gz 563061 BLAKE2B 7763816e44a9b388edd0a77ad3e814514ff2ed2d28c156885bc6517860e17347a946c7b890c4d0688c4c08f60d76832403a772b4754d527c575aa4d8b4f7f3ed SHA512 a7e52fbf6915498e77a41fb100d4c688fcd0567deb56ec946adf1b1712bcfbec7b7a55c551e414606218146772d5274973af7851a78878635e900a4df5193a53
20 -DIST Nevow-0.14.2.tar.gz 528266 BLAKE2B 6ab749835a8c90ac828f841610f9e8eb799b7a5f29b14c6b275f5e531621f97bb22f7032a3f8a10756bc0c59c8ec04a9b26f71f216682f1f83f95f8154c7ba04 SHA512 6b21e4471fbbe76bf2a64975ed2a04413d059d9a50ca89247d48db9436a9a5e747aa373921310f4a53120466d8033377f85cbea3af14a50b1297d85391d6474a
21 DIST Nevow-0.14.3.tar.gz 548818 BLAKE2B 64b5bd46511a4c6c10bdd4335d1e2789e7dfe22e4e4bb014c03fd4949eb701f7f79095e8a239a974d89f0831399766e1b0fad0011f102c70af375d9460a7b63a SHA512 5488be9c771dc9d9b348ee705f8cb1f47400b4789ea574f5ed68c54ecb33e6cc2928d45193137921727f560256e16716adff66ca5179d2a79eb395e0d61c2f05
22
23 diff --git a/dev-python/nevow/nevow-0.14.2.ebuild b/dev-python/nevow/nevow-0.14.2.ebuild
24 deleted file mode 100644
25 index a2cf9c4418b..00000000000
26 --- a/dev-python/nevow/nevow-0.14.2.ebuild
27 +++ /dev/null
28 @@ -1,52 +0,0 @@
29 -# Copyright 1999-2017 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI="5"
33 -PYTHON_COMPAT=( python2_7 )
34 -
35 -inherit twisted-r1
36 -
37 -DESCRIPTION="A web templating framework that provides LivePage, an automatic AJAX toolkit"
38 -HOMEPAGE="https://github.com/twisted/nevow https://pypi.python.org/pypi/Nevow"
39 -SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
44 -IUSE="doc test"
45 -
46 -RDEPEND="
47 - || (
48 - dev-python/twisted[${PYTHON_USEDEP}]
49 - (
50 - dev-python/twisted-core[${PYTHON_USEDEP}]
51 - dev-python/twisted-web[${PYTHON_USEDEP}]
52 - )
53 - )
54 - dev-python/zope-interface[${PYTHON_USEDEP}]"
55 -# JS tests require a JavaScript interpreter ('smjs' or 'js' in PATH)
56 -# and the subunit library
57 -DEPEND="${RDEPEND}
58 - test? (
59 - dev-lang/spidermonkey
60 - dev-python/subunit[${PYTHON_USEDEP}]
61 - )"
62 -
63 -TWISTED_PLUGINS=( nevow.plugins )
64 -
65 -python_test() {
66 - trial formless nevow || die "tests failed with ${EPYTHON}"
67 -}
68 -
69 -python_install() {
70 - distutils-r1_python_install
71 -
72 - touch "${D}$(python_get_sitedir)"/nevow/plugins/dropin.cache || die
73 -}
74 -
75 -python_install_all() {
76 - distutils-r1_python_install_all
77 -
78 - # TODO: prevent installing it
79 - rm -r "${D}"/usr/doc || die
80 -}