Update to upstream snapshot tarball (Fixes for people holding hands)
This commit is contained in:
parent
3fbd451a80
commit
19b04616fb
1
.gitignore
vendored
1
.gitignore
vendored
@ -19,3 +19,4 @@
|
|||||||
/noto-emoji-3ffd20e.tar.gz
|
/noto-emoji-3ffd20e.tar.gz
|
||||||
/noto-emoji-f09acc5.tar.gz
|
/noto-emoji-f09acc5.tar.gz
|
||||||
/noto-emoji-833a43d.tar.gz
|
/noto-emoji-833a43d.tar.gz
|
||||||
|
/noto-emoji-16151a2.tar.gz
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
%global commit0 833a43d03246a9325e748a2d783006454d76ff66
|
%global commit0 16151a2312a1f8a7d79e91789d3cfe24559d61f7
|
||||||
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
||||||
|
|
||||||
%global fontname google-noto-emoji
|
%global fontname google-noto-emoji
|
||||||
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: %{fontname}-fonts
|
Name: %{fontname}-fonts
|
||||||
Version: 20190829
|
Version: 20191019
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Google “Noto Emoji” Black-and-White emoji font
|
Summary: Google “Noto Emoji” Black-and-White emoji font
|
||||||
|
|
||||||
@ -115,6 +115,9 @@ install -m 0644 -p %{SOURCE3} %{buildroot}%{_datadir}/appdata
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Oct 19 2019 Mike FABIAN <mfabian@redhat.com> - 20191019-1
|
||||||
|
- Update to upstream snapshot tarball (Fixes for people holding hands)
|
||||||
|
|
||||||
* Thu Aug 29 2019 Mike FABIAN <mfabian@redhat.com> - 20190829-1
|
* Thu Aug 29 2019 Mike FABIAN <mfabian@redhat.com> - 20190829-1
|
||||||
- Update to upstream snapshot tarball (Fixes FR and NL flags)
|
- Update to upstream snapshot tarball (Fixes FR and NL flags)
|
||||||
|
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
|
From e158cbe50e17dad1bd41c641d01f3c3989c083c6 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mike FABIAN <maiku.fabian@gmail.com>
|
||||||
|
Date: Wed, 17 Jul 2019 10:33:21 +0200
|
||||||
|
Subject: [PATCH 1/2] Make it work both with Python2 and Python3
|
||||||
|
|
||||||
|
---
|
||||||
|
add_glyphs.py | 8 +--
|
||||||
|
map_pua_emoji.py | 4 +-
|
||||||
|
third_party/color_emoji/emoji_builder.py | 63 ++++++++++++++----------
|
||||||
|
third_party/color_emoji/png.py | 42 +++++++++++-----
|
||||||
|
4 files changed, 73 insertions(+), 44 deletions(-)
|
||||||
|
|
||||||
diff --git a/add_glyphs.py b/add_glyphs.py
|
diff --git a/add_glyphs.py b/add_glyphs.py
|
||||||
index 7ff47c9..c4883a3 100644
|
index a12b4401..b5918d42 100644
|
||||||
--- a/add_glyphs.py
|
--- a/add_glyphs.py
|
||||||
+++ b/add_glyphs.py
|
+++ b/add_glyphs.py
|
||||||
@@ -66,7 +66,7 @@ def collect_seq_to_file(image_dirs, prefix, suffix):
|
@@ -66,7 +66,7 @@ def collect_seq_to_file(image_dirs, prefix, suffix):
|
||||||
@ -11,16 +23,7 @@ index 7ff47c9..c4883a3 100644
|
|||||||
|
|
||||||
|
|
||||||
def get_png_file_to_advance_mapper(lineheight):
|
def get_png_file_to_advance_mapper(lineheight):
|
||||||
@@ -228,7 +228,7 @@ def get_rtl_seq(seq):
|
@@ -280,7 +280,7 @@ def add_ligature_sequences(font, seqs, aliases):
|
||||||
|
|
||||||
rev_seq = list(seq)
|
|
||||||
rev_seq.reverse()
|
|
||||||
- for i in xrange(1, len(rev_seq)):
|
|
||||||
+ for i in range(1, len(rev_seq)):
|
|
||||||
if is_fitzpatrick(rev_seq[i-1]):
|
|
||||||
tmp = rev_seq[i]
|
|
||||||
rev_seq[i] = rev_seq[i-1]
|
|
||||||
@@ -282,7 +282,7 @@ def add_ligature_sequences(font, seqs, aliases):
|
|
||||||
return
|
return
|
||||||
|
|
||||||
rtl_seq_to_target_name = {
|
rtl_seq_to_target_name = {
|
||||||
@ -29,7 +32,7 @@ index 7ff47c9..c4883a3 100644
|
|||||||
seq_to_target_name.update(rtl_seq_to_target_name)
|
seq_to_target_name.update(rtl_seq_to_target_name)
|
||||||
# sequences that don't have rtl variants get mapped to the empty sequence,
|
# sequences that don't have rtl variants get mapped to the empty sequence,
|
||||||
# delete it.
|
# delete it.
|
||||||
@@ -291,7 +291,7 @@ def add_ligature_sequences(font, seqs, aliases):
|
@@ -289,7 +289,7 @@ def add_ligature_sequences(font, seqs, aliases):
|
||||||
|
|
||||||
# organize by first codepoint in sequence
|
# organize by first codepoint in sequence
|
||||||
keyed_ligatures = collections.defaultdict(list)
|
keyed_ligatures = collections.defaultdict(list)
|
||||||
@ -38,7 +41,7 @@ index 7ff47c9..c4883a3 100644
|
|||||||
first_cp = t[0][0]
|
first_cp = t[0][0]
|
||||||
keyed_ligatures[first_cp].append(t)
|
keyed_ligatures[first_cp].append(t)
|
||||||
|
|
||||||
@@ -341,7 +341,7 @@ def apply_aliases(seq_dict, aliases):
|
@@ -339,7 +339,7 @@ def apply_aliases(seq_dict, aliases):
|
||||||
source is a key in the dictionary, we can delete it. This updates the
|
source is a key in the dictionary, we can delete it. This updates the
|
||||||
dictionary and returns the usable aliases."""
|
dictionary and returns the usable aliases."""
|
||||||
usable_aliases = {}
|
usable_aliases = {}
|
||||||
@ -48,7 +51,7 @@ index 7ff47c9..c4883a3 100644
|
|||||||
usable_aliases[k] = v
|
usable_aliases[k] = v
|
||||||
if k in seq_dict:
|
if k in seq_dict:
|
||||||
diff --git a/map_pua_emoji.py b/map_pua_emoji.py
|
diff --git a/map_pua_emoji.py b/map_pua_emoji.py
|
||||||
index f2b9be9..866670a 100644
|
index aac031c5..ff8d6a9b 100644
|
||||||
--- a/map_pua_emoji.py
|
--- a/map_pua_emoji.py
|
||||||
+++ b/map_pua_emoji.py
|
+++ b/map_pua_emoji.py
|
||||||
@@ -53,8 +53,8 @@ def add_pua_cmap(source_file, target_file):
|
@@ -53,8 +53,8 @@ def add_pua_cmap(source_file, target_file):
|
||||||
@ -63,7 +66,7 @@ index f2b9be9..866670a 100644
|
|||||||
glyph_name = get_glyph_name_from_gsub([ch1, ch2], font)
|
glyph_name = get_glyph_name_from_gsub([ch1, ch2], font)
|
||||||
if glyph_name is not None:
|
if glyph_name is not None:
|
||||||
diff --git a/third_party/color_emoji/emoji_builder.py b/third_party/color_emoji/emoji_builder.py
|
diff --git a/third_party/color_emoji/emoji_builder.py b/third_party/color_emoji/emoji_builder.py
|
||||||
index 4157807..7f17c62 100644
|
index 4157807e..7f17c62f 100644
|
||||||
--- a/third_party/color_emoji/emoji_builder.py
|
--- a/third_party/color_emoji/emoji_builder.py
|
||||||
+++ b/third_party/color_emoji/emoji_builder.py
|
+++ b/third_party/color_emoji/emoji_builder.py
|
||||||
@@ -19,7 +19,7 @@
|
@@ -19,7 +19,7 @@
|
||||||
@ -206,7 +209,7 @@ index 4157807..7f17c62 100644
|
|||||||
print("Output font '%s' generated." % out_file)
|
print("Output font '%s' generated." % out_file)
|
||||||
|
|
||||||
diff --git a/third_party/color_emoji/png.py b/third_party/color_emoji/png.py
|
diff --git a/third_party/color_emoji/png.py b/third_party/color_emoji/png.py
|
||||||
index 20f849a..f5d4c2d 100644
|
index 20f849ae..f5d4c2d5 100644
|
||||||
--- a/third_party/color_emoji/png.py
|
--- a/third_party/color_emoji/png.py
|
||||||
+++ b/third_party/color_emoji/png.py
|
+++ b/third_party/color_emoji/png.py
|
||||||
@@ -17,7 +17,12 @@
|
@@ -17,7 +17,12 @@
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (noto-emoji-833a43d.tar.gz) = d831be92c057d6325d8a9cb5585ef8f81a835910f623babb9caadcb8b98f0cf316cead39266176567f65bf22f9230d14f57b7891acb5ffd2cbc95b83dc941cbd
|
SHA512 (noto-emoji-16151a2.tar.gz) = cf856a5793e3cdccac1d3e4180f04d91a314c1609abafa9ff47d6ddb83919d44057e3b9b4729a3a702c40dfd7cabbc109c650e38b0fe659be0c28c2ddfdc9272
|
||||||
|
Loading…
Reference in New Issue
Block a user