mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add py-bitvector 1.3, a pure-Python memory-efficient packed
representation for bit arrays. PR: ports/107251 Submitted by: Li-Wen Hsu <lwhsu at lwhsu.org>
This commit is contained in:
parent
93e391fb7d
commit
99a2f588a8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=180881
4 changed files with 35 additions and 0 deletions
|
@ -282,6 +282,7 @@
|
|||
SUBDIR += pspp
|
||||
SUBDIR += py-basemap
|
||||
SUBDIR += py-basemap-data
|
||||
SUBDIR += py-bitvector
|
||||
SUBDIR += py-fpconst
|
||||
SUBDIR += py-gato
|
||||
SUBDIR += py-gnuplot
|
||||
|
|
25
math/py-bitvector/Makefile
Normal file
25
math/py-bitvector/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# New ports collection makefile for: py-bitvector
|
||||
# Date created: 2006-12-27
|
||||
# Whom: Li-Wen Hsu <lwhsu@lwhsu.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= bitvector
|
||||
PORTVERSION= 1.3
|
||||
CATEGORIES= math python
|
||||
MASTER_SITES= http://cobweb.ecn.purdue.edu/~kak/dist/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= BitVector-${PORTVERSION}
|
||||
|
||||
MAINTAINER= lwhsu@lwhsu.org
|
||||
COMMENT= A pure-Python memory-efficient packed representation for bit arrays
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= yes
|
||||
|
||||
PLIST_FILES= %%PYTHON_SITELIBDIR%%/BitVector.py \
|
||||
%%PYTHON_SITELIBDIR%%/BitVector.pyc \
|
||||
%%PYTHON_SITELIBDIR%%/BitVector.pyo
|
||||
|
||||
.include <bsd.port.mk>
|
3
math/py-bitvector/distinfo
Normal file
3
math/py-bitvector/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (BitVector-1.3.tar.gz) = 7de8e88b99b40fab1caae69d786cbdf1
|
||||
SHA256 (BitVector-1.3.tar.gz) = b34ff229c6833c1964578fe7b7c687ecadea494d3b6d89b37ec9d1d2c4f05a8c
|
||||
SIZE (BitVector-1.3.tar.gz) = 56486
|
6
math/py-bitvector/pkg-descr
Normal file
6
math/py-bitvector/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
The BitVector class for a memory-efficient packed representation of bit arrays
|
||||
and for logical operations on such arrays. The core idea used in this Python
|
||||
script for bin packing is based on an internet posting by Josiah Carlson to
|
||||
the Pyrex mailing list.
|
||||
|
||||
WWW: http://rvl4.ecn.purdue.edu/~kak/dist/BitVector-1.3.html
|
Loading…
Add table
Reference in a new issue