public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tiziano Müller" <dev-zero@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wtforms/
Date: Fri,  5 Feb 2016 16:10:12 +0000 (UTC)	[thread overview]
Message-ID: <1454688565.6c1a96064c15f70d9f8fd521cba5e7c5b33deea7.dev-zero@gentoo> (raw)

commit:     6c1a96064c15f70d9f8fd521cba5e7c5b33deea7
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  5 16:09:25 2016 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Fri Feb  5 16:09:25 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c1a9606

dev-python/wtforms: version bump to 2.1

Fix dependencies for tests and disable broken test (bug #527174). Use EAPI-6.

Package-Manager: portage-2.2.26

 dev-python/wtforms/Manifest           |  1 +
 dev-python/wtforms/wtforms-2.1.ebuild | 56 +++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/wtforms/Manifest b/dev-python/wtforms/Manifest
index b49d14e..c362e7c 100644
--- a/dev-python/wtforms/Manifest
+++ b/dev-python/wtforms/Manifest
@@ -1,2 +1,3 @@
 DIST WTForms-2.0.1.zip 444489 SHA256 62859c74be4683601b5265ba83b9babd8a8f1cdd0ba31600fa1e70d295cd4ed2 SHA512 abae7adb1c7ab46abf401a536a248bf3703be2f0be9f5d8d49191f18855a6989e4c7acb232b006d5809fc13428a9e6214f734be5b917648778169c7dd258eaab WHIRLPOOL d6177e7f9ff5e53085081fb4580d728c08ac19230470435a85a0735745f303b010540ce01e4071735a49f32bb3321d17557511f958452457a882705c3139da9b
 DIST WTForms-2.0.2.zip 449167 SHA256 10737758ceae03b53021f3aa7e81bfc8dd6f679c879ffeb5e64ac6570facb6c1 SHA512 35d52b2991588d1aef2ed7df5713f5cdd7d64affb0879ccf6b40b9194c3b9492af8f853353df55f833bec268d4332d49cf4c8e0592c21a11cccddaddb3650c52 WHIRLPOOL 7664b533174b44922e8ce733b6d284a1c8814190bab631cf094e0e7f841152502329f203e34638bb6aea2386b74a1afa7e5de09ada06188a39989f4f860e875e
+DIST WTForms-2.1.zip 553644 SHA256 ffdf10bd1fa565b8233380cb77a304cd36fd55c73023e91d4b803c96bc11d46f SHA512 2bdac0a35eca465021df9fb37dc0acd87bf487c6158b782d48870e9d5aab6ed3eb635af89bb38b9e8419688185f7c7b7875e68f7435d94bca8b074b2dddb12a0 WHIRLPOOL 91bdb0db56cc7171a87c72a0892f2e4a19ed25398f596996dcba2c4ffb0f2c61b45caeab4da48d7d43a80cccaf9ac650be936aedf61789f01ecdac6cbe657c10

diff --git a/dev-python/wtforms/wtforms-2.1.ebuild b/dev-python/wtforms/wtforms-2.1.ebuild
new file mode 100644
index 0000000..60833d9
--- /dev/null
+++ b/dev-python/wtforms/wtforms-2.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
+
+inherit distutils-r1
+
+MY_PN="WTForms"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Flexible forms validation and rendering library for python web development"
+HOMEPAGE="http://wtforms.simplecodes.com/ https://pypi.python.org/pypi/WTForms"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+S="${WORKDIR}/${MY_P}"
+
+RDEPEND="
+	app-arch/unzip
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] )"
+DEPEND="${RDEPEND}
+	test? (
+		dev-python/Babel[${PYTHON_USEDEP}]
+		dev-python/sqlalchemy[${PYTHON_USEDEP}]
+		dev-python/webob[${PYTHON_USEDEP}]
+		dev-python/python-dateutil[${PYTHON_USEDEP}]
+	)"
+
+python_prepare_all() {
+	# Extension-tests are written for an older version of Django
+	sed \
+		-e "s|'ext_django.tests', ||" \
+		-i tests/runtests.py || die
+	distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	esetup.py test
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( docs/_build/html/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2016-02-05 16:10 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-05 16:10 Tiziano Müller [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-09 10:05 [gentoo-commits] repo/gentoo:master commit in: dev-python/wtforms/ Michał Górny
2024-11-09  9:57 Arthur Zamarin
2024-10-22  3:10 Michał Górny
2024-10-21  4:35 Michał Górny
2024-06-17 17:37 Michał Górny
2024-01-24 19:07 Michał Górny
2024-01-24 19:05 Michał Górny
2024-01-07  6:16 Michał Górny
2023-11-24 16:05 Michał Górny
2023-11-23 18:55 Michał Górny
2023-11-11 20:36 Michał Górny
2023-11-11 19:21 Sam James
2023-11-01 16:05 Michał Górny
2023-10-10 18:11 Michał Górny
2023-05-31  9:51 Michał Górny
2023-03-25 17:19 Michał Górny
2022-06-22 11:50 Michał Górny
2022-06-22 10:10 Agostino Sarubbo
2022-05-19  7:59 Michał Górny
2022-05-19  7:59 Michał Górny
2022-03-24 22:50 Jakov Smolić
2022-01-27 12:34 Michał Górny
2022-01-26 20:18 Jakov Smolić
2021-12-23 18:04 Arthur Zamarin
2021-12-10 17:12 Arthur Zamarin
2021-12-10 11:54 Jakov Smolić
2021-11-08  8:31 Michał Górny
2021-06-04 14:40 Michał Górny
2020-09-18 15:53 Michał Górny
2020-09-08 19:11 Michał Górny
2020-08-05 15:10 Michał Górny
2020-07-31  6:21 Michał Górny
2020-07-25 11:17 Sam James
2020-07-25  8:31 Michał Górny
2020-06-24  7:07 Michał Górny
2020-06-24  7:07 Michał Górny
2020-03-29 12:03 Michał Górny
2020-02-05 21:28 Andreas Sturmlechner
2019-11-19 15:40 Agostino Sarubbo
2019-11-18 12:03 Agostino Sarubbo
2019-07-15 13:13 Louis Sautier
2019-07-15 13:13 Louis Sautier
2019-07-15 13:13 Louis Sautier
2017-05-11 12:08 Manuel Rüger
2017-01-19 10:37 Agostino Sarubbo
2015-09-11  7:53 Justin Lecher

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=1454688565.6c1a96064c15f70d9f8fd521cba5e7c5b33deea7.dev-zero@gentoo \
    --to=dev-zero@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