Commits
Andrew Kornilov authored and Perry E. Metzger committed 5976da3fd93
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 + | |
3 + | PortSystem 1.0 |
4 + | PortGroup github 1.0 |
5 + | PortGroup python 1.0 |
6 + | |
7 + | github.setup eerimoq bitstruct 4.0.0 |
8 + | |
9 + | name py-bitstruct |
10 + | categories-append devel |
11 + | platforms darwin |
12 + | license MIT |
13 + | maintainers {@ierofant gmail.com:aw.kornilov} openmaintainer |
14 + | description Python bit pack/unpack package |
15 + | |
16 + | long_description This module is intended to have a similar interface as the python struct module, \ |
17 + | but working on bits instead of primitive data types (char, int, ...). |
18 + | |
19 + | python.versions 27 36 37 |
20 + | |
21 + | checksums rmd160 e6594f146cea5cdebfceb685f8095e1fa913fbda \ |
22 + | sha256 3046894ab1c09c572863799efed565d7fad96da03273699fede72a6a857f95ca \ |
23 + | size 17310 |
24 + | |
25 + | if {${name} ne ${subport}} { |
26 + | depends_build-append port:py${python.version}-setuptools |
27 + | |
28 + | livecheck.type none |
29 + | } |