From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 14BF5138350 for ; Thu, 26 Mar 2020 20:35:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 03E77E0D82; Thu, 26 Mar 2020 20:35:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBDD1E0D82 for ; Thu, 26 Mar 2020 20:35:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 526BA34FA90 for ; Thu, 26 Mar 2020 20:35:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C9BF1DC for ; Thu, 26 Mar 2020 20:35:18 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585254899.de5211841f478f5138b3cb88476bb9600660139c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/distributed/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/distributed/distributed-1.18.0.ebuild X-VCS-Directories: dev-python/distributed/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: de5211841f478f5138b3cb88476bb9600660139c X-VCS-Branch: master Date: Thu, 26 Mar 2020 20:35:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1e34412c-47c0-4d5a-a4cb-94f361313361 X-Archives-Hash: 87792340e0e7f6235a0178f9658b9732 commit: de5211841f478f5138b3cb88476bb9600660139c Author: Michał Górny gentoo org> AuthorDate: Thu Mar 26 20:31:08 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 26 20:34:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de521184 dev-python/distributed: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/distributed/distributed-1.18.0.ebuild | 50 ------------------------ 1 file changed, 50 deletions(-) diff --git a/dev-python/distributed/distributed-1.18.0.ebuild b/dev-python/distributed/distributed-1.18.0.ebuild deleted file mode 100644 index e753ea98fe6..00000000000 --- a/dev-python/distributed/distributed-1.18.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="Python library for distributed computation" -HOMEPAGE="https://distributed.readthedocs.io/en/latest/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-python/click[${PYTHON_USEDEP}] - >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}] - >=dev-python/dask-0.14.1[${PYTHON_USEDEP}] - >=dev-python/joblib-0.10.2[${PYTHON_USEDEP}] - dev-python/msgpack[${PYTHON_USEDEP}] - >=dev-python/partd-0.3.7[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/sortedcollections[${PYTHON_USEDEP}] - dev-python/tblib[${PYTHON_USEDEP}] - >=dev-python/toolz-0.7.4[${PYTHON_USEDEP}] - dev-python/zict[${PYTHON_USEDEP}] - www-servers/tornado[${PYTHON_USEDEP}] -" -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - dev-python/pytest[${PYTHON_USEDEP}] - ) -" - -python_test() { - cd "${BUILD_DIR}"/lib || die - py.test -m "not avoid_travis" distributed \ - --verbose -r s \ - --timeout-method=thread \ - --timeout=300 \ - --durations=20 || die -}