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 9682D158046 for ; Fri, 11 Oct 2024 03:06:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4BE0E29F8; Fri, 11 Oct 2024 03:06:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 CACC6E29F8 for ; Fri, 11 Oct 2024 03:06:05 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E673633BEED for ; Fri, 11 Oct 2024 03:06:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31A3522D7 for ; Fri, 11 Oct 2024 03:06:02 +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: <1728615956.dd323ad1906a242e7bc7c509bd921d1ac9e2da77.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bitarray/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bitarray/Manifest dev-python/bitarray/bitarray-2.9.3.ebuild X-VCS-Directories: dev-python/bitarray/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dd323ad1906a242e7bc7c509bd921d1ac9e2da77 X-VCS-Branch: master Date: Fri, 11 Oct 2024 03:06:02 +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: 3e70de80-7a69-4312-8cda-b5d54eee112c X-Archives-Hash: b5a6137062c37a7d4ac3bd1e442f7d21 commit: dd323ad1906a242e7bc7c509bd921d1ac9e2da77 Author: Michał Górny gentoo org> AuthorDate: Fri Oct 11 02:56:10 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 11 03:05:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd323ad1 dev-python/bitarray: Bump to 2.9.3 Signed-off-by: Michał Górny gentoo.org> dev-python/bitarray/Manifest | 1 + dev-python/bitarray/bitarray-2.9.3.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/bitarray/Manifest b/dev-python/bitarray/Manifest index 09be655b3ee4..84aa8ceb4053 100644 --- a/dev-python/bitarray/Manifest +++ b/dev-python/bitarray/Manifest @@ -1 +1,2 @@ DIST bitarray-2.9.2.tar.gz 132825 BLAKE2B dcd574f5273a876e8010513a433fbf657a0cdb37899b470ec4ba07d64af075a6d1660390e6dc040361537d115d4dc2abb9e21aa26601b5d8d9511a40408f7fc4 SHA512 fe7ea6fa35de53a0cbd1042cf7a596080690b94771d160b6659f085c969d29d8f816ffda14d3b3a16fb398573410cfdb53183704cf846e94af942b6dad9708fb +DIST bitarray-2.9.3.tar.gz 132724 BLAKE2B bf405ebe9d4354d6f239c2b0b2498336cea98eba4e2cbb548de92cf61364557148ef2c2866d9cfb30d8f2ec6d4a482aedb5a51e6b65b68bf587c85fe3949c503 SHA512 b85e135f1c12066dc49bb7d684e749373f4027855b0f090c9f1b990729362e57b95c3545a9347accf053c9deeb06523ce8d0687d601f35f4db79cd62f59d3bf8 diff --git a/dev-python/bitarray/bitarray-2.9.3.ebuild b/dev-python/bitarray/bitarray-2.9.3.ebuild new file mode 100644 index 000000000000..29af0a0b0076 --- /dev/null +++ b/dev-python/bitarray/bitarray-2.9.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Efficient arrays of booleans -- C extension" +HOMEPAGE=" + https://github.com/ilanschnell/bitarray/ + https://pypi.org/project/bitarray/ +" + +LICENSE="PSF-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + +python_test() { + "${EPYTHON}" bitarray/test_bitarray.py -v || die "Tests fail with ${EPYTHON}" +}