Commits
Mojca Miklavec authored and Chih-Hsuan Yen committed 92ae17ababf
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-jsonpatch |
7 + | version 1.23 |
8 + | revision 0 |
9 + | |
10 + | platforms darwin |
11 + | supported_archs noarch |
12 + | license unknown |
13 + | maintainers nomaintainer |
14 + | |
15 + | description Apply JSON-Patches (RFC 6902) |
16 + | long_description ${description} |
17 + | |
18 + | homepage https://github.com/stefankoegl/python-json-patch |
19 + | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
20 + | distname ${python.rootname}-${version} |
21 + | |
22 + | checksums sha256 49f29cab70e9068db3b1dc6b656cbe2ee4edf7dfe9bf5a0055f17a4b6804a4b9 \ |
23 + | rmd160 4dc717550dc31026db66d035c8ff13c28b6b2b5c \ |
24 + | size 18162 |
25 + | |
26 + | python.versions 37 |
27 + | |
28 + | if {${name} ne ${subport}} { |
29 + | depends_build-append \ |
30 + | port:py${python.version}-setuptools |
31 + | |
32 + | depends_run-append \ |
33 + | port:py${python.version}-jsonpointer |
34 + | |
35 + | test.run yes |
36 + | |
37 + | livecheck.type none |
38 + | } |