Commits
David B. Evans authored eeb515abdcd
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 perl5 1.0 |
5 5 | |
6 6 | perl5.branches 5.26 |
7 - | perl5.setup Term-Table 0.012 |
7 + | perl5.setup Term-Table 0.013 |
8 8 | license {Artistic-1 GPL} |
9 9 | maintainers nomaintainer |
10 10 | description Term::Table - Format a header and rows into a table |
11 11 | long_description ${description} |
12 12 | |
13 13 | platforms darwin |
14 14 | |
15 - | checksums rmd160 9d9bc5db8071e6a524a6a3d45d9febf8a23edf89 \ |
16 - | sha256 4db6118fbf862bd32a8402e1ee28ce2044d0e0887ef29b726e917ab4258a063a |
15 + | checksums rmd160 ba4a9abb26586d9bf4356e5e0797abe8d5ed44f1 \ |
16 + | sha256 ffeb36dcb25c575b9f63657d1591a14af22cd10ba23cc76de9d976b426f4fc40 \ |
17 + | size 26100 |
17 18 | |
18 19 | if {${perl5.major} != ""} { |
19 - | # requires Test2::Tools::Tiny (from Test::Simple) version 1.302072 |
20 - | # perl5.24 core version is 1.001014 so use our latest version 1.302078 instead |
21 20 | depends_build-append \ |
22 21 | port:p${perl5.major}-test-simple |
23 22 | |
24 23 | depends_lib-append \ |
25 24 | port:p${perl5.major}-importer \ |
26 25 | port:p${perl5.major}-term-size-any |
27 26 | |
28 - | # p5-term-table was previously part of p5-test2-suite now separate |
29 - | # deactivate old conflicting p5-test2-suite before activation |
30 - | pre-activate { |
31 - | set pname p${perl5.major}-test2-suite |
32 - | if {![catch {set installed [lindex [registry_active $pname] 0]}]} { |
33 - | set _version [lindex $installed 1] |
34 - | if {[vercmp $_version 0.000065] < 0} { |
35 - | registry_deactivate_composite $pname "" [list ports_nodepcheck 1] |
36 - | } |
37 - | } |
38 - | } |
39 - | |
40 27 | supported_archs noarch |
41 28 | } |