public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/joblib/
Date: Wed, 27 Jan 2016 09:26:22 +0000 (UTC)	[thread overview]
Message-ID: <1453886772.186ecbc3156245830ffb41c07318fd410057731f.jlec@gentoo> (raw)

commit:     186ecbc3156245830ffb41c07318fd410057731f
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 08:43:24 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Jan 27 09:26:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=186ecbc3

dev-python/joblib: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/joblib/Manifest            |  1 +
 dev-python/joblib/joblib-0.9.4.ebuild | 47 +++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/joblib/Manifest b/dev-python/joblib/Manifest
index 225e668..8881909 100644
--- a/dev-python/joblib/Manifest
+++ b/dev-python/joblib/Manifest
@@ -1,3 +1,4 @@
 DIST joblib-0.8.4.tar.gz 314213 SHA256 f185b87199525e0805281960f9f91c4f2e382e5834f05678cfcfa8ec666a4d2b SHA512 37d9a107c0f8f80c30cbcf7e4520a571eb925efdfb8729ca681fb12b3ec79cfd63c4b53660e560bbb3bc162664f79ab1d9fa7207f3dac00b5d5cddcdc12169c9 WHIRLPOOL f887c0153b4fa691e2289a9d3237a1b9ee51fabd7f6f3a54c7914f4296e23d50010ba822846723566fac5bcfd40c7b23c458121b6eff18d8ce15d6317ae5e638
 DIST joblib-0.9.2.tar.gz 480557 SHA256 aa20324c09428e35a93517156b5355aa69e070661cdcb3c983249c814d5f7b84 SHA512 8fb5362a6816cb9fb04611c7e2b0b9abdcee216932c966f960f490380d00a4931ddb2abbf3b30e73dca75d05056bcb4863ac92fe0d2a3e6d3842d1f116c1a3f9 WHIRLPOOL 0a04c3045979b23ddfd9554d748d42a7cbc7bed1cd02a7e68ceddc26273fe1c4aeb2c1b51597b5a3a4785aa180cabaa4f90ddd23988ef70cc66edcd8105e0120
 DIST joblib-0.9.3.tar.gz 445258 SHA256 ac68f659cd4cfdb102423e9d87f9d94fe1d76f1e02dcbf8c99aea7fcb223be4d SHA512 dada1e628c6f875c663cbb5e7c3339e4a56482f89bcc323f95f996821111c4d5fdc1e66511bd6158dd4b255e5d3d0de9321b7fee42c3e51ec9dcc01695a8235d WHIRLPOOL ef60a41e5939b758ec049a2739b9a0c980e6cb401c4e5f45e2036bf329660cca6b02fb65879bffdbde4aef0f45229529ac6fb769244bb0790ec35bd0dc283f84
+DIST joblib-0.9.4.tar.gz 453488 SHA256 e5faacf0da7b3035dbca9d56210962b86564aafca71a25f4ea376a405455cd60 SHA512 492d7dcd3c743f24dd9cff18cc7c7c831fdbfbf279ef7cc75a52fb5474d493623f6d4e985e4caf5bb358addb800f9fea8e018f37caf0a95503f3efdf9b1ccd84 WHIRLPOOL 51bcc2ae1b7315e3ae6f1ae69dbb93e4a330103efd8c463f2671945c76e19cada4820f25a16de76786d7ef5ddb0f180c19ff894934bf77d76cc646886218c480

diff --git a/dev-python/joblib/joblib-0.9.4.ebuild b/dev-python/joblib/joblib-0.9.4.ebuild
new file mode 100644
index 0000000..92cb79b
--- /dev/null
+++ b/dev-python/joblib/joblib-0.9.4.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Tools to provide lightweight pipelining in Python"
+HOMEPAGE="http://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
+}


             reply	other threads:[~2016-01-27  9:26 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-27  9:26 Justin Lecher [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-10-11  0:49 Louis Sautier
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
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=1453886772.186ecbc3156245830ffb41c07318fd410057731f.jlec@gentoo \
    --to=jlec@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