From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Myers Subject: [PATCH 06/10] xfs: add unicode character database files Date: Thu, 18 Sep 2014 15:14:40 -0500 Message-ID: <20140918201440.GI4482@sgi.com> References: <20140918195650.GI19952@sgi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: xfs@oss.sgi.com, olaf@sgi.com, tinguely@sgi.com To: linux-fsdevel@vger.kernel.org Return-path: Received: from relay2.sgi.com ([192.48.180.65]:55006 "EHLO relay.sgi.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755873AbaIRUOl (ORCPT ); Thu, 18 Sep 2014 16:14:41 -0400 Content-Disposition: inline In-Reply-To: <20140918195650.GI19952@sgi.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: From: Olaf Weber Add files from the Unicode Character Database, version 7.0.0, to the source. A helper program that generates a trie used for normalization from these files is part of a separate commit. Signed-off-by: Olaf Weber --- [v2: Removed large unicode files prior to posting. Get them as below. -bpm] [v3: Moved files to ucd8norm directory. -bpm] cd fs/xfs/utf8norm/ucd wget http://www.unicode.org/Public/7.0.0/ucd/CaseFolding.txt wget http://www.unicode.org/Public/7.0.0/ucd/DerivedAge.txt wget http://www.unicode.org/Public/7.0.0/ucd/extracted/DerivedCombiningClass.txt wget http://www.unicode.org/Public/7.0.0/ucd/DerivedCoreProperties.txt wget http://www.unicode.org/Public/7.0.0/ucd/NormalizationCorrections.txt wget http://www.unicode.org/Public/7.0.0/ucd/NormalizationTest.txt wget http://www.unicode.org/Public/7.0.0/ucd/UnicodeData.txt for e in *.txt do base=`basename $e .txt` mv $e $base-7.0.0.txt done --- fs/xfs/utf8norm/ucd/README | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 fs/xfs/utf8norm/ucd/README diff --git a/fs/xfs/utf8norm/ucd/README b/fs/xfs/utf8norm/ucd/README new file mode 100644 index 0000000..d713e66 --- /dev/null +++ b/fs/xfs/utf8norm/ucd/README @@ -0,0 +1,33 @@ +The files in this directory are part of the Unicode Character Database +for version 7.0.0 of the Unicode standard. + +The full set of files can be found here: + + http://www.unicode.org/Public/7.0.0/ucd/ + +The latest released version of the UCD can be found here: + + http://www.unicode.org/Public/UCD/latest/ + +The files in this directory are identical, except that they have been +renamed with a suffix indicating the unicode version. + +Individual source links: + + http://www.unicode.org/Public/7.0.0/ucd/CaseFolding.txt + http://www.unicode.org/Public/7.0.0/ucd/DerivedAge.txt + http://www.unicode.org/Public/7.0.0/ucd/extracted/DerivedCombiningClass.txt + http://www.unicode.org/Public/7.0.0/ucd/DerivedCoreProperties.txt + http://www.unicode.org/Public/7.0.0/ucd/NormalizationCorrections.txt + http://www.unicode.org/Public/7.0.0/ucd/NormalizationTest.txt + http://www.unicode.org/Public/7.0.0/ucd/UnicodeData.txt + +md5sums + + 9a92b2bfe56c6719def926bab524fefd CaseFolding-7.0.0.txt + 07b8b1027eb824cf0835314e94f23d2e DerivedAge-7.0.0.txt + 90c3340b16821e2f2153acdbe6fc6180 DerivedCombiningClass-7.0.0.txt + c41c0601f808116f623de47110ed4f93 DerivedCoreProperties-7.0.0.txt + 522720ddfc150d8e63a2518634829bce NormalizationCorrections-7.0.0.txt + 1f35175eba4a2ad795db489f789ae352 NormalizationTest-7.0.0.txt + c8355655731d75e6a3de8c20d7e601ba UnicodeData-7.0.0.txt -- 1.7.12.4