2014-04-30 12:40:36 +00:00
|
|
|
# -*- 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
|
2008-02-23 05:24:51 +00:00
|
|
|
|
2014-04-30 12:39:26 +00:00
|
|
|
PortSystem 1.0
|
|
|
|
|
PortGroup python 1.0
|
2008-02-23 05:24:51 +00:00
|
|
|
|
2014-04-30 12:39:26 +00:00
|
|
|
name py-construct
|
2020-01-20 16:32:24 -05:00
|
|
|
|
2021-03-31 16:48:28 -04:00
|
|
|
version 2.10.64
|
|
|
|
|
checksums rmd160 ad793f8a1cacd4eb6ab844ef1cbb3b7d77296556 \
|
|
|
|
|
sha256 1ffad7063a41ce41794e815a1eb5efb67e94b44b75d256a29785968288f01719 \
|
|
|
|
|
size 55943
|
2014-04-30 12:39:26 +00:00
|
|
|
revision 0
|
2020-01-20 16:32:24 -05:00
|
|
|
|
2014-04-30 12:40:36 +00:00
|
|
|
categories-append devel
|
2014-04-30 12:39:26 +00:00
|
|
|
platforms darwin
|
2014-04-30 12:40:36 +00:00
|
|
|
license MIT
|
2014-04-30 12:39:26 +00:00
|
|
|
supported_archs noarch
|
2008-02-23 05:24:51 +00:00
|
|
|
|
2021-01-26 11:53:16 -05:00
|
|
|
python.versions 27 35 36 37 38 39
|
2014-04-30 12:40:36 +00:00
|
|
|
|
2019-11-27 21:14:58 -05:00
|
|
|
maintainers {michaelld @michaelld} openmaintainer
|
2014-04-30 12:39:26 +00:00
|
|
|
|
|
|
|
|
description python module for parsing and building binary or textual data structures
|
|
|
|
|
|
2016-07-13 11:18:01 +00:00
|
|
|
long_description \
|
|
|
|
|
Construct is a python library for parsing and building of data structures \
|
|
|
|
|
(binary or textual). It is based on the concept of defining data \
|
|
|
|
|
structures in a declarative manner, rather than procedural code: more \
|
|
|
|
|
complex constructs are composed of a hierarchy of simpler ones.
|
2014-04-30 12:39:26 +00:00
|
|
|
|
2019-11-27 09:05:29 -05:00
|
|
|
homepage https://construct.readthedocs.org
|
2014-04-30 12:39:26 +00:00
|
|
|
|
2013-12-05 08:44:51 +00:00
|
|
|
if {${name} ne ${subport}} {
|
2020-01-29 12:48:58 -05:00
|
|
|
|
|
|
|
|
if { ${python.version} == 27 || ${python.version} == 35} {
|
|
|
|
|
version 2.10.54
|
|
|
|
|
checksums rmd160 8ef31fe45319257ca905e25bee6a108a5f659e2a \
|
|
|
|
|
sha256 3c130a67f05610557dd1b27e062a7165f92b517f9ed50db880ebe068696fd712 \
|
|
|
|
|
size 55318
|
|
|
|
|
revision 0
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-30 03:57:27 +00:00
|
|
|
depends_build-append \
|
|
|
|
|
port:py${python.version}-setuptools
|
2019-11-27 09:05:29 -05:00
|
|
|
|
2014-12-30 03:57:27 +00:00
|
|
|
depends_lib-append port:py${python.version}-six
|
2014-04-30 12:40:36 +00:00
|
|
|
|
|
|
|
|
livecheck.type none
|
2008-02-23 05:24:51 +00:00
|
|
|
}
|
2020-01-29 12:48:58 -05:00
|
|
|
|
|
|
|
|
master_sites pypi:c/construct/
|
|
|
|
|
distname construct-${version}
|