From owner-freebsd-python@freebsd.org Sat Jul 28 12:07:20 2018 Return-Path: Delivered-To: freebsd-python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2693104E93D for ; Sat, 28 Jul 2018 12:07:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5D3698A512 for ; Sat, 28 Jul 2018 12:07:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0F026104E93B; Sat, 28 Jul 2018 12:07:19 +0000 (UTC) Delivered-To: python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F201F104E939 for ; Sat, 28 Jul 2018 12:07:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 93B318A4F6 for ; Sat, 28 Jul 2018 12:07:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id EFA3687CE for ; Sat, 28 Jul 2018 12:07:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6SC7HMI024299 for ; Sat, 28 Jul 2018 12:07:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6SC7Hjl024290 for python@FreeBSD.org; Sat, 28 Jul 2018 12:07:17 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 229448] [NEW PORT] devel/py-intbitset: C-based extension implementing fast integer bit sets Date: Sat, 28 Jul 2018 12:07:18 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: miwi@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Jul 2018 12:07:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229448 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: miwi Date: Sat Jul 28 12:07:11 UTC 2018 New revision: 475532 URL: https://svnweb.freebsd.org/changeset/ports/475532 Log: The intbitset library provides a set implementation to store sorted unsig= ned integers either 32-bits integers or an infinite range with fast set operations implemented via bit vectors in a Python C extension for speed and reduced memory usage. The inbitset class emulates the Python built-in set class interface with = some additional specific methods such as its own fast dump and load marshalling functions. intbitset additionally support the pickle protocol, the iterator protocol= and can behave like a sequence that can be sliced. Because the integers are always stored sorted, the first element of a non-empty set [0] is also the min() integer and the last element [-1] is also the max() integer in the set. When compared to the standard library set class, intbitset set operations such as intersection, union and difference can be up to 5000 faster for dense integer sets. WWW: https://github.com/inveniosoftware/intbitset/ PR: 229448 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Changes: head/devel/Makefile head/devel/py-intbitset/ head/devel/py-intbitset/Makefile head/devel/py-intbitset/distinfo head/devel/py-intbitset/pkg-descr --=20 You are receiving this mail because: You are on the CC list for the bug.=