Ticket #55148: Portfile.diff

File Portfile.diff, 1.5 KB (added by jwhowarth, 7 years ago)

Portfile diff to update pymol to 1.9.0.0 and add python36 variant

  • Portfile

    old new  
    66PortGroup           compilers 1.0
    77
    88name                pymol
    9 version             1.8.7.0
     9version             1.9.0.0
    1010categories          science chemistry
    1111license             PSF
    1212maintainers         gmail.com:howarth.at.macports openmaintainer
     
    2222master_sites        sourceforge
    2323fetch.type          svn
    2424svn.url             https://svn.code.sf.net/p/pymol/code/trunk/pymol
    25 svn.revision        4176
     25svn.revision        4179
    2626worksrcdir          pymol
    2727
    2828compilers.choose    cc cxx
    2929compilers.setup
    3030
    31 variant python27 conflicts python34 python35 description {Use Python 2.7} {}
    32 variant python34 conflicts python27 python35 description {Use Python 3.4} {}
    33 variant python35 conflicts python27 python34 description {Use Python 3.5} {}
     31variant python27 conflicts python34 python35 python36 description {Use Python 2.7} {}
     32variant python34 conflicts python27 python35 python36 description {Use Python 3.4} {}
     33variant python35 conflicts python27 python34 python36 description {Use Python 3.5} {}
     34variant python36 conflicts python27 python34 python35 description {Use Python 3.6} {}
    3435if {[variant_isset python34]} {
    3536    python.default_version 34
    3637} elseif {[variant_isset python35]} {
    3738    python.default_version 35
     39} elseif {[variant_isset python36]} {
     40    python.default_version 36
    3841} else {
    3942    default_variants +python27
    4043    python.default_version 27