dev-python/pylint-per-file-ignores: new package, add 1.1.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-12 20:51:03 +01:00 committed by Andreas Billmeier
parent e7c13457ee
commit f6a8e8f179
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pylint-per-file-ignores-1.1.0.tar.gz 3987 BLAKE2B a9107383e6b77b755805aa0cbac163b38457e577f33bfe67af007cd7dac09920f5637d13a285a6b35fd5deb5f5fc6c9ccdd940e293695a99eed99dfefe7bd0d2 SHA512 70d81ed6baca22e11413240b38b93fc255e522c0ae98481276166913fba9a2ba261e82d54cdba2b119c68dcb801089397f80d7c145c07af14170c817c23e8a15
EBUILD pylint-per-file-ignores-1.1.0.ebuild 885 BLAKE2B 3f7bc04c3b3b8dad5cba21900b2112189f4da558d58f11a14b21e33f046892604424ff685d7992b37c17f77c3f8357a69b2fa60dfd676b0c562e8f66d07a5f4e SHA512 f1451dcb24bc0d2e05ae630c518973009367f04909d9ed8a7391f5984c33e76c0181f412553838099f3a651c1f4b316c405b168aa0a3f109bd9e0a96187389b7
MISC metadata.xml 567 BLAKE2B d34f4adc488b2bea4414d2b4f18505df14bb3626332e1aa7a1fb8e6886dbd96721df7c45b5069896f09b5f2d52ec0d0d46880bf39cb025cdaed0cad792f93fca SHA512 70d6d374cf965b2805e597f0dd431104938cadc43d56b307ce141c31b4450302cd003af6b6b53393a28a6333bbd11eeedc945a7b654907d225770dfddee17b74

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">pylint-per-file-ignores</remote-id>
<remote-id type="github">christopherpickering/pylint-per-file-ignores.git</remote-id>
<maintainer status="unknown">
<email>christopher@going.bg</email>
<name>Christopher Pickering</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,35 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="A pylint plugin to ignore error codes per file."
HOMEPAGE="https://github.com/christopherpickering/pylint-per-file-ignores.git https://pypi.org/project/pylint-per-file-ignores/"
MY_PN=${PN//-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="readme.md"
RDEPEND="$(python_gen_cond_dep 'dev-python/tomli[${PYTHON_USEDEP}]' python3_{9..10})"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest