From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 017C315808B for ; Wed, 2 Mar 2022 20:52:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 367172BC089; Wed, 2 Mar 2022 20:52:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 21D3A2BC089 for ; Wed, 2 Mar 2022 20:52:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FB5E342E7C for ; Wed, 2 Mar 2022 20:52:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 764501F1 for ; Wed, 2 Mar 2022 20:52:42 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1646254339.6de2de8d737e9db5c8919f0694d16825eb4a5eaa.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xxhash/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xxhash/Manifest dev-python/xxhash/xxhash-2.0.2.ebuild X-VCS-Directories: dev-python/xxhash/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 6de2de8d737e9db5c8919f0694d16825eb4a5eaa X-VCS-Branch: master Date: Wed, 2 Mar 2022 20:52:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c0886674-0e9d-437c-b062-4164aa0005e0 X-Archives-Hash: c0fc544bca095b0ee1edba9abe4b4df5 commit: 6de2de8d737e9db5c8919f0694d16825eb4a5eaa Author: Matthew Smith gentoo org> AuthorDate: Mon Feb 28 20:12:14 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Wed Mar 2 20:52:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6de2de8d dev-python/xxhash: drop 2.0.2 Signed-off-by: Matthew Smith gentoo.org> dev-python/xxhash/Manifest | 1 - dev-python/xxhash/xxhash-2.0.2.ebuild | 31 ------------------------------- 2 files changed, 32 deletions(-) diff --git a/dev-python/xxhash/Manifest b/dev-python/xxhash/Manifest index 8ca924373b22..2d4d065a874f 100644 --- a/dev-python/xxhash/Manifest +++ b/dev-python/xxhash/Manifest @@ -1,2 +1 @@ -DIST xxhash-2.0.2.tar.gz 64283 BLAKE2B 01fe9868b45f0be762c233a80b550e4069bd7f259fac8aeb90407864ac1fa6cda314880c87ce03d8854bedbecea1eba665ec4e00b27b68a8573c398238c5ce97 SHA512 8908e78207ff7b835259e359e2617f6b96555bd9dbc5bb079c850e9de22fd33c15396fbde0cd824cf8af2a195217f3ddc1aa8e62f1ed4071408b4a29bab31f2c DIST xxhash-3.0.0.tar.gz 74279 BLAKE2B 4c3d68103a7145aa1fd99da955b206c734c7882f1f6f3020d8bce9e5f2eb9714b9168b28918595bbb60445a024ec50d606e387358e6db8f4e575014763dece65 SHA512 170bfbacf0c4f8136550a257328d71dca096d996a52993a54442a7c5a54d48c51bb7997b3a718d73ae6c8e25a672ed4de664e7a651e02c43eb5f3fd135a59a80 diff --git a/dev-python/xxhash/xxhash-2.0.2.ebuild b/dev-python/xxhash/xxhash-2.0.2.ebuild deleted file mode 100644 index 4aa59fa06068..000000000000 --- a/dev-python/xxhash/xxhash-2.0.2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Python binding for the xxHash library" -HOMEPAGE="https://github.com/ifduyue/python-xxhash - https://pypi.org/project/xxhash/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" - -RDEPEND=">=dev-libs/xxhash-0.8.0" -DEPEND="${RDEPEND}" - -distutils_enable_tests unittest - -python_configure_all() { - export XXHASH_LINK_SO=1 -} - -python_test() { - cd tests || die - eunittest -}