blob: b812b323fad96bb11870f4534dcab7187f2748ca [file] [log] [blame]
Andrew Geisslerd221e032020-07-10 16:13:21 -05001SUMMARY = "Provides both a high- and low-level interface to the HDF5 library from Python."
Brad Bishop19323692019-04-05 15:28:33 -04002HOMEPAGE = "https://www.h5py.org/"
3SECTION = "devel/python"
Brad Bishop2d39a062019-10-28 08:33:36 -04004LICENSE = "BSD-3-Clause"
Andrew Geisslerd221e032020-07-10 16:13:21 -05005LIC_FILES_CHKSUM = "file://LICENSE;md5=113251d71fb0384712c719b567261c5c"
Brad Bishop19323692019-04-05 15:28:33 -04006
Andrew Geisslerd221e032020-07-10 16:13:21 -05007SRC_URI[md5sum] = "504b595237409ab766fbbe568e60a080"
8SRC_URI[sha256sum] = "84412798925dc870ffd7107f045d7659e60f5d46d1c70c700375248bf6bf512d"
9
10SRC_URI_append = " \
Brad Bishop19323692019-04-05 15:28:33 -040011 file://0001-cross-compiling-support.patch \
Andrew Geisslerac970dd2021-02-12 15:32:45 -060012 file://0001-setup_build.py-avoid-absolute-path.patch \
Brad Bishop19323692019-04-05 15:28:33 -040013 "
Brad Bishop19323692019-04-05 15:28:33 -040014
Andrew Geisslerd221e032020-07-10 16:13:21 -050015inherit pypi setuptools3
Brad Bishop19323692019-04-05 15:28:33 -040016
17BBCLASSEXTEND = "native"
18
19DEPENDS = "python3-pkgconfig-native \
20 python3-cython-native \
21 python3-numpy-native \
22 python3-six-native \
23 python3 \
24 hdf5 \
25 "
26
27RDEPENDS_${PN} = "python3-numpy \
28 python3-six \
29 "
30
Andrew Geisslerd221e032020-07-10 16:13:21 -050031export HDF5_VERSION="1.8.21"