Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pylint-venv/
Date: Mon, 07 Nov 2022 11:29:21
Message-Id: 1667820497.f1b2e63e6cefbf8982a84d22b2e417110a45e08a.andrewammerlaan@gentoo
1 commit: f1b2e63e6cefbf8982a84d22b2e417110a45e08a
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 7 11:26:55 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 7 11:28:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1b2e63e
7
8 dev-python/pylint-venv: new package, add 2.3.0
9
10 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
11
12 dev-python/pylint-venv/Manifest | 1 +
13 dev-python/pylint-venv/metadata.xml | 13 ++++++++++++
14 dev-python/pylint-venv/pylint-venv-2.3.0.ebuild | 27 +++++++++++++++++++++++++
15 3 files changed, 41 insertions(+)
16
17 diff --git a/dev-python/pylint-venv/Manifest b/dev-python/pylint-venv/Manifest
18 new file mode 100644
19 index 000000000000..e923065b1a81
20 --- /dev/null
21 +++ b/dev-python/pylint-venv/Manifest
22 @@ -0,0 +1 @@
23 +DIST pylint-venv-2.3.0.gh.tar.gz 4967 BLAKE2B 7095848b28f1128d44164fecbd1fd1c3694140d8b3818fefcab92aa5a4083608dfc36c96a6c30b117a8592bea0de9b92a537c33f8db4ce8c1285a575d1aa2131 SHA512 c3f9294a137cc6369984cf714196ee0a248471990f2c6e691da86f3048126b99775cc8e9c516c72bd8746d0d814a52387eca165c5f1960aa418ec5abb13a3bed
24
25 diff --git a/dev-python/pylint-venv/metadata.xml b/dev-python/pylint-venv/metadata.xml
26 new file mode 100644
27 index 000000000000..7aad6578435c
28 --- /dev/null
29 +++ b/dev-python/pylint-venv/metadata.xml
30 @@ -0,0 +1,13 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>python@g.o</email>
36 + <name>Python</name>
37 + </maintainer>
38 + <stabilize-allarches/>
39 + <upstream>
40 + <remote-id type="pypi">pylint-venv</remote-id>
41 + <remote-id type="github">jgosmann/pylint-venv</remote-id>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/pylint-venv/pylint-venv-2.3.0.ebuild b/dev-python/pylint-venv/pylint-venv-2.3.0.ebuild
46 new file mode 100644
47 index 000000000000..b609a2267b22
48 --- /dev/null
49 +++ b/dev-python/pylint-venv/pylint-venv-2.3.0.ebuild
50 @@ -0,0 +1,27 @@
51 +# Copyright 1999-2022 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=8
55 +
56 +DISTUTILS_USE_PEP517=poetry
57 +PYTHON_COMPAT=( python3_{8..10} )
58 +
59 +inherit distutils-r1
60 +
61 +DESCRIPTION="Init-hook to use the same Pylint with different virtual environments"
62 +HOMEPAGE="
63 + https://pypi.org/project/pylint-venv/
64 + https://github.com/jgosmann/pylint-venv/
65 +"
66 +SRC_URI="
67 + https://github.com/jgosmann/pylint-venv/archive/v${PV}.tar.gz
68 + -> ${P}.gh.tar.gz
69 +"
70 +
71 +LICENSE="MIT"
72 +SLOT="0"
73 +KEYWORDS="~amd64 ~x86"
74 +
75 +RDEPEND="
76 + dev-python/pylint[${PYTHON_USEDEP}]
77 +"