From 7ab9106fed3b2cf9ef1bb040df3b963d1abdb575 Mon Sep 17 00:00:00 2001 From: DistroBaker Date: Wed, 4 Nov 2020 08:17:59 +0000 Subject: [PATCH] Merged update from upstream sources This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/cldr-emoji-annotation.git#2d77c9c94eb794a34b8eaa088d26d63a150f625a --- .gitignore | 1 + cldr-README.md | 51 ++++++++++++++++++++++++++++++++++++++ cldr-emoji-annotation.spec | 22 +++++++++++++--- sources | 2 +- 4 files changed, 71 insertions(+), 5 deletions(-) create mode 100644 cldr-README.md diff --git a/.gitignore b/.gitignore index a42a4e7..29b3f55 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /cldr-release-38-beta.tar.gz /cldr-release-38-beta2.tar.gz /cldr-release-38-beta3.tar.gz +/cldr-common-38.0.zip diff --git a/cldr-README.md b/cldr-README.md new file mode 100644 index 0000000..300d0c4 --- /dev/null +++ b/cldr-README.md @@ -0,0 +1,51 @@ +# Unicode CLDR Project + +Latest Release: [v37.0](http://cldr.unicode.org/index/downloads/cldr-37#TOC-V37) published 2020-04-23 + +## Build Status + +GitHub: +[![cldr-ant](https://github.com/unicode-org/cldr/workflows/cldr-ant/badge.svg)](https://github.com/unicode-org/cldr/actions?query=branch%3Amaster+workflow%3A%22cldr-ant%22) +[![cldr-mvn](https://github.com/unicode-org/cldr/workflows/cldr-mvn/badge.svg)](https://github.com/unicode-org/cldr/actions?query=branch%3Amaster+workflow%3A%22cldr-mvn%22) +[![Ansible Lint](https://github.com/unicode-org/cldr/workflows/Ansible%20Lint/badge.svg)](https://github.com/unicode-org/cldr/actions?query=branch%3Amaster+workflow%3A%22Ansible+Lint%22) + +Jenkins: [![Build Status](https://cldr-build.unicode.org/jenkins/buildStatus/icon?job=cldr%2Fcldr-master)](https://cldr-build.unicode.org/jenkins/job/cldr/job/cldr-master/) :lock: + +Travis: [![Build Status](https://travis-ci.org/unicode-org/cldr.svg?branch=master)](https://travis-ci.org/unicode-org/cldr/branches) + +### What is CLDR? +The Unicode CLDR provides key building blocks for software to support the world's languages, with the largest and most extensive standard repository of locale data available. This data is used by a wide spectrum of companies for their software internationalization and localization, adapting software to the conventions of different languages for such common software tasks. + +See For further information: + +- Information about [CLDR releases and downloads](http://cldr.unicode.org/index/downloads "CLDR Download Page"), +including the data files and LDML specification associated with each release. + +- Information about [Building and running CLDR Tools](http://cldr.unicode.org/tools "CLDR Tools Page") + +### Contributing + +Most data submissions are done via the [CLDR Survey Tool](https://st.unicode.org/cldr-apps/), which is open and available on predetermined cycles. +Click [HERE](http://unicode.org/cldr/survey_tool.html) for information on how to obtain a survey tool account. + +For details about code and other contributions, see [CONTRIBUTING.md](./CONTRIBUTING.md) + +### Licenses + +- Usage of CLDR data and software is governed by the [Unicode Terms of Use](http://www.unicode.org/copyright.html) +a copy of which is included as [unicode-license.txt](../blob/master/unicode-license.txt). + +- Some CLDR tools depend on libraries in tools/java/libs/; use of these libraries is governed by separate license agreements. +- Use of the ICU libraries is subject to the +[ICU License]("https://github.com/unicode-org/icu/blob/master/icu4j/main/shared/licenses/LICENSE"), +included as [ICU-LICENSE](../../blob/master/ICU-LICENSE). +- Use of the Guava, Xerces, and Myanmar Tools libraries is subject to the +[Apache License]("http://www.apache.org/licenses/LICENSE-2.0.html") +included as [apache-license.txt](../../blob/master/apache-license.txt). + +### Copyright + +Copyright © 1991-2020 Unicode, Inc. +All rights reserved. +[Terms of use](http://www.unicode.org/copyright.html) + diff --git a/cldr-emoji-annotation.spec b/cldr-emoji-annotation.spec index be8f26c..42e9c87 100644 --- a/cldr-emoji-annotation.spec +++ b/cldr-emoji-annotation.spec @@ -1,7 +1,8 @@ -%global file_version release-38-beta3 +%global file_version release-38 +%global is_official 0%(echo %{file_version} | egrep -q 'alpha|beta|final'; echo $?) Name: cldr-emoji-annotation -Version: 38~beta3 +Version: 38 Release: 1%{?dist} %if 0%{?fedora:1}%{?rhel:0} Epoch: 1 @@ -10,7 +11,12 @@ Epoch: 1 Summary: Emoji annotation files in CLDR License: Unicode URL: https://unicode.org/cldr -Source0: https://github.com/unicode-org/cldr/archive/%{file_version}.tar.gz#/cldr-%{file_version}.tar.gz +%if %is_official +Source0: https://github.com/unicode-org/cldr/releases/download/%{file_version}/cldr-common-%{version}.0.zip +Source1: https://raw.githubusercontent.com/unicode-org/cldr/%{file_version}/README.md#/cldr-README.md +%else +Source0: https://github.com/unicode-org/cldr/archive/%{file_version}.zip#/cldr-%{file_version}.zip +%endif #Patch0: %%{name}-HEAD.patch BuildRequires: autoconf BuildRequires: automake @@ -41,7 +47,12 @@ when building programs that use cldr-emoji-annotations. %prep +%if %is_official +%autosetup -c -n cldr-%{file_version} +cp %SOURCE1 README.md +%else %autosetup -n cldr-%{file_version} +%endif %install @@ -95,7 +106,7 @@ done %files -%doc CONTRIBUTING.md README.md readme.html +%doc README.md readme.html %license unicode-license.txt %{_datadir}/unicode/cldr/common/annotations %{_datadir}/unicode/cldr/common/annotationsDerived @@ -110,6 +121,9 @@ done %{_datadir}/pkgconfig/*.pc %changelog +* Sun Nov 01 2020 Takao Fujiwara - 1:38-1 +- Bump release-38 + * Thu Oct 22 2020 Takao Fujiwara - 1:38~beta3-1 - Bump release-38-beta3 diff --git a/sources b/sources index 0823155..1da0fff 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (cldr-release-38-beta3.tar.gz) = 7e58a137ae3aa5ab6e02393995c4860d1a75af495a86e114efbfcfa7842e6ae6ef8c32df25a05557815d6f4b3244bf9f3f32c09d5856be88ce7b59ed9adfe3c9 +SHA512 (cldr-common-38.0.zip) = 76a2cdfbe74bd25825dd0a91f81d3651d6baab374b7cffd2346d9194b30d2bf16940e448ede5b1c5f470ad2ff7df082a957ec6eade336b9baaafd40870648b1e