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 DFE6615802F for ; Thu, 30 Mar 2023 17:29:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C9FFE08C9; Thu, 30 Mar 2023 17:29:35 +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 E2CCDE08C9 for ; Thu, 30 Mar 2023 17:29:34 +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 0145E340F6B for ; Thu, 30 Mar 2023 17:29:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A73339EE for ; Thu, 30 Mar 2023 17:29:31 +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: <1680197291.86d51f8fb503db6f6f023efdb1ebca4590404fa7.arsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/wxGTK/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/wxGTK/wxGTK-3.2.2.1-r1.ebuild x11-libs/wxGTK/wxGTK-3.2.2.1.ebuild X-VCS-Directories: x11-libs/wxGTK/ X-VCS-Committer: arsen X-VCS-Committer-Name: Arsen Arsenović X-VCS-Revision: 86d51f8fb503db6f6f023efdb1ebca4590404fa7 X-VCS-Branch: master Date: Thu, 30 Mar 2023 17:29:31 +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: 8cf9eafa-247a-434f-ac75-160b01aab1e0 X-Archives-Hash: 5cee57c4b0b0ce6d40e2063ba2631c28 commit: 86d51f8fb503db6f6f023efdb1ebca4590404fa7 Author: Arsen Arsenović gentoo org> AuthorDate: Thu Mar 30 16:49:32 2023 +0000 Commit: Arsen Arsenović gentoo org> CommitDate: Thu Mar 30 17:28:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d51f8f x11-libs/wxGTK: Fix version handling in 3.2.2.1 Closes: https://bugs.gentoo.org/895982 Signed-off-by: Arsen Arsenović gentoo.org> x11-libs/wxGTK/{wxGTK-3.2.2.1.ebuild => wxGTK-3.2.2.1-r1.ebuild} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-libs/wxGTK/wxGTK-3.2.2.1.ebuild b/x11-libs/wxGTK/wxGTK-3.2.2.1-r1.ebuild similarity index 98% rename from x11-libs/wxGTK/wxGTK-3.2.2.1.ebuild rename to x11-libs/wxGTK/wxGTK-3.2.2.1-r1.ebuild index 6198b73591d1..bba30b538faf 100644 --- a/x11-libs/wxGTK/wxGTK-3.2.2.1.ebuild +++ b/x11-libs/wxGTK/wxGTK-3.2.2.1-r1.ebuild @@ -5,10 +5,10 @@ EAPI=8 inherit multilib-minimal -WXSUBVERSION=${PV}-gtk3 # 3.2.1-gtk3 -WXVERSION=${PV} # 3.2.1 +WXSUBVERSION="${PV}-gtk3" # 3.2.1-gtk3 +WXVERSION="$(ver_cut 1-3)" # 3.2.1 # Make sure that this matches the number of components in ${PV} -WXRELEASE=${WXVERSION%.*.*}-gtk3 # 3.2-gtk3 +WXRELEASE="$(ver_cut 1-2)-gtk3" # 3.2-gtk3 WXRELEASE_NODOT=${WXRELEASE//./} # 32-gtk3 DESCRIPTION="GTK version of wxWidgets, a cross-platform C++ GUI toolkit"