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/lz4/
Date: Fri, 30 Dec 2022 07:08:25
Message-Id: 1672384092.c86d46515b7d0bdae57c0b2c3560deff3c21a4e0.mgorny@gentoo
1 commit: c86d46515b7d0bdae57c0b2c3560deff3c21a4e0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 30 06:27:17 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 30 07:08:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c86d4651
7
8 dev-python/lz4: Bump to 4.3.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/lz4/Manifest | 1 +
13 dev-python/lz4/lz4-4.3.1.ebuild | 42 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/lz4/Manifest b/dev-python/lz4/Manifest
17 index ab19d8e1c510..ec26456dae2b 100644
18 --- a/dev-python/lz4/Manifest
19 +++ b/dev-python/lz4/Manifest
20 @@ -1 +1,2 @@
21 DIST lz4-4.0.2.tar.gz 164309 BLAKE2B ea08c9786ee224aaf668a74269413c836a4288ab1a3c27497012621bdda9c8c1729c4cb6ba49cb74e7e5302fabbfddba94f8ed94a9612fdf21018a5cbdc70566 SHA512 f2fdd133b9c7389cd7d45b41e61944093b65bcbf529146740fa3721e683a9b4554166c2ad719298e6153e61facc4a4cb021ffd969cd16d4a5b6555fd8f14728f
22 +DIST lz4-4.3.1.tar.gz 170970 BLAKE2B dcc2f67860f60a7805c2d302aca3b610198e128e2dbd1c54d78ffb65c4baec3cf4ab7dfe2aebf713397e67d9c8b9a95a0dbb493c16692f2591d657bfe1a3da43 SHA512 4dbb3179892d44fe7d7b5280931c39434d28f5750b4588a16a5547588c756e4279daf8a5f0edcfaf958c7cb25e65188c0a9bb36509d0dc7a7083072a19ee6d55
23
24 diff --git a/dev-python/lz4/lz4-4.3.1.ebuild b/dev-python/lz4/lz4-4.3.1.ebuild
25 new file mode 100644
26 index 000000000000..358b79f49818
27 --- /dev/null
28 +++ b/dev-python/lz4/lz4-4.3.1.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="LZ4 Bindings for Python"
41 +HOMEPAGE="
42 + https://github.com/python-lz4/python-lz4/
43 + https://pypi.org/project/lz4/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +SLOT="0"
48 +LICENSE="BSD"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
50 +
51 +DEPEND="
52 + app-arch/lz4:=
53 +"
54 +RDEPEND="
55 + ${DEPEND}
56 +"
57 +BDEPEND="
58 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
59 + dev-python/pkgconfig[${PYTHON_USEDEP}]
60 + test? (
61 + dev-python/psutil[${PYTHON_USEDEP}]
62 + )
63 +"
64 +
65 +distutils_enable_tests pytest
66 +
67 +EPYTEST_IGNORE=(
68 + # lz4.stream is not officially supported and not installed by default
69 + # (we do not support installing it at the moment)
70 + tests/stream
71 +)