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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7738215800F for ; Fri, 20 Jan 2023 22:18:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97BBFE0863; Fri, 20 Jan 2023 22:18:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A96DE085B for ; Fri, 20 Jan 2023 22:18:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 71264335D58 for ; Fri, 20 Jan 2023 22:18:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDA407FC for ; Fri, 20 Jan 2023 22:18:55 +0000 (UTC) From: "Arsen Arsenović" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arsen Arsenović" Message-ID: <1674252946.c31e7b31bee82014fe36ca695dc52c21dfe9f8da.arsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/wxwidgets.eclass X-VCS-Directories: eclass/ X-VCS-Committer: arsen X-VCS-Committer-Name: Arsen Arsenović X-VCS-Revision: c31e7b31bee82014fe36ca695dc52c21dfe9f8da X-VCS-Branch: master Date: Fri, 20 Jan 2023 22:18:55 +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: e0e5b907-567c-473b-8506-c293f1fc62e0 X-Archives-Hash: 106ec25ebb29e6730670e5a802afc51d commit: c31e7b31bee82014fe36ca695dc52c21dfe9f8da Author: brahmajit das protonmail com> AuthorDate: Mon Nov 21 19:24:20 2022 +0000 Commit: Arsen Arsenović gentoo org> CommitDate: Fri Jan 20 22:15:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c31e7b31 x11-libs/wxGTK: eclass preparation Closes: https://bugs.gentoo.org/577030#c37 Signed-off-by: brahmajit das protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/28360 Signed-off-by: Arsen Arsenović gentoo.org> eclass/wxwidgets.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/wxwidgets.eclass b/eclass/wxwidgets.eclass index afc4aae5f7d3..64f0e38552ec 100644 --- a/eclass/wxwidgets.eclass +++ b/eclass/wxwidgets.eclass @@ -36,7 +36,7 @@ _WXWIDGETS_ECLASS=1 # The SLOT of the x11-libs/wxGTK you're targeting. Needs to be defined before # inheriting the eclass. Can be either "3.0" or "3.0-gtk3". case ${WX_GTK_VER} in - 3.0-gtk3) ;; + 3.0-gtk3 | 3.2-gtk3) ;; 3.0) if [[ ${EAPI} != 7 ]]; then die "${ECLASS}: GTK 2 no longer supported in EAPI ${EAPI}" @@ -67,7 +67,7 @@ setup-wxwidgets() { local w wxtoolkit wxconf case ${WX_GTK_VER} in - 3.0-gtk3) wxtoolkit=gtk3 ;; + 3.0-gtk3 | 3.2-gtk3) wxtoolkit=gtk3 ;; 3.0) wxtoolkit=gtk2 eqawarn "This package relies on the deprecated GTK 2 slot, which will go away soon (https://bugs.gentoo.org/618642)" ;;