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 D3865138331 for ; Sun, 14 Jan 2018 13:21:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1C14E08AE; Sun, 14 Jan 2018 13:21:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AD105E08AE for ; Sun, 14 Jan 2018 13:21:48 +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 43BA9335C54 for ; Sun, 14 Jan 2018 13:21:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C98A186 for ; Sun, 14 Jan 2018 13:21:45 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1515936089.1e8f3957c0a197a0127c0c55f953f4e638053996.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/scikits_image/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/scikits_image/scikits_image-0.13.0.ebuild X-VCS-Directories: sci-libs/scikits_image/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1e8f3957c0a197a0127c0c55f953f4e638053996 X-VCS-Branch: master Date: Sun, 14 Jan 2018 13:21:45 +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: 4eb8fe61-fc3d-48e3-80fb-f731ec100c64 X-Archives-Hash: 19bcd4c57b214aadfcb0f2e20d337e9b commit: 1e8f3957c0a197a0127c0c55f953f4e638053996 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 14 13:19:30 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 14 13:21:29 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e8f3957 sci-libs/scikits_image: Drop USE=qt4 Closes: https://bugs.gentoo.org/641938 Package-Manager: Portage-2.3.19, Repoman-2.3.6 sci-libs/scikits_image/scikits_image-0.13.0.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sci-libs/scikits_image/scikits_image-0.13.0.ebuild b/sci-libs/scikits_image/scikits_image-0.13.0.ebuild index cc09ed813cb..fb9abe7e7c7 100644 --- a/sci-libs/scikits_image/scikits_image-0.13.0.ebuild +++ b/sci-libs/scikits_image/scikits_image-0.13.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${MYPN}/${MYP}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc freeimage pyamg qt4 test" +IUSE="doc freeimage pyamg test" RDEPEND=" dev-python/matplotlib[${PYTHON_USEDEP}] @@ -28,8 +28,7 @@ RDEPEND=" dev-python/six[${PYTHON_USEDEP}] sci-libs/scipy[sparse,${PYTHON_USEDEP}] freeimage? ( media-libs/freeimage ) - pyamg? ( dev-python/pyamg[${PYTHON_USEDEP}] ) - qt4? ( dev-python/PyQt4[${PYTHON_USEDEP}] )" + pyamg? ( dev-python/pyamg[${PYTHON_USEDEP}] )" DEPEND="${RDEPEND} >=dev-python/cython-0.23[${PYTHON_USEDEP}] dev-python/setuptools[${PYTHON_USEDEP}] @@ -43,7 +42,7 @@ python_test() { distutils_install_for_testing cd "${TEST_DIR}" || die "no ${TEST_DIR} available" echo "backend : Agg" > matplotlibrc || die - echo "backend.qt4 : PyQt4" >> matplotlibrc || die + #echo "backend.qt4 : PyQt4" >> matplotlibrc || die #echo "backend.qt4 : PySide" >> matplotlibrc || die MPLCONFIGDIR=. virtx nosetests --exe -v skimage || die }