From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4C635138334 for ; Fri, 12 Oct 2018 00:09:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56037E093D; Fri, 12 Oct 2018 00:09:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 27A4FE093D for ; Fri, 12 Oct 2018 00:09:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9006F335CEF for ; Fri, 12 Oct 2018 00:08:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0C55437 for ; Fri, 12 Oct 2018 00:08:52 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1539302869.7f7450a60cd31d1d78e3e084dcb7a77909bddc68.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-wtf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-wtf/flask-wtf-0.14.2.ebuild X-VCS-Directories: dev-python/flask-wtf/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 7f7450a60cd31d1d78e3e084dcb7a77909bddc68 X-VCS-Branch: master Date: Fri, 12 Oct 2018 00:08:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b0d8cf8d-7de7-426f-98ed-d619e8178144 X-Archives-Hash: f2f334b3922afca7d209a2e49c3ef9d4 commit: 7f7450a60cd31d1d78e3e084dcb7a77909bddc68 Author: Virgil Dupras gentoo org> AuthorDate: Fri Oct 12 00:05:25 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Fri Oct 12 00:07:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7450a6 dev-python/flask-wtf: remove old This version was the last dependency of dev-python/flask-testing, which can now be removed. Bug: https://bugs.gentoo.org/285169 Signed-off-by: Virgil Dupras gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 dev-python/flask-wtf/flask-wtf-0.14.2.ebuild | 54 ---------------------------- 1 file changed, 54 deletions(-) diff --git a/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild b/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild deleted file mode 100644 index 102f1593796..00000000000 --- a/dev-python/flask-wtf/flask-wtf-0.14.2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2018 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="https://pythonhosted.org/Flask-WTF/ https://pypi.org/project/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 -}