diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /dev-python/joblib | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'dev-python/joblib')
| -rw-r--r-- | dev-python/joblib/Manifest | 2 | ||||
| -rw-r--r-- | dev-python/joblib/joblib-1.5.3.ebuild | 57 | ||||
| -rw-r--r-- | dev-python/joblib/metadata.xml | 23 |
3 files changed, 82 insertions, 0 deletions
diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest new file mode 100644 index 000000000000..e0f16906a0c3 --- /dev/null +++ b/dev-python/joblib/Manifest @@ -0,0 +1,2 @@ +DIST joblib-1.5.3.tar.gz 331603 BLAKE2B 391b86c45bd98e85b485edab100ffd7704d1a9389c0db3d1f557bcf0d9dc161e95d297a54ce6069c505ea927a4dd1936273edb839534d676b939a5376d380323 SHA512 221fe426aa4c90d75080b63bf6bb0b9c61e4ae90bd2a734d2b658013e9a00125bc14574d475789b4d8d246a1a5b5c6f67754e639080de6ecb9a481d1d124c0ed +DIST joblib-1.5.3.tar.gz.provenance 9259 BLAKE2B 77e44ecd74aaa05838a8df6814ac70cad6a0e8887ea1864fdd3e759341760c65a4593ad192131570b0cb4e263b15acd8b10f770e65a0a10341bada2f2a573cc7 SHA512 82403c2d35fcdb83e8c961e587afa61ebff36a3b9a3d216549283cb5bbdd788a93e5a0b0107e0c8dd5dce18f23e5af0d5354f1c0f828ca50692a9fbf40545264 diff --git a/dev-python/joblib/joblib-1.5.3.ebuild b/dev-python/joblib/joblib-1.5.3.ebuild new file mode 100644 index 000000000000..cba917132e37 --- /dev/null +++ b/dev-python/joblib/joblib-1.5.3.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{13..14} ) +PYPI_VERIFY_REPO=https://github.com/joblib/joblib +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 pypi + +DESCRIPTION="Tools to provide lightweight pipelining in Python" +HOMEPAGE=" + https://joblib.readthedocs.io/en/latest/ + https://github.com/joblib/joblib/ + https://pypi.org/project/joblib/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv x86 ~arm64-macos ~x64-macos" + +RDEPEND=" + dev-python/cloudpickle[${PYTHON_USEDEP}] + dev-python/loky[${PYTHON_USEDEP}] +" +# joblib is imported by setup.py so we need ${RDEPEND} +BDEPEND=" + ${RDEPEND} + test? ( + dev-python/threadpoolctl[${PYTHON_USEDEP}] + ) +" + +EPYTEST_PLUGINS=( pytest-asyncio ) +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # https://github.com/joblib/joblib/issues/1362 + joblib/test/test_memory.py::test_parallel_call_cached_function_defined_in_jupyter + + # fails over warnings from numpy + joblib/test/test_numpy_pickle.py::test_joblib_pickle_across_python_versions + joblib/test/test_numpy_pickle.py::test_joblib_pickle_across_python_versions_with_mmap +) + +python_prepare_all() { + # unbundle + rm -r joblib/externals || die + sed -e "/joblib.externals/d" -i pyproject.toml || die + find -name '*.py' -exec \ + sed -e 's:\(joblib\)\?\.externals\.::' \ + -e 's:from \.externals ::' \ + -i {} + || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/joblib/metadata.xml b/dev-python/joblib/metadata.xml new file mode 100644 index 000000000000..a39c77451b38 --- /dev/null +++ b/dev-python/joblib/metadata.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>python@gentoo.org</email> + <name>Python</name> + </maintainer> + <longdescription> + Joblib is a set of tools to provide lightweight pipelining in + Python. In particular, joblib offers: + * transparent disk-caching of the output values and lazy + re-evaluation (memoize pattern) + * easy simple parallel computing + * logging and tracing of the execution + Joblib is optimized to be fast and robust in particular on large, + long-running functions and has specific optimizations for numpy arrays. + </longdescription> + <stabilize-allarches /> + <upstream> + <remote-id type="cpe">cpe:/a:joblib_project:joblib</remote-id> + </upstream> + <origin>baldeagleos-repo</origin> +</pkgmetadata> |
