public inbox for libc-locales@sourceware.org
 help / color / mirror / Atom feed
* [Bug localedata/24054] New: May locales are missing date_fmt
@ 2019-01-02 17:41 aurelien at aurel32 dot net
  2019-01-02 18:03 ` [Bug localedata/24054] Many " aurelien at aurel32 dot net
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: aurelien at aurel32 dot net @ 2019-01-02 17:41 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=24054

            Bug ID: 24054
           Summary: May locales are missing date_fmt
           Product: glibc
           Version: 2.29
            Status: NEW
          Severity: normal
          Priority: P2
         Component: localedata
          Assignee: unassigned at sourceware dot org
          Reporter: aurelien at aurel32 dot net
                CC: libc-locales at sourceware dot org
  Target Milestone: ---

date_fmt is used by the date(1) utility. Many locales do not define it, in
which case it defaults to "%a %b %e %H:%M:%S %Z %Y". This is bad for many of
them because this assumes the date order is MDY which is not the most popular
order around the world.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug localedata/24054] Many locales are missing date_fmt
  2019-01-02 17:41 [Bug localedata/24054] New: May locales are missing date_fmt aurelien at aurel32 dot net
@ 2019-01-02 18:03 ` aurelien at aurel32 dot net
  2020-01-02 10:52 ` cvs-commit at gcc dot gnu.org
  2020-01-02 10:53 ` digitalfreak at lingonborough dot com
  2 siblings, 0 replies; 4+ messages in thread
From: aurelien at aurel32 dot net @ 2019-01-02 18:03 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=24054

Aurelien Jarno <aurelien at aurel32 dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|May locales are missing     |Many locales are missing
                   |date_fmt                    |date_fmt

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug localedata/24054] Many locales are missing date_fmt
  2019-01-02 17:41 [Bug localedata/24054] New: May locales are missing date_fmt aurelien at aurel32 dot net
  2019-01-02 18:03 ` [Bug localedata/24054] Many " aurelien at aurel32 dot net
@ 2020-01-02 10:52 ` cvs-commit at gcc dot gnu.org
  2020-01-02 10:53 ` digitalfreak at lingonborough dot com
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-01-02 10:52 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=24054

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Rafal Luzynski <rl@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=75ba929987f6950dd008ef0f6270f1b21e9af511

commit 75ba929987f6950dd008ef0f6270f1b21e9af511
Author: Rafał Lużyński <digitalfreak@lingonborough.com>
Date:   Mon Dec 30 11:58:18 2019 +0100

    Multiple locales: Add date_fmt (bug 24054)

    It is not specified what should be the content of d_t_fmt and date_fmt
    but in the built-in C locale those fields have only one difference:
    date_fmt contains "%Z" (the current time zone) while d_t_fmt does not.

    For most of the locales this commit does the following operation:
    copy d_t_fmt to date_fmt, and then remove "%Z" from d_t_fmt.
    If "%Z" was originally missing from d_t_fmt add it to date_fmt.
    It also corrects comments where necessary.

    Exceptions:

    * In bo_CN, dz_BT, and km_KH "%Z" has not been added to date_fmt because
      it was too difficult.  In these locales date_fmt has been set to the
      copy of d_t_fmt.
    * In en_DK "%Z" has not been removed from d_t_fmt in order to preserve
      the conformance with the standard mentioned in the comment.

    The command to identify and initially edit the locales that need the
    update was:

        for i in `grep -lw d_t_fmt *`
        do
            if ! grep -qw date_fmt $i ; then
                awk '/d_t_fmt/ { print $0; gsub("d_t_fmt", "date_fmt"); } //{
print $0 }' < $i > $i.next
                mv $i.next $i
            fi
        done

    and then each file was further edited manually.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug localedata/24054] Many locales are missing date_fmt
  2019-01-02 17:41 [Bug localedata/24054] New: May locales are missing date_fmt aurelien at aurel32 dot net
  2019-01-02 18:03 ` [Bug localedata/24054] Many " aurelien at aurel32 dot net
  2020-01-02 10:52 ` cvs-commit at gcc dot gnu.org
@ 2020-01-02 10:53 ` digitalfreak at lingonborough dot com
  2 siblings, 0 replies; 4+ messages in thread
From: digitalfreak at lingonborough dot com @ 2020-01-02 10:53 UTC (permalink / raw)
  To: libc-locales

https://sourceware.org/bugzilla/show_bug.cgi?id=24054

Rafal Luzynski <digitalfreak at lingonborough dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |digitalfreak@lingonborough.
                   |                            |com
         Resolution|---                         |FIXED
   Target Milestone|---                         |2.31

--- Comment #2 from Rafal Luzynski <digitalfreak at lingonborough dot com> ---
Fixed with the commit
https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=75ba929987f6950dd008ef0f6270f1b21e9af511

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-02 10:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-02 17:41 [Bug localedata/24054] New: May locales are missing date_fmt aurelien at aurel32 dot net
2019-01-02 18:03 ` [Bug localedata/24054] Many " aurelien at aurel32 dot net
2020-01-02 10:52 ` cvs-commit at gcc dot gnu.org
2020-01-02 10:53 ` digitalfreak at lingonborough dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).