Last change
on this file since 65908 was
65908,
checked in by jmr@…, 10 years ago
|
switch py26 ports from using setuptools to distribute (#22403)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.2 KB
|
Line | |
---|
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: Portfile 65908 2010-04-02 22:28:17Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-virtualenv |
---|
8 | version 1.4.5 |
---|
9 | categories-append devel |
---|
10 | platforms darwin |
---|
11 | maintainers akitada 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 d3c621dd9797789fef78442e336df63e \ |
---|
20 | sha1 2c13c814792eee86f46cf5d9d781baed6d269c10 \ |
---|
21 | rmd160 5168b4bb21e5c59121a639ea78857d06aa60b04e |
---|
22 | |
---|
23 | post-destroot { |
---|
24 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
25 | foreach f [glob -directory ${worksrcpath}/docs *] { |
---|
26 | copy $f ${destroot}${prefix}/share/doc/${name}/[file tail $f] |
---|
27 | } |
---|
28 | } |
---|
29 | |
---|
30 | depends_lib-append port:py26-distribute |
---|
31 | |
---|
32 | livecheck.type regex |
---|
33 | livecheck.url http://pypi.python.org/pypi/virtualenv |
---|
34 | livecheck.regex virtualenv (1\.\[0-9\]+\.\[0-9\]+) |
---|
Note: See
TracBrowser
for help on using the repository browser.