1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-bitarray |
---|
8 | version 0.8.1 |
---|
9 | categories-append math |
---|
10 | platforms darwin |
---|
11 | |
---|
12 | maintainers bo.ingv.it:Peter.Danecek openmaintainer |
---|
13 | |
---|
14 | license PSF |
---|
15 | |
---|
16 | description A efficient implementation of arrays of booleans |
---|
17 | |
---|
18 | long_description This module provides an object type which efficiently represents \ |
---|
19 | an array of booleans. Bitarrays are sequence types and behave \ |
---|
20 | very much like usual lists. Eight bits are represented by one byte \ |
---|
21 | in a contiguous block of memory. The user can select between two \ |
---|
22 | representations: little-endian and big-endian. Most of the \ |
---|
23 | functionality is implemented in C. Methods for accessing the \ |
---|
24 | machine representation are provided. |
---|
25 | |
---|
26 | homepage https://github.com/ilanschnell/bitarray |
---|
27 | |
---|
28 | distname bitarray-${version} |
---|
29 | master_sites http://pypi.python.org/packages/source/b/bitarray/ |
---|
30 | |
---|
31 | checksums md5 3825184f54f4d93508a28031b4c65d3b \ |
---|
32 | rmd160 58c2a2665c2759f23bf1ab096de8c34bf7fcfcbb \ |
---|
33 | sha256 7da501356e48a83c61f479393681c1bc4b94e5a34ace7e08cb29e7dd9290ab18 |
---|
34 | |
---|
35 | python.versions 24 25 26 27 31 32 |
---|
36 | |
---|
37 | if {${subport} != ${name}} { |
---|
38 | depends_build port:py${python.version}-distribute |
---|
39 | } |
---|
40 | |
---|