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 E8A85138351 for ; Fri, 3 Apr 2020 20:07:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3957E0A9A; Fri, 3 Apr 2020 20:07:03 +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 C04A6E0A9A for ; Fri, 3 Apr 2020 20:07:03 +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 C86CF34F051 for ; Fri, 3 Apr 2020 20:07:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62A441B4 for ; Fri, 3 Apr 2020 20:07:01 +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: <1585944341.a2f2a228ce8dabcfd4b7e87ecf768335add7911f.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtopengl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtopengl/metadata.xml dev-qt/qtopengl/qtopengl-5.13.2-r1.ebuild dev-qt/qtopengl/qtopengl-5.13.2.ebuild dev-qt/qtopengl/qtopengl-5.14.1-r1.ebuild dev-qt/qtopengl/qtopengl-5.14.1.ebuild X-VCS-Directories: dev-qt/qtopengl/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a2f2a228ce8dabcfd4b7e87ecf768335add7911f X-VCS-Branch: master Date: Fri, 3 Apr 2020 20:07:01 +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: eb1e31fd-55ed-4784-abfe-d9e689ec41b2 X-Archives-Hash: b9a1574dae603d860b7c4ffe46e820da commit: a2f2a228ce8dabcfd4b7e87ecf768335add7911f Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sat Nov 23 09:44:37 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Apr 3 20:05:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2f2a228 dev-qt/qtopengl: rename USE=gles2 to USE=gles2-only Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtopengl/metadata.xml | 3 --- .../{qtopengl-5.13.2.ebuild => qtopengl-5.13.2-r1.ebuild} | 8 ++++---- .../{qtopengl-5.14.1.ebuild => qtopengl-5.14.1-r1.ebuild} | 8 ++++---- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/dev-qt/qtopengl/metadata.xml b/dev-qt/qtopengl/metadata.xml index 17b1d11ac71..32568f62fb8 100644 --- a/dev-qt/qtopengl/metadata.xml +++ b/dev-qt/qtopengl/metadata.xml @@ -5,9 +5,6 @@ qt@gentoo.org Gentoo Qt Project - - Use GLES 2.0 or later instead of full OpenGL - https://bugreports.qt.io/ https://doc.qt.io/ diff --git a/dev-qt/qtopengl/qtopengl-5.13.2.ebuild b/dev-qt/qtopengl/qtopengl-5.13.2-r1.ebuild similarity index 78% rename from dev-qt/qtopengl/qtopengl-5.13.2.ebuild rename to dev-qt/qtopengl/qtopengl-5.13.2-r1.ebuild index 739705cfc87..c772d0bd7ce 100644 --- a/dev-qt/qtopengl/qtopengl-5.13.2.ebuild +++ b/dev-qt/qtopengl/qtopengl-5.13.2-r1.ebuild @@ -12,12 +12,12 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="arm" fi -IUSE="gles2" +IUSE="gles2-only" DEPEND=" ~dev-qt/qtcore-${PV} - ~dev-qt/qtgui-${PV}[gles2=] - ~dev-qt/qtwidgets-${PV}[gles2=] + ~dev-qt/qtgui-${PV}[gles2-only=] + ~dev-qt/qtwidgets-${PV}[gles2-only=] virtual/opengl " RDEPEND="${DEPEND}" @@ -28,7 +28,7 @@ QT5_TARGET_SUBDIRS=( src_configure() { local myconf=( - -opengl $(usex gles2 es2 desktop) + -opengl $(usex gles2-only es2 desktop) ) qt5-build_src_configure } diff --git a/dev-qt/qtopengl/qtopengl-5.14.1.ebuild b/dev-qt/qtopengl/qtopengl-5.14.1-r1.ebuild similarity index 80% rename from dev-qt/qtopengl/qtopengl-5.14.1.ebuild rename to dev-qt/qtopengl/qtopengl-5.14.1-r1.ebuild index 1914d037937..e2fe2b0f5f0 100644 --- a/dev-qt/qtopengl/qtopengl-5.14.1.ebuild +++ b/dev-qt/qtopengl/qtopengl-5.14.1-r1.ebuild @@ -12,12 +12,12 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~sparc x86" fi -IUSE="gles2" +IUSE="gles2-only" DEPEND=" ~dev-qt/qtcore-${PV} - ~dev-qt/qtgui-${PV}[gles2=] - ~dev-qt/qtwidgets-${PV}[gles2=] + ~dev-qt/qtgui-${PV}[gles2-only=] + ~dev-qt/qtwidgets-${PV}[gles2-only=] virtual/opengl " RDEPEND="${DEPEND}" @@ -28,7 +28,7 @@ QT5_TARGET_SUBDIRS=( src_configure() { local myconf=( - -opengl $(usex gles2 es2 desktop) + -opengl $(usex gles2-only es2 desktop) ) qt5-build_src_configure }