Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xxhash/
Date: Wed, 02 Mar 2022 20:52:46
Message-Id: 1646254339.6de2de8d737e9db5c8919f0694d16825eb4a5eaa.matthew@gentoo
1 commit: 6de2de8d737e9db5c8919f0694d16825eb4a5eaa
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 28 20:12:14 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 20:52:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6de2de8d
7
8 dev-python/xxhash: drop 2.0.2
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 dev-python/xxhash/Manifest | 1 -
13 dev-python/xxhash/xxhash-2.0.2.ebuild | 31 -------------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/xxhash/Manifest b/dev-python/xxhash/Manifest
17 index 8ca924373b22..2d4d065a874f 100644
18 --- a/dev-python/xxhash/Manifest
19 +++ b/dev-python/xxhash/Manifest
20 @@ -1,2 +1 @@
21 -DIST xxhash-2.0.2.tar.gz 64283 BLAKE2B 01fe9868b45f0be762c233a80b550e4069bd7f259fac8aeb90407864ac1fa6cda314880c87ce03d8854bedbecea1eba665ec4e00b27b68a8573c398238c5ce97 SHA512 8908e78207ff7b835259e359e2617f6b96555bd9dbc5bb079c850e9de22fd33c15396fbde0cd824cf8af2a195217f3ddc1aa8e62f1ed4071408b4a29bab31f2c
22 DIST xxhash-3.0.0.tar.gz 74279 BLAKE2B 4c3d68103a7145aa1fd99da955b206c734c7882f1f6f3020d8bce9e5f2eb9714b9168b28918595bbb60445a024ec50d606e387358e6db8f4e575014763dece65 SHA512 170bfbacf0c4f8136550a257328d71dca096d996a52993a54442a7c5a54d48c51bb7997b3a718d73ae6c8e25a672ed4de664e7a651e02c43eb5f3fd135a59a80
23
24 diff --git a/dev-python/xxhash/xxhash-2.0.2.ebuild b/dev-python/xxhash/xxhash-2.0.2.ebuild
25 deleted file mode 100644
26 index 4aa59fa06068..000000000000
27 --- a/dev-python/xxhash/xxhash-2.0.2.ebuild
28 +++ /dev/null
29 @@ -1,31 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python binding for the xxHash library"
40 -HOMEPAGE="https://github.com/ifduyue/python-xxhash
41 - https://pypi.org/project/xxhash/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm64 ~x86"
47 -
48 -RDEPEND=">=dev-libs/xxhash-0.8.0"
49 -DEPEND="${RDEPEND}"
50 -
51 -distutils_enable_tests unittest
52 -
53 -python_configure_all() {
54 - export XXHASH_LINK_SO=1
55 -}
56 -
57 -python_test() {
58 - cd tests || die
59 - eunittest
60 -}