import cldr-emoji-annotation-39-2.el8

This commit is contained in:
CentOS Sources 2021-06-15 04:20:37 +00:00 committed by Andrew Lukoshko
parent d07142bbc2
commit ba9094bf3d
3 changed files with 89 additions and 18 deletions

View File

@ -1 +1 @@
e19fb20b7bb354d60b59761aad915854f03ed8c0 SOURCES/cldr-emoji-annotation-33.1.0_0.tar.gz
45b7c281493938f8da546fe649e32de740a38ec8 SOURCES/cldr-release-39.zip

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/cldr-emoji-annotation-33.1.0_0.tar.gz
SOURCES/cldr-release-39.zip

View File

@ -1,11 +1,24 @@
%global tag_version release-39
#%%global is_official 0%%(echo %%{tag_version} | egrep -q 'alpha|beta|final'; echo $?)
#%%global is_official 0
%global is_official 0
Name: cldr-emoji-annotation
Version: 33.1.0_0
Release: 1%{?dist}
Version: 39
Release: 2%{?dist}
%if 0%{?fedora:1}%{?rhel:0}
Epoch: 1
%endif
# Annotation files are in Unicode license
Summary: Emoji annotation files in CLDR
License: LGPLv2+ and Unicode
URL: https://github.com/fujiwarat/cldr-emoji-annotation
Source0: https://github.com/fujiwarat/cldr-emoji-annotation/releases/download/%{version}/%{name}-%{version}.tar.gz
License: Unicode
URL: https://unicode.org/cldr
%if %is_official
Source0: https://github.com/unicode-org/cldr/releases/download/%{tag_version}/cldr-common-%{version}.zip
Source1: https://raw.githubusercontent.com/unicode-org/cldr/%{tag_version}/README.md#/cldr-README.md
%else
Source0: https://github.com/unicode-org/cldr/archive/%{tag_version}.zip#/cldr-%{tag_version}.zip
%endif
#Patch0: %%{name}-HEAD.patch
BuildRequires: autoconf
BuildRequires: automake
@ -16,36 +29,94 @@ This package provides the emoji annotation file by language in CLDR.
%package devel
Summary: Files for development using cldr-annotations
Requires: %{name} = %{version}-%{release}
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
Requires: pkgconfig
BuildArch: noarch
%description devel
This package contains the pkg-config files for development
when building programs that use cldr-annotations.
when building programs that use cldr-emoji-annotations.
%prep
%autosetup
%if %is_official
%autosetup -c -n cldr-%{tag_version}
cp %SOURCE1 README.md
%else
%autosetup -n cldr-%{tag_version}
%endif
%build
#autoreconf -v -i
autoreconf -v -i
%configure
make %{?_smp_mflags}
%install
make DESTDIR=$RPM_BUILD_ROOT install INSTALL="install -p"
pushd $PWD
ANNOTATION_DIR=common/annotations
CLDR_DIR=%{_datadir}/unicode/cldr/$ANNOTATION_DIR
pushd $ANNOTATION_DIR
for xml in *.xml ; do
install -pm 644 -D $xml $RPM_BUILD_ROOT$CLDR_DIR/$xml
done
popd
ANNOTATION_DIR=common/annotationsDerived
CLDR_DIR=%{_datadir}/unicode/cldr/$ANNOTATION_DIR
pushd $ANNOTATION_DIR
for xml in *.xml ; do
install -pm 644 -D $xml $RPM_BUILD_ROOT$CLDR_DIR/$xml
done
popd
DTD_DIR=common/dtd
CLDR_DIR=%{_datadir}/unicode/cldr/$DTD_DIR
pushd $DTD_DIR
for dtd in *.dtd ; do
install -pm 644 -D $dtd $RPM_BUILD_ROOT$CLDR_DIR/$dtd
done
popd
install -pm 755 -d $RPM_BUILD_ROOT%{_datadir}/pkgconfig
cat >> $RPM_BUILD_ROOT%{_datadir}/pkgconfig/%{name}.pc <<_EOF
prefix=/usr
Name: cldr-emoji-annotations
Description: annotation files in CLDR
Version: %{version}
_EOF
%check
ANNOTATION_DIR=common/annotations
CLDR_DIR=%{_datadir}/unicode/cldr/$ANNOTATION_DIR
for xml in $ANNOTATION_DIR/*.xml ; do
xmllint --noout --valid --postvalid $xml
done
ANNOTATION_DIR=common/annotationsDerived
CLDR_DIR=%{_datadir}/unicode/cldr/$ANNOTATION_DIR
for xml in $ANNOTATION_DIR/*.xml ; do
xmllint --noout --valid --postvalid $xml
done
%files
%doc AUTHORS README
%doc README.md readme.html
%license unicode-license.txt
%{_datadir}/unicode/
%dir %{_datadir}/unicode
%dir %{_datadir}/unicode/cldr
%dir %{_datadir}/unicode/cldr/common
%{_datadir}/unicode/cldr/common/dtd
%{_datadir}/unicode/cldr/common/annotations
%{_datadir}/unicode/cldr/common/annotationsDerived
%files devel
%{_datadir}/pkgconfig/*.pc
%changelog
* Mon Jun 14 2021 Takao Fujiwara <tfujiwar@gmail.com> - 39-2
- Add gating.yaml. Related: rhbz#1897540
* Mon May 24 2021 Takao Fujiwara <tfujiwar@gmail.com> - 39-1
- Bump to release-39. Related: rhbz#1897540
* Thu Jul 05 2018 Takao Fujiwara <tfujiwar@gmail.com> - 33.1.0_0-1
- Integrated release 33-1