From b83b16e0f6c963583f6323fe1bb12ecbd11d6f81 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 24 Jul 2023 14:55:44 +0100 Subject: gentoo auto-resync : 24:07:2023 - 14:55:44 --- dev-python/pyarrow/Manifest | 3 - .../pyarrow/files/pyarrow-12.0.0-tests.patch | 144 --------------------- dev-python/pyarrow/pyarrow-12.0.0.ebuild | 61 --------- 3 files changed, 208 deletions(-) delete mode 100644 dev-python/pyarrow/files/pyarrow-12.0.0-tests.patch delete mode 100644 dev-python/pyarrow/pyarrow-12.0.0.ebuild (limited to 'dev-python/pyarrow') diff --git a/dev-python/pyarrow/Manifest b/dev-python/pyarrow/Manifest index 6bf51c22c2c1..0093921c88ae 100644 --- a/dev-python/pyarrow/Manifest +++ b/dev-python/pyarrow/Manifest @@ -1,6 +1,3 @@ -AUX pyarrow-12.0.0-tests.patch 4608 BLAKE2B 89a543188ccb6d736ee89546cfd238d52688002c2000dbd044a85b84731bb7f54fda2e406fb60ffe89f307c8078a7f1dc75146a074ff8198f1573808348ce784 SHA512 d0eea87b5b6e8cc3a444daf3c0df7371c8936b851cb542214f6c30bf0a85741e3e2530025557d8a7f01b2678c1dd8a758c8ac28a3f341099151e35192a674e6e -DIST apache-arrow-12.0.0.tar.gz 20159048 BLAKE2B 43b4f36e1d1f84fc83c46a3627ad72cead38310f4325b8d21d17d726cd416016f0839d312c80737c0a921da6aefee537413e30309a656301c19834c2986d734e SHA512 f815be4fb20b6001ba5525270765fe239b5468708a7be34b93b60ee0ce63464727d183c9756fbc33bffd199019e1f06a7fddd306ce8388435cea7771070a2ca9 DIST apache-arrow-12.0.1.tar.gz 20172604 BLAKE2B bf66761d33ceb778c2f53c2e643e0c2bb4448f29eaa94d17e9815628665f4965fde28bd47fce4a5874717d2161c3f8adbb2e8a0e6658a51ae6d617e4f09d202b SHA512 551ae200551fcc73b7deddcc5f0b06633159ab1308506901a9086e4e2e34e4437f26d609fdbacba0ebe7d1fe83bdb8e92a268e9e41575d655d5b2d4fbef7a7ce -EBUILD pyarrow-12.0.0.ebuild 1364 BLAKE2B 5f7479fb26921448a43889267e6a0abd26575e4ad9e125aabd121de683e955d7134c754975b2b8aad105f53d222d61eb33547fbdb0893a0fb12f276e1a45d603 SHA512 663abcb36e8716c7e91de28cf0a4f2ba22fa138db7e1fcd5e38946ddb7d746b9fadcd2cd68f12e54c67bd821ad9f42c35b3e9137f8b9f48ce20cbcd1f7adf507 EBUILD pyarrow-12.0.1.ebuild 1698 BLAKE2B 0b37b3e6fcef08909f6a0b714f019c8c0d2d069215aeffd97f99f0dff76faae8125c8af492ea9b1eff84628462a874d1d0195380b49b9edce0f260a283082288 SHA512 4357e57fa47ec7e2751730a8666b09c878abcd362163b4b57ed1551e6e10505fa089a370d6439efa36066c5a065a3708237c1f87d7e0bd48964c8610fe32a047 MISC metadata.xml 454 BLAKE2B aef32100cb88b74361bc57c83179ce223bab58fd2d33c0274011350f1021f8f738008a64b74995d005f9b53edf45d9e0168a38101e041297d38805529b7af416 SHA512 2b7d53db25c36faca27aa8885479396ad2b510d8fba9b421d969fd23505b5026b48a9869ab941fa8d09c2a399ed6f211d8694bc3ed05dc5bf583d7be1fc0e679 diff --git a/dev-python/pyarrow/files/pyarrow-12.0.0-tests.patch b/dev-python/pyarrow/files/pyarrow-12.0.0-tests.patch deleted file mode 100644 index 56a307592593..000000000000 --- a/dev-python/pyarrow/files/pyarrow-12.0.0-tests.patch +++ /dev/null @@ -1,144 +0,0 @@ ---- a/pyarrow/tests/test_compute.py 2023-05-08 09:06:34.571387618 +0200 -+++ b/pyarrow/tests/test_compute.py 2023-05-08 09:11:52.759753459 +0200 -@@ -414,6 +414,7 @@ - assert pc.variance(data, ddof=1).as_py() == 6.0 - - -+@pytest.mark.skip(reason="not working") - def test_count_substring(): - for (ty, offset) in [(pa.string(), pa.int32()), - (pa.large_string(), pa.int64())]: -@@ -428,6 +429,7 @@ - assert expected == result - - -+@pytest.mark.skip(reason="not working") - def test_count_substring_regex(): - for (ty, offset) in [(pa.string(), pa.int32()), - (pa.large_string(), pa.int64())]: -@@ -442,6 +444,7 @@ - assert expected.equals(result) - - -+@pytest.mark.skip(reason="not working") - def test_find_substring(): - for ty in [pa.string(), pa.binary(), pa.large_string(), pa.large_binary()]: - arr = pa.array(["ab", "cab", "ba", None], type=ty) -@@ -459,6 +462,7 @@ - assert result.to_pylist() == [0, 1, 0, 0] - - -+@pytest.mark.skip(reason="not working") - def test_match_like(): - arr = pa.array(["ab", "ba%", "ba", "ca%d", None]) - result = pc.match_like(arr, r"_a\%%") -@@ -474,6 +478,7 @@ - assert expected.equals(result) - - -+@pytest.mark.skip(reason="not working") - def test_match_substring(): - arr = pa.array(["ab", "abc", "ba", None]) - result = pc.match_substring(arr, "ab") -@@ -489,6 +494,7 @@ - assert expected.equals(result) - - -+@pytest.mark.skip(reason="not working") - def test_match_substring_regex(): - arr = pa.array(["ab", "abc", "ba", "c", None]) - result = pc.match_substring_regex(arr, "^a?b") -@@ -602,6 +608,7 @@ - assert expected.equals(result) - - -+@pytest.mark.skip(reason="not working") - def test_split_pattern_regex(): - arr = pa.array(["-foo---bar--", "---foo---b"]) - result = pc.split_pattern_regex(arr, pattern="-+") -@@ -1022,6 +1029,7 @@ - assert ar.tolist() == ['barzfoo', 'bard', None] - - -+@pytest.mark.skip(reason="not working") - def test_replace_regex(): - data = pa.array(['foo', 'mood', None]) - expected = ['f00', 'm00d', None] -@@ -1033,6 +1041,7 @@ - assert ar.tolist() == expected - - -+@pytest.mark.skip(reason="not working") - def test_extract_regex(): - ar = pa.array(['a1', 'zb2z']) - expected = [{'letter': 'a', 'digit': '1'}, {'letter': 'b', 'digit': '2'}] ---- a/pyarrow/tests/test_fs.py 2023-05-08 09:13:26.796384297 +0200 -+++ b/pyarrow/tests/test_fs.py 2023-05-08 09:14:20.567601499 +0200 -@@ -1012,6 +1012,7 @@ - LocalFileSystem(xxx=False) - - -+@pytest.mark.skip(reason="not working") - def test_localfs_errors(localfs): - # Local filesystem errors should raise the right Python exceptions - # (e.g. FileNotFoundError) ---- a/pyarrow/tests/test_memory.py 2023-05-08 09:15:35.366512597 +0200 -+++ b/pyarrow/tests/test_memory.py 2023-05-08 09:16:44.969501524 +0200 -@@ -140,6 +140,7 @@ - assert len(errlines) == 0 - - -+@pytest.mark.skip(reason="not working") - def test_env_var(): - check_env_var("system", ["system"]) - if should_have_jemalloc: -@@ -149,6 +150,7 @@ - check_env_var("nonexistent", possible_backends, expect_warning=True) - - -+@pytest.mark.skip(reason="not working") - def test_specific_memory_pools(): - specific_pools = set() - -@@ -170,6 +172,7 @@ - can_fail=not should_have_mimalloc) - - -+@pytest.mark.skip(reason="not working") - def test_supported_memory_backends(): - backends = pa.supported_memory_backends() - ---- a/pyarrow/tests/parquet/test_basic.py 2023-05-08 09:18:05.307333210 +0200 -+++ b/pyarrow/tests/parquet/test_basic.py 2023-05-08 09:20:16.135429950 +0200 -@@ -349,6 +349,7 @@ - assert result.equals(table) - - -+@pytest.mark.skip(reason="not working") - @parametrize_legacy_dataset - def test_byte_stream_split(use_legacy_dataset): - # This is only a smoke test. -@@ -510,6 +511,7 @@ - use_legacy_dataset=use_legacy_dataset) - - -+@pytest.mark.skip(reason="not working") - @parametrize_legacy_dataset - def test_compression_level(use_legacy_dataset): - arr = pa.array(list(map(int, range(1000)))) -@@ -660,6 +662,7 @@ - use_legacy_dataset=use_legacy_dataset) - - -+@pytest.mark.skip(reason="not working") - @pytest.mark.pandas - @parametrize_legacy_dataset - def test_zlib_compression_bug(use_legacy_dataset): -@@ -760,6 +763,7 @@ - assert buf.to_pybytes() == buf.size * b"\0" - - -+@pytest.mark.skip(reason="not working") - def test_parquet_compression_roundtrip(tempdir): - # ARROW-10480: ensure even with nonstandard Parquet file naming - # conventions, writing and then reading a file works. In diff --git a/dev-python/pyarrow/pyarrow-12.0.0.ebuild b/dev-python/pyarrow/pyarrow-12.0.0.ebuild deleted file mode 100644 index 21342c3f3ac8..000000000000 --- a/dev-python/pyarrow/pyarrow-12.0.0.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 multiprocessing - -DESCRIPTION="Python library for Apache Arrow" -HOMEPAGE=" - https://pypi.org/project/pyarrow/ - https://arrow.apache.org/ -" -SRC_URI="mirror://apache/arrow/arrow-${PV}/apache-arrow-${PV}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="parquet snappy ssl" - -RDEPEND=" - ~dev-libs/apache-arrow-${PV}[compute,dataset,json,parquet?,snappy?,ssl?] - dev-python/numpy[${PYTHON_USEDEP}] -" -BDEPEND="test? ( - dev-python/hypothesis -