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 65E001382C5 for ; Fri, 18 May 2018 11:33:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B828E08F1; Fri, 18 May 2018 11:33:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 6FD08E08F1 for ; Fri, 18 May 2018 11:33:32 +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 2B80F335C79 for ; Fri, 18 May 2018 11:33:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BE0A286 for ; Fri, 18 May 2018 11:33:29 +0000 (UTC) From: "Aaron Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Swenson" Message-ID: <1526643202.c7d27c841dd1aa2ba21bd49711629d95850ad9fb.titanofold@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-paranoid/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-paranoid/Manifest dev-python/flask-paranoid/flask-paranoid-0.2.0.ebuild X-VCS-Directories: dev-python/flask-paranoid/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: c7d27c841dd1aa2ba21bd49711629d95850ad9fb X-VCS-Branch: master Date: Fri, 18 May 2018 11:33:29 +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: ee91f60a-05f0-46a1-87bf-083a3df1553f X-Archives-Hash: c7619013312af2149fb6ceea3b9a14e2 commit: c7d27c841dd1aa2ba21bd49711629d95850ad9fb Author: Aaron W. Swenson gentoo org> AuthorDate: Fri May 18 11:33:22 2018 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Fri May 18 11:33:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7d27c84 dev-python/flask-paranoid: Bump to 0.2.0 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-python/flask-paranoid/Manifest | 1 + .../flask-paranoid/flask-paranoid-0.2.0.ebuild | 35 ++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/dev-python/flask-paranoid/Manifest b/dev-python/flask-paranoid/Manifest index ee7466d2f4e..da280cc297e 100644 --- a/dev-python/flask-paranoid/Manifest +++ b/dev-python/flask-paranoid/Manifest @@ -1 +1,2 @@ DIST Flask-Paranoid-0.1.0.tar.gz 2619 BLAKE2B d161f711a2b4b0164dbe6b85a8b650703f6154a23b271305a37fdfc5f938963a2135b3b20b66833d8a993175098cafebcdae70361405d59ec25e72030a03ce59 SHA512 435b679d7ad027d813b887bfa1211318aa122c6bded879dcb3e803535671e21f81e52fd5abb3b82c998d862441e6b5123290f4bb2da70a4dec391b05601eb639 +DIST Flask-Paranoid-0.2.0.tar.gz 2630 BLAKE2B d103651dee2560ff6dfd0014da5830848dafe92c7ad5857bc46fc88dd69ab37d4a9443f4682ce8e94b965de646406d4cfda2dda8719bdf767824bf9a2e20a1f9 SHA512 3a5c48815715d3188d12c779dd229cad5a97936832727d58277b0b717d0995ac1ea7cac6a8061a5bf656f8f976cb06b27654f6a4c06e2747a56f45ba92391f49 diff --git a/dev-python/flask-paranoid/flask-paranoid-0.2.0.ebuild b/dev-python/flask-paranoid/flask-paranoid-0.2.0.ebuild new file mode 100644 index 00000000000..e57faa05ac2 --- /dev/null +++ b/dev-python/flask-paranoid/flask-paranoid-0.2.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN="Flask-Paranoid" +MY_P=${MY_PN}-${PV} + +DISTUTILS_IN_SOURCE_BUILD=1 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +inherit distutils-r1 + +DESCRIPTION="Simple user session protection extension for Flask" +HOMEPAGE="https://github.com/miguelgrinberg/flask-paranoid/" +SRC_URI="mirror://pypi/F/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" + +SLOT="0" + +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( dev-python/tox[${PYTHON_USEDEP}] ) +" + +S=${WORKDIR}/${MY_P} + +python_test() { + TOXENV=$(echo ${PYTHON} | sed 's:[^py0-9]::g') + echo "This is the setting of PYTHON: ${TOXENV}; and some stuff" + tox || die "Testing failed with ${EPYTHON}" +}