From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3BD56139694 for ; Tue, 1 Aug 2017 13:32:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 606111FC006; Tue, 1 Aug 2017 13:32:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A8A21FC006 for ; Tue, 1 Aug 2017 13:32:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F1A0B34184E for ; Tue, 1 Aug 2017 13:32:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 256A1756F for ; Tue, 1 Aug 2017 13:32:53 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1501594350.847877a721bfe75c8458e79502078a46f24fd914.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/unicode-cldr/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/unicode-cldr/Manifest app-i18n/unicode-cldr/metadata.xml app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild X-VCS-Directories: app-i18n/unicode-cldr/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 847877a721bfe75c8458e79502078a46f24fd914 X-VCS-Branch: master Date: Tue, 1 Aug 2017 13:32:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 85744b5b-7d4e-4163-b09d-3247a3fb7033 X-Archives-Hash: 29c8078a0934207486d5cebd52d3cd4c commit: 847877a721bfe75c8458e79502078a46f24fd914 Author: Akinori Hattori gentoo org> AuthorDate: Tue Aug 1 13:31:28 2017 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Tue Aug 1 13:32:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=847877a7 app-i18n/unicode-cldr: initial import Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-i18n/unicode-cldr/Manifest | 1 + app-i18n/unicode-cldr/metadata.xml | 8 ++++++++ app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild | 21 +++++++++++++++++++++ 3 files changed, 30 insertions(+) diff --git a/app-i18n/unicode-cldr/Manifest b/app-i18n/unicode-cldr/Manifest new file mode 100644 index 00000000000..b28221037bd --- /dev/null +++ b/app-i18n/unicode-cldr/Manifest @@ -0,0 +1 @@ +DIST unicode-cldr-common-31.0.1.zip 16370865 SHA256 02dcc30b80add24b384f5d9a116f26749f7485a39d2ea79dded970bf31f9d4d9 SHA512 6ef4a73b31bde5dead5af9145e5befa5969e9449b4072c94c5370c979db54e3072ec5bf15f54152045da329bf4382e54edb532c0ec77a2ce451bacc8778b73bc WHIRLPOOL 6252f6133cf39ef2ea5db47d9e417ab171c62c16d86b45c05f5ab859ed51dcd19778514b05878127c61b1bfa06dd95ba2bdbe7c1334079fc7caeb696df550759 diff --git a/app-i18n/unicode-cldr/metadata.xml b/app-i18n/unicode-cldr/metadata.xml new file mode 100644 index 00000000000..e1a49f49888 --- /dev/null +++ b/app-i18n/unicode-cldr/metadata.xml @@ -0,0 +1,8 @@ + + + + + cjk@gentoo.org + Cjk + + diff --git a/app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild b/app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild new file mode 100644 index 00000000000..ac5130c7a5f --- /dev/null +++ b/app-i18n/unicode-cldr/unicode-cldr-31.0.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +DESCRIPTION="Unicode Common Locale Data Repository" +HOMEPAGE="http://cldr.unicode.org/" +SRC_URI="http://${PN%-*}.org/Public/${PN/*-}/${PV}/core.zip -> ${PN}-common-${PV}.zip" + +LICENSE="unicode" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/unzip" +S="${WORKDIR}" + +src_install() { + insinto /usr/share/${PN/-//} + doins -r common +}