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: Fri, 31 Jul 2020 06:21:17
Message-Id: 1596176465.2f4923205603876306017751e12792c8e22c4165.mgorny@gentoo
1 commit: 2f4923205603876306017751e12792c8e22c4165
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 31 05:51:05 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 06:21:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f492320
7
8 dev-python/wtforms: Bump to 2.3.3
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.3.3.ebuild | 49 +++++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/wtforms/Manifest b/dev-python/wtforms/Manifest
17 index 1946487d7fa..84ad9c946c5 100644
18 --- a/dev-python/wtforms/Manifest
19 +++ b/dev-python/wtforms/Manifest
20 @@ -1,2 +1,3 @@
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.3.3.ebuild b/dev-python/wtforms/wtforms-2.3.3.ebuild
26 new file mode 100644
27 index 00000000000..6651bb04feb
28 --- /dev/null
29 +++ b/dev-python/wtforms/wtforms-2.3.3.ebuild
30 @@ -0,0 +1,49 @@
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 +S="${WORKDIR}/${MY_P}"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +RDEPEND="
52 + dev-python/markupsafe[${PYTHON_USEDEP}]"
53 +
54 +BDEPEND="
55 + test? (
56 + dev-python/Babel[${PYTHON_USEDEP}]
57 + dev-python/python-dateutil[${PYTHON_USEDEP}]
58 + dev-python/python-email-validator[${PYTHON_USEDEP}]
59 + dev-python/sqlalchemy[${PYTHON_USEDEP}]
60 + dev-python/webob[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +distutils_enable_tests unittest
65 +
66 +python_prepare_all() {
67 + # Extension-tests are written for an older version of Django
68 + # Disable pep8 even when it is installed
69 + sed \
70 + -e "s|'ext_django.tests', ||" \
71 + -e "/import pep8/d" \
72 + -e "s|has_pep8 = True|has_pep8 = False|" \
73 + -i tests/runtests.py || die
74 + distutils-r1_python_prepare_all
75 +}
76 +
77 +python_test() {
78 + "${EPYTHON}" tests/runtests.py -v || die
79 +}