Ticket #37677: Portfile

File Portfile, 1.5 KB (added by petrrr, 11 years ago)

The updated Portfile for py-bitarray

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-append   math
10platforms           darwin
11
12maintainers         bo.ingv.it:Peter.Danecek openmaintainer
13
14license             PSF
15
16description         A efficient implementation of arrays of booleans
17
18long_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
26homepage            https://github.com/ilanschnell/bitarray
27
28distname            bitarray-${version}
29master_sites        http://pypi.python.org/packages/source/b/bitarray/
30
31checksums           md5     3825184f54f4d93508a28031b4c65d3b \
32                    rmd160  58c2a2665c2759f23bf1ab096de8c34bf7fcfcbb \
33                    sha256  7da501356e48a83c61f479393681c1bc4b94e5a34ace7e08cb29e7dd9290ab18
34
35python.versions     24 25 26 27 31 32
36
37if {${subport} != ${name}} {
38    depends_build         port:py${python.version}-distribute
39}
40