public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/dev-zero:master commit in: dev-python/wtforms/
@ 2016-02-02  8:24 Tiziano Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Tiziano Müller @ 2016-02-02  8:24 UTC (permalink / raw
  To: gentoo-commits

commit:     294e3c22c6da2d2b88e568cdee8ec0f521e2e3c7
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  1 16:31:14 2016 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Mon Feb  1 16:31:14 2016 +0000
URL:        https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=294e3c22

dev-python/wtforms: add version bump with py-3.5 support

 dev-python/wtforms/Manifest           |  1 +
 dev-python/wtforms/metadata.xml       | 11 +++++++
 dev-python/wtforms/wtforms-2.1.ebuild | 56 +++++++++++++++++++++++++++++++++++
 3 files changed, 68 insertions(+)

diff --git a/dev-python/wtforms/Manifest b/dev-python/wtforms/Manifest
new file mode 100644
index 0000000..df19601
--- /dev/null
+++ b/dev-python/wtforms/Manifest
@@ -0,0 +1 @@
+DIST WTForms-2.1.zip 553644 SHA256 ffdf10bd1fa565b8233380cb77a304cd36fd55c73023e91d4b803c96bc11d46f SHA512 2bdac0a35eca465021df9fb37dc0acd87bf487c6158b782d48870e9d5aab6ed3eb635af89bb38b9e8419688185f7c7b7875e68f7435d94bca8b074b2dddb12a0 WHIRLPOOL 91bdb0db56cc7171a87c72a0892f2e4a19ed25398f596996dcba2c4ffb0f2c61b45caeab4da48d7d43a80cccaf9ac650be936aedf61789f01ecdac6cbe657c10

diff --git a/dev-python/wtforms/metadata.xml b/dev-python/wtforms/metadata.xml
new file mode 100644
index 0000000..3fc3226
--- /dev/null
+++ b/dev-python/wtforms/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="pypi">WTForms</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/wtforms/wtforms-2.1.ebuild b/dev-python/wtforms/wtforms-2.1.ebuild
new file mode 100644
index 0000000..87fcdf8
--- /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="5"
+
+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
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] dev/dev-zero:master commit in: dev-python/wtforms/
@ 2016-02-05 16:02 Tiziano Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Tiziano Müller @ 2016-02-05 16:02 UTC (permalink / raw
  To: gentoo-commits

commit:     66f4bc3227c3a5c5261907e42f393dd22d19a15b
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  5 16:02:20 2016 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Fri Feb  5 16:02:20 2016 +0000
URL:        https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=66f4bc32

dev-python/wtforms: use EAPI=6

 dev-python/wtforms/wtforms-2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/wtforms/wtforms-2.1.ebuild b/dev-python/wtforms/wtforms-2.1.ebuild
index 87fcdf8..60833d9 100644
--- a/dev-python/wtforms/wtforms-2.1.ebuild
+++ b/dev-python/wtforms/wtforms-2.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
+EAPI="6"
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] dev/dev-zero:master commit in: dev-python/wtforms/
@ 2016-02-26 10:11 Tiziano Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Tiziano Müller @ 2016-02-26 10:11 UTC (permalink / raw
  To: gentoo-commits

commit:     48c3772f968370e29f1225425d4b8d486fb074f1
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 26 07:31:44 2016 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Fri Feb 26 07:31:44 2016 +0000
URL:        https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=48c3772f

dev-python/wtforms: fix dependency mess

 dev-python/wtforms/wtforms-2.1.ebuild | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-python/wtforms/wtforms-2.1.ebuild b/dev-python/wtforms/wtforms-2.1.ebuild
index 60833d9..440b21d 100644
--- a/dev-python/wtforms/wtforms-2.1.ebuild
+++ b/dev-python/wtforms/wtforms-2.1.ebuild
@@ -22,17 +22,16 @@ IUSE="doc test"
 
 S="${WORKDIR}/${MY_P}"
 
-RDEPEND="
-	app-arch/unzip
+DEPEND="app-arch/unzip
 	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] )"
-DEPEND="${RDEPEND}
+	doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] )
 	test? (
 		dev-python/Babel[${PYTHON_USEDEP}]
 		dev-python/sqlalchemy[${PYTHON_USEDEP}]
 		dev-python/webob[${PYTHON_USEDEP}]
 		dev-python/python-dateutil[${PYTHON_USEDEP}]
 	)"
+RDEPEND=""
 
 python_prepare_all() {
 	# Extension-tests are written for an older version of Django


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] dev/dev-zero:master commit in: dev-python/wtforms/
@ 2016-03-17 10:50 Tiziano Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Tiziano Müller @ 2016-03-17 10:50 UTC (permalink / raw
  To: gentoo-commits

commit:     697fd9f7f7559a24839bb87d68bce4d0b113cf1a
Author:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 08:38:47 2016 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 08:38:47 2016 +0000
URL:        https://gitweb.gentoo.org/dev/dev-zero.git/commit/?id=697fd9f7

now in tree

 dev-python/wtforms/Manifest           |  1 -
 dev-python/wtforms/metadata.xml       | 11 -------
 dev-python/wtforms/wtforms-2.1.ebuild | 55 -----------------------------------
 3 files changed, 67 deletions(-)

diff --git a/dev-python/wtforms/Manifest b/dev-python/wtforms/Manifest
deleted file mode 100644
index df19601..0000000
--- a/dev-python/wtforms/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST WTForms-2.1.zip 553644 SHA256 ffdf10bd1fa565b8233380cb77a304cd36fd55c73023e91d4b803c96bc11d46f SHA512 2bdac0a35eca465021df9fb37dc0acd87bf487c6158b782d48870e9d5aab6ed3eb635af89bb38b9e8419688185f7c7b7875e68f7435d94bca8b074b2dddb12a0 WHIRLPOOL 91bdb0db56cc7171a87c72a0892f2e4a19ed25398f596996dcba2c4ffb0f2c61b45caeab4da48d7d43a80cccaf9ac650be936aedf61789f01ecdac6cbe657c10

diff --git a/dev-python/wtforms/metadata.xml b/dev-python/wtforms/metadata.xml
deleted file mode 100644
index 3fc3226..0000000
--- a/dev-python/wtforms/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>python@gentoo.org</email>
-		<name>Python</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="pypi">WTForms</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-python/wtforms/wtforms-2.1.ebuild b/dev-python/wtforms/wtforms-2.1.ebuild
deleted file mode 100644
index 440b21d..0000000
--- a/dev-python/wtforms/wtforms-2.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# 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}"
-
-DEPEND="app-arch/unzip
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	doc? ( >=dev-python/sphinx-0.6[${PYTHON_USEDEP}] )
-	test? (
-		dev-python/Babel[${PYTHON_USEDEP}]
-		dev-python/sqlalchemy[${PYTHON_USEDEP}]
-		dev-python/webob[${PYTHON_USEDEP}]
-		dev-python/python-dateutil[${PYTHON_USEDEP}]
-	)"
-RDEPEND=""
-
-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
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-03-17 10:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-26 10:11 [gentoo-commits] dev/dev-zero:master commit in: dev-python/wtforms/ Tiziano Müller
  -- strict thread matches above, loose matches on Subject: below --
2016-03-17 10:50 Tiziano Müller
2016-02-05 16:02 Tiziano Müller
2016-02-02  8:24 Tiziano Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox