Revision: 74514 http://trac.macports.org/changeset/74514 Author: mmoll@macports.org Date: 2010-12-19 18:04:33 -0800 (Sun, 19 Dec 2010) Log Message: ----------- python/py25-tables: update to 2.2.1, enable lzo compression suport by default, fix livecheck Modified Paths: -------------- trunk/dports/python/py25-tables/Portfile Modified: trunk/dports/python/py25-tables/Portfile =================================================================== --- trunk/dports/python/py25-tables/Portfile 2010-12-20 02:02:37 UTC (rev 74513) +++ trunk/dports/python/py25-tables/Portfile 2010-12-20 02:04:33 UTC (rev 74514) @@ -4,12 +4,12 @@ PortGroup python25 1.0 name py25-tables -version 2.1.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,39 +18,34 @@ master_sites ${homepage}download/stable/ distname tables-${version} -checksums md5 0033be22577d76fd1689a77afb9975da \ - sha1 545cc16491d37e2f6b8ce10bc8bdfa559b174e2e \ - rmd160 09bfb73e9252baa34aa40274a0b07f6c6cc60d70 +checksums md5 37f4932ecff9fe97bffc7a3d2e7da427 \ + sha1 2c6385365be19fdf8f81e8fd862bedfcf4fe2ba5 \ + rmd160 1d9ab1f836fcccccdad8eee7603a1056c2c27716 depends_lib-append port:hdf5-18 \ port:py25-numpy \ + port:py25-numexpr \ port:zlib \ port:bzip2 \ - port:py25-scientific + port:lzo2 \ + port:py25-scientific \ + port:py25-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} post-destroot { xinstall -m 644 -W ${worksrcpath} ANNOUNCE.txt LICENSE.txt README.txt \ - MIGRATING_TO_2.x.txt README.txt RELEASE_NOTES.txt THANKS VERSION \ + MIGRATING_TO_2.x.txt RELEASE_NOTES.txt THANKS VERSION \ ${destroot}${prefix}/share/doc/${name} - - foreach f {ptdump ptrepack nctoh5} { - move ${destroot}${prefix}/bin/${f} ${destroot}${prefix}/bin/${f}-py25 - } } -variant lzo description "Use lzo compression library" { - depends_lib-append port:lzo - build.args-append --lzo=${prefix} - destroot.args-append --lzo=${prefix} -} - livecheck.type regex livecheck.url ${homepage} -livecheck.regex {PyTables ([0-9]+\.[0-9]+\.[0-9]+) released} +livecheck.regex {PyTables ([0-9]+\.[0-9]+\.[0-9]+) \(final\) released}
participants (1)
-
mmoll@macports.org