Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flake8/
Date: Thu, 25 Oct 2018 10:25:52
Message-Id: 1540462522.fad1ac4bf2da67bc8b98f04c07173881609c16f4.sping@gentoo
1 commit: fad1ac4bf2da67bc8b98f04c07173881609c16f4
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 25 10:14:51 2018 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 25 10:15:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad1ac4b
7
8 dev-python/flake8: 3.6.0
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 dev-python/flake8/Manifest | 1 +
14 dev-python/flake8/flake8-3.6.0.ebuild | 51 +++++++++++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/dev-python/flake8/Manifest b/dev-python/flake8/Manifest
18 index 0e7f55083eb..eb726a169dd 100644
19 --- a/dev-python/flake8/Manifest
20 +++ b/dev-python/flake8/Manifest
21 @@ -2,3 +2,4 @@ DIST flake8-2.1.0.tar.gz 25010 BLAKE2B 23f89456a28815700f88e2eb3abd29e0936b0c40b
22 DIST flake8-2.2.5.tar.gz 28333 BLAKE2B 016b5b05b7448dec762e7d5e06fad9d631351d02ba5941a34760c51406164dc2c5508e3c4c54b52c49738c193f815a816d9cd39558bfecaeb83cfddbc6dcc63f SHA512 fe5e06d3a7699e3f348181108f1ab3ee9eb1f2b0422de582a172d3a4aed42a5cf839ef8a5b5b113da1e0c3c2b53ed7b43af1ca24314ea842d0d3d3735eba1dee
23 DIST flake8-2.5.4.tar.gz 81663 BLAKE2B 89bd5965fe1f6862cadbfc7b614a819a13d4ab147994485542ba519d6151ab11d4b496066c74141020858f468050e7b6dc3d6ce3a89ddf809e9cdc6d130984ef SHA512 31cbec556fc41361ac464d2547275e319ab663c907a4a8644113a2288a9f349bcfbec85197b6dfa13a7db9e82419f01e0f2abc84a347e133c144ea137e0daa28
24 DIST flake8-3.5.0.tar.gz 140608 BLAKE2B 938ad4406370da27155512355432edd23a824db1d6ee635591628fefad43ee1116256ae7f240496d93941800212ea2479be73fb9ee9bd03c9a54ab70bbce452f SHA512 ac5d1bd9c44ed76c9e5cbd941b24bb552aa76e156b24ccda6cc8440ee90f3a574fdb393665adc75298e4f57111d7ab3115ef21ef9088fb327d0a9703d442450c
25 +DIST flake8-3.6.0.tar.gz 144684 BLAKE2B 3a6edf83860c6c6a59c150cde47b22eeb17b9e83cb23e4d8f747715b8867093a7f1d1e2bc55c9f9cf43b69463746026d839b0177f2abef746581563a670c3ce0 SHA512 f4377bc7806074a88f88b3652c3061583e576ee515b2b741cee9c6dc18f84f34a7807c93fda9dca3d8b006e379dcee60bb3ae20e6a2e62fd216a82a2b36f2eb5
26
27 diff --git a/dev-python/flake8/flake8-3.6.0.ebuild b/dev-python/flake8/flake8-3.6.0.ebuild
28 new file mode 100644
29 index 00000000000..5e7f69a1d64
30 --- /dev/null
31 +++ b/dev-python/flake8/flake8-3.6.0.ebuild
32 @@ -0,0 +1,51 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="A wrapper around PyFlakes, pep8 & mccabe"
43 +HOMEPAGE="https://gitlab.com/pycqa/flake8 https://pypi.org/project/flake8/"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
49 +IUSE="test"
50 +
51 +# requires.txt inc. mccabe however that creates a circular dep
52 +RDEPEND="
53 + >=dev-python/pyflakes-2.0.0[${PYTHON_USEDEP}]
54 + <dev-python/pyflakes-2.1.0[${PYTHON_USEDEP}]
55 + >=dev-python/pycodestyle-2.4.0[${PYTHON_USEDEP}]
56 + <dev-python/pycodestyle-2.5.0[${PYTHON_USEDEP}]
57 + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' 'python2*' 'pypy*' )
58 + $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' 'python2*' pypy )
59 +"
60 +PDEPEND="
61 + >=dev-python/mccabe-0.6.0[${PYTHON_USEDEP}]
62 + <dev-python/mccabe-0.7.0[${PYTHON_USEDEP}]
63 +"
64 +DEPEND="${RDEPEND}
65 + dev-python/setuptools[${PYTHON_USEDEP}]
66 + test? (
67 + ${PDEPEND}
68 + dev-python/pytest[${PYTHON_USEDEP}]
69 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
70 + )
71 +"
72 +
73 +python_prepare_all() {
74 + # Flake8 falsely assumes it needs pytest-runner unconditionally and will
75 + # try to install it, causing sandbox violations.
76 + sed -i -e "/setup_requires=\['pytest-runner'\],/d" setup.py || die
77 +
78 + distutils-r1_python_prepare_all
79 +}
80 +
81 +python_test() {
82 + py.test -v || die "Tests fail with ${EPYTHON}"
83 +}