public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [Patch v4 12/14] [BZ #14095] update collation data from Unicode / ISO 14651
@ 2018-02-26 15:17 Mike FABIAN
  2018-02-26 18:36 ` Carlos O'Donell
  0 siblings, 1 reply; 2+ messages in thread
From: Mike FABIAN @ 2018-02-26 15:17 UTC (permalink / raw)
  To: libc-alpha; +Cc: Dmitry V. Levin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0012-Improve-gen-locales.mk-and-gen-locale.sh-to-make-tes.patch --]
[-- Type: text/x-patch, Size: 2204 bytes --]

From 8ca62eb521ef3e540fecfbe5574f64cad42d9d07 Mon Sep 17 00:00:00 2001
From: Mike FABIAN <mfabian@redhat.com>
Date: Mon, 1 Jan 2018 15:33:50 +0100
Subject: [PATCH 12/14] Improve gen-locales.mk and gen-locale.sh to make test
 files with @ options work

With out this, adding collation test files like localedata/gez_ER.UTF-8@abegede.in
does not work for locales which contain @ modifiers.

	* gen-locales.mk: Make test files which contain @ modifiers in their
        name work.
	* localedata/gen-locale.sh: Likewise.
---
 gen-locales.mk           | 4 ++--
 localedata/gen-locale.sh | 5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/gen-locales.mk b/gen-locales.mk
index fd88b5bef1..9c523d2a05 100644
--- a/gen-locales.mk
+++ b/gen-locales.mk
@@ -1,8 +1,8 @@
 # defines target $(gen-locales) that generates the locales given in $(LOCALES)
 
-LOCALE_SRCS := $(shell echo "$(LOCALES)"|sed 's/\([^ .]*\)[^ ]*/\1/g')
+LOCALE_SRCS := $(shell echo "$(LOCALES)"|sed 's/\([^ .]*\)[^@ ]*\(@[^ ]*\)\?/\1\2/g')
 CHARMAPS := $(shell echo "$(LOCALES)" | \
-		    sed -e 's/[^ .]*[.]\([^ ]*\)/\1/g' -e s/SJIS/SHIFT_JIS/g)
+		    sed -e 's/[^ .]*[.]\([^@ ]*\)\(@[^@ ]*\)*/\1/g' -e s/SJIS/SHIFT_JIS/g)
 CTYPE_FILES = $(addsuffix /LC_CTYPE,$(LOCALES))
 gen-locales := $(addprefix $(common-objpfx)localedata/,$(CTYPE_FILES))
 
diff --git a/localedata/gen-locale.sh b/localedata/gen-locale.sh
index 1bba5fee92..b91e42af13 100644
--- a/localedata/gen-locale.sh
+++ b/localedata/gen-locale.sh
@@ -49,7 +49,8 @@ generate_locale ()
 
 locfile=`echo $locfile|sed 's|.*/\([^/]*/LC_CTYPE\)|\1|'`
 locale=`echo $locfile|sed 's|\([^.]*\)[.].*/LC_CTYPE|\1|'`
-charmap=`echo $locfile|sed 's|[^.]*[.]\(.*\)/LC_CTYPE|\1|'`
+charmap=`echo $locfile|sed 's|[^.]*[.]\([^@ ]*\)\(@[^ ]*\)\?/LC_CTYPE|\1|'`
+modifier=`echo $locfile|sed 's|[^.]*[.]\([^@ ]*\)\(@[^ ]*\)\?/LC_CTYPE|\2|'`
 
 echo "Generating locale $locale.$charmap: this might take a while..."
 
@@ -73,4 +74,4 @@ if [ "$charmap_real" = 'SHIFT_JIS' ] \
   flags="$flags --no-warnings=ascii"
 fi
 
-generate_locale $charmap_real $locale $locale.$charmap "$flags"
+generate_locale $charmap_real $locale$modifier $locale.$charmap$modifier "$flags"
-- 
2.14.3

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

* Re: [Patch v4 12/14] [BZ #14095] update collation data from Unicode / ISO 14651
  2018-02-26 15:17 [Patch v4 12/14] [BZ #14095] update collation data from Unicode / ISO 14651 Mike FABIAN
@ 2018-02-26 18:36 ` Carlos O'Donell
  0 siblings, 0 replies; 2+ messages in thread
From: Carlos O'Donell @ 2018-02-26 18:36 UTC (permalink / raw)
  To: Mike FABIAN, libc-alpha; +Cc: Dmitry V. Levin

On 02/26/2018 07:11 AM, Mike FABIAN wrote:
> From 8ca62eb521ef3e540fecfbe5574f64cad42d9d07 Mon Sep 17 00:00:00 2001
> From: Mike FABIAN <mfabian@redhat.com>
> Date: Mon, 1 Jan 2018 15:33:50 +0100
> Subject: [PATCH 12/14] Improve gen-locales.mk and gen-locale.sh to make test
>  files with @ options work
> 
> With out this, adding collation test files like localedata/gez_ER.UTF-8@abegede.in
> does not work for locales which contain @ modifiers.
> 
> 	* gen-locales.mk: Make test files which contain @ modifiers in their
>         name work.
> 	* localedata/gen-locale.sh: Likewise.

LGTM.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>

-- 
Cheers,
Carlos.

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

end of thread, other threads:[~2018-02-26 18:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-26 15:17 [Patch v4 12/14] [BZ #14095] update collation data from Unicode / ISO 14651 Mike FABIAN
2018-02-26 18:36 ` Carlos O'Donell

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).