Commits
Chris Jones authored c0366ca5311
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 | PortGroup github 1.0 |
6 6 | |
7 7 | name py-cymem |
8 - | version 2.0.2 |
8 + | version 2.0.3 |
9 9 | revision 0 |
10 10 | github.setup explosion cymem ${version} v |
11 11 | |
12 - | checksums rmd160 9b3bc82d8c696504e6935491b0c75ed599d9b647 \ |
13 - | sha256 4413934f014db60571ee70c86774e9bd8d1ff872641f15e53f6331d4c59065f9 \ |
14 - | size 9882 |
12 + | checksums rmd160 1d41abed4bac470ba25f964b1430f4cbe2df73ec \ |
13 + | sha256 53cf30e6f9fb3f5c9f008840b649aefe2a95dd601cf4919aa02a2eaea4d52ba7 \ |
14 + | size 9604 |
15 15 | |
16 16 | platforms darwin |
17 17 | supported_archs x86_64 |
18 18 | |
19 19 | license MIT |
20 20 | |
21 21 | maintainers {jonesc @cjones051073} openmaintainer |
22 22 | |
23 23 | description Cython memory pool for RAII-style memory management |
24 24 | long_description ${description} |
38 38 | depends_test-append \ |
39 39 | port:py${python.version}-pytest |
40 40 | |
41 41 | post-extract { |
42 42 | # Fix hard-coded dep ... |
43 43 | reinplace "s|0.33.0|0.33.999|g" ${worksrcpath}/setup.py |
44 44 | } |
45 45 | |
46 46 | livecheck.type none |
47 47 | |
48 + | } else { |
49 + | |
50 + | # overload the github livecheck regex to look for versions that |
51 + | # are just numbers and '.', no letters (e.g., "3.7.3_rc2"). |
52 + | github.livecheck.regex {([0-9.]+)} |
53 + | |
48 54 | } |