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 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name py-virtualenvwrapper |
---|
7 | set real_name virtualenvwrapper |
---|
8 | version 4.7.2 |
---|
9 | platforms darwin |
---|
10 | supported_archs noarch |
---|
11 | license MIT |
---|
12 | maintainers nomaintainer |
---|
13 | |
---|
14 | description Enhancements to virtualenv |
---|
15 | long_description virtualenvwrapper is a set of extensions to Ian \ |
---|
16 | Bicking's virtualenv tool. The extensions include \ |
---|
17 | wrappers for creating and deleting virtual \ |
---|
18 | environments and otherwise managing your \ |
---|
19 | development workflow, making it easier to work on \ |
---|
20 | more than one project at a time without \ |
---|
21 | introducing conflicts in their dependencies. |
---|
22 | homepage http://www.doughellmann.com/projects/${real_name}/ |
---|
23 | |
---|
24 | master_sites pypi:v/${real_name} |
---|
25 | distname ${real_name}-${version} |
---|
26 | |
---|
27 | checksums rmd160 533920ae3ed6e1eb9cf978ce15ec55fedaa7b47c \ |
---|
28 | sha256 63cffd24148c969245cceff561b18ba0b5b2b48dcb059e71425adad2d4ffe349 |
---|
29 | |
---|
30 | python.versions 27 34 35 36 |
---|
31 | |
---|
32 | if {${name} ne ${subport}} { |
---|
33 | depends_lib-append port:py${python.version}-pbr \ |
---|
34 | port:py${python.version}-setuptools \ |
---|
35 | port:py${python.version}-stevedore \ |
---|
36 | port:py${python.version}-virtualenv \ |
---|
37 | port:py${python.version}-virtualenv-clone |
---|
38 | |
---|
39 | livecheck.type none |
---|
40 | } else { |
---|
41 | livecheck.type pypi |
---|
42 | } |
---|
43 | |
---|
44 | notes " |
---|
45 | You might need to set some variables and source the shell script. For example: |
---|
46 | |
---|
47 | export VIRTUALENVWRAPPER_PYTHON='${prefix}/bin/python2.7' |
---|
48 | export VIRTUALENVWRAPPER_VIRTUALENV='${prefix}/bin/virtualenv-2.7' |
---|
49 | export VIRTUALENVWRAPPER_VIRTUALENV_CLONE='${prefix}/bin/virtualenv-clone-2.7' |
---|
50 | source ${prefix}/bin/virtualenvwrapper.sh-2.7 |
---|
51 | " |
---|