Commits
Mojca Miklavec authored and Chih-Hsuan Yen committed ea438c65417
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 python 1.0 |
5 + | |
6 + | name py-jsonpointer |
7 + | version 2.0 |
8 + | revision 0 |
9 + | |
10 + | platforms darwin |
11 + | supported_archs noarch |
12 + | license BSD |
13 + | maintainers nomaintainer |
14 + | |
15 + | description Identify specific nodes in a JSON document (RFC 6901) |
16 + | long_description ${description} |
17 + | |
18 + | homepage https://github.com/stefankoegl/python-json-pointer |
19 + | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
20 + | distname ${python.rootname}-${version} |
21 + | |
22 + | checksums sha256 c192ba86648e05fdae4f08a17ec25180a9aef5008d973407b581798a83975362 \ |
23 + | rmd160 4fe729b7eef7e220e1bf7015dcc837e330db1582 \ |
24 + | size 8699 |
25 + | |
26 + | python.versions 37 |
27 + | |
28 + | if {${name} ne ${subport}} { |
29 + | depends_build-append \ |
30 + | port:py${python.version}-setuptools |
31 + | |
32 + | test.run yes |
33 + | |
34 + | livecheck.type none |
35 + | } |