From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id C35033858D3C for ; Mon, 11 Sep 2023 07:57:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C35033858D3C Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1694419056; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=VQkjhBpUMbdN9k+zvfRdpOId9gbnhKeYLUzxB66QcUg=; b=c16KRptYdn4MBovdXGduPeoEbECezATtL4KvDeeJ5uJ3hE2zxFS+jz7B+BUbYJ+TZ6gX3x jtyKCxh2fYjIrvGoVy1Qo35wBctBWXCyvGmO1sdiyeo0zqyNdZJY1wywEczzFOyQWvqpyd KYatUYk8Lxrw4lUXxwDf2350Uud8HJw= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-690-6NAIaizhPwmVwAH872QwJw-1; Mon, 11 Sep 2023 03:57:33 -0400 X-MC-Unique: 6NAIaizhPwmVwAH872QwJw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 9C15E3806723; Mon, 11 Sep 2023 07:57:32 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.2.16.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E040C2156701; Mon, 11 Sep 2023 07:57:31 +0000 (UTC) From: Florian Weimer To: Bruno Haible Cc: libc-alpha@sourceware.org Subject: Re: the purpose of locale.alias References: <77018150.VQpxGFKSoK@nimes> Date: Mon, 11 Sep 2023 09:57:29 +0200 In-Reply-To: <77018150.VQpxGFKSoK@nimes> (Bruno Haible's message of "Sun, 10 Sep 2023 10:55:44 +0200") Message-ID: <87cyyp2lcm.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: * Bruno Haible: > * But a valid future use of locale.alias is when a language code changes > (like in the past: no -> nb, or iw -> he), or when a country code chang= es > (like in the past with Yugoslavia or Soviet Union). Such changes can ha= ppen > in the future, and for people who use a rolling-release distribution an= d > use locale names in their .profile script, it is useful to be able to > add a line > ll_oldCC.UTF-8 ll_newCC.UTF-8 > to the locale.alias file. In addition to what is currently in intl/locale.alias, localedef creates additional aliases when populating the archive, along those lines. These aliases are currently missing from =E2=80=9Clocale -a=E2=80=9D output= , and some people have noticed. Without a locale archvie, this seems indeed a use case for locale.alias. Thanks, Florian