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: Wed, 05 Aug 2020 15:10:38
Message-Id: 1596639956.192d356d4aa8282e144e7daa492d403b2fab224e.mgorny@gentoo
1 commit: 192d356d4aa8282e144e7daa492d403b2fab224e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 15:05:56 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 5 15:05:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=192d356d
7
8 dev-python/wtforms: Remove old
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.2.1.ebuild | 48 ---------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/wtforms/Manifest b/dev-python/wtforms/Manifest
17 index 84ad9c946c5..1f09bb51f24 100644
18 --- a/dev-python/wtforms/Manifest
19 +++ b/dev-python/wtforms/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST WTForms-2.2.1.tar.gz 156904 BLAKE2B bec7c526f72b264888f7be45ba15d2bc4d194b09adc8ca5806cfc04cd1671663c851b7f1c99c602bb3e13d14a38733be61613058e46481bcea59901ac1f5b6b2 SHA512 06478790a8a4bf728e5436edaa63c7c0e596f71d63b273e1f296f9255d9fa3e31a7bfa95971c214a8cea684034ac3c77b05371f4b4e14da9d9ef2c5afadabde0
22 DIST WTForms-2.3.1.tar.gz 162773 BLAKE2B b51b5cb26c550a2502c8c70c1de91c7e6e320f60e2df3ab2b9a5cd755dbbb753d8d2fa05837657aa639929b380e8c65fd25182192538ccef837cae0869b19c80 SHA512 40b810d2d0ce6d2e7880615fb5c3b3e55cfade8e352be5d626d0de16f00a9ef4626ffa106b67d0cbef15e42513073db52ba1ceb04cb18146bba0ba9c26236fdd
23 DIST WTForms-2.3.3.tar.gz 162945 BLAKE2B 5f9f2c920ffc784c34d69f42cd259c1cb6007edbc99028bede98b7c3e24b8ba616b89eceac241cc9b20b241e758ee0c88a9c6736597ddc83c90542135a004fec SHA512 934cf1483beec37d698d13a81e44a733d082baad1f418d3087306fd908df809d37fffe000ed1ecabf65d2c31b57034bf6f25c3b77cfc5598ae1f65bf4a115fe5
24
25 diff --git a/dev-python/wtforms/wtforms-2.2.1.ebuild b/dev-python/wtforms/wtforms-2.2.1.ebuild
26 deleted file mode 100644
27 index 456dd7d33ee..00000000000
28 --- a/dev-python/wtforms/wtforms-2.2.1.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( pypy3 python3_{6..9} )
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}.tar.gz"
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 -BDEPEND="
55 - test? (
56 - dev-python/Babel[${PYTHON_USEDEP}]
57 - dev-python/python-dateutil[${PYTHON_USEDEP}]
58 - dev-python/sqlalchemy[${PYTHON_USEDEP}]
59 - dev-python/webob[${PYTHON_USEDEP}]
60 - )
61 -"
62 -
63 -distutils_enable_sphinx docs
64 -
65 -python_prepare_all() {
66 - # Extension-tests are written for an older version of Django
67 - # Disable pep8 even when it is installed
68 - sed \
69 - -e "s|'ext_django.tests', ||" \
70 - -e "/import pep8/d" \
71 - -e "s|has_pep8 = True|has_pep8 = False|" \
72 - -i tests/runtests.py || die
73 - distutils-r1_python_prepare_all
74 -}
75 -
76 -python_test() {
77 - "${EPYTHON}" tests/runtests.py -v || die
78 -}