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 4AA2F158064 for ; Sun, 5 May 2024 08:33:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 453082BC020; Sun, 5 May 2024 08:33:03 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 pigeon.gentoo.org (Postfix) with ESMTPS id 1BB672BC020 for ; Sun, 5 May 2024 08:33:03 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4BE1D343136 for ; Sun, 5 May 2024 08:33:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A59251A28 for ; Sun, 5 May 2024 08:33:00 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1714897837.0dfbd051d3ecae1d0870f0653520f3a8f841db90.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/st/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/st/st-0.9.2.ebuild x11-terms/st/st-0.9.ebuild x11-terms/st/st-9999.ebuild X-VCS-Directories: x11-terms/st/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 0dfbd051d3ecae1d0870f0653520f3a8f841db90 X-VCS-Branch: master Date: Sun, 5 May 2024 08:33:00 +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: 3437475a-d6a5-4c78-aba8-e53ca27b662f X-Archives-Hash: ffc4df39e3306d2b7757bb843a2dce29 commit: 0dfbd051d3ecae1d0870f0653520f3a8f841db90 Author: Ferenc Erki gmail com> AuthorDate: Sat May 4 22:42:54 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Sun May 5 08:30:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dfbd051 x11-terms/st: prefer explicit string check Signed-off-by: Ferenc Erki gmail.com> Closes: https://github.com/gentoo/gentoo/pull/36534 Signed-off-by: Petr Vaněk gentoo.org> x11-terms/st/st-0.9.2.ebuild | 2 +- x11-terms/st/st-0.9.ebuild | 2 +- x11-terms/st/st-9999.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/x11-terms/st/st-0.9.2.ebuild b/x11-terms/st/st-0.9.2.ebuild index 87d6dfc80752..0686a4db528e 100644 --- a/x11-terms/st/st-0.9.2.ebuild +++ b/x11-terms/st/st-0.9.2.ebuild @@ -66,7 +66,7 @@ src_install() { } pkg_postinst() { - if ! [[ "${REPLACING_VERSIONS}" ]]; then + if [[ -z "${REPLACING_VERSIONS}" ]]; then elog "Please ensure a usable font is installed, like" elog " media-fonts/corefonts" elog " media-fonts/dejavu" diff --git a/x11-terms/st/st-0.9.ebuild b/x11-terms/st/st-0.9.ebuild index b2b6169f16ad..c74829a218fe 100644 --- a/x11-terms/st/st-0.9.ebuild +++ b/x11-terms/st/st-0.9.ebuild @@ -66,7 +66,7 @@ src_install() { } pkg_postinst() { - if ! [[ "${REPLACING_VERSIONS}" ]]; then + if [[ -z "${REPLACING_VERSIONS}" ]]; then elog "Please ensure a usable font is installed, like" elog " media-fonts/corefonts" elog " media-fonts/dejavu" diff --git a/x11-terms/st/st-9999.ebuild b/x11-terms/st/st-9999.ebuild index 87d6dfc80752..0686a4db528e 100644 --- a/x11-terms/st/st-9999.ebuild +++ b/x11-terms/st/st-9999.ebuild @@ -66,7 +66,7 @@ src_install() { } pkg_postinst() { - if ! [[ "${REPLACING_VERSIONS}" ]]; then + if [[ -z "${REPLACING_VERSIONS}" ]]; then elog "Please ensure a usable font is installed, like" elog " media-fonts/corefonts" elog " media-fonts/dejavu"