Ticket #38403: Portfile

File Portfile, 1.1 KB (added by sean@…, 11 years ago)
Line 
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
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-bitarray
8version             0.8.1
9categories          python
10platforms           darwin
11license             PSF
12python.versions     26 27
13
14homepage            https://github.com/ilanschnell/bitarray
15description         This module provides an object type which efficiently represents an array of booleans.
16long_description    This module provides an object type which efficiently represents \
17                    an array of booleans. Bitarrays are sequence types and behave very \
18                    much like usual lists. Eight bits are represented by one byte in \
19                    a contiguous block of memory. The user can select between two \
20                    representations\; little-endian and big-endian. All of the functionality \
21                    is implemented in C.
22maintainers         node99.org:sean openmaintainer
23
24fetch.type          git
25git.url             https://github.com/ilanschnell/bitarray.git