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-compress/
Date: Wed, 16 Jun 2021 19:33:52
Message-Id: 1623872021.1b7703bce21a2918e6d7ce68c29d1177a898f737.mgorny@gentoo
1 commit: 1b7703bce21a2918e6d7ce68c29d1177a898f737
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 16 19:16:38 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 16 19:33:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b7703bc
7
8 dev-python/flask-compress: Bump to 1.10.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/flask-compress/Manifest | 1 +
13 .../flask-compress/flask-compress-1.10.1.ebuild | 27 ++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/flask-compress/Manifest b/dev-python/flask-compress/Manifest
17 index cbd912fea98..f6522bf4f7e 100644
18 --- a/dev-python/flask-compress/Manifest
19 +++ b/dev-python/flask-compress/Manifest
20 @@ -1,2 +1,3 @@
21 DIST Flask-Compress-1.10.0.tar.gz 12271 BLAKE2B e120dc8f28a686e01d9e8d949d765cd7d05d11322195027ad499a514a4f1d35d79e28627d79abe6279d53ff95d3fe0f43f3561868904ec9ff903925046c5c141 SHA512 6166b4ac303f4fa373615d44e44b628448548e55591f1fe4eea8085f4f441fffe82e9d1419444f31581975fb49ed9ed5c32e594bc97e386e97df9a898f40b469
22 +DIST Flask-Compress-1.10.1.tar.gz 12272 BLAKE2B 857319ea7fabece977429a810706314bc6a7984f2fb4c2ac3ed604fee0494fa60d45ab00a253bf4a3e9394d399f20f23d806744676597b2064bfbbd6f7b11c46 SHA512 fb94aef71f59e38a6058f5ef799c8973d258cf624b1d8bf0a991cac2e4eabb73e2836ce351faa73bc7640720396183212a6dc8d72428b53ceb3473f7b61f0d27
23 DIST Flask-Compress-1.9.0.tar.gz 10322 BLAKE2B 4dddfd8a5c4c182a0cb3c5f346ccca611517ab6471dd23512c885e3e370ac09f9a099994afd2ee28eae47cca6cba2d49220d8733103e6cdcfbae03b98a2480f1 SHA512 5f13f20a3a2f8e646a4324cf75a419ea5111252db701a17dd37bbafdb9228d0e279a6c957c5cfd69468bbdffb435e37a50e0dcf5d1a160f7397df1e6a9e6ac9e
24
25 diff --git a/dev-python/flask-compress/flask-compress-1.10.1.ebuild b/dev-python/flask-compress/flask-compress-1.10.1.ebuild
26 new file mode 100644
27 index 00000000000..a3ed51356ad
28 --- /dev/null
29 +++ b/dev-python/flask-compress/flask-compress-1.10.1.ebuild
30 @@ -0,0 +1,27 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_PN="Flask-Compress"
41 +MY_P="${MY_PN}-${PV}"
42 +
43 +DESCRIPTION="Compress responses in your Flask app with gzip"
44 +HOMEPAGE="https://pypi.org/project/Flask-Compress/"
45 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
46 +S="${WORKDIR}/${MY_P}"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +RDEPEND="
53 + app-arch/brotli[python,${PYTHON_USEDEP}]
54 + dev-python/flask[${PYTHON_USEDEP}]
55 +"
56 +
57 +distutils_enable_tests pytest