* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2022-03-30 7:39 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2022-03-30 7:39 UTC (permalink / raw
To: gentoo-commits
commit: 2d068d58447e110f30348f26360415aac2ec9ad9
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Wed Mar 30 07:37:36 2022 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Wed Mar 30 07:37:36 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=2d068d58
dev-python/zarr: new package (DANDI stack)
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/metadata.xml | 16 +++++++++++
dev-python/zarr/zarr-2.10.3.ebuild | 56 ++++++++++++++++++++++++++++++++++++++
dev-python/zarr/zarr-2.11.1.ebuild | 56 ++++++++++++++++++++++++++++++++++++++
3 files changed, 128 insertions(+)
diff --git a/dev-python/zarr/metadata.xml b/dev-python/zarr/metadata.xml
new file mode 100644
index 000000000..036ff8b45
--- /dev/null
+++ b/dev-python/zarr/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>gentoo@chymera.eu</email>
+ <name>Horea Christian</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">zarr-developers/zarr-python</remote-id>
+ <remote-id type="pypi">zarr</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/zarr/zarr-2.10.3.ebuild b/dev-python/zarr/zarr-2.10.3.ebuild
new file mode 100644
index 000000000..9822cb161
--- /dev/null
+++ b/dev-python/zarr/zarr-2.10.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
+HOMEPAGE="https://github.com/zarr-developers/zarr-python"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-python/asciitree[${PYTHON_USEDEP}]
+ dev-python/fasteners[${PYTHON_USEDEP}]
+ dev-python/numcodecs[${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+
+DEPEND="
+ test? (
+ dev-python/msgpack[${PYTHON_USEDEP}]
+ )
+"
+
+# Reported upsream
+# https://github.com/zarr-developers/zarr-python/issues/961
+EPYTEST_DESELECT=(
+ zarr/tests/test_core.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithPath::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithChunkStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNestedDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDBMStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithSQLiteStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNoCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBZ2Compressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBloscCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithLZMACompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithCustomMapping::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayNoCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithStoreCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
+)
+
+distutils_enable_tests pytest
diff --git a/dev-python/zarr/zarr-2.11.1.ebuild b/dev-python/zarr/zarr-2.11.1.ebuild
new file mode 100644
index 000000000..9822cb161
--- /dev/null
+++ b/dev-python/zarr/zarr-2.11.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
+HOMEPAGE="https://github.com/zarr-developers/zarr-python"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-python/asciitree[${PYTHON_USEDEP}]
+ dev-python/fasteners[${PYTHON_USEDEP}]
+ dev-python/numcodecs[${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+
+DEPEND="
+ test? (
+ dev-python/msgpack[${PYTHON_USEDEP}]
+ )
+"
+
+# Reported upsream
+# https://github.com/zarr-developers/zarr-python/issues/961
+EPYTEST_DESELECT=(
+ zarr/tests/test_core.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithPath::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithChunkStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNestedDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDBMStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithSQLiteStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNoCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBZ2Compressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBloscCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithLZMACompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithCustomMapping::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayNoCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithStoreCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
+)
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2022-05-02 12:05 Andrew Ammerlaan
0 siblings, 0 replies; 11+ messages in thread
From: Andrew Ammerlaan @ 2022-05-02 12:05 UTC (permalink / raw
To: gentoo-commits
commit: e0b3f9f7470d470b1432ce9c66ed4be829e82c08
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon May 2 12:04:53 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon May 2 12:05:06 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e0b3f9f7
dev-python/zarr: add 2.11.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/zarr/zarr-2.11.3.ebuild | 57 ++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/dev-python/zarr/zarr-2.11.3.ebuild b/dev-python/zarr/zarr-2.11.3.ebuild
new file mode 100644
index 000000000..50ec85404
--- /dev/null
+++ b/dev-python/zarr/zarr-2.11.3.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
+HOMEPAGE="https://github.com/zarr-developers/zarr-python"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-python/asciitree[${PYTHON_USEDEP}]
+ dev-python/fasteners[${PYTHON_USEDEP}]
+ >=dev-python/numcodecs-0.6.4[${PYTHON_USEDEP}]
+ >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+"
+
+DEPEND="
+ test? (
+ dev-python/msgpack[${PYTHON_USEDEP}]
+ )
+"
+
+# Reported upsream
+# https://github.com/zarr-developers/zarr-python/issues/961
+EPYTEST_DESELECT=(
+ zarr/tests/test_core.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithPath::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithChunkStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNestedDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDBMStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithSQLiteStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNoCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBZ2Compressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBloscCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithLZMACompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithCustomMapping::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayNoCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithStoreCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
+)
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs dev-python/numpydoc dev-python/sphinx-issues dev-python/sphinx_rtd_theme
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2022-06-30 19:13 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2022-06-30 19:13 UTC (permalink / raw
To: gentoo-commits
commit: b87097d5a27c395a7f40950a25f59418c2b19fc0
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Jun 30 19:12:53 2022 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Jun 30 19:12:53 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b87097d5
dev-python/zarr: version bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/zarr-2.12.0.ebuild | 62 ++++++++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
diff --git a/dev-python/zarr/zarr-2.12.0.ebuild b/dev-python/zarr/zarr-2.12.0.ebuild
new file mode 100644
index 000000000..1fa4e9af9
--- /dev/null
+++ b/dev-python/zarr/zarr-2.12.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
+HOMEPAGE="https://github.com/zarr-developers/zarr-python"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-python/asciitree[${PYTHON_USEDEP}]
+ dev-python/fasteners[${PYTHON_USEDEP}]
+ >=dev-python/numcodecs-0.6.4[${PYTHON_USEDEP}]
+ >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
+"
+
+DEPEND="
+ test? (
+ dev-python/msgpack[${PYTHON_USEDEP}]
+ )
+"
+
+# Reported upsream
+# https://github.com/zarr-developers/zarr-python/issues/961
+EPYTEST_DESELECT=(
+ zarr/tests/test_core.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithPath::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithChunkStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNestedDirectoryStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithDBMStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithSQLiteStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithNoCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBZ2Compressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithBloscCompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithLZMACompressor::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithCustomMapping::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayNoCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithStoreCache::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
+ zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreFromFilesystem::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStorePartialRead::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreNested::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreNestedPartialRead::test_object_arrays_vlen_bytes
+)
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs dev-python/numpydoc dev-python/sphinx-issues dev-python/sphinx_rtd_theme
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2022-06-30 20:00 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2022-06-30 20:00 UTC (permalink / raw
To: gentoo-commits
commit: 7c1f00951642d90fd177cbb70e7012331b5773b7
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Jun 30 19:59:47 2022 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Jun 30 19:59:47 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7c1f0095
dev-python/zarr: dropped old version
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/zarr-2.10.3.ebuild | 56 --------------------------------------
1 file changed, 56 deletions(-)
diff --git a/dev-python/zarr/zarr-2.10.3.ebuild b/dev-python/zarr/zarr-2.10.3.ebuild
deleted file mode 100644
index 9822cb161..000000000
--- a/dev-python/zarr/zarr-2.10.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
-HOMEPAGE="https://github.com/zarr-developers/zarr-python"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/asciitree[${PYTHON_USEDEP}]
- dev-python/fasteners[${PYTHON_USEDEP}]
- dev-python/numcodecs[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-
-DEPEND="
- test? (
- dev-python/msgpack[${PYTHON_USEDEP}]
- )
-"
-
-# Reported upsream
-# https://github.com/zarr-developers/zarr-python/issues/961
-EPYTEST_DESELECT=(
- zarr/tests/test_core.py::TestArray::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithPath::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithChunkStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithDirectoryStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithNestedDirectoryStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithDBMStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithSQLiteStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithNoCompressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithBZ2Compressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithBloscCompressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithLZMACompressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithCustomMapping::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayNoCache::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithStoreCache::test_object_arrays_vlen_bytes
- zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
- zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
- zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
-)
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2022-07-04 21:18 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2022-07-04 21:18 UTC (permalink / raw
To: gentoo-commits
commit: 0b38d28bc9bb3620532c6cde5c6ac341c52503ac
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Jul 4 21:17:40 2022 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Jul 4 21:18:27 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=0b38d28b
dev-python/zarr: skipping tests reported upstream
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/zarr-2.11.1.ebuild | 5 +++++
dev-python/zarr/zarr-2.11.3.ebuild | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/dev-python/zarr/zarr-2.11.1.ebuild b/dev-python/zarr/zarr-2.11.1.ebuild
index 9822cb161..8cb175408 100644
--- a/dev-python/zarr/zarr-2.11.1.ebuild
+++ b/dev-python/zarr/zarr-2.11.1.ebuild
@@ -51,6 +51,11 @@ EPYTEST_DESELECT=(
zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreFromFilesystem::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStorePartialRead::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreNested::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreNestedPartialRead::test_object_arrays_vlen_bytes
)
distutils_enable_tests pytest
diff --git a/dev-python/zarr/zarr-2.11.3.ebuild b/dev-python/zarr/zarr-2.11.3.ebuild
index 50ec85404..1fa4e9af9 100644
--- a/dev-python/zarr/zarr-2.11.3.ebuild
+++ b/dev-python/zarr/zarr-2.11.3.ebuild
@@ -51,6 +51,11 @@ EPYTEST_DESELECT=(
zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStore::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreFromFilesystem::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStorePartialRead::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreNested::test_object_arrays_vlen_bytes
+ zarr/tests/test_core.py::TestArrayWithFSStoreNestedPartialRead::test_object_arrays_vlen_bytes
)
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2023-02-16 7:38 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2023-02-16 7:38 UTC (permalink / raw
To: gentoo-commits
commit: ca204f6b440cd1e8a65aa21569ae8c9adb306543
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Thu Feb 16 07:34:55 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Thu Feb 16 07:34:55 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ca204f6b
dev-python/zarr: updated doc package name and EAPI 8 update
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/zarr-2.11.3.ebuild | 4 ++--
dev-python/zarr/zarr-2.12.0.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-python/zarr/zarr-2.11.3.ebuild b/dev-python/zarr/zarr-2.11.3.ebuild
index d0781c09f..aecd66ba9 100644
--- a/dev-python/zarr/zarr-2.11.3.ebuild
+++ b/dev-python/zarr/zarr-2.11.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -59,4 +59,4 @@ EPYTEST_DESELECT=(
)
distutils_enable_tests pytest
-distutils_enable_sphinx docs dev-python/numpydoc dev-python/sphinx-issues dev-python/sphinx_rtd_theme
+distutils_enable_sphinx docs dev-python/numpydoc dev-python/sphinx-issues dev-python/sphinx-rtd-theme
diff --git a/dev-python/zarr/zarr-2.12.0.ebuild b/dev-python/zarr/zarr-2.12.0.ebuild
index d0781c09f..aecd66ba9 100644
--- a/dev-python/zarr/zarr-2.12.0.ebuild
+++ b/dev-python/zarr/zarr-2.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -59,4 +59,4 @@ EPYTEST_DESELECT=(
)
distutils_enable_tests pytest
-distutils_enable_sphinx docs dev-python/numpydoc dev-python/sphinx-issues dev-python/sphinx_rtd_theme
+distutils_enable_sphinx docs dev-python/numpydoc dev-python/sphinx-issues dev-python/sphinx-rtd-theme
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2023-05-02 22:15 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2023-05-02 22:15 UTC (permalink / raw
To: gentoo-commits
commit: 301cf56b2c58afec781ecea76aaa99c4b41a2419
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Tue May 2 22:15:08 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Tue May 2 22:15:08 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=301cf56b
dev-python/zarr: drop 2.11.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/zarr-2.11.1.ebuild | 61 --------------------------------------
1 file changed, 61 deletions(-)
diff --git a/dev-python/zarr/zarr-2.11.1.ebuild b/dev-python/zarr/zarr-2.11.1.ebuild
deleted file mode 100644
index fb138aad0..000000000
--- a/dev-python/zarr/zarr-2.11.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_10 )
-
-inherit distutils-r1
-
-DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
-HOMEPAGE="https://github.com/zarr-developers/zarr-python"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-python/asciitree[${PYTHON_USEDEP}]
- dev-python/fasteners[${PYTHON_USEDEP}]
- dev-python/numcodecs[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-
-DEPEND="
- test? (
- dev-python/msgpack[${PYTHON_USEDEP}]
- )
-"
-
-# Reported upsream
-# https://github.com/zarr-developers/zarr-python/issues/961
-EPYTEST_DESELECT=(
- zarr/tests/test_core.py::TestArray::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithPath::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithChunkStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithDirectoryStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithNestedDirectoryStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithDBMStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithSQLiteStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithNoCompressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithBZ2Compressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithBloscCompressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithLZMACompressor::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithCustomMapping::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayNoCache::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithStoreCache::test_object_arrays_vlen_bytes
- zarr/tests/test_sync.py::TestArray::test_object_arrays_vlen_bytes
- zarr/tests/test_sync.py::TestArrayWithThreadSynchronizer::test_object_arrays_vlen_bytes
- zarr/tests/test_sync.py::TestArrayWithProcessSynchronizer::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithFSStore::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithFSStoreFromFilesystem::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithFSStorePartialRead::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithFSStoreNested::test_object_arrays_vlen_bytes
- zarr/tests/test_core.py::TestArrayWithFSStoreNestedPartialRead::test_object_arrays_vlen_bytes
-)
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2023-05-02 22:43 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2023-05-02 22:43 UTC (permalink / raw
To: gentoo-commits
commit: 7190fc23a6a0c14d8a5485cb201409e311495fd2
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Tue May 2 22:36:14 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Tue May 2 22:36:14 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7190fc23
dev-python/zarr: enable py3.11
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/zarr-2.11.3.ebuild | 2 +-
dev-python/zarr/zarr-2.12.0.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/zarr/zarr-2.11.3.ebuild b/dev-python/zarr/zarr-2.11.3.ebuild
index aecd66ba9..76bc6330a 100644
--- a/dev-python/zarr/zarr-2.11.3.ebuild
+++ b/dev-python/zarr/zarr-2.11.3.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
diff --git a/dev-python/zarr/zarr-2.12.0.ebuild b/dev-python/zarr/zarr-2.12.0.ebuild
index aecd66ba9..76bc6330a 100644
--- a/dev-python/zarr/zarr-2.12.0.ebuild
+++ b/dev-python/zarr/zarr-2.12.0.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2023-05-02 22:43 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2023-05-02 22:43 UTC (permalink / raw
To: gentoo-commits
commit: a5e762f0a55212eb639e24e307598740eaee9803
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Tue May 2 22:36:43 2023 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Tue May 2 22:36:43 2023 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a5e762f0
dev-python/zarr: update SRC_URI
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/zarr-2.11.3.ebuild | 3 +--
dev-python/zarr/zarr-2.12.0.ebuild | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/dev-python/zarr/zarr-2.11.3.ebuild b/dev-python/zarr/zarr-2.11.3.ebuild
index 76bc6330a..f18e92d44 100644
--- a/dev-python/zarr/zarr-2.11.3.ebuild
+++ b/dev-python/zarr/zarr-2.11.3.ebuild
@@ -6,11 +6,10 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
HOMEPAGE="https://github.com/zarr-developers/zarr-python"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
diff --git a/dev-python/zarr/zarr-2.12.0.ebuild b/dev-python/zarr/zarr-2.12.0.ebuild
index 76bc6330a..f18e92d44 100644
--- a/dev-python/zarr/zarr-2.12.0.ebuild
+++ b/dev-python/zarr/zarr-2.12.0.ebuild
@@ -6,11 +6,10 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Chunked, compressed, N-dimensional arrays for Python"
HOMEPAGE="https://github.com/zarr-developers/zarr-python"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2024-02-09 18:39 Horea Christian
0 siblings, 0 replies; 11+ messages in thread
From: Horea Christian @ 2024-02-09 18:39 UTC (permalink / raw
To: gentoo-commits
commit: b54b01fe95e3b9f6d8f9c856f05c27a8356eb792
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Feb 9 18:39:09 2024 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Feb 9 18:39:09 2024 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b54b01fe
dev-python/zarr: version bump, dropped old version
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
dev-python/zarr/{zarr-2.11.3.ebuild => zarr-2.14.2.ebuild} | 0
dev-python/zarr/{zarr-2.11.3.ebuild => zarr-2.16.1.ebuild} | 0
2 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/dev-python/zarr/zarr-2.11.3.ebuild b/dev-python/zarr/zarr-2.14.2.ebuild
similarity index 100%
copy from dev-python/zarr/zarr-2.11.3.ebuild
copy to dev-python/zarr/zarr-2.14.2.ebuild
diff --git a/dev-python/zarr/zarr-2.11.3.ebuild b/dev-python/zarr/zarr-2.16.1.ebuild
similarity index 100%
rename from dev-python/zarr/zarr-2.11.3.ebuild
rename to dev-python/zarr/zarr-2.16.1.ebuild
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-python/zarr/
@ 2024-09-23 14:22 Andrew Ammerlaan
0 siblings, 0 replies; 11+ messages in thread
From: Andrew Ammerlaan @ 2024-09-23 14:22 UTC (permalink / raw
To: gentoo-commits
commit: 75b2ce70804b0574e9145249a639ae615b188c88
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 23 14:22:13 2024 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 14:22:13 2024 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=75b2ce70
dev-python/zarr: drop ~x86
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-python/zarr/zarr-2.12.0.ebuild | 4 +---
dev-python/zarr/zarr-2.14.2.ebuild | 4 +---
dev-python/zarr/zarr-2.16.1.ebuild | 4 +---
3 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/dev-python/zarr/zarr-2.12.0.ebuild b/dev-python/zarr/zarr-2.12.0.ebuild
index f18e92d44..dff494851 100644
--- a/dev-python/zarr/zarr-2.12.0.ebuild
+++ b/dev-python/zarr/zarr-2.12.0.ebuild
@@ -13,9 +13,7 @@ HOMEPAGE="https://github.com/zarr-developers/zarr-python"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
+KEYWORDS="~amd64"
RDEPEND="
dev-python/asciitree[${PYTHON_USEDEP}]
diff --git a/dev-python/zarr/zarr-2.14.2.ebuild b/dev-python/zarr/zarr-2.14.2.ebuild
index f18e92d44..dff494851 100644
--- a/dev-python/zarr/zarr-2.14.2.ebuild
+++ b/dev-python/zarr/zarr-2.14.2.ebuild
@@ -13,9 +13,7 @@ HOMEPAGE="https://github.com/zarr-developers/zarr-python"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
+KEYWORDS="~amd64"
RDEPEND="
dev-python/asciitree[${PYTHON_USEDEP}]
diff --git a/dev-python/zarr/zarr-2.16.1.ebuild b/dev-python/zarr/zarr-2.16.1.ebuild
index f18e92d44..dff494851 100644
--- a/dev-python/zarr/zarr-2.16.1.ebuild
+++ b/dev-python/zarr/zarr-2.16.1.ebuild
@@ -13,9 +13,7 @@ HOMEPAGE="https://github.com/zarr-developers/zarr-python"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
+KEYWORDS="~amd64"
RDEPEND="
dev-python/asciitree[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-09-23 14:22 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-04 21:18 [gentoo-commits] proj/sci:master commit in: dev-python/zarr/ Horea Christian
-- strict thread matches above, loose matches on Subject: below --
2024-09-23 14:22 Andrew Ammerlaan
2024-02-09 18:39 Horea Christian
2023-05-02 22:43 Horea Christian
2023-05-02 22:43 Horea Christian
2023-05-02 22:15 Horea Christian
2023-02-16 7:38 Horea Christian
2022-06-30 20:00 Horea Christian
2022-06-30 19:13 Horea Christian
2022-05-02 12:05 Andrew Ammerlaan
2022-03-30 7:39 Horea Christian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox