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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python24 1.0 |
---|
6 | |
---|
7 | name py-virtualenv |
---|
8 | version 1.3.2 |
---|
9 | categories python |
---|
10 | platforms darwin |
---|
11 | maintainers arthurkoziel.com:arthur openmaintainer |
---|
12 | homepage http://pypi.python.org/pypi/virtualenv |
---|
13 | description Virtual Python Environment builder |
---|
14 | long_description virtualenv is a tool to create isolated Python \ |
---|
15 | environments. |
---|
16 | |
---|
17 | master_sites http://pypi.python.org/packages/source/v/virtualenv/ |
---|
18 | distname virtualenv-${version} |
---|
19 | checksums md5 a013d5a7d9aeddc16bee88604d6de636 \ |
---|
20 | sha1 151e94beae9bb22025ae0752f40e5cc6c760aeeb \ |
---|
21 | rmd160 848466ac8950bdab46756b8a675d5f9f9da9a5ac |
---|
22 | |
---|
23 | depends_lib-append port:py-setuptools |
---|
24 | |
---|
25 | post-destroot { |
---|
26 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
27 | xinstall -m 644 -W ${worksrcpath}/docs index.txt license.txt \ |
---|
28 | ${destroot}${prefix}/share/doc/${name} |
---|
29 | |
---|
30 | move ${destroot}${prefix}/bin/virtualenv ${destroot}${prefix}/bin/virtualenv-2.4 |
---|
31 | } |
---|
32 | |
---|
33 | livecheck.check regex |
---|
34 | livecheck.url http://pypi.python.org/pypi/virtualenv |
---|
35 | livecheck.regex virtualenv (1\.\[0-9\]+\.\[0-9\]+) |
---|