From: "Patrick Lauer" <patrick@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-wtf/
Date: Sat, 16 Sep 2017 14:23:11 +0000 (UTC) [thread overview]
Message-ID: <1505571783.445251ac818b3ded7203193f25753074534f4c98.patrick@gentoo> (raw)
commit: 445251ac818b3ded7203193f25753074534f4c98
Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 16 14:22:45 2017 +0000
Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
CommitDate: Sat Sep 16 14:23:03 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=445251ac
dev-python/flask-wtf: Bump
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-python/flask-wtf/Manifest | 1 +
dev-python/flask-wtf/flask-wtf-0.14.2.ebuild | 54 ++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/dev-python/flask-wtf/Manifest b/dev-python/flask-wtf/Manifest
index 5ae49b9997f..a88128927aa 100644
--- a/dev-python/flask-wtf/Manifest
+++ b/dev-python/flask-wtf/Manifest
@@ -1,2 +1,3 @@
DIST Flask-WTF-0.10.3.tar.gz 247240 SHA256 40da66462df074c2a0fd209e6047972bc226125f6c484c8e367ea10e71ddd718 SHA512 c8cbc817afca7efbc2c0302c4fa3625874159c10e4664b502693acfa3ffcca34aee0a6f17528b45340f1e7f103f87ac72178f2ca4d589307bde12fe47ac5cf50 WHIRLPOOL 08b1b66813a558918ed3e9da8ae2d0db9947f11bf6fccb2ec6f8de1e359422d4431754e982a81a959129230aa39c70470bbad944451238f6c1136976286f303b
DIST Flask-WTF-0.13.1.tar.gz 253341 SHA256 20a5d72271677722ba6834e9e3327af777e0f6a758a3010c892c362107398512 SHA512 ea85898688c16ee0b5dc54055ac0f19564c83b60a433c8fb4dfa27651f9f16b62e6c30ede0f8246a18c19c7b36dd17272210fd1a38f463efe71e12c058bd0f27 WHIRLPOOL 834e86bd54c83fa4e225929b4cf984c197cabffdbdcb440d738cfb338e7dd10521bbceb0516e37fe5049e15898ce84327d453138b1a59962863ce9a9a8d61158
+DIST Flask-WTF-0.14.2.tar.gz 254903 SHA256 5d14d55cfd35f613d99ee7cba0fc3fbbe63ba02f544d349158c14ca15561cc36 SHA512 9d4b4b24eb24827aeb524699e6720eab384c42901a102daddd9fdc6b8dbc8eebec8c9d31a1e9052c9af4d61bd08eef8ef9dc4cdc8d9b950ff5bdd0201db1dfde WHIRLPOOL 1863485f4b69f02c8f23c7a0e046816ed596eed55489ff21e9e85f4c3bd3044e87ce9efc60e2fb21bc8b1d30da9b36ae38ec6667c481e0f1015dc79b556669e8
diff --git a/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild b/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild
new file mode 100644
index 00000000000..37fef397990
--- /dev/null
+++ b/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
+
+inherit distutils-r1
+
+MY_PN="Flask-WTF"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Simple integration of Flask and WTForms"
+HOMEPAGE="http://pythonhosted.org/Flask-WTF/ https://pypi.python.org/pypi/Flask-WTF"
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
+ >=dev-python/wtforms-1.0.5[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/flask-testing[${PYTHON_USEDEP}]
+ dev-python/flask-uploads[${PYTHON_USEDEP}]
+ dev-python/speaklater[${PYTHON_USEDEP}]
+ dev-python/flask-babel[${PYTHON_USEDEP}] )
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep 'dev-python/werkzeug[${PYTHON_USEDEP}]' python2_7 )
+ )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+ # tries to access things over the network
+ rm tests/test_recaptcha.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ use doc && emake -C docs html
+}
+
+python_test() {
+ nosetests || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/_build/html/. )
+ distutils-r1_python_install_all
+}
next reply other threads:[~2017-09-16 14:23 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-16 14:23 Patrick Lauer [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-05-06 13:30 [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-wtf/ Michał Górny
2022-05-06 12:45 Jakov Smolić
2022-04-01 7:00 Arthur Zamarin
2022-03-24 22:50 Jakov Smolić
2021-12-15 16:54 Michał Górny
2021-12-15 16:45 Jakov Smolić
2021-11-14 14:03 Louis Sautier
2021-11-08 8:31 Michał Górny
2021-08-24 18:20 Arthur Zamarin
2021-08-24 18:20 Arthur Zamarin
2021-07-12 22:53 Michał Górny
2021-07-12 21:50 Sam James
2021-06-04 14:40 Michał Górny
2021-05-25 18:42 Michał Górny
2021-05-25 18:42 Michał Górny
2021-05-25 5:13 Michał Górny
2020-07-09 5:14 Michał Górny
2020-07-09 5:14 Michał Górny
2020-07-09 5:14 Michał Górny
2020-06-24 7:07 Michał Górny
2020-05-04 14:25 Michał Górny
2020-05-04 14:25 Michał Górny
2020-02-05 21:28 Andreas Sturmlechner
2020-02-05 13:24 Michał Górny
2019-12-01 19:27 Andreas Sturmlechner
2019-07-17 13:58 Louis Sautier
2018-10-12 0:08 Virgil Dupras
2018-06-24 14:09 Jason Zaman
2018-06-20 18:46 Louis Sautier
2018-04-29 7:35 Michał Górny
2018-01-03 23:35 Michał Górny
2017-12-22 16:32 Jason Zaman
2016-10-20 17:30 Patrick Lauer
2016-04-18 9:06 Ian Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1505571783.445251ac818b3ded7203193f25753074534f4c98.patrick@gentoo \
--to=patrick@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox