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 D18E8138334 for ; Thu, 18 Jul 2019 22:26:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12BACE082F; Thu, 18 Jul 2019 22:26:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E812CE082F for ; Thu, 18 Jul 2019 22:25:59 +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 DDB66348021 for ; Thu, 18 Jul 2019 22:25:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CF69627 for ; Thu, 18 Jul 2019 22:25:57 +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: <1563488737.0af4d0acb12601bd5eb7bf62fe2d657c1ee56637.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-paginate/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-paginate/flask-paginate-0.5.3-r1.ebuild dev-python/flask-paginate/flask-paginate-0.5.3.ebuild X-VCS-Directories: dev-python/flask-paginate/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 0af4d0acb12601bd5eb7bf62fe2d657c1ee56637 X-VCS-Branch: master Date: Thu, 18 Jul 2019 22:25:57 +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: 7fc64c8e-a571-42ee-aa0c-8390f50b09b6 X-Archives-Hash: 61aea3f104a8654bca23adfbb7ffeca7 commit: 0af4d0acb12601bd5eb7bf62fe2d657c1ee56637 Author: Louis Sautier gentoo org> AuthorDate: Thu Jul 18 22:25:24 2019 +0000 Commit: Louis Sautier gentoo org> CommitDate: Thu Jul 18 22:25:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0af4d0ac dev-python/flask-paginate: add PyPy{,3}, fix test dependencies Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Louis Sautier gentoo.org> ...sk-paginate-0.5.3.ebuild => flask-paginate-0.5.3-r1.ebuild} | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-python/flask-paginate/flask-paginate-0.5.3.ebuild b/dev-python/flask-paginate/flask-paginate-0.5.3-r1.ebuild similarity index 73% rename from dev-python/flask-paginate/flask-paginate-0.5.3.ebuild rename to dev-python/flask-paginate/flask-paginate-0.5.3-r1.ebuild index 3bdd94ff930..1cdce8d7c42 100644 --- a/dev-python/flask-paginate/flask-paginate-0.5.3.ebuild +++ b/dev-python/flask-paginate/flask-paginate-0.5.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7}} ) inherit distutils-r1 @@ -11,15 +11,19 @@ MY_COMMIT="510ad833106134711868653fb597bf75ea8ac34f" DESCRIPTION="Pagination support for flask" HOMEPAGE="https://flask-paginate.readthedocs.io" +# https://github.com/lixxu/flask-paginate/issues/68 SRC_URI="https://github.com/lixxu/flask-paginate/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" -#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="test" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) +" S="${WORKDIR}/${PN}-${MY_COMMIT}"