public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Louis Sautier" <sbraz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/joblib/
Date: Sun, 11 Oct 2020 00:49:15 +0000 (UTC)	[thread overview]
Message-ID: <1602377347.ff9b808a5b353221275fab370a6c7d5f7b7c6ca8.sbraz@gentoo> (raw)

commit:     ff9b808a5b353221275fab370a6c7d5f7b7c6ca8
Author:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 00:13:41 2020 +0000
Commit:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 00:49:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff9b808a

dev-python/joblib: bump to 0.17.0, add Python 3.9 support

Also remove doc altogether since it is already masked.

Closes: https://bugs.gentoo.org/700164
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>

 dev-python/joblib/Manifest             |  1 +
 dev-python/joblib/joblib-0.17.0.ebuild | 50 ++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest
index bcaca744dab..e1489fb1b9f 100644
--- a/dev-python/joblib/Manifest
+++ b/dev-python/joblib/Manifest
@@ -1,3 +1,4 @@
 DIST joblib-0.14.1.tar.gz 338930 BLAKE2B 6b84c43be8b8d32f28a3dbc3e6f4ce15574cf20571805501972d162d4b076c1fe144a9790b8132821f0acd439c8859873038813c7bdd4163d0535eca36a1a8fa SHA512 079eb4321ed95c8f05399abca2a1c46ecb7c28fe9a3a50b6eb106a2bd2f3566fb25bca59022fafbfcee5069f078921421d799eeb29a796f8f98881491cf9be08
 DIST joblib-0.15.1.tar.gz 342550 BLAKE2B c8ccf0b6d2e229a780939d9c4f39265bd18b5a452d014056001072b7daf7e46a5961c6d80f768c30ba7463aa36c5ec09959bb1e891028bf6f7862a9a265079aa SHA512 a0b0bde5b034af3eee0bce2875199fc9ac232a34a49c14daf6fbddd9bf3ad8fa0d77192827b7531704b81db7bdfbaf76c4755b8fc1035eaf73b2e08f9e6d8828
 DIST joblib-0.16.0.tar.gz 345002 BLAKE2B 0336fcbe95204141a0b04dfbf8949ba509792402eefbb86b3dc02375e7e3eb5c76d548d4ad01238307c0334ce4299fd9e763765d92722819894ea26ab6144032 SHA512 9f1f2e7f2e293e1c53e9752907f4ba25d52a5c4895eebfa423c8e3bc64146ab20a490e1db0cfa39596c9bbc47ea1cc491b0576bf8da9a1f68b58e91ba09ead34
+DIST joblib-0.17.0.tar.gz 345984 BLAKE2B 4f4cb83037fc02ce9ea17e7dc5d284235b847eeb90bf1a877c4168aabd9ad4dd762e45a6485806efc759cdfcb98e6ee70e6d9a498cd7645b1d6b0051a9f9ba2e SHA512 73c42a9f5949478a4a03b97ec31549cabca2ebc968d2c869632696b671c175dc85ae7aa8ac92905f13f830083b2305b56df1552f1d70fa7fe51945ae7286840a

diff --git a/dev-python/joblib/joblib-0.17.0.ebuild b/dev-python/joblib/joblib-0.17.0.ebuild
new file mode 100644
index 00000000000..cbff1fbeb9f
--- /dev/null
+++ b/dev-python/joblib/joblib-0.17.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Tools to provide lightweight pipelining in Python"
+HOMEPAGE="https://joblib.readthedocs.io/en/latest/
+	https://github.com/joblib/joblib"
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+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}]
+	)
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	# unbundle
+	rm -r joblib/externals || die
+	sed -e "s:'joblib.externals[^']*',\?::g" -i setup.py || die
+	find -name '*.py' -exec \
+		sed -e 's:\(joblib\)\?\.externals\.::' \
+			-e 's:from \.externals ::' \
+			-i {} + || die
+
+	# https://github.com/joblib/joblib/issues/1115
+	sed -e 's:test_parallel_call_cached_function_defined_in_jupyter:_&:' \
+		-i joblib/test/test_memory.py || die
+
+	# tries to fetch from the internet
+	rm examples/compressors_comparison.py \
+		examples/parallel/distributed_backend_simple.py || die
+
+	distutils-r1_python_prepare_all
+}


             reply	other threads:[~2020-10-11  0:49 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-11  0:49 Louis Sautier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-11 19:23 [gentoo-commits] repo/gentoo:master commit in: dev-python/joblib/ Michał Górny
2024-07-11 19:23 Michał Górny
2024-05-17  9:49 Michał Górny
2024-05-17  8:46 Arthur Zamarin
2024-05-03  3:42 Michał Górny
2024-04-24 18:13 Arthur Zamarin
2024-04-09  6:01 Michał Górny
2023-11-24 16:36 Arthur Zamarin
2023-09-17 11:26 Michał Górny
2023-08-10  2:53 Michał Górny
2023-08-02 18:52 Michał Górny
2023-08-02 16:54 Sam James
2023-06-30  2:46 Michał Górny
2023-06-29  5:12 Michał Górny
2023-06-11 16:15 Michał Górny
2023-06-11 13:53 Sam James
2023-05-11 14:43 Andrew Ammerlaan
2022-06-27  9:29 Michał Górny
2022-06-27  7:34 Agostino Sarubbo
2022-05-26 10:45 Andrew Ammerlaan
2021-11-13 10:30 Michał Górny
2021-11-13 10:06 Jakov Smolić
2021-10-07 21:48 Michał Górny
2021-09-02 22:57 Marek Szuba
2021-08-05 21:44 Michał Górny
2021-03-15  8:52 Michał Górny
2021-03-15  2:28 Sam James
2021-02-25 12:00 Sam James
2021-02-09 18:48 Michał Górny
2021-02-01 17:23 Michał Górny
2021-02-01 15:07 Agostino Sarubbo
2020-12-20 21:32 Sam James
2020-12-14 23:20 Michał Górny
2020-11-19  0:43 Michał Górny
2020-11-18 23:42 Thomas Deutschmann
2020-11-18  6:53 Agostino Sarubbo
2020-08-18  5:52 Sam James
2020-07-29 10:20 Michał Górny
2020-07-02  8:29 Michał Górny
2020-06-15  7:47 Michał Górny
2020-06-14 18:55 Michał Górny
2020-06-14 13:45 Michał Górny
2020-06-01  6:41 Georgy Yakovlev
2020-05-11 17:33 Michał Górny
2020-05-04 14:38 Agostino Sarubbo
2020-04-01 21:04 Patrick McLean
2020-02-05 15:29 Michał Górny
2018-09-12  9:25 Louis Sautier
2018-08-21  8:31 Patrice Clement
2018-03-18 19:19 Michał Górny
2017-05-12 12:13 Manuel Rüger
2017-05-02 17:43 Michał Górny
2017-03-07  0:17 Sebastien Fabbro
2017-02-22 16:08 Agostino Sarubbo
2017-02-22 15:06 Agostino Sarubbo
2016-07-21 13:12 Patrick Lauer
2016-03-09 17:51 Sebastien Fabbro
2016-01-27  9:26 Justin Lecher
2015-11-03 10:24 Justin Lecher
2015-10-19 16:29 Justin Lecher
2015-08-28  7:24 Tim Harder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1602377347.ff9b808a5b353221275fab370a6c7d5f7b7c6ca8.sbraz@gentoo \
    --to=sbraz@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox