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: Sat, 27 Aug 2022 23:13:09
Message-Id: 1661581438.60c173627ef58f0c574d2ee02014637bfac7967e.mgorny@gentoo
1 commit: 60c173627ef58f0c574d2ee02014637bfac7967e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 27 06:22:17 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 27 06:23:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60c17362
7
8 dev-python/lz4: Remove old
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.0.1.ebuild | 39 ---------------------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-python/lz4/Manifest b/dev-python/lz4/Manifest
17 index 3efbe55c2f4e..ab19d8e1c510 100644
18 --- a/dev-python/lz4/Manifest
19 +++ b/dev-python/lz4/Manifest
20 @@ -1,2 +1 @@
21 -DIST lz4-4.0.1.tar.gz 164309 BLAKE2B 6338c2d74dedf1dc92f455378ef87c691291fdd16faebff8992aa927bf95c707b346af6bb35c512d8095b60a1878615d1081ba64f99c083e580eeacfb5cf11a5 SHA512 caa08a8a531ca2887ce7e596b7a3d9d8f8f2b93c6ea48c3fb0f8bbe6e6f2a18fb6b3c055e57841f8ce74f70367738a28dbb5fb1f07cbf785434642e6034b558e
22 DIST lz4-4.0.2.tar.gz 164309 BLAKE2B ea08c9786ee224aaf668a74269413c836a4288ab1a3c27497012621bdda9c8c1729c4cb6ba49cb74e7e5302fabbfddba94f8ed94a9612fdf21018a5cbdc70566 SHA512 f2fdd133b9c7389cd7d45b41e61944093b65bcbf529146740fa3721e683a9b4554166c2ad719298e6153e61facc4a4cb021ffd969cd16d4a5b6555fd8f14728f
23
24 diff --git a/dev-python/lz4/lz4-4.0.1.ebuild b/dev-python/lz4/lz4-4.0.1.ebuild
25 deleted file mode 100644
26 index 10c11eec6203..000000000000
27 --- a/dev-python/lz4/lz4-4.0.1.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
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="https://pypi.org/project/lz4/ https://github.com/python-lz4/python-lz4"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -SLOT="0"
45 -LICENSE="BSD"
46 -KEYWORDS="amd64 arm arm64 ~riscv x86 ~amd64-linux ~x86-linux"
47 -
48 -DEPEND="
49 - app-arch/lz4:=
50 -"
51 -RDEPEND="
52 - ${DEPEND}
53 -"
54 -BDEPEND="
55 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
56 - dev-python/pkgconfig[${PYTHON_USEDEP}]
57 - test? (
58 - dev-python/psutil[${PYTHON_USEDEP}]
59 - )
60 -"
61 -
62 -distutils_enable_tests pytest
63 -
64 -EPYTEST_IGNORE=(
65 - # lz4.stream is not officially supported and not installed by default
66 - # (we do not support installing it at the moment)
67 - tests/stream
68 -)