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 4DFC8138350 for ; Wed, 29 Apr 2020 06:31:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89A2FE089F; Wed, 29 Apr 2020 06:31:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 70206E089F for ; Wed, 29 Apr 2020 06:31:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 68FB434EF75 for ; Wed, 29 Apr 2020 06:31:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9C041DD for ; Wed, 29 Apr 2020 06:31:14 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1588141862.c40038aa6bbd457ba662a9f1b2e21a0d8ff435bf.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonpickle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsonpickle/jsonpickle-1.4.1-r1.ebuild dev-python/jsonpickle/jsonpickle-1.4.1.ebuild X-VCS-Directories: dev-python/jsonpickle/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: c40038aa6bbd457ba662a9f1b2e21a0d8ff435bf X-VCS-Branch: master Date: Wed, 29 Apr 2020 06:31:14 +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: aa5cafa4-3c47-4ff4-8ea2-56365ca7a8eb X-Archives-Hash: 4a15a380503e90ef1c04ae23738a978b commit: c40038aa6bbd457ba662a9f1b2e21a0d8ff435bf Author: Patrick McLean sony com> AuthorDate: Wed Apr 29 06:28:58 2020 +0000 Commit: Patrick McLean gentoo org> CommitDate: Wed Apr 29 06:31:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c40038aa dev-python/jsonpickle-1.4.1-r1: revbump, remove pandas test dep, py38 Since the dependency on pandas is only a test dep, and is only needs for 3 out of more than 320 tests, let's just patch it out so we don't have to drop keywords and we can add python3_8. Closes: https://bugs.gentoo.org/719980 Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Patrick McLean gentoo.org> ...onpickle-1.4.1.ebuild => jsonpickle-1.4.1-r1.ebuild} | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/dev-python/jsonpickle/jsonpickle-1.4.1.ebuild b/dev-python/jsonpickle/jsonpickle-1.4.1-r1.ebuild similarity index 79% rename from dev-python/jsonpickle/jsonpickle-1.4.1.ebuild rename to dev-python/jsonpickle/jsonpickle-1.4.1-r1.ebuild index d097093c864..f9b5040f156 100644 --- a/dev-python/jsonpickle/jsonpickle-1.4.1.ebuild +++ b/dev-python/jsonpickle/jsonpickle-1.4.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_{6,7,8} ) DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" IUSE="doc test" RESTRICT="!test? ( test )" @@ -24,14 +24,17 @@ RDEPEND=" dev-python/feedparser[${PYTHON_USEDEP}] dev-python/ujson[${PYTHON_USEDEP}] " -DEPEND=" - test? ( ${RDEPEND} - dev-python/pandas[${PYTHON_USEDEP}] - ) -" distutils_enable_sphinx "docs/source" +python_prepare_all() { + # too many dependencies + rm tests/pandas_test.py || die + sed -e '/pandas/ d' -i tests/runtests.py || die + + distutils-r1_python_prepare_all +} + python_test() { # An apparent regression in tests # https://github.com/jsonpickle/jsonpickle/issues/124