Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/overlint/
Date: Mon, 28 Nov 2022 21:24:37
Message-Id: 1669670626.be1dbc796e44d91f39ae0253c5b0c4995ab5f512.sping@gentoo
1 commit: be1dbc796e44d91f39ae0253c5b0c4995ab5f512
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 28 21:23:24 2022 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 28 21:23:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be1dbc79
7
8 app-portage/overlint: Python 3.11 + DistutilsNonPEP517Build
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11
12 app-portage/overlint/overlint-0.5.3-r4.ebuild | 20 ++++++++++++++++++++
13 1 file changed, 20 insertions(+)
14
15 diff --git a/app-portage/overlint/overlint-0.5.3-r4.ebuild b/app-portage/overlint/overlint-0.5.3-r4.ebuild
16 new file mode 100644
17 index 000000000000..16400f8301e6
18 --- /dev/null
19 +++ b/app-portage/overlint/overlint-0.5.3-r4.ebuild
20 @@ -0,0 +1,20 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +PYTHON_COMPAT=( python3_{8..11} )
27 +DISTUTILS_USE_PEP517=setuptools
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Simple tool for static analysis of overlays"
32 +HOMEPAGE="https://cgit.gentoo.org/proj/overlint.git"
33 +SRC_URI="https://www.hartwork.org/public/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2+"
36 +SLOT="0"
37 +KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux"
38 +IUSE=""
39 +
40 +RDEPEND="sys-apps/portage[${PYTHON_USEDEP}]"