Commits
Andrew Stromnov authored 409509b3e57
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | name py-meta |
7 - | version 0.4.1 |
7 + | version 1.0.2 |
8 8 | revision 0 |
9 9 | categories-append devel |
10 10 | platforms darwin |
11 11 | license BSD |
12 12 | supported_archs noarch |
13 13 | |
14 - | python.versions 27 |
14 + | python.versions 27 36 37 |
15 15 | |
16 16 | maintainers {stromnov @stromnov} openmaintainer |
17 17 | |
18 18 | description A Pure Python module containing a framework to manipulate \ |
19 19 | and analyze python ast's and bytecode. |
20 20 | |
21 21 | long_description ${description} |
22 22 | |
23 23 | homepage http://srossross.github.com/Meta |
24 - | master_sites pypi:m/meta/ |
24 + | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
25 25 | |
26 - | distname meta-${version} |
26 + | distname ${python.rootname}-${version} |
27 27 | |
28 - | checksums rmd160 894cd7c3c91b923e7d61b6b485278702566a587e \ |
29 - | sha256 58d2c012beea9f2aaea82fbf67d0d6b3124e66c79cbc31829beb2005c3372885 |
28 + | checksums rmd160 f5d052a7d7400252b0e20d2802b202efbf621f51 \ |
29 + | sha256 35bbd24f212c09e04836ef4cac3e3a0e16e24e89e5452c6072a517bf674b0676 \ |
30 + | size 49335 |
30 31 | |
31 32 | if {${name} ne ${subport}} { |
32 33 | conflicts py${python.version}-meta-devel |
33 34 | |
34 35 | depends_lib-append port:py${python.version}-setuptools |
35 36 | |
36 37 | livecheck.type none |
37 - | } else { |
38 - | livecheck.type regex |
39 - | livecheck.url https://pypi.python.org/pypi/meta/json |
40 - | livecheck.regex "meta-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
41 38 | } |