Ticket #37763: Portfile-mod_wsgi.2.diff

File Portfile-mod_wsgi.2.diff, 3.0 KB (added by bryan@…, 11 years ago)

Portfile diff for mod_wsgi 3.4 and python 3.2 and 3.3

  • (a) Portfile.txt vs. (b) /Users/bkeller/src/ports/www/mod_wsgi/Portfile

    a b  
    33PortSystem 1.0
    44
    55name            mod_wsgi
    6 version         3.3
     6version         3.4
    77categories      www python
    88platforms       darwin
    99license         Apache
     
    1717
    1818homepage        http://www.modwsgi.org/
    1919master_sites    googlecode:modwsgi
    20 checksums       md5     6172bb2bbabcd0c25867c2bc06f99dbb \
    21                 sha1    f32d38e5d3ed5de1efd5abefb52678f833dc9166 \
    22                 rmd160  759cf57d691924271fbc45af10596c033c063c89
     20checksums       md5     f42d69190ea0c337ef259cbe8d94d985 \
     21                sha1    92ebc48e60ab658a984f97fd40cb71e0ae895469
    2322
    2423depends_lib     port:apache2
    2524
     
    4443    && ![variant_isset python25]
    4544    && ![variant_isset python26]
    4645    && ![variant_isset python27]
    47     && ![variant_isset python31]} {
     46    && ![variant_isset python31]
     47    && ![variant_isset python32]
     48    && ![variant_isset python33]} {
    4849    default_variants +python26
    4950}
    5051
    51 variant python24 conflicts python25 python26 python27 python31 description {Use Python 2.4} {
     52variant python24 conflicts python25 python26 python27 python31 python32 python33 description {Use Python 2.4} {
    5253    depends_lib-append port:python24
    5354    configure.args-append --with-python=${prefix}/bin/python2.4
    5455}
    5556
    56 variant python25 conflicts python24 python26 python27 python31 description {Use Python 2.5} {
     57variant python25 conflicts python24 python26 python27 python31 python32 python33 description {Use Python 2.5} {
    5758    depends_lib-append port:python25
    5859    configure.args-append --with-python=${prefix}/bin/python2.5
    5960}
    6061
    61 variant python26 conflicts python24 python25 python27 python31 description {Use Python 2.6} {
     62variant python26 conflicts python24 python25 python27 python31 python32 python33 description {Use Python 2.6} {
    6263    depends_lib-append port:python26
    6364    configure.args-append --with-python=${prefix}/bin/python2.6
    6465}
    6566
    66 variant python27 conflicts python24 python25 python26 python31 description {Use Python 2.7} {
     67variant python27 conflicts python24 python25 python26 python31 python32 python33 description {Use Python 2.7} {
    6768    depends_lib-append port:python27
    6869    configure.args-append --with-python=${prefix}/bin/python2.7
    6970}
    7071
    71 variant python31 conflicts python24 python25 python26 python27 description {Use Python 3.1} {
     72variant python31 conflicts python24 python25 python26 python27 python32 python33 description {Use Python 3.1} {
    7273    depends_lib-append port:python31
    7374    configure.args-append --with-python=${prefix}/bin/python3.1
    7475}
    7576
     77variant python32 conflicts python24 python25 python26 python27 python31 python33 description {Use Python 3.2} {
     78    depends_lib-append port:python32
     79    configure.args-append --with-python=${prefix}/bin/python3.2
     80}
     81
     82variant python33 conflicts python24 python25 python26 python27 python31 python32 description {Use Python 3.3} {
     83    depends_lib-append port:python33
     84    configure.args-append --with-python=${prefix}/bin/python3.3
     85}
     86