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 ADB93138334 for ; Sun, 26 Aug 2018 09:39:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2F83E091A; Sun, 26 Aug 2018 09:39:49 +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 B919CE091A for ; Sun, 26 Aug 2018 09:39:49 +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 6E832335CB7 for ; Sun, 26 Aug 2018 09:39:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8785F3BE for ; Sun, 26 Aug 2018 09:39:43 +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: <1535275356.4522482ca7948505a30fb2d85ceab42ef73cf84f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pandas/pandas-0.19.1.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4522482ca7948505a30fb2d85ceab42ef73cf84f X-VCS-Branch: master Date: Sun, 26 Aug 2018 09:39:43 +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-Archives-Salt: 84a831a4-5ed9-46fb-9f02-3cbf451d2a36 X-Archives-Hash: 6790b56d6044159a6cabf3c273d964f5 commit: 4522482ca7948505a30fb2d85ceab42ef73cf84f Author: Michał Górny gentoo org> AuthorDate: Sun Aug 26 09:22:36 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 26 09:22:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4522482c dev-python/pandas: Remove support for non-existent deps dev-python/pandas/pandas-0.19.1.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dev-python/pandas/pandas-0.19.1.ebuild b/dev-python/pandas/pandas-0.19.1.ebuild index 4ed14348698..4d95ee302e5 100644 --- a/dev-python/pandas/pandas-0.19.1.ebuild +++ b/dev-python/pandas/pandas-0.19.1.ebuild @@ -48,11 +48,7 @@ OPTIONAL_DEPEND=" dev-python/xlwt[${PYTHON_USEDEP}] sci-libs/scipy[${PYTHON_USEDEP}] X? ( - || ( - dev-python/PyQt4[${PYTHON_USEDEP}] - dev-python/pyside[${PYTHON_USEDEP}] - dev-python/pygtk[$(python_gen_usedep python2_7)] - ) + dev-python/pygtk[$(python_gen_usedep python2_7)] || ( x11-misc/xclip x11-misc/xsel @@ -161,5 +157,5 @@ pkg_postinst() { optfeature "Needed for parts of pandas.stats" dev-python/statsmodels optfeature "SQL database support" ">=dev-python/sqlalchemy-0.8.1" optfeature "miscellaneous statistical functions" sci-libs/scipy - optfeature "necessary to use pandas.io.clipboard.read_clipboard support" dev-python/PyQt4 dev-python/pyside dev-python/pygtk x11-misc/xclip x11-misc/xsel + optfeature "necessary to use pandas.io.clipboard.read_clipboard support" dev-python/pygtk x11-misc/xclip x11-misc/xsel }