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, 24 Jun 2022 03:58:49
Message-Id: 1656043079.a4eeac89487961b949260e8af22b2cc0eac96070.mgorny@gentoo
1 commit: a4eeac89487961b949260e8af22b2cc0eac96070
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 23 12:36:39 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 03:57:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4eeac89
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.0.ebuild | 35 -----------------------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/dev-python/lz4/Manifest b/dev-python/lz4/Manifest
17 index f2cbe6f71ed6..3497fa9f259e 100644
18 --- a/dev-python/lz4/Manifest
19 +++ b/dev-python/lz4/Manifest
20 @@ -1,2 +1 @@
21 -DIST lz4-4.0.0.tar.gz 163729 BLAKE2B ce617f2aea3f45cf9fb0bf642599a1d872d9532ab465d32602b63987081a7e78ab4ac4373a41c6a97ec50eb6f2debc078288554966390651325ba166faa79c0d SHA512 885d215dd4caadc84d1e2a9575be9972a33a43af089f0788192c9f4f53382c0937f9d67aac412e2860c9ba393ee3bb15dfe273865acb6a3cf8aecdce8292ecc9
22 DIST lz4-4.0.1.tar.gz 164309 BLAKE2B 6338c2d74dedf1dc92f455378ef87c691291fdd16faebff8992aa927bf95c707b346af6bb35c512d8095b60a1878615d1081ba64f99c083e580eeacfb5cf11a5 SHA512 caa08a8a531ca2887ce7e596b7a3d9d8f8f2b93c6ea48c3fb0f8bbe6e6f2a18fb6b3c055e57841f8ce74f70367738a28dbb5fb1f07cbf785434642e6034b558e
23
24 diff --git a/dev-python/lz4/lz4-4.0.0.ebuild b/dev-python/lz4/lz4-4.0.0.ebuild
25 deleted file mode 100644
26 index 601952c145b8..000000000000
27 --- a/dev-python/lz4/lz4-4.0.0.ebuild
28 +++ /dev/null
29 @@ -1,35 +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..10} )
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 -RDEPEND="app-arch/lz4:="
49 -DEPEND=${RDEPEND}
50 -BDEPEND="
51 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
52 - dev-python/pkgconfig[${PYTHON_USEDEP}]
53 - test? (
54 - dev-python/psutil[${PYTHON_USEDEP}]
55 - )
56 -"
57 -
58 -distutils_enable_tests pytest
59 -
60 -EPYTEST_IGNORE=(
61 - # lz4.stream is not officially supported and not installed by default
62 - # (we do not support installing it at the moment)
63 - tests/stream
64 -)