Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-login/
Date: Mon, 02 May 2022 08:27:09
Message-Id: 1651480016.31ff0d9e8cb9203da31d6a08eb57b2716a9c4a57.mgorny@gentoo
1 commit: 31ff0d9e8cb9203da31d6a08eb57b2716a9c4a57
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 07:50:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 08:26:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ff0d9e
7
8 dev-python/flask-login: Bump to 0.6.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/flask-login/Manifest | 1 +
13 dev-python/flask-login/flask-login-0.6.1.ebuild | 42 +++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/flask-login/Manifest b/dev-python/flask-login/Manifest
17 index 22e1532de5fa..0a9dd00a5e68 100644
18 --- a/dev-python/flask-login/Manifest
19 +++ b/dev-python/flask-login/Manifest
20 @@ -1 +1,2 @@
21 DIST flask-login-0.6.0.gh.tar.gz 47368 BLAKE2B 799591ec0bd538e6cc467a80b3a8891a97ee60bbfcf01eb6ba7be1ab48e7ea9be22e8777801621b39bf089c00d7914f7b045e4e6617e45d623354276ba7e245b SHA512 0766ef5702105bc2cea7082b2b2a9bebed282a9166757adbc91a02c4adcc291d41a3217e8b9566b6bb4778db4a1d2453edb0b7a727c9bff2673833d27b69148e
22 +DIST flask-login-0.6.1.gh.tar.gz 48215 BLAKE2B eb1fa81aad9bd8cf663b3ea85649f90f39d7a91c4c771e697b0cb7d66c7e4a5994befbaad36a7deba6f5aea27e6f47ff616aa00cd073433851cf8a9248e4b3a3 SHA512 f220e24079923c669d1ce27fdbc7ff8e07e92bc947e2708034cb349176e33ae0adf36ef6c30e8328f592d9a3eb6d0796dc577033f07c33ef0bc48c13a11a942e
23
24 diff --git a/dev-python/flask-login/flask-login-0.6.1.ebuild b/dev-python/flask-login/flask-login-0.6.1.ebuild
25 new file mode 100644
26 index 000000000000..8ad7a727fcac
27 --- /dev/null
28 +++ b/dev-python/flask-login/flask-login-0.6.1.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Login session support for Flask"
41 +HOMEPAGE="
42 + https://github.com/maxcountryman/flask-login/
43 + https://pypi.org/project/Flask-Login/
44 +"
45 +SRC_URI="
46 + https://github.com/maxcountryman/flask-login/archive/${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="BSD"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
53 +
54 +RDEPEND="
55 + >=dev-python/flask-1.0.4[${PYTHON_USEDEP}]
56 + >=dev-python/werkzeug-1.0.1[${PYTHON_USEDEP}]
57 +"
58 +DEPEND="
59 + test? (
60 + dev-python/asgiref[${PYTHON_USEDEP}]
61 + dev-python/blinker[${PYTHON_USEDEP}]
62 + dev-python/semantic_version[${PYTHON_USEDEP}]
63 + )
64 +"
65 +
66 +distutils_enable_sphinx docs
67 +distutils_enable_tests pytest
68 +
69 +python_test() {
70 + epytest -p no:httpbin
71 +}