diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-04-12 03:41:30 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-04-12 03:41:30 +0100 |
commit | 623ee73d661e5ed8475cb264511f683407d87365 (patch) | |
tree | 993eb27c93ec7a2d2d19550300d888fc1fed9e69 /dev-python/pytest-pylint | |
parent | ceeeb463cc1eef97fd62eaee8bf2196ba04bc384 (diff) |
gentoo Easter resync : 12.04.2020
Diffstat (limited to 'dev-python/pytest-pylint')
-rw-r--r-- | dev-python/pytest-pylint/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pytest-pylint/pytest-pylint-0.7.1.ebuild | 38 |
2 files changed, 0 insertions, 40 deletions
diff --git a/dev-python/pytest-pylint/Manifest b/dev-python/pytest-pylint/Manifest index abc516115ef5..6955a52f65da 100644 --- a/dev-python/pytest-pylint/Manifest +++ b/dev-python/pytest-pylint/Manifest @@ -1,5 +1,3 @@ DIST pytest-pylint-0.14.1.tar.gz 8144 BLAKE2B d78892e3e606ec588b48a252db447e1cc76e27e45606670da3a3acddf040485004a7af84474732b044fdbf80ad760c07fda5e35030b9b2c9e5ce89f4809529c2 SHA512 697cd40e8e4c3722e382c7fd2dbebcb1728675e35b60396628576ec09735595af56431a2c080f29a2f35f304d912c80e4afdf0f8bd21a3adeae3156b9e58c751 -DIST pytest-pylint-0.7.1.tar.gz 5648 BLAKE2B 0baf011d9bbcfc5e66b8ea2c4fd95c8a3f8bbeedca15e2ec35d36b372b410d87ba619b0938acb26c667750c2f81d4bb09ca688731f9e184877fd999be04b6f26 SHA512 e2a7802f90ea25a909094e8bc67570eb631d6ab6dc130bb5cca1738ae09d069b4fa6c3c1349d9d62188a924138e832a3a37c8c5c8964290c95d69eecbadbd09f EBUILD pytest-pylint-0.14.1.ebuild 1066 BLAKE2B 198a3d9651fb4f5d38aeaed5c4944244dc682882b89261cb23c97e64b68160ea1614f368586263e043fd424a3aee979034a8eee6b07e6f93a86ae7cc91838ead SHA512 08eaddb1c87546439de9bb85a9d747874b2b865914810089593cd07434f957d58f8174d5c5ce782834ce6e2434d7227ca7fd4ea6b143e21ceaf84e85c1f5a3f8 -EBUILD pytest-pylint-0.7.1.ebuild 1030 BLAKE2B 270a19b0efb74caf3ed9c8db1ded165283dfb9a1e046df675de7b0089167ee76a0de263f27fccc0a95f5347fd9ad353da55c2849fa25106b00890b964f5ea464 SHA512 4b5e961d443753aa123fd2e9ae6bfdf9e2125d42a46f32e3daace46d2ab37cc66c4e071088a7ba81a0705b0b0ad8c28fd54287dcac849f126550049f1274b991 MISC metadata.xml 306 BLAKE2B ef6d4e4bd779cdbec5e76617003defe8581c1c2b04b6098efce973a9b2eb154da51bdc27e8c202df1dc6c4a6393471b917dd47f2e95e75487dcba7a8fa725ae4 SHA512 726037520d25c038ab6a35c14edce11561e281fcfbb6a505bf3ead4d474cb10606b715f95c6df95e22e97f20f840c1694bde08984f9211bc46b5d0afb46f1c4e diff --git a/dev-python/pytest-pylint/pytest-pylint-0.7.1.ebuild b/dev-python/pytest-pylint/pytest-pylint-0.7.1.ebuild deleted file mode 100644 index b9736d3679cf..000000000000 --- a/dev-python/pytest-pylint/pytest-pylint-0.7.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) -inherit distutils-r1 - -DESCRIPTION="pytest plugin to check source code with pylint" -HOMEPAGE="https://github.com/carsongee/pytest-pylint" -SRC_URI="https://github.com/carsongee/pytest-pylint/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/pytest[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest-pep8[${PYTHON_USEDEP}] - )" - -python_prepare_all() { - # pytest grabs the options from tox.ini automatically - # but setup.py does not declare pytest-pep8 as a dep, - # so it's missing from env created by distutils_install_for_testing - sed -i -e 's:--pep8::' tox.ini || die - distutils-r1_python_prepare_all -} - -python_test() { - distutils_install_for_testing - py.test -v || die "Tests fail with ${EPYTHON}" -} |