Ticket #12667: Portfile.14-201.diff

File Portfile.14-201.diff, 3.0 KB (added by oddsimons@…, 16 years ago)

Diff from version 1.4 (current) to 2.0.1. Sorry that the diff looks a bit unhelpful - I cleaned it for tabs->spaces etc. as I learned my way around my first Portfile...

  • Portfile.

    old new  
    1 # $Id: Portfile 24770 2007-05-03 16:02:34Z markd@macports.org $
     1# $Id$
    22
    3 PortSystem 1.0
    4 PortGroup python24 1.0
    5 
    6 name                    py-tables
    7 version                 1.4
    8 categories              python science
    9 platforms               darwin
    10 maintainers             nomaintainer@macports.org
    11 description             Python package for users to organize scientific data tables
    12 long_description        The goal of PyTables is to enable the end user to \
    13                                 manipulate easily scientific data tables, numarray \
    14                                 objects and Numerical Python objects in a persistent, \
    15                                 hierarchical structure. The foundation of the \
    16                                 underlying hierachical data organization is the \
    17                                 excellent HDF5 library.
    18 
    19 homepage                http://pytables.sourceforge.com/
    20 master_sites    sourceforge:pytables
    21 distname                pytables-${version}
    22 checksums               md5 f6c50a9c2c18286a284e3a50d111ed3d
    23 
    24 depends_lib-append      port:hdf5 \
    25                                 port:py-numarray
    26 
    27 build.target    build_ext
    28 build.args              --inplace \
    29                                 --hdf5=${prefix}
    30 
    31 test.run                no
    32 test.cmd                ${python.bin} test/test_all.py
    33 test.env                PYTHONPATH=.
    34 test.target
    35 
    36 destroot.args   --hdf5=${prefix}
    37 
    38 post-destroot   {
    39         xinstall -m 644 -W ${worksrcpath} ANNOUNCE.txt LICENSE.txt README.txt \
    40                 RELEASE-NOTES.txt THANKS TODO.txt \
    41                 ${destroot}${prefix}/share/doc/${name}
    42 }
     3PortSystem         1.0
     4PortGroup          python24 1.0
     5                   
     6name               py-tables
     7version            2.0.1
     8categories         python science
     9platforms          darwin
     10maintainers        nomaintainer@macports.org
     11description        Python package for users to organize scientific data tables
     12long_description   The goal of PyTables is to enable the end user to \
     13                   manipulate easily scientific data tables, numarray \
     14                   objects and Numerical Python objects in a persistent, \
     15                   hierarchical structure. The foundation of the \
     16                   underlying hierachical data organization is the \
     17                   excellent HDF5 library.
     18                   
     19homepage           http://www.pytables.org
     20master_sites       ${homepage}/download/stable/
     21distname           pytables-${version}
     22checksums          md5 384d98b30cc7658a0b6cd640e04022dd
     23                   
     24depends_lib-append port:hdf5 \
     25                   port:py-numarray
     26                   
     27build.target       build_ext
     28build.args         --inplace \
     29                   --hdf5=${prefix}
     30                   
     31test.run           no
     32test.cmd           ${python.bin} test/test_all.py
     33test.env           PYTHONPATH=.
     34test.target       
     35                   
     36destroot.args      --hdf5=${prefix}
     37                   
     38post-destroot      {
     39                   xinstall -m 644 -W ${worksrcpath} ANNOUNCE.txt LICENSE.txt \
     40                   README.txt MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS \
     41                   TODO.txt \
     42                   ${destroot}${prefix}/share/doc/${name}
     43                   }