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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5AC3713835A for ; Thu, 15 Apr 2021 06:32:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F301E0823; Thu, 15 Apr 2021 06:32:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84F31E0823 for ; Thu, 15 Apr 2021 06:32:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8363B335C29 for ; Thu, 15 Apr 2021 06:32:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3C936BD for ; Thu, 15 Apr 2021 06:32:12 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1618468325.a5d7f3e02b1a9168eb076d86947f5b2939feec72.mgorny@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: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a5d7f3e02b1a9168eb076d86947f5b2939feec72 X-VCS-Branch: master Date: Thu, 15 Apr 2021 06:32:12 +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: 5298637c-7c53-4793-b54b-2c825349bd4c X-Archives-Hash: 316abf0b3f36ba607c958f7568c4dd21 commit: a5d7f3e02b1a9168eb076d86947f5b2939feec72 Author: Michał Górny gentoo org> AuthorDate: Thu Apr 15 06:11:15 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Apr 15 06:32:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5d7f3e0 dev-python/xxhash: Bump to 2.0.2 Signed-off-by: Michał Górny gentoo.org> dev-python/xxhash/Manifest | 1 + dev-python/xxhash/xxhash-2.0.2.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/dev-python/xxhash/Manifest b/dev-python/xxhash/Manifest index 623d9cb8a8a..480d1039a07 100644 --- a/dev-python/xxhash/Manifest +++ b/dev-python/xxhash/Manifest @@ -1 +1,2 @@ DIST xxhash-2.0.0.tar.gz 64099 BLAKE2B bf4a013b70f02945b00b01043b34ff32bda0ce8aac5a533a0c7c606665a4054f443a46b1f60454b4d19a064db276ea66370a159d4037df49d5213dfc33703421 SHA512 c0d303f2705542ef8edb78ccccf42e3da6904e81cecb52f45861d0f0215f0882ad1617167273781c19bb5ff7ed776ec41a36a380eab2ce59e02636fc76f4b009 +DIST xxhash-2.0.2.tar.gz 64283 BLAKE2B 01fe9868b45f0be762c233a80b550e4069bd7f259fac8aeb90407864ac1fa6cda314880c87ce03d8854bedbecea1eba665ec4e00b27b68a8573c398238c5ce97 SHA512 8908e78207ff7b835259e359e2617f6b96555bd9dbc5bb079c850e9de22fd33c15396fbde0cd824cf8af2a195217f3ddc1aa8e62f1ed4071408b4a29bab31f2c diff --git a/dev-python/xxhash/xxhash-2.0.2.ebuild b/dev-python/xxhash/xxhash-2.0.2.ebuild new file mode 100644 index 00000000000..0249b086214 --- /dev/null +++ b/dev-python/xxhash/xxhash-2.0.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +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" + +KEYWORDS="~amd64" +SLOT="0" + +RDEPEND=">=dev-libs/xxhash-0.8.0" +BDEPEND="${RDEPEND}" + +distutils_enable_tests unittest + +python_configure_all() { + export XXHASH_LINK_SO=1 +} + +python_test() { + cd tests || die + eunittest +}