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 python26 1.0 |
---|
5 | |
---|
6 | name py26-h5py |
---|
7 | version 1.3.0 |
---|
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 e1ea1c1e4c5b899c44b6fe4cb1eac464 \ |
---|
26 | sha1 9398cb3a11ea7f6b62738330206c7dce7c7c2132 \ |
---|
27 | rmd160 49e475ca6bf2de375eb98b5c8cca78b534d1ef6f |
---|
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:py26-numpy port:hdf5-18 |
---|