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 D12AD158086 for ; Sat, 16 Oct 2021 08:20:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26AD6E0857; Sat, 16 Oct 2021 08:20:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0AB72E0857 for ; Sat, 16 Oct 2021 08:20:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B74C343072 for ; Sat, 16 Oct 2021 08:20:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72829166 for ; Sat, 16 Oct 2021 08:20:32 +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: <1634372412.1875e5224d025aae23386086dbcfc0934a2f8219.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtgamepad/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtgamepad/qtgamepad-5.15.2.ebuild X-VCS-Directories: dev-qt/qtgamepad/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1875e5224d025aae23386086dbcfc0934a2f8219 X-VCS-Branch: master Date: Sat, 16 Oct 2021 08:20:32 +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: f8308cb8-6960-43f0-9d02-e69d0c5ef135 X-Archives-Hash: 5f8e78ee8b5f0ddce2e5a34602b45a08 commit: 1875e5224d025aae23386086dbcfc0934a2f8219 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Oct 15 20:00:22 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Oct 16 08:20:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1875e522 dev-qt/qtgamepad: Drop 5.15.2 (r0) Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtgamepad/qtgamepad-5.15.2.ebuild | 35 -------------------------------- 1 file changed, 35 deletions(-) diff --git a/dev-qt/qtgamepad/qtgamepad-5.15.2.ebuild b/dev-qt/qtgamepad/qtgamepad-5.15.2.ebuild deleted file mode 100644 index 4da7b8c4a69..00000000000 --- a/dev-qt/qtgamepad/qtgamepad-5.15.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit qt5-build - -DESCRIPTION="Qt module to support gamepad hardware" - -if [[ ${QT5_BUILD_TYPE} == release ]]; then - KEYWORDS="amd64 arm64 x86" -fi - -IUSE="evdev qml sdl" - -DEPEND=" - ~dev-qt/qtcore-${PV} - ~dev-qt/qtgui-${PV}[evdev?] - evdev? ( virtual/libudev:= ) - qml? ( ~dev-qt/qtdeclarative-${PV} ) - sdl? ( media-libs/libsdl ) -" -RDEPEND="${DEPEND}" - -src_prepare() { - qt_use_disable_mod qml quick \ - src/src.pro - - qt_use_disable_config evdev evdev \ - src/plugins/gamepads/gamepads.pro - - qt_use_disable_config sdl sdl2 \ - src/plugins/gamepads/gamepads.pro - - qt5-build_src_prepare -}