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 E1448138335 for ; Sat, 23 Jun 2018 17:04:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DC21E08CE; Sat, 23 Jun 2018 17:04:31 +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 CFC72E08EB for ; Sat, 23 Jun 2018 17:04:30 +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 5D186335C97 for ; Sat, 23 Jun 2018 17:04:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D145831F for ; Sat, 23 Jun 2018 17:04:24 +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: <1529773427.2dbc5a3add4283a0145c4bc8ea38438689889f20.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwidgets/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtwidgets/qtwidgets-5.9.6.ebuild X-VCS-Directories: dev-qt/qtwidgets/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2dbc5a3add4283a0145c4bc8ea38438689889f20 X-VCS-Branch: master Date: Sat, 23 Jun 2018 17:04:24 +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: 86a38798-5dc7-482c-9310-8fd10cd36e47 X-Archives-Hash: 2d71b735e84db36116024214b7ff9b1e commit: 2dbc5a3add4283a0145c4bc8ea38438689889f20 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 23 17:03:47 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 23 17:03:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbc5a3a dev-qt/qtwidgets: Drop 5.9.6 (r0) Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-qt/qtwidgets/qtwidgets-5.9.6.ebuild | 57 --------------------------------- 1 file changed, 57 deletions(-) diff --git a/dev-qt/qtwidgets/qtwidgets-5.9.6.ebuild b/dev-qt/qtwidgets/qtwidgets-5.9.6.ebuild deleted file mode 100644 index caf1f79a84d..00000000000 --- a/dev-qt/qtwidgets/qtwidgets-5.9.6.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -QT5_MODULE="qtbase" -inherit qt5-build - -DESCRIPTION="Set of components for creating classic desktop-style UIs for the Qt5 framework" - -if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd" -fi - -# keep IUSE defaults in sync with qtgui -IUSE="gles2 gtk +png +xcb" - -DEPEND=" - ~dev-qt/qtcore-${PV} - ~dev-qt/qtgui-${PV}[gles2=,png=,xcb?] - gtk? ( - ~dev-qt/qtgui-${PV}[dbus] - x11-libs/gtk+:3 - x11-libs/libX11 - x11-libs/pango - ) -" -RDEPEND="${DEPEND}" - -QT5_TARGET_SUBDIRS=( - src/tools/uic - src/widgets - src/plugins/platformthemes -) - -QT5_GENTOO_CONFIG=( - gtk:gtk3: - ::widgets - !:no-widgets: -) - -QT5_GENTOO_PRIVATE_CONFIG=( - :widgets -) - -src_configure() { - local myconf=( - -opengl $(usex gles2 es2 desktop) - $(qt_use gtk) - -gui - $(qt_use png libpng system) - -widgets - $(qt_use xcb xcb system) - $(qt_use xcb xkbcommon system) - $(usex xcb '-xcb-xlib -xinput2 -xkb' '') - ) - qt5-build_src_configure -}