update update flake8-3.8.4-r1 (cannot be run with test)

This commit is contained in:
Andreas Billmeier 2020-11-21 09:58:15 +01:00 committed by Andreas Billmeier
parent d3677a7b11
commit 4a5611bd7b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 10 additions and 11 deletions

View File

@ -7,6 +7,7 @@
* bump beewi-smartclim-0.0.10
* update zigpy-0.28.0
* add plugwise-0.8.3
* update flake8-3.8.4-r1 (cannot be run with test)
2020-11-19 homeassistant-0.118.1
* bump home-assistant-frontend-20201111.2

View File

@ -7,5 +7,5 @@ EBUILD flake8-3.7.5.ebuild 1486 BLAKE2B 96ee84607206fbd9ea3dc285314d7edd10ed1b8e
EBUILD flake8-3.7.7.ebuild 1486 BLAKE2B 96ee84607206fbd9ea3dc285314d7edd10ed1b8eac72d506963b64b0189f421a4481df76d0bf7be28c115897d46bf5048ad5d3c812cf8dfe49f14c3401cca649 SHA512 069b4cc2fff648269e28bd626146b4008554da4dbd337a1dc18d6a840b72c5be625a6fc90993faba46505c836ddfad7462b1dd0f8f95a89637d889b4d7839d01
EBUILD flake8-3.7.8-r1.ebuild 1465 BLAKE2B 65f2d410380d7b3b1d53645a9a2159fe70b18a1ccb82fe2d4ae688798b989b65750ae607c9af4e237d03948853b768ac09b7f0cc34ad9d910c51077fdaab94b1 SHA512 84720247a56afe1a5f27dd606111bff5043298dc5787756af7cb71245abc61970eb3ff391f9e7e782f4d3c75f65043ace12645034c8711fc50b210fe4bee522e
EBUILD flake8-3.7.9.ebuild 1474 BLAKE2B 15cc1268aa2860944bd054271d2084ca6ccb3e7f74474e8092bf2328c5c41dd191d33c2a9435ab6dcad76ff6f22b74f84938ebb8ebb0830b3490573a59763b13 SHA512 f9cce1138391fb5616de2b7a8099b2478840736910f0d2cd17072dc68d530f7a949e4f70fc3e1b057160ba0211796e089086c63d810c41152879b24678849ade
EBUILD flake8-3.8.4.ebuild 1371 BLAKE2B c31b888945f1134f08e882bf615613b9fc804f1731ce3b6b68a5b57e6544e815da94dde0dc30a0e0def29891f26ed005f12b52c417154153e3d96fa0b9c05a0b SHA512 45bf962325a30beb039f4f0346cdc06ac49354038135b296b7d15cd6ca30cd40dd48524f72a6ba0669ff6c589af39481b96696cc7b10cbc2598afd8f7cc860ba
EBUILD flake8-3.8.4-r1.ebuild 1317 BLAKE2B dc041d0b82bbec0848877f602c330aa0b9a6b5e9d6300a5adb3a5995d81eeebbdde633e1bb58cae3d16bb93a478dea05c081211c1f04a6493039022efefa1776 SHA512 8b1db7ed2874f5f0869c180ac2d429d97d6a48f5e7997cf31d930b8aa89c1d231f337b5297e76a7fc39aa06d718484b78aac24fa788f046b5157bd5c4fe84e06
MISC metadata.xml 373 BLAKE2B af4d7678c87281f631048d3c49b0a642ceee1d771be2b662458888659b7c8e262c98adcd7bcb7f6ab251783998950725729ed35c887c004f8d8da87da81eda7d SHA512 449aa40152590e7103a4bf10006a33e6a0d5010a7846b0c5fbee8a78d99a3539995eccf441845c205bf48fc1e9b35cd7b1d6af0d98b469bdd06989baf8b88646

View File

@ -3,7 +3,7 @@
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
PYTHON_COMPAT=( pypy3 python3_{6..9} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
KEYWORDS="amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
# requires.txt inc. mccabe however that creates a circular dep
RDEPEND="
@ -22,7 +22,7 @@ RDEPEND="
<dev-python/pyflakes-2.3.0[${PYTHON_USEDEP}]
>=dev-python/pycodestyle-2.6.0[${PYTHON_USEDEP}]
<dev-python/pycodestyle-2.7.0[${PYTHON_USEDEP}]
dev-python/importlib_metadata[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' pypy3 python3_{6,7})
"
PDEPEND="
>=dev-python/mccabe-0.6.0[${PYTHON_USEDEP}]
@ -35,13 +35,11 @@ BDEPEND="${RDEPEND}
)
"
distutils_enable_sphinx docs/source dev-python/sphinx-prompt dev-python/sphinx_rtd_theme
distutils_enable_tests pytest
# Sphinx and friends are not keyworded for all arches, repoman complains
#distutils_enable_sphinx docs/source dev-python/sphinx-prompt dev-python/sphinx_rtd_theme
python_prepare_all() {
# don't treat warnings as errors when running tests
sed -r -i '/^[[:space:]]*error[[:space:]]*$/ d' pytest.ini || die
distutils-r1_python_prepare_all
python_test() {
# Otherwise some tests fail if the package isn't installed
distutils_install_for_testing
pytest -vv || die "Tests fail with ${EPYTHON}"
}