Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
646
Issues
646
List
Boards
Labels
Service Desk
Milestones
Merge Requests
173
Merge Requests
173
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
6b87043c
Commit
6b87043c
authored
Jul 13, 2019
by
Leo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testing/py-h5py: rebuild against hdf5-1.10.5
parent
c79a34a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
3 deletions
+38
-3
testing/py-h5py/APKBUILD
testing/py-h5py/APKBUILD
+11
-3
testing/py-h5py/hdf5-1.10.5.patch
testing/py-h5py/hdf5-1.10.5.patch
+27
-0
No files found.
testing/py-h5py/APKBUILD
View file @
6b87043c
...
...
@@ -3,7 +3,7 @@
pkgname
=
py-h5py
_pkgname
=
h5py
pkgver
=
2.9.0
pkgrel
=
0
pkgrel
=
1
pkgdesc
=
"Read and write HDF5 files from Python"
# ERROR: test_exc (h5py.tests.old.test_group.TestLen)
# len() on closed group gives ValueError
...
...
@@ -14,9 +14,16 @@ license="BSD-3-Clause"
depends
=
"py-six py-numpy hdf5"
makedepends
=
"cython python2-dev python3-dev hdf5-dev py-setuptools py-numpy-dev"
subpackages
=
"py2-
${
pkgname
#py-
}
:_py2 py3-
${
pkgname
#py-
}
:_py3"
source
=
"https://files.pythonhosted.org/packages/source/
${
_pkgname
:0:1
}
/
$_pkgname
/
$_pkgname
-
$pkgver
.tar.gz"
source
=
"https://files.pythonhosted.org/packages/source/
${
_pkgname
:0:1
}
/
$_pkgname
/
$_pkgname
-
$pkgver
.tar.gz
hdf5-1.10.5.patch
"
builddir
=
"
$srcdir
/
$_pkgname
-
$pkgver
"
prepare
()
{
default_prepare
sed
-i
"s/settings
\\
['runtime_library_dirs'
\\
] = settings
\\
['library_dirs'
\\
]/pass/"
setup_build.py
}
build
()
{
python2 setup.py build
python3 setup.py build
...
...
@@ -51,4 +58,5 @@ _py() {
$python
setup.py
install
--prefix
=
/usr
--root
=
"
$subpkgdir
"
}
sha512sums
=
"73b1f59e3e2b3eceebf7b97e49bd8f5199afafd7ef29917af05ff8415c2f2129a5c59db9658944370c9bcf8fc04ab26948ee27fc6fd948a22d19cace1ce8c853 h5py-2.9.0.tar.gz"
sha512sums
=
"73b1f59e3e2b3eceebf7b97e49bd8f5199afafd7ef29917af05ff8415c2f2129a5c59db9658944370c9bcf8fc04ab26948ee27fc6fd948a22d19cace1ce8c853 h5py-2.9.0.tar.gz
8fbe88cb9aeda00702402bf10c9719d1b038f63cb788ee32639306cda26aa97f5e854ad8a0aea1d06262ed3b6df1ff4c002297565ddaade4a2865fa8beb1ef53 hdf5-1.10.5.patch"
testing/py-h5py/hdf5-1.10.5.patch
0 → 100644
View file @
6b87043c
From 141eafa531c6c09a06efe6a694251a1eea84908d Mon Sep 17 00:00:00 2001
From: Thomas A Caswell <tcaswell@bnl.gov>
Date: Sun, 17 Mar 2019 16:57:16 -0400
Subject: [PATCH] TST: bump skip version on attrs test
We are exercising a bug in hdf5, projected to be fixed in 1.10.6 and
1.12.0
closes #1180
---
h5py/tests/old/test_attrs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/h5py/tests/old/test_attrs.py b/h5py/tests/old/test_attrs.py
index d2e0ab59..46b20e8e 100644
--- a/h5py/tests/old/test_attrs.py
+++ b/h5py/tests/old/test_attrs.py
@@ -178,7 +178,7 @@
def fill_attrs(self, track_order):
attrs[str(i)] = i
return attrs
- @ut.skipUnless(h5py.version.hdf5_version_tuple >= (1, 10, 5), 'HDF5 1.10.5 required')
+ @ut.skipUnless(h5py.version.hdf5_version_tuple >= (1, 10, 6), 'HDF5 1.10.6 required')
# https://forum.hdfgroup.org/t/bug-h5arename-fails-unexpectedly/4881
def test_track_order(self):
attrs = self.fill_attrs(track_order=True) # creation order
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment