Bug 153914 - New port: devel/py-bitarray: Efficient arrays of booleans
Summary: New port: devel/py-bitarray: Efficient arrays of booleans
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-11 23:00 UTC by Sofian Brabez
Modified: 2011-01-18 06:30 UTC (History)
0 users

See Also:


Attachments
py26-bitarray-0.3.5.shar (3.45 KB, text/plain)
2011-01-11 23:00 UTC, Sofian Brabez
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Sofian Brabez 2011-01-11 23:00:17 UTC
This module provides an object type which efficiently represents an array of
booleans. Bitarrays are sequence types and behave very much like usual lists.
Eight bits are represented by one byte in contiguous block of memory. The user
can select between two representations; little-endian and big-endian. Most of
the functionality is implemented in C. Methods for accessing the machine
representation are provided. This can be useful when bit level access to binary
files is required, such as portable bitmap image files (.pbm). Also, when
dealing with compressed data which uses variable bit length encoding, you may
find this module useful.

WWW:	http://pypi.python.org/pypi/bitarray

http://regis.goodking.ca/tb/logs/7-sbz/py26-bitarray-0.3.5.log
http://regis.goodking.ca/tb/logs/7-sbz/py26-bitarray-0.3.5.log
http://regis.goodking.ca/tb/logs/7-sbz/py26-bitarray-0.3.5.log

Generated with FreeBSD Port Tools 0.99
Comment 1 dfilter service freebsd_committer freebsd_triage 2011-01-18 06:20:14 UTC
wen         2011-01-18 06:20:07 UTC

  FreeBSD ports repository

  Modified files:
    devel                Makefile 
  Added files:
    devel/py-bitarray    Makefile distinfo pkg-descr pkg-plist 
  Log:
  This module provides an object type which efficiently represents an array of
  booleans. Bitarrays are sequence types and behave very much like usual lists.
  Eight bits are represented by one byte in contiguous block of memory. The user
  can select between two representations; little-endian and big-endian. Most of
  the functionality is implemented in C. Methods for accessing the machine
  representation are provided. This can be useful when bit level access to binary
  files is required, such as portable bitmap image files (.pbm). Also, when
  dealing with compressed data which uses variable bit length encoding, you may
  find this module useful.
  
  WWW:    http://pypi.python.org/pypi/bitarray
  
  PR:             ports/153914
  Submitted by:   Sofian Brabez <sbrabez@gmail.com>
  Feature safe:   yes
  
  Revision  Changes    Path
  1.4199    +1 -0      ports/devel/Makefile
  1.1       +41 -0     ports/devel/py-bitarray/Makefile (new)
  1.1       +2 -0      ports/devel/py-bitarray/distinfo (new)
  1.1       +11 -0     ports/devel/py-bitarray/pkg-descr (new)
  1.1       +17 -0     ports/devel/py-bitarray/pkg-plist (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 2 Wen Heping freebsd_committer freebsd_triage 2011-01-18 06:21:16 UTC
State Changed
From-To: open->closed

New port added. Thanks!