Commits
David B. Evans authored 16fb96d270a
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 File-pushd 1.014 |
7 + | perl5.setup File-pushd 1.016 |
8 8 | license Apache-2 |
9 9 | maintainers nomaintainer |
10 10 | |
11 11 | description change directory temporarily for a limited scope |
12 12 | |
13 13 | long_description File::pushd does a temporary chdir that is easily and \ |
14 14 | automatically reverted, similar to pushd in some Unix \ |
15 15 | command shells. It works by creating an object that caches \ |
16 16 | the original working directory. When the object is destroyed, \ |
17 17 | the destructor calls chdir to revert to the original working \ |
18 18 | directory. By storing the object in a lexical variable with a \ |
19 19 | limited scope, this happens automatically at the end of the scope. |
20 20 | |
21 - | checksums rmd160 200a8dd5aa0e29ab307937f7a3f5424bef72da6a \ |
22 - | sha256 b5ab37ffe3acbec53efb7c77b4423a2c79afa30a48298e751b9ebee3fdc6340b |
21 + | checksums rmd160 ced66e34c2bcd419545b3578c33596013e85d43d \ |
22 + | sha256 d73a7f09442983b098260df3df7a832a5f660773a313ca273fa8b56665f97cdc \ |
23 + | size 19798 |
23 24 | |
24 25 | platforms darwin |
25 26 | supported_archs noarch |
26 27 | |
27 28 | if {${perl5.major} != ""} { |
28 29 | depends_lib-append \ |
29 30 | port:p${perl5.major}-file-path \ |
30 31 | port:p${perl5.major}-file-temp \ |
31 32 | port:p${perl5.major}-pathtools \ |
32 33 | port:p${perl5.major}-sub-exporter |
33 34 | } |