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-paginate/
Date: Thu, 30 Dec 2021 08:57:48
Message-Id: 1640854654.abe8a551344ad0fa4ee11e5b527825909b95fa10.mgorny@gentoo
1 commit: abe8a551344ad0fa4ee11e5b527825909b95fa10
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 30 08:26:37 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 08:57:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abe8a551
7
8 dev-python/flask-paginate: Bump to 2021.12.28
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/flask-paginate/Manifest | 1 +
13 .../flask-paginate-2021.12.28.ebuild | 23 ++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-python/flask-paginate/Manifest b/dev-python/flask-paginate/Manifest
17 index fd262aab4ce1..f8a8abdd5e85 100644
18 --- a/dev-python/flask-paginate/Manifest
19 +++ b/dev-python/flask-paginate/Manifest
20 @@ -1 +1,2 @@
21 DIST flask-paginate-2021.10.26.tar.gz 120721 BLAKE2B dd37fa131baf20540620c350bca4a17f791df57c82fabd99e644891707259d330d4225fc666d3e5c31410bc17e10531bf735ab8a01e7129641fa81a9d8fbfe82 SHA512 86a782797a9401eecbbfc25c90834ed93d7c376c3eb6bc05f19edf7ad6f174aca01de9dc3b183c0c268e2995d81984fa1568e08aae8964e429c60f01b7b23736
22 +DIST flask-paginate-2021.12.28.tar.gz 120846 BLAKE2B 63c14a94db4c968ef22a84b28aee2ca3e223fa0a7a32e22644b02b718ae32ea9ece9177b85c66942165e01926b26bb599dd3ae47522ba9bbf9a1c68b7a5ce567 SHA512 3ff805ad2d30aadfd1affabde0b0caccf2c3c2efb54b0997f809e13a76c6db64082d0f003ba4485a824e48d5d2792d99bab5173059ebe5a4077a1aac99b3c4ca
23
24 diff --git a/dev-python/flask-paginate/flask-paginate-2021.12.28.ebuild b/dev-python/flask-paginate/flask-paginate-2021.12.28.ebuild
25 new file mode 100644
26 index 000000000000..49d2d8c73c6e
27 --- /dev/null
28 +++ b/dev-python/flask-paginate/flask-paginate-2021.12.28.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Pagination support for flask"
39 +HOMEPAGE="https://flask-paginate.readthedocs.io"
40 +SRC_URI="https://github.com/lixxu/flask-paginate/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
47 +
48 +distutils_enable_tests pytest
49 +
50 +python_test() {
51 + epytest tests/tests.py
52 +}