Revision: 74513 http://trac.macports.org/changeset/74513 Author: mmoll@macports.org Date: 2010-12-19 18:02:37 -0800 (Sun, 19 Dec 2010) Log Message: ----------- python/py26-tables: update to 2.2.1, enable lzo compression suport by default, install minimal documentation Modified Paths: -------------- trunk/dports/python/py26-tables/Portfile Modified: trunk/dports/python/py26-tables/Portfile =================================================================== --- trunk/dports/python/py26-tables/Portfile 2010-12-20 01:59:40 UTC (rev 74512) +++ trunk/dports/python/py26-tables/Portfile 2010-12-20 02:02:37 UTC (rev 74513) @@ -4,12 +4,12 @@ PortGroup python26 1.0 name py26-tables -version 2.2 +version 2.2.1 categories-append python science platforms darwin maintainers mmoll openmaintainer -description Python package for HDF5 file access. +description Python package for HDF5 file access. long_description PyTables is a python package used to access \ HDF5 files, and can efficiently manage extremely large hierarchical \ data sets. @@ -18,31 +18,34 @@ master_sites ${homepage}download/stable/ distname tables-${version} -checksums md5 b95ebb5e501296f30fd75254a689d57b \ - sha1 1a1c3e01b99fb264ae5fce1fa2950c25e6dcb516 \ - rmd160 6a15629c6d08131589e1825d1a237f2d5c887aab +checksums md5 37f4932ecff9fe97bffc7a3d2e7da427 \ + sha1 2c6385365be19fdf8f81e8fd862bedfcf4fe2ba5 \ + rmd160 1d9ab1f836fcccccdad8eee7603a1056c2c27716 depends_lib-append port:hdf5-18 \ port:py26-numpy \ - port:py26-numexpr \ + port:py26-numexpr \ port:zlib \ port:bzip2 \ + port:lzo2 \ port:py26-scientific \ - port:py26-cython + port:py26-cython build.target build_ext build.args --inplace \ --hdf5=${prefix} \ - --bzip2=${prefix} + --bzip2=${prefix} \ + --lzo=${prefix} destroot.args --hdf5=${prefix} \ - --bzip2=${prefix} + --bzip2=${prefix} \ + --lzo=${prefix} -variant lzo description "Use lzo2 compression library" { - depends_lib-append port:lzo2 - build.args-append --lzo=${prefix} - destroot.args-append --lzo=${prefix} +post-destroot { + xinstall -m 644 -W ${worksrcpath} ANNOUNCE.txt LICENSE.txt README.txt \ + MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS VERSION \ + ${destroot}${prefix}/share/doc/${name} } livecheck.type regex livecheck.url ${homepage} -livecheck.regex {PyTables ([0-9]+\.[0-9\.]+) \(final\) released} +livecheck.regex {PyTables ([0-9]+\.[0-9]+\.[0-9]+) \(final\) released}