From 1798c4aeca70ac8d0a243684d6a798fbc65735f8 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 20:57:42 +0100 Subject: gentoo resync : 14.07.2018 --- dev-python/joblib/Manifest | 5 ---- dev-python/joblib/joblib-0.10.0.ebuild | 47 ---------------------------------- dev-python/joblib/joblib-0.11.ebuild | 45 -------------------------------- dev-python/joblib/metadata.xml | 22 ---------------- 4 files changed, 119 deletions(-) delete mode 100644 dev-python/joblib/Manifest delete mode 100644 dev-python/joblib/joblib-0.10.0.ebuild delete mode 100644 dev-python/joblib/joblib-0.11.ebuild delete mode 100644 dev-python/joblib/metadata.xml (limited to 'dev-python/joblib') diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest deleted file mode 100644 index 207ce38ecd25..000000000000 --- a/dev-python/joblib/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -DIST joblib-0.10.0.tar.gz 480797 BLAKE2B 68ec29df4470e69a430a329f85b96448d29e11d09b9fcee03451ed9d0607ab61af4db6b0973c6a56c49a12120c082dca056d5fb37d88ae1e53c40b8d9a5e2d6d SHA512 a1f06c531973cb6f8af2c3fa62eaa18204a16ddc56b05de38cf84f7882f4820d30306f4aba52241f57f43c46c2b2bdd6c66459cf6bfa9c893b5750ac059c41a9 -DIST joblib-0.11.tar.gz 213136 BLAKE2B f23260ff16fab1ec775fe6e31c824f33cd6c465bceb84a7c7e0aff4ab4a4006b5f13d22d4c969b111aeb440dfc292e41ab7273a9fb7f1c9b337b4fa0e8b52d4e SHA512 8374a1e2445b9734a5af1d9f17fda057722f4e9e257819084aa7028866a8780f358fcbab131b13c2af315bbd953f8474e4ea698efdeda2be8699c3c471d9465a -EBUILD joblib-0.10.0.ebuild 1203 BLAKE2B 45e6dfe4bed9eeed75d106dd43c273ae2430d1999f3113ef6d133caa5560e7494c7001e8f97dd85d4ca9c456d222305a3448747ea725210fa520ae1fab2ff3d2 SHA512 4349203df40f3e8d56429edea3217375cc5dd8a9f7e785869f39ea899fdd0866bd5aaaed964a5eee6d4ddf4576f8d5b9f727aeeb41eeb38e3abcab15a5bb4970 -EBUILD joblib-0.11.ebuild 1130 BLAKE2B e03457d8027de456529b73f49171dcbe466644f71f18f07f1812db8c0523338513d665f5f27adc84ff62bef8bdcdbc72928f1af77972df7e90cc300e7f1286ef SHA512 560f9db93645a485e3ad4098320f88b8365775dc80b0231aea1192e02763684f0771ead381666935a7ea86e427a58583dd5de303c28c7a8cdf1c634f0d50cd27 -MISC metadata.xml 832 BLAKE2B a05bb08a1c94c3c589a2101ddade1fb6baea3a584ffda3af9374788ebe9aabe334697e5f44700261881324448a8c91d819046785fa29e2bf39e1b944bf7572e8 SHA512 af7c23a51fa4ad666546900aca84ebd07412ab36f305ce4650df5cecdfcda3c24ff7d56322495c191a83fa99d00d968fc19284053f77620885f03bf4555f2353 diff --git a/dev-python/joblib/joblib-0.10.0.ebuild b/dev-python/joblib/joblib-0.10.0.ebuild deleted file mode 100644 index 7ce15614503b..000000000000 --- a/dev-python/joblib/joblib-0.10.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy ) - -inherit distutils-r1 - -DESCRIPTION="Tools to provide lightweight pipelining in Python" -HOMEPAGE="https://pythonhosted.org/joblib/ - https://github.com/joblib/joblib" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="doc test" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/nose[${PYTHON_USEDEP}] )" -RDEPEND="" -# Usual; req'd for testsuite -DISTUTILS_IN_SOURCE_BUILD=1 - -python_compile_all() { - if use doc; then - sphinx-build -b html -c doc/ doc/ doc/html || die "docs failed installation" - fi -} - -python_test() { - # https://github.com/joblib/joblib/issues/143 - if [[ "${EPYTHON}" == pypy ]]; then - sed -e 's:test_func_inspect_errors:_&:' -i ${PN}/test/test_func_inspect.py || die - sed -e 's:test_parallel_pickling:_&:' -i ${PN}/test/test_parallel.py || die - fi - - nosetests -w ${PN}/test || die -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/joblib/joblib-0.11.ebuild b/dev-python/joblib/joblib-0.11.ebuild deleted file mode 100644 index e8fd06817fa9..000000000000 --- a/dev-python/joblib/joblib-0.11.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy ) - -inherit distutils-r1 - -DESCRIPTION="Tools to provide lightweight pipelining in Python" -HOMEPAGE="https://pythonhosted.org/joblib/ - https://github.com/joblib/joblib" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="doc test" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/nose[${PYTHON_USEDEP}] )" -RDEPEND="" - -python_compile_all() { - if use doc; then - sphinx-build -b html -c doc/ doc/ doc/html || die "docs failed installation" - fi -} - -python_test() { - # https://github.com/joblib/joblib/issues/143 - if [[ "${EPYTHON}" == pypy ]]; then - sed -e 's:test_func_inspect_errors:_&:' -i ${PN}/test/test_func_inspect.py || die - sed -e 's:test_parallel_pickling:_&:' -i ${PN}/test/test_parallel.py || die - fi - - py.test -v -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/html/. ) - distutils-r1_python_install_all -} diff --git a/dev-python/joblib/metadata.xml b/dev-python/joblib/metadata.xml deleted file mode 100644 index 3875b1287e55..000000000000 --- a/dev-python/joblib/metadata.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - python@gentoo.org - Python - - - 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. - - - joblib - joblib/joblib - - -- cgit v1.2.3