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 11E51138334 for ; Sat, 28 Dec 2019 19:38:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1EBADE0CD5; Sat, 28 Dec 2019 19:38:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 075BBE0CD5 for ; Sat, 28 Dec 2019 19:38:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D5DB034DC74 for ; Sat, 28 Dec 2019 19:38:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EE743D for ; Sat, 28 Dec 2019 19:38:26 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1577561871.5b8ea5bbb40843dfd21a03a388ccdd94d898516b.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-sqlalchemy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-sqlalchemy/flask-sqlalchemy-2.4.1-r1.ebuild X-VCS-Directories: dev-python/flask-sqlalchemy/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 5b8ea5bbb40843dfd21a03a388ccdd94d898516b X-VCS-Branch: master Date: Sat, 28 Dec 2019 19:38:26 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 989a0525-2f90-45c4-8c5e-dbe8bbde8d78 X-Archives-Hash: 96c2acc0f718d952c18fff930c73dd3b commit: 5b8ea5bbb40843dfd21a03a388ccdd94d898516b Author: Louis Sautier gentoo org> AuthorDate: Sat Dec 28 19:33:58 2019 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Dec 28 19:37:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b8ea5bb dev-python/flask-sqlalchemy: fix dependencies, add PyPy3+Py3.8 * Move doc dependencies out of RDEPEND. * Use helpers for doc and tests. 'pytest' without 'die' was useless. * Rely on the default value of DISTUTILS_USE_SETUPTOOLS=bdepend. * Remove useless DISTUTILS_IN_SOURCE_BUILD=1. Bug: https://bugs.gentoo.org/701916 Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: Louis Sautier gentoo.org> .../flask-sqlalchemy-2.4.1-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.4.1-r1.ebuild b/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.4.1-r1.ebuild new file mode 100644 index 00000000000..59f37152e7d --- /dev/null +++ b/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.4.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7,8}} ) + +inherit distutils-r1 + +MY_PN="Flask-SQLAlchemy" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="SQLAlchemy support for Flask applications" +HOMEPAGE="https://pypi.org/project/Flask-SQLAlchemy/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/flask-0.10[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-0.8.0[${PYTHON_USEDEP}] +" +distutils_enable_tests pytest +distutils_enable_sphinx docs dev-python/pallets-sphinx-themes \ + dev-python/sphinx-issues + +S="${WORKDIR}/${MY_P}"