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/deform/
Date: Tue, 02 May 2017 17:44:16
Message-Id: 1493747015.1a5652a646aa1b4849e90bcc97e335ccb092a8a7.mgorny@gentoo
1 commit: 1a5652a646aa1b4849e90bcc97e335ccb092a8a7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 17:15:52 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 17:43:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5652a6
7
8 dev-python/deform: Clean old versions up
9
10 dev-python/deform/Manifest | 1 -
11 dev-python/deform/deform-0.9.8.ebuild | 40 -----------------------------------
12 2 files changed, 41 deletions(-)
13
14 diff --git a/dev-python/deform/Manifest b/dev-python/deform/Manifest
15 index 41580168f61..8cce7b30a55 100644
16 --- a/dev-python/deform/Manifest
17 +++ b/dev-python/deform/Manifest
18 @@ -1,2 +1 @@
19 -DIST deform-0.9.8.tar.gz 1336542 SHA256 fd4a4f216d939423a4fe5ef86ec9523b0f5f048cc37a7c9beed3d8316a06a094 SHA512 561fb7bdeefa848c2eeac3a36a13116409be0b9c90ef515fc9a3ac8f31e071767a155734a104ac261794caf35d0aacd434f243f19ffe4321fdabac3d9ccec789 WHIRLPOOL 4fd24743b0b01a279a193b6b24a4743d03c2bf7fa272f58953343e497f35fd1c835f3e0c9fd53ec9bdfdbe239d754ca927458b16696acc1b79c06c0fcc6f295e
20 DIST deform-0.9.9.tar.gz 1336829 SHA256 a0ddbeba3ed5f4b061a2c83423e00a421003600868d71021816897dfa1d4b77a SHA512 f0f615415696adba8add8f37c7ab8b8d213ec6d1eb68e2322961cef46df9e381b2368515b524d71eed110a33aa8a7f0aee8302e39b4d6a8871a0eb78108aca11 WHIRLPOOL fa3a2462ae3f9d5ec81305c15efb2ceca0335dde12f3ef801933caf306dcfd3c95d989f2c61e940a757b9a029e5a090fa05435b24b5d18b3665bdbfc6975c602
21
22 diff --git a/dev-python/deform/deform-0.9.8.ebuild b/dev-python/deform/deform-0.9.8.ebuild
23 deleted file mode 100644
24 index a59c8350520..00000000000
25 --- a/dev-python/deform/deform-0.9.8.ebuild
26 +++ /dev/null
27 @@ -1,40 +0,0 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 pypy )
34 -inherit distutils-r1
35 -
36 -DESCRIPTION="Another form generation library"
37 -HOMEPAGE="http://docs.pylonsproject.org/projects/deform/en/latest/ https://pypi.python.org/pypi/deform https://github.com/Pylons/deform"
38 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
39 -
40 -LICENSE="repoze"
41 -SLOT="0"
42 -KEYWORDS="~amd64 ~x86"
43 -IUSE="test"
44 -# tests require zope.deprecation
45 -RESTRICT="test"
46 -
47 -RDEPEND=">=dev-python/translationstring-1.1[${PYTHON_USEDEP}]
48 - >=dev-python/colander-1.0_alpha1[${PYTHON_USEDEP}]
49 - >=dev-python/peppercorn-0.4[${PYTHON_USEDEP}]
50 - >=dev-python/chameleon-1.2.3[${PYTHON_USEDEP}]"
51 -DEPEND="${RDEPEND}
52 - test? ( dev-python/beautifulsoup:4[${PYTHON_USEDEP}] )"
53 -
54 -# Include COPYRIGHT.txt because the license seems to require it.
55 -DOCS=( CHANGES.txt COPYRIGHT.txt README.txt )
56 -
57 -src_install() {
58 - distutils-r1_src_install
59 -
60 - # Install only the .rst source, as sphinx processing requires
61 - # a theme only available from git that contains hardcoded
62 - # references to files on https://static.pylonsproject.org/ (so
63 - # the docs would not actually work offline). Install the
64 - # source, which is somewhat readable.
65 - docinto docs
66 - dodoc docs/*.rst || die
67 -}