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 9B7A315808A for ; Tue, 05 Aug 2025 10:32:45 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 86A3F340BBE for ; Tue, 05 Aug 2025 10:32:45 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 7736F11036D; Tue, 05 Aug 2025 10:32:44 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 6DC4C11036D for ; Tue, 05 Aug 2025 10:32:44 +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 1430934076D for ; Tue, 05 Aug 2025 10:32:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CEC6326A for ; Tue, 05 Aug 2025 10:32:42 +0000 (UTC) From: "Kerin Millar" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kerin Millar" Message-ID: <1754389918.21ae7e5f4825f082191a5adcabccb7c642b81c86.kfm@gentoo> Subject: [gentoo-commits] proj/locale-gen:master commit in: / X-VCS-Repository: proj/locale-gen X-VCS-Files: locale-gen X-VCS-Directories: / X-VCS-Committer: kfm X-VCS-Committer-Name: Kerin Millar X-VCS-Revision: 21ae7e5f4825f082191a5adcabccb7c642b81c86 X-VCS-Branch: master Date: Tue, 05 Aug 2025 10:32:42 +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: 90a9febf-a96a-480a-9dfe-f73d09887df0 X-Archives-Hash: 0b10542013d1e2c16ed8dd423e379f32 commit: 21ae7e5f4825f082191a5adcabccb7c642b81c86 Author: Kerin Millar plushkava net> AuthorDate: Tue Aug 5 10:30:19 2025 +0000 Commit: Kerin Millar plushkava net> CommitDate: Tue Aug 5 10:31:58 2025 +0000 URL: https://gitweb.gentoo.org/proj/locale-gen.git/commit/?id=21ae7e5f Drop the is_eq_file subroutine The is_eq_file() subroutine is no longer used. See-also: 4177dab14cfee01f5b9b29f3cbbb38635bba41c5 Signed-off-by: Kerin Millar plushkava.net> locale-gen | 6 ------ 1 file changed, 6 deletions(-) diff --git a/locale-gen b/locale-gen index 45026ab..5e2c2c9 100755 --- a/locale-gen +++ b/locale-gen @@ -520,12 +520,6 @@ sub get_nprocs () { return $nproc; } -sub is_eq_file ($path1, $path2) { - # The -ef primary is standard as of POSIX.1-2024. - local @ENV{'PATH1', 'PATH2'} = ($path1, $path2); - return 0 == system q{ test "$PATH1" -ef "$PATH2" }; -} - sub plural ($int) { return $int == 1 ? '' : 's'; }