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 A530B1382C5 for ; Sat, 12 Jun 2021 06:39:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA43EE085A; Sat, 12 Jun 2021 06:39:13 +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 8AEFCE085A for ; Sat, 12 Jun 2021 06:39:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 987A13408A2 for ; Sat, 12 Jun 2021 06:39:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0050A7A5 for ; Sat, 12 Jun 2021 06:39:11 +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: <1623479942.4b59b31a727291256b3d00dd3b7fcf4d60d52c43.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.1.1.ebuild X-VCS-Directories: dev-python/bitarray/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4b59b31a727291256b3d00dd3b7fcf4d60d52c43 X-VCS-Branch: master Date: Sat, 12 Jun 2021 06:39:11 +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: bb15dc86-444b-443c-9b81-2ccb5994edf8 X-Archives-Hash: 651ad023100d2f6c8bf0fd8fd014b926 commit: 4b59b31a727291256b3d00dd3b7fcf4d60d52c43 Author: Michał Górny gentoo org> AuthorDate: Sat Jun 12 06:04:57 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 12 06:39:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b59b31a dev-python/bitarray: Bump to 2.1.1 Signed-off-by: Michał Górny gentoo.org> dev-python/bitarray/Manifest | 1 + dev-python/bitarray/bitarray-2.1.1.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/bitarray/Manifest b/dev-python/bitarray/Manifest index efcc281218e..28015adcad4 100644 --- a/dev-python/bitarray/Manifest +++ b/dev-python/bitarray/Manifest @@ -1 +1,2 @@ DIST bitarray-2.1.0.tar.gz 71169 BLAKE2B 8d82d49ac309605d989d29d492dbb94dd59c633f0987220ed28bbca7d2c3b0c4566ce147d0f65893c5dfaf1c2f702870d95181dfaa969050e13bcd4a9664ef51 SHA512 e91200b8829b63f297a1882fab293ac007991740a739587ba473abce183aa79a85e08db8a0fca5729b6e1d3e130965b2f14dc40acccf12d3231852498e2fb141 +DIST bitarray-2.1.1.tar.gz 72522 BLAKE2B 28afebad24c574706f3cc57d1b82890d8e98a2ba745765a1a8d9e60a630a1e1e6e467bdd7b953c4c75b08b302658f7704d83a8e01b351c1e99e66ebd52fbbf83 SHA512 d690e266d1ac9f8fba6f2dd2770b80d1fbb2a53baf2ba759c946a2d371d9804e5bfd6792fc2a64809fc10e78563e106c2d357474fa515423fdcd6964a8191718 diff --git a/dev-python/bitarray/bitarray-2.1.1.ebuild b/dev-python/bitarray/bitarray-2.1.1.ebuild new file mode 100644 index 00000000000..15dfecb4320 --- /dev/null +++ b/dev-python/bitarray/bitarray-2.1.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=no + +inherit distutils-r1 + +DESCRIPTION="Efficient arrays of booleans -- C extension" +HOMEPAGE="https://github.com/ilanschnell/bitarray https://pypi.org/project/bitarray/" +SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="PSF-2" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +python_test() { + "${EPYTHON}" bitarray/test_bitarray.py -v || die "Tests fail with ${EPYTHON}" +}