Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/CppHeaderParser/
Date: Tue, 31 Jan 2023 16:58:11
Message-Id: 1675184282.ecd2181e4f31f3468edf2bb518a8aa9cb7b7e0d6.mgorny@gentoo
1 commit: ecd2181e4f31f3468edf2bb518a8aa9cb7b7e0d6
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 31 16:42:19 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 31 16:58:02 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd2181e
7
8 dev-python/CppHeaderParser: EAPI 8, PEP517
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../CppHeaderParser-2.7.4-r1.ebuild | 24 ++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/dev-python/CppHeaderParser/CppHeaderParser-2.7.4-r1.ebuild b/dev-python/CppHeaderParser/CppHeaderParser-2.7.4-r1.ebuild
16 new file mode 100644
17 index 000000000000..3cf30d41e4ce
18 --- /dev/null
19 +++ b/dev-python/CppHeaderParser/CppHeaderParser-2.7.4-r1.ebuild
20 @@ -0,0 +1,24 @@
21 +# Copyright 1999-2023 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{9..11} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Parse C++ header files and generate a data structure"
32 +HOMEPAGE="
33 + https://senexcanis.com/open-source/cppheaderparser/
34 + https://pypi.org/project/CppHeaderParser/
35 +"
36 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 +
38 +LICENSE="BSD"
39 +SLOT="0"
40 +KEYWORDS="~amd64"
41 +
42 +RDEPEND="
43 + dev-python/ply[${PYTHON_USEDEP}]
44 +"