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 DADFF138350 for ; Sun, 9 Feb 2020 19:35:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FFDBE07AE; Sun, 9 Feb 2020 19:35:59 +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 15959E07AE for ; Sun, 9 Feb 2020 19:35:58 +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 8A09B34E8EB for ; Sun, 9 Feb 2020 19:35:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 169DF98 for ; Sun, 9 Feb 2020 19:35:56 +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: <1581276935.17c22822b76d61e4958bc379722fd0f29ddd8575.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/oyranos/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/oyranos/oyranos-0.9.6-r1.ebuild X-VCS-Directories: media-libs/oyranos/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 17c22822b76d61e4958bc379722fd0f29ddd8575 X-VCS-Branch: master Date: Sun, 9 Feb 2020 19:35:56 +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: 7520ac78-9a06-4786-8580-b0f0b4a5c2e5 X-Archives-Hash: bf91c62716c0ec9aa7b6a5cde2053046 commit: 17c22822b76d61e4958bc379722fd0f29ddd8575 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 9 19:35:35 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 9 19:35:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17c22822 media-libs/oyranos: Drop USE qt5, broken by Qt 5.14 Closes: https://bugs.gentoo.org/703528 Package-Manager: Portage-2.3.87, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/oyranos/oyranos-0.9.6-r1.ebuild | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/media-libs/oyranos/oyranos-0.9.6-r1.ebuild b/media-libs/oyranos/oyranos-0.9.6-r1.ebuild index 4eee55d10f7..26ac4c25916 100644 --- a/media-libs/oyranos/oyranos-0.9.6-r1.ebuild +++ b/media-libs/oyranos/oyranos-0.9.6-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -19,9 +19,9 @@ HOMEPAGE="https://www.oyranos.org/" LICENSE="BSD" SLOT="0" -IUSE="cairo cups doc examples exif fltk jpeg qt5 raw scanner static-libs test tiff X" +IUSE="cairo cups doc examples exif fltk jpeg raw scanner static-libs test tiff X" -REQUIRED_USE="qt5? ( X ) test? ( static-libs )" +REQUIRED_USE="test? ( static-libs )" COMMON_DEPEND=" app-admin/elektra @@ -36,14 +36,6 @@ COMMON_DEPEND=" exif? ( media-gfx/exiv2:= ) fltk? ( x11-libs/fltk:1 ) jpeg? ( virtual/jpeg:0 ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - dev-qt/qtxml:5 - ) raw? ( media-libs/libraw ) scanner? ( media-gfx/sane-backends ) tiff? ( media-libs/tiff:0 ) @@ -96,7 +88,7 @@ src_configure() { -DCMAKE_DISABLE_FIND_PACKAGE_Exif2=$(usex !exif) -DCMAKE_DISABLE_FIND_PACKAGE_FLTK=$(usex !fltk) -DCMAKE_DISABLE_FIND_PACKAGE_JPEG=$(usex !jpeg) - -DCMAKE_DISABLE_FIND_PACKAGE_Qt5=$(usex !qt5) + -DCMAKE_DISABLE_FIND_PACKAGE_Qt5=ON -DCMAKE_DISABLE_FIND_PACKAGE_LibRaw=$(usex !raw) -DCMAKE_DISABLE_FIND_PACKAGE_Sane=$(usex !scanner) -DENABLE_STATIC_LIBS=$(usex static-libs)