Port details |
- py-intbitset C-based extension implementing fast integer bit sets
- 4.0.0 devel =2 3.1.0Version of this port present on the latest quarterly branch.
- Maintainer: kai@FreeBSD.org
- Port Added: 2018-07-28 12:07:59
- Last Update: 2024-11-03 19:50:28
- Commit Hash: f8fba42
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- Also Listed In: python
- License: LGPL3
- WWW:
- https://github.com/inveniosoftware/intbitset/
- Description:
- The intbitset library provides a set implementation to store sorted unsigned
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.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- ${PYTHON_PKGNAMEPREFIX}intbitset>0:devel/py-intbitset@${PY_FLAVOR}
- To install the port:
- cd /usr/ports/devel/py-intbitset/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/py-intbitset
- pkg install py311-intbitset
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above. NOTE: This is a Python port. Instead of py311-intbitset listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py311-intbitset
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1730630228
SHA256 (intbitset-4.0.0.tar.gz) = c141edaa1c17b91c2987537e269d955ab6bdc3966af3deb6e1e0d20edbd09dd2
SIZE (intbitset-4.0.0.tar.gz) = 192986
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- cython-3.11 : lang/cython@py311
- py311-setuptools>=63.1.0 : devel/py-setuptools@py311
- python3.11 : lang/python311
- Test dependencies:
-
- py311-pytest>=7,1 : devel/py-pytest@py311
- python3.11 : lang/python311
- Runtime dependencies:
-
- py311-setuptools>=63.1.0 : devel/py-setuptools@py311
- python3.11 : lang/python311
- This port is required by:
- for Run
-
Deleted ports which required this port:
- * - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...
Configuration Options:
- No options to configure
- Options name:
- devel_py-intbitset
- USES:
- python
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
4.0.0 03 Nov 2024 19:50:28 |
Kai Knoblich (kai) |
devel/py-intbitset: Update to 4.0.0
Changelog:
https://github.com/inveniosoftware-contrib/intbitset/releases/tag/v4.0.0 |
3.1.0 09 Mar 2024 09:48:50 |
Kai Knoblich (kai) |
devel/py-intbitset: Update to 3.1.0
Changelog:
https://github.com/inveniosoftware-contrib/intbitset/releases/tag/v3.1.0 |
3.0.2 27 Jun 2023 19:34:34 |
Rene Ladan (rene) |
all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568> |
3.0.2 26 Feb 2023 13:23:58 |
Kai Knoblich (kai) |
devel/py-intbitset: Update to 3.0.2
Changelog:
* Support Python 3.11
* Regenerate C code accordingly
* Drop support for Python 3.6 |
3.0.1 11 Jan 2023 15:58:34 |
Dmitry Marakasov (amdmi3) |
*/*: rename CHEESESHOP to PYPI in MASTER_SITES
PR: 267994
Differential revision: D37518
Approved by: bapt |
3.0.1 20 Dec 2022 09:14:27 |
Kai Knoblich (kai) |
devel/py-intbitset: Update to 3.0.1
While I'm here:
* Limit to Python 3.10 as maximum version because building with
Python 3.11 doesn't succeed.
* Switch to USE_PYTHON=pytest
Changelog:
https://github.com/inveniosoftware/intbitset/blob/v3.0.1/CHANGES.rst |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
3.0.0 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
3.0.0 05 Mar 2022 08:32:28 |
Kai Knoblich (kai) |
devel/py-intbitset: Update to 3.0.0
* Remove no longer required patch.
Changelog:
https://github.com/inveniosoftware/intbitset/blob/v3.0.0/CHANGES.rst |
2.4.1 07 Apr 2021 08:09:01 |
Mathieu Arnold (mat) |
One more small cleanup, forgotten yesterday.
Reported by: lwhsu |
2.4.1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
2.4.1 28 Dec 2020 23:02:15 |
antoine |
Drop python 2.7 support from a few ports
With hat: portmgr |
2.4.1 24 Dec 2020 13:46:02 |
kai |
Relax hardcoded paths to fix build with Python 3.8.7
Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the
shared libs naming scheme. This means "EXT_SUFFIX" is now derived from
SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so".
The affected ports strip the libaries in the "post-install" target via
hardcoded path(s) and the build fails at the end because the new extension
is not expected at this place.
Remedy the issue by adding wildcards to these paths. This should also
prepare the ports for future Python releases, which will use the new shared
libs naming scheme.
[1] https://bugs.python.org/issue42604
PR: 252057
Reported by: John Kennedy
Reviewed by: fluffy, koobs
Approved by: koobs (python) |
2.4.1 04 Dec 2020 10:13:30 |
kai |
devel/py-intbitset: Update to 2.4.1
Changelog:
https://github.com/inveniosoftware/intbitset/blob/v2.4.1/CHANGES.rst |
2.4.0 02 Jan 2020 19:17:27 |
kai |
devel/py-intbitset: Update to 2.4.0
* Switch back to PyPI because the new release now contains all necessary
changes to work with newer Python versions.
Changelog:
https://github.com/inveniosoftware/intbitset/blob/v2.4.0/CHANGES.rst |
2.3.0.9 14 Dec 2019 14:56:40 |
kai |
devel/py-intbitset: Enable support for Python 3.7 and 3.8
* Update to a more recent commit which contains a regenerated version of
intbitset.c that was created with Cython 0.29.14 (not in Ports tree, yet).
With the regenerated code the package can now also be built with
Python 3.7 and 3.8.
PR: 233770 (related) |
2.3.0_1 07 Nov 2019 19:51:31 |
amdmi3 |
- Limit python version (does not build with 3.7+)
- Silence stripping
Approved by: portmgr blanket |
2.3.0_1 09 Jul 2019 12:00:26 |
pkubaj |
devel/py-intbitset: unbreak on ARM platforms
Tested with native build on BeagleBone Black (armv7, probably also builds on
armv6).
Approved by: mentors (implicit approval) |
2.3.0_1 10 May 2019 15:40:48 |
linimon |
This port now builds on aarch64.
Approved by: portmgr (tier-2 blanket) |
2.3.0_1 01 Feb 2019 18:55:18 |
kai |
Change my maintainer email address to my new one at the FreeBSD project.
Reviewed by: miwi (mentor)
Approved by: miwi (mentor)
Differential Revision: https://reviews.freebsd.org/D19050 |
2.3.0_1 12 Aug 2018 05:00:27 |
koobs |
devel/py-intbitset: Patch out march/mtune/-O3 (Respect CFLAGS)
ports r476958 added BROKEN to non-x86 ARCH's due to:
fails to compile: the clang compiler does not support -march=core2
Ports must respect user CFLAGS, and beside this port appending its own flags,
overriding system/ports supplied CFLAGS, was also adding march/mtune flags,
the former of which was set to an x86 specific CPU.
This change patches out these flags to address the issue.
While I'm here, level up port compliance (strip shared libraries)
Approved by: portmgr (blanket, framework compliance)
MFH: 2018Q3 |
2.3.0 12 Aug 2018 04:10:41 |
linimon |
Mark as broken on arm. (Presumably it will fail on other non-x86 archs,
but logs are not yet available.)
Approved by: portmgr (tier-2 blanket) |
2.3.0 28 Jul 2018 12:07:10 |
miwi |
The intbitset library provides a set implementation to store sorted unsigned
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. |