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/flake8/
Date: Fri, 16 Apr 2021 08:30:09
Message-Id: 1618561772.24e2db8cefc364e9ecd0613f95fe7977574ea32a.mgorny@gentoo
1 commit: 24e2db8cefc364e9ecd0613f95fe7977574ea32a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 16 08:27:10 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 16 08:29:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24e2db8c
7
8 dev-python/flake8: Bump to 3.9.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/flake8/Manifest | 1 +
13 dev-python/flake8/flake8-3.9.1.ebuild | 39 +++++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/flake8/Manifest b/dev-python/flake8/Manifest
17 index 29a6978be30..f0818db095a 100644
18 --- a/dev-python/flake8/Manifest
19 +++ b/dev-python/flake8/Manifest
20 @@ -1,2 +1,3 @@
21 DIST flake8-3.8.4.tar.gz 163583 BLAKE2B 221234931365912adffec99c7c6761d2f35918222bee902ade4d8009d24f6918c66d23fc4b973fe653152cc6857b62ba859780b0d9de53fb91b7ea0379bee9d0 SHA512 51ed09beed50175573e6184b404431b3f89aa6594c40c70ed8288982fe12c2a68992e36d69c99013188f03555bf9fef1ba4f111f8e389cef1e1daa69b41ff5b0
22 DIST flake8-3.9.0.tar.gz 164144 BLAKE2B e265a392445038b04ee2d8c24a763b4b1eebe9682295b70d14c07dbd739b34abbe5f76bc01dd31df7c666a106b62c5312c0522d6771c5649a91d2720a9d14467 SHA512 bfeaa13737f23318da8673c28f0f10463c0aad71a01fe70797321de3b9b7efbe7b5d0ee0664b8440db6b35d7f29f157848757d55fcac531a0c6da6371d681b65
23 +DIST flake8-3.9.1.tar.gz 164752 BLAKE2B 07f5049f8445bce87cee1509769e13f275f0e531b78a2769218233ac02a45ed7a8dc061f5253e4c136b47bfddfb574527d99dfff36d338516824167335f9a5fc SHA512 c592308fa32ae73982e6441624a989bdc213b639b0473f7342e75f11e3844282a713dce1f4649575d375766fa1d6b2a1840707109ac8d4672c0d2917f89a3d33
24
25 diff --git a/dev-python/flake8/flake8-3.9.1.ebuild b/dev-python/flake8/flake8-3.9.1.ebuild
26 new file mode 100644
27 index 00000000000..4b9b899ae91
28 --- /dev/null
29 +++ b/dev-python/flake8/flake8-3.9.1.ebuild
30 @@ -0,0 +1,39 @@
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=( pypy3 python3_{7..9} )
37 +DISTUTILS_USE_SETUPTOOLS=rdepend
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A wrapper around PyFlakes, pep8 & mccabe"
42 +HOMEPAGE="https://gitlab.com/pycqa/flake8 https://pypi.org/project/flake8/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-macos"
48 +
49 +# requires.txt inc. mccabe however that creates a circular dep
50 +RDEPEND="
51 + >=dev-python/pyflakes-2.3.0[${PYTHON_USEDEP}]
52 + <dev-python/pyflakes-2.4.0[${PYTHON_USEDEP}]
53 + >=dev-python/pycodestyle-2.7.0[${PYTHON_USEDEP}]
54 + <dev-python/pycodestyle-2.8.0[${PYTHON_USEDEP}]
55 + $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' pypy3 python3_{6,7})
56 +"
57 +PDEPEND="
58 + >=dev-python/mccabe-0.6.0[${PYTHON_USEDEP}]
59 + <dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]
60 +"
61 +BDEPEND="${RDEPEND}
62 + test? (
63 + ${PDEPEND}
64 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
65 + )
66 +"
67 +
68 +distutils_enable_sphinx docs/source dev-python/sphinx-prompt dev-python/sphinx_rtd_theme
69 +distutils_enable_tests --install pytest