From owner-svn-src-all@freebsd.org Sat Nov 7 13:25:48 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DCC46A28A01; Sat, 7 Nov 2015 13:25:47 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x234.google.com (mail-wm0-x234.google.com [IPv6:2a00:1450:400c:c09::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 71EC21033; Sat, 7 Nov 2015 13:25:47 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wmww144 with SMTP id w144so47372831wmw.1; Sat, 07 Nov 2015 05:25:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=i/3+gTG9nwBM9ffwn+5UtPk2K9gXYYvIq5A1p0mannM=; b=k70d4u+FN1j9fkeUsgosj+Z+bMFtjmA6p1FkO+n61ovboioZghYOGK8DnHDsICuUta sCbfnFH4Kyl0eP5GS9bNuCfHEg56A4/DjwV/yQHcQd4nkqKmjzcj7H/Nbf8KDZs12UOU 9vg+ki6LlCyf5BB9sE+LSUUtM0L3cTZ2kFaN30hWZdZ1poOLi6FyZfFI4UN9hkU8mM1x D2JhZAldIr0kde6mb25TgsVZObqRqp+DoFRBhD52dSYxn4J0ti+O89Yc+dXTAyVY28nF HZw8zXbKjbI+cP2uUkOkVFdd0RSR6vhDfZV1TsCfcZyH2O9jygNhaGX7TnxL5ZQcAEGN 3EGw== X-Received: by 10.28.52.12 with SMTP id b12mr14910260wma.16.1446902745978; Sat, 07 Nov 2015 05:25:45 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id lf10sm5110501wjb.23.2015.11.07.05.25.45 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 07 Nov 2015 05:25:45 -0800 (PST) Sender: Baptiste Daroussin Date: Sat, 7 Nov 2015 14:25:43 +0100 From: Baptiste Daroussin To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r290494 - in head: . contrib/ipfilter contrib/llvm/lib/Target/Sparc/AsmParser contrib/llvm/lib/Target/Sparc/Disassembler contrib/llvm/lib/Target/Sparc/InstPrinter contrib/netbsd-tests/l... Message-ID: <20151107132543.GH31432@ivaldir.etoilebsd.net> References: <201511071243.tA7Chaai034980@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HuscSE0D68UGttcd" Content-Disposition: inline In-Reply-To: <201511071243.tA7Chaai034980@repo.freebsd.org> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Nov 2015 13:25:48 -0000 --HuscSE0D68UGttcd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Nov 07, 2015 at 12:43:36PM +0000, Baptiste Daroussin wrote: > Author: bapt > Date: Sat Nov 7 12:43:35 2015 > New Revision: 290494 > URL: https://svnweb.freebsd.org/changeset/base/290494 >=20 > Log: > Improve collation string and locales support > =20 > Merge collation support from Illumos and DragonflyBSD. > =20 > Locales are now generated with the new localedef(1) tool from CLDR POSI= X files. > The generated files are now identified as "BSD 1.0" format. > =20 > The libc now only read "BSD 1.0" locales definitions, all other version= will be > set to "C" > The localedef(1) tool has been imported from Illumos and modified to us= e tree(3) > instead of the CDDL avl(3) > A set of tool created by edwin@ and extended by marino@ for dragonfly h= as been > added to be able to generate locales and the Makefiles from the vanilla= CLDR > unicode databases + a universal UTF-8 charmap (by marino@) > Update the locales to unicode v27 > Given our regex(3) does not support multibyte (yet) it has been forced = to always > use locale C > Remove now unused colldef(1) and mklocale(1) > Finish implementing the numeric BSD extension for ctypes > The number of supported locales has grown from 175 to 250 locales. Amon= g the new > locales: 6 Arabic locales (AE EG JO MA QA SA), Different variations of = spanish > locales. > Added new 3 components locales for mn_Cyrl_MN, sr_Cyrl_RS sr_Latn_RS, > zh_Hans_CN, zh_Hant_HK and zh_Hant_TW. Some aliases has been for 2 comp= onents > version when possible. > =20 > Thanks: Garrett D'Amore (Illumos) who made sure all his work was done u= nder > BSD license!, Edwin Groothuis (edwin@) for the work he made on tools to= be able > to generate locales definition usable in freebsd sources out of vanilla= CLDR > definitions, John Marino (DragonflyBSD) who first merge the Illumos wor= k into > Dragonfly and spent hours tracking down bugs. >=20 I forgot: Relnotes: yes Bapt --HuscSE0D68UGttcd Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlY9+9cACgkQ8kTtMUmk6Ezg9wCgmBq0sPahkUoarbkWh24LKt7q X+kAnRHPgwGCdl/Ra6TzH3tFx0v3m4Jp =6Y6s -----END PGP SIGNATURE----- --HuscSE0D68UGttcd--