1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | name py25-h5py |
---|
7 | version 1.2.1 |
---|
8 | platforms darwin |
---|
9 | categories python |
---|
10 | maintainers ieee.org:eborisch \ |
---|
11 | openmaintainer |
---|
12 | description Python Module for working with HDF5 files |
---|
13 | |
---|
14 | long_description The h5py package provides a simple, Pythonic interface to \ |
---|
15 | HDF5. A straightforward high-level interface allows the \ |
---|
16 | manipulation of HDF5 files, groups and datasets using \ |
---|
17 | established Python and NumPy metaphors. \ |
---|
18 | Additionally, the library offers a low-level interface \ |
---|
19 | which exposes the majority of the HDF5 C API in a Pythonic,\ |
---|
20 | object-oriented fashion. |
---|
21 | |
---|
22 | homepage http://code.google.com/p/h5py/ |
---|
23 | master_sites http://h5py.googlecode.com/files/ |
---|
24 | distname h5py-${version} |
---|
25 | checksums md5 b5e435f7c0e213fe3235efe2dc0cb59b \ |
---|
26 | sha1 92b8bea17df20649492ee67b4723b777666e29e2 \ |
---|
27 | rmd160 19ab7f516f2d9db15f8ba3a258983c357b1e0ff5 |
---|
28 | |
---|
29 | use_configure yes |
---|
30 | |
---|
31 | configure.universal_args |
---|
32 | configure.pre_args |
---|
33 | configure.cmd ${python.bin} setup.py configure |
---|
34 | configure.args --api=18 --hdf5=${prefix} |
---|
35 | |
---|
36 | build.cmd-delete --no-user-cfg |
---|
37 | depends_lib-append port:py25-numpy port:hdf5-18 |
---|