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/wtforms/
Date: Sun, 29 Mar 2020 12:03:25
Message-Id: 1585483391.a3df3a493f39c8eaf8aad03366e35917e36c101d.mgorny@gentoo
1 commit: a3df3a493f39c8eaf8aad03366e35917e36c101d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 12:02:11 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:03:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3df3a49
7
8 dev-python/wtforms: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/wtforms/Manifest | 1 -
13 dev-python/wtforms/wtforms-2.1.ebuild | 56 -----------------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/dev-python/wtforms/Manifest b/dev-python/wtforms/Manifest
17 index 4aa469b0b0b..af2b52ac447 100644
18 --- a/dev-python/wtforms/Manifest
19 +++ b/dev-python/wtforms/Manifest
20 @@ -1,2 +1 @@
21 -DIST WTForms-2.1.zip 553644 BLAKE2B 0db0c1d9b3249ad43ad5aa4da597fab3bca38f87eb636768b867365495a30d5f4d4a1def16c9965bfd4bce8ed28ffc7601b3b352af74208086feb7b54ab3de07 SHA512 2bdac0a35eca465021df9fb37dc0acd87bf487c6158b782d48870e9d5aab6ed3eb635af89bb38b9e8419688185f7c7b7875e68f7435d94bca8b074b2dddb12a0
22 DIST WTForms-2.2.1.tar.gz 156904 BLAKE2B bec7c526f72b264888f7be45ba15d2bc4d194b09adc8ca5806cfc04cd1671663c851b7f1c99c602bb3e13d14a38733be61613058e46481bcea59901ac1f5b6b2 SHA512 06478790a8a4bf728e5436edaa63c7c0e596f71d63b273e1f296f9255d9fa3e31a7bfa95971c214a8cea684034ac3c77b05371f4b4e14da9d9ef2c5afadabde0
23
24 diff --git a/dev-python/wtforms/wtforms-2.1.ebuild b/dev-python/wtforms/wtforms-2.1.ebuild
25 deleted file mode 100644
26 index cae6eb2f1e9..00000000000
27 --- a/dev-python/wtforms/wtforms-2.1.ebuild
28 +++ /dev/null
29 @@ -1,56 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python{2_7,3_6} )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="WTForms"
40 -MY_P="${MY_PN}-${PV}"
41 -
42 -DESCRIPTION="Flexible forms validation and rendering library for python web development"
43 -HOMEPAGE="https://wtforms.readthedocs.io/"
44 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86"
49 -IUSE="doc test"
50 -RESTRICT="!test? ( test )"
51 -
52 -S="${WORKDIR}/${MY_P}"
53 -
54 -RDEPEND="
55 - app-arch/unzip
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] )"
58 -DEPEND="${RDEPEND}
59 - test? (
60 - dev-python/Babel[${PYTHON_USEDEP}]
61 - dev-python/sqlalchemy[${PYTHON_USEDEP}]
62 - dev-python/webob[${PYTHON_USEDEP}]
63 - dev-python/python-dateutil[${PYTHON_USEDEP}]
64 - )"
65 -
66 -python_prepare_all() {
67 - # Extension-tests are written for an older version of Django
68 - sed \
69 - -e "s|'ext_django.tests', ||" \
70 - -i tests/runtests.py || die
71 - distutils-r1_python_prepare_all
72 -}
73 -
74 -python_compile_all() {
75 - use doc && emake -C docs html
76 -}
77 -
78 -python_test() {
79 - esetup.py test
80 -}
81 -
82 -python_install_all() {
83 - use doc && local HTML_DOCS=( docs/_build/html/. )
84 - distutils-r1_python_install_all
85 -}