From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id C9CE81582EF for ; Sat, 15 Feb 2025 09:30:05 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 7C1DF343096 for ; Sat, 15 Feb 2025 09:30:05 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B3DFF110480; Sat, 15 Feb 2025 09:29:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id A9AEF110480 for ; Sat, 15 Feb 2025 09:29:31 +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 5E43E34308C for ; Sat, 15 Feb 2025 09:29:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FBFE272B for ; Sat, 15 Feb 2025 09:29:28 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1739611602.4f67cf7a3016f652c8283985ceaaa79116861e32.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/tea/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/tea/tea-62.4.0-r1.ebuild X-VCS-Directories: app-editors/tea/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 4f67cf7a3016f652c8283985ceaaa79116861e32 X-VCS-Branch: master Date: Sat, 15 Feb 2025 09:29:28 +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: 0de7e28e-d58a-4dc4-81f4-63878e2af7f3 X-Archives-Hash: c83651c713bc7795158dff9cfdb5c0eb commit: 4f67cf7a3016f652c8283985ceaaa79116861e32 Author: Ulrich Müller gentoo org> AuthorDate: Fri Feb 14 16:16:34 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 15 09:26:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f67cf7a app-editors/tea: Fix incorrect REPLACING_VERSIONS usage Signed-off-by: Ulrich Müller gentoo.org> app-editors/tea/tea-62.4.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-editors/tea/tea-62.4.0-r1.ebuild b/app-editors/tea/tea-62.4.0-r1.ebuild index 673249d95bf6..ac4d11d3f4cb 100644 --- a/app-editors/tea/tea-62.4.0-r1.ebuild +++ b/app-editors/tea/tea-62.4.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake xdg +inherit cmake eapi9-ver xdg MY_P="tea-qt-${PV}" @@ -66,7 +66,7 @@ src_configure() { pkg_postinst() { xdg_pkg_postinst - if [[ "${REPLACING_VERSIONS}" == "47.0.0" ]]; then + if ver_replacing -eq 47.0.0; then elog "Executable 'tea' has been renamed to 'tea-qt'" fi }