summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-23 14:33:31 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-23 14:33:31 +0000
commit58253c0f589b7793a77d62799278e40e8c92ed5b (patch)
treec476221f9042253593d03a927ce19a8fe7eb1318 /dev-python/wtforms
parentVersion bump wrt #332533 by Alexandre Rostovtsev. (diff)
downloadgentoo-2-58253c0f589b7793a77d62799278e40e8c92ed5b.tar.gz
gentoo-2-58253c0f589b7793a77d62799278e40e8c92ed5b.tar.bz2
gentoo-2-58253c0f589b7793a77d62799278e40e8c92ed5b.zip
Delete older ebuild.
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/wtforms')
-rw-r--r--dev-python/wtforms/ChangeLog6
-rw-r--r--dev-python/wtforms/wtforms-0.6.ebuild55
2 files changed, 5 insertions, 56 deletions
diff --git a/dev-python/wtforms/ChangeLog b/dev-python/wtforms/ChangeLog
index 5d73c193f8de..c5575f477085 100644
--- a/dev-python/wtforms/ChangeLog
+++ b/dev-python/wtforms/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/wtforms
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wtforms/ChangeLog,v 1.9 2010/10/22 14:46:10 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/wtforms/ChangeLog,v 1.10 2010/10/23 14:33:31 arfrever Exp $
+
+ 23 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -wtforms-0.6.ebuild:
+ Delete.
22 Oct 2010; Christian Faulhammer <fauli@gentoo.org> wtforms-0.6.1.ebuild:
stable x86, bug 341515
diff --git a/dev-python/wtforms/wtforms-0.6.ebuild b/dev-python/wtforms/wtforms-0.6.ebuild
deleted file mode 100644
index b7a47e8e3c68..000000000000
--- a/dev-python/wtforms/wtforms-0.6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/wtforms/wtforms-0.6.ebuild,v 1.3 2010/06/14 07:46:11 phajdan.jr Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-MY_PN="WTForms"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Flexible forms validation and rendering library for python web development"
-HOMEPAGE="http://wtforms.simplecodes.com/ http://pypi.python.org/pypi/WTForms"
-SRC_URI="http://pypi.python.org/packages/source/W/${MY_PN}/${MY_P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-S="${WORKDIR}/${MY_P}"
-
-DEPEND="doc? ( >=dev-python/sphinx-0.6 )"
-RDEPEND=""
-RESTRICT_PYTHON_ABIS="3.*"
-
-DOCS="AUTHORS.txt CHANGES.txt INSTALL.txt LICENSE.txt README.txt"
-
-src_compile() {
- distutils_src_compile
-
- if use doc; then
- cd docs
- einfo "Generation of documentation"
- PYTHONPATH=".." emake html || die "Building of documentation failed"
- fi
-}
-
-src_test() {
- cd tests
- testing() {
- "$(PYTHON)" runtests.py
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml -r docs/_build/html/* || die "Installation of documentation failed"
- fi
-}