Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cstruct/
Date: Tue, 06 Sep 2022 17:54:44
Message-Id: 1662486867.927088615eb663010baa5c66d920363d93da1035.arthurzam@gentoo
1 commit: 927088615eb663010baa5c66d920363d93da1035
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 17:14:38 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 17:54:27 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92708861
7
8 dev-python/python-cstruct: add 3.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/python-cstruct/Manifest | 1 +
13 .../python-cstruct/python-cstruct-3.0.ebuild | 30 ++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/python-cstruct/Manifest b/dev-python/python-cstruct/Manifest
17 index 636836e5e0e4..0e27bc491e7a 100644
18 --- a/dev-python/python-cstruct/Manifest
19 +++ b/dev-python/python-cstruct/Manifest
20 @@ -1,2 +1,3 @@
21 DIST python-cstruct-2.2.gh.tar.gz 18764 BLAKE2B 75aaffae27fef59799e52866f8169cc5d7362ef1553a56986f361ef7cfb7ca3e7d8c67fe0f112ec8e03ddacf45885e19fc1ce0d9d27c7581deafbf7e7fe1789b SHA512 5a1d62b596fef08a48020557e82fc81360430d94f18ce0667919815d57b944102067c2fe5723372616f73c995afd3a1f674e4a37e406d0dc7eeaf9fe3ef8f484
22 DIST python-cstruct-2.3.gh.tar.gz 19043 BLAKE2B dd445da91d155dc576523d5c15dc963493dfb62e7e79fae6c436e69654432eadbc30b0001026f5613268800eb0a3a01392120b11e7b3995cff16477850818c9f SHA512 5700a3d8ef58130bc5b3b5d7c36102f6a878fd8d5b9104804f0c206e583e77d7a9c9ff8e8008d9bd1ee72d55167e48cd3f9ba776816eb25ceb8ceaf0c880b597
23 +DIST python-cstruct-3.0.gh.tar.gz 25950 BLAKE2B 7ea8c77ed87e4fb740c3f7a4ed53a7532ee5aca15ee46fbb40da7308ae62ceacd7ccc67a958e6355904604ae67c9594acc9cae5d18bfed0558b91f7e9c8ad0a9 SHA512 dd1c85363512edc4df0379dec40e7d7fe3ceff1cc4014eae8dab0e91c47ea9c3619211e1a637aeec134ce713d0681688630b7fde97f02c6bcd7103a32f258a73
24
25 diff --git a/dev-python/python-cstruct/python-cstruct-3.0.ebuild b/dev-python/python-cstruct/python-cstruct-3.0.ebuild
26 new file mode 100644
27 index 000000000000..7b8d01c50942
28 --- /dev/null
29 +++ b/dev-python/python-cstruct/python-cstruct-3.0.ebuild
30 @@ -0,0 +1,30 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..11} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="C-style structs for Python"
41 +HOMEPAGE="https://github.com/andreax79/python-cstruct
42 + https://pypi.org/project/cstruct/"
43 +SRC_URI="
44 + https://github.com/andreax79/${PN}/archive/v${PV}.tar.gz
45 + -> ${P}.gh.tar.gz
46 +"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +
52 +DOCS=( README.md )
53 +
54 +distutils_enable_tests pytest
55 +
56 +src_prepare() {
57 + distutils-r1_src_prepare
58 +
59 + sed -e "/find_packages(/s@exclude=\[@&'tests', @" -i setup.py || die
60 +}