New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79190


Ignore:
Timestamp:
06/04/11 13:03:34 (4 years ago)
Author:
robitaille@…
Message:

py*-atpy: added variants for optional dependencies

Location:
trunk/dports/python
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/python/py25-atpy/Portfile

    r79188 r79190  
    77name                py25-atpy 
    88version             0.9.5.1 
     9revision            1 
    910maintainers         robitaille 
    1011 
     
    2728                    rmd160  435d5dc7e5bd38bf2303d3dfa808be149e0a6f5f 
    2829 
    29 depends_run-append  port:py25-numpy \ 
    30                     port:py25-pyfits \ 
    31                     port:py25-h5py \ 
    32                     port:py25-vo \ 
    33                     port:py25-mysql \ 
    34                     port:py25-pygresql \ 
    35                     port:py25-asciitable 
     30depends_run-append  port:py25-numpy 
     31 
     32variant fits description {Include support for FITS tables} { 
     33    depends_run-append  port:py25-pyfits 
     34} 
     35 
     36variant hdf5 description {Include support for HDF5 tables} { 
     37    depends_run-append  port:py25-h5py 
     38} 
     39 
     40variant vo description {Include support for VO tables} { 
     41    depends_run-append  port:py25-vo 
     42} 
     43 
     44variant ascii description {Include support for ASCII tables} { 
     45    depends_run-append  port:py25-asciitable 
     46} 
     47 
     48variant sql description {Include support for SQL databases} { 
     49    depends_run-append  port:py25-mysql \ 
     50                        port:py25-pygresql 
     51} 
     52 
     53variant all description {Include support for all input/output types (FITS, HDF5, VO, ASCII, and SQL)} { 
     54    depends_run-append  port:py25-pyfits \ 
     55                        port:py25-h5py \ 
     56                        port:py25-vo \ 
     57                        port:py25-asciitable \ 
     58                        port:py25-mysql \ 
     59                        port:py25-pygresql 
     60} 
     61 
     62default_variants    +fits +hdf5 +vo +ascii 
  • trunk/dports/python/py26-atpy/Portfile

    r79188 r79190  
    77name                py26-atpy 
    88version             0.9.5.1 
     9revision            1 
    910maintainers         robitaille 
    1011 
     
    2728                    rmd160  435d5dc7e5bd38bf2303d3dfa808be149e0a6f5f 
    2829 
    29 depends_run-append  port:py26-numpy \ 
    30                     port:py26-pyfits \ 
    31                     port:py26-h5py \ 
    32                     port:py26-vo \ 
    33                     port:py26-mysql \ 
    34                     port:py26-pygresql \ 
    35                     port:py26-asciitable 
     30depends_run-append  port:py26-numpy 
     31 
     32variant fits description {Include support for FITS tables} { 
     33    depends_run-append  port:py26-pyfits 
     34} 
     35 
     36variant hdf5 description {Include support for HDF5 tables} { 
     37    depends_run-append  port:py26-h5py 
     38} 
     39 
     40variant vo description {Include support for VO tables} { 
     41    depends_run-append  port:py26-vo 
     42} 
     43 
     44variant ascii description {Include support for ASCII tables} { 
     45    depends_run-append  port:py26-asciitable 
     46} 
     47 
     48variant sql description {Include support for SQL databases} { 
     49    depends_run-append  port:py26-mysql \ 
     50                        port:py26-pygresql 
     51} 
     52 
     53variant all description {Include support for all input/output types (FITS, HDF5, VO, ASCII, and SQL)} { 
     54    depends_run-append  port:py26-pyfits \ 
     55                        port:py26-h5py \ 
     56                        port:py26-vo \ 
     57                        port:py26-asciitable \ 
     58                        port:py26-mysql \ 
     59                        port:py26-pygresql 
     60} 
     61 
     62default_variants    +fits +hdf5 +vo +ascii 
  • trunk/dports/python/py27-atpy/Portfile

    r79188 r79190  
    77name                py27-atpy 
    88version             0.9.5.1 
     9revision            1 
    910maintainers         robitaille 
    1011 
     
    2728                    rmd160  435d5dc7e5bd38bf2303d3dfa808be149e0a6f5f 
    2829 
    29 depends_run-append  port:py27-numpy \ 
    30                     port:py27-pyfits \ 
    31                     port:py27-h5py \ 
    32                     port:py27-vo \ 
    33                     port:py27-mysql \ 
    34                     port:py27-pygresql \ 
    35                     port:py27-asciitable 
     30depends_run-append  port:py27-numpy 
     31 
     32variant fits description {Include support for FITS tables} { 
     33    depends_run-append  port:py27-pyfits 
     34} 
     35 
     36variant hdf5 description {Include support for HDF5 tables} { 
     37    depends_run-append  port:py27-h5py 
     38} 
     39 
     40variant vo description {Include support for VO tables} { 
     41    depends_run-append  port:py27-vo 
     42} 
     43 
     44variant ascii description {Include support for ASCII tables} { 
     45    depends_run-append  port:py27-asciitable 
     46} 
     47 
     48variant sql description {Include support for SQL databases} { 
     49    depends_run-append  port:py27-mysql \ 
     50                        port:py27-pygresql 
     51} 
     52 
     53variant all description {Include support for all input/output types (FITS, HDF5, VO, ASCII, and SQL)} { 
     54    depends_run-append  port:py27-pyfits \ 
     55                        port:py27-h5py \ 
     56                        port:py27-vo \ 
     57                        port:py27-asciitable \ 
     58                        port:py27-mysql \ 
     59                        port:py27-pygresql 
     60} 
     61 
     62default_variants    +fits +hdf5 +vo +ascii 
Note: See TracChangeset for help on using the changeset viewer.