Accepting request 461022 from home:frispete:fonts

Here's a RFC SR

The changelog isn't complete, but I haven't found a real changelog 
apart from git, and the zip doesn't tell, which git branch/tag/date 
it is generated from... I filed an issue because of this.

I also noticed, that some fonts are gone:

  noto-sans-hans                     20140716-1.4
  noto-sans-hant                     20140716-1.4
  noto-sans-jp                       20140716-1.4
  noto-sans-kr                       20140716-1.4
  noto-sans-pahlavi                  20140716-1.4
  noto-sans-parthian                 20140716-1.4
  noto-sans-sumeroakkadiancuneiform  20140716-1.4

Don't know, if this is to be expected?

The generate-specfile.sh had to be adjusted due to some new fonts.
The serif variable naming/handling is questionable still..

Anyway, here it is:

- update to version 20161025
  - new: Mono Font
  - new: Naskh Arabic Font
  - new: Bengali Sans Serif Font
  - new: Devanagari Sans Serif Font
  - new: Gujarati Sans Serif Font
  - new: Gurmukhi Sans Serif Font
  - new: Kannada Sans Serif Font
  - new: Khmer Sans Serif Font
  - new: Lao Sans Serif Font
  - new: Malayalam Sans Serif Font
  - new: Myanmar Sans Serif Font
  - new: Oriya Sans Serif Font
  - new: Tamil Sans Serif Font
  - new: Telugu Sans Serif Font
  - new: Thai Sans Serif Font
  - new: Sans UI Font
  - new: Bengali Font
  - new: Devanagari Font
  - new: Gujarati Font
  - new: Kannada Font
  - new: Malayalam Font
  - new: Tamil Font
  - new: Telugu Font
- fix generate-specfile.sh:
  - handle UI fonts, that do not start with Sans ot Serif
  - fix description of fonts, that do not start with Sans ot Serif
  - flag sans fonts only, that really deserve it

OBS-URL: https://build.opensuse.org/request/show/461022
OBS-URL: https://build.opensuse.org/package/show/M17N:fonts/google-noto-fonts?expand=0&rev=30
This commit is contained in:
Marguerite Su 2017-03-02 01:35:55 +00:00 committed by Git OBS Bridge
parent 2b97677c56
commit a931008cb4
5 changed files with 629 additions and 126 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:a979d9837d4223bcbe55497e3b5c545e0e554a78584f60915f1e620d3fbe508e oid sha256:77decb00e17677b0f8182a9eeae7ddfaadfed064c926433bcc0c8617cd52899e
size 494039413 size 500352958

View File

@ -15,9 +15,10 @@ rm -f $pkg_name/NotoSans*CJK*.otf
cp -f $pkg_name.spec.in $pkg_name.spec cp -f $pkg_name.spec.in $pkg_name.spec
for h in hinted; do for h in hinted; do
ls $pkg_name/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc::' | sort -f | uniq | while read font; do ls $pkg_name/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc::' | sort -f | uniq | while read font; do
serif=`echo $font | sed 's:\(Sans\|Serif\).*:\1:'`
ui=`(echo $font | grep -q UI) && echo UI` ui=`(echo $font | grep -q UI) && echo UI`
script=`echo $font | sed "s:$serif\(.*\)$ui:\1:"` font=${font%%$ui}
serif=`echo $font | sed 's:\(Sans\|Serif\).*:\1:'`
script=`echo $font | sed "s:$serif\(.*\):\1:"`
packagename="noto-$serif" packagename="noto-$serif"
if [ ! -z $script ]; then if [ ! -z $script ]; then
packagename="$packagename-$script" packagename="$packagename-$script"
@ -28,6 +29,8 @@ for h in hinted; do
packagename=`echo "$packagename" | tr [A-Z] [a-z]` packagename=`echo "$packagename" | tr [A-Z] [a-z]`
if [ $serif == "Sans" ]; then if [ $serif == "Sans" ]; then
serif_dsc="Sans Serif " serif_dsc="Sans Serif "
else
serif_dsc=""
fi fi
obsoletes=$packagename obsoletes=$packagename
if [ "$script" == "CJK" ]; then if [ "$script" == "CJK" ]; then
@ -39,8 +42,11 @@ for h in hinted; do
done done
fi fi
packagename="$packagename-fonts" packagename="$packagename-fonts"
summary=`echo "Noto $script $serif_dsc Font" | sed 's:\([a-z]\)\([A-Z]\):\1 \2:'` if [ ! -z "$script" ]; then
summary=`echo "Noto $script ${serif_dsc}Font" | sed 's:\([a-z]\)\([A-Z]\):\1 \2:g'`
else
summary=`echo "Noto $serif Font" | sed 's:\([a-z]\)\([A-Z]\):\1 \2:g'`
fi
sed -i "s/@SUBPACKAGE_HEADERS@/%package -n $packagename\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/%package -n $packagename\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
sed -i "s/@SUBPACKAGE_HEADERS@/Summary: $summary\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/Summary: $summary\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
sed -i "s;@SUBPACKAGE_HEADERS@;Group: System/X11/Fonts\n@SUBPACKAGE_HEADERS@;" $pkg_name.spec sed -i "s;@SUBPACKAGE_HEADERS@;Group: System/X11/Fonts\n@SUBPACKAGE_HEADERS@;" $pkg_name.spec
@ -60,7 +66,11 @@ for h in hinted; do
sed -i "s/@SUBPACKAGE_HEADERS@/%description -n $packagename\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/%description -n $packagename\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
sed -i "s/@SUBPACKAGE_HEADERS@/Noto's design goal is to achieve visual harmonization (e.g., compatible\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/Noto's design goal is to achieve visual harmonization (e.g., compatible\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
sed -i "s/@SUBPACKAGE_HEADERS@/heights and stroke thicknesses) across languages. This package contains\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/heights and stroke thicknesses) across languages. This package contains\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
sed -i "s/@SUBPACKAGE_HEADERS@/$script $serif_dsc font, $h.\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec if [ ! -z "$script" ]; then
sed -i "s/@SUBPACKAGE_HEADERS@/$script ${serif_dsc}font, $h.\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
else
sed -i "s/@SUBPACKAGE_HEADERS@/$serif font, $h.\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
fi
sed -i "s/@SUBPACKAGE_HEADERS@/\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec
sed -i "s/@SUBPACKAGE_SCRIPTLETS@/%reconfigure_fonts_scriptlets -n $packagename\n\n@SUBPACKAGE_SCRIPTLETS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_SCRIPTLETS@/%reconfigure_fonts_scriptlets -n $packagename\n\n@SUBPACKAGE_SCRIPTLETS@/" $pkg_name.spec

View File

@ -1,3 +1,36 @@
-------------------------------------------------------------------
Tue Feb 28 16:22:22 UTC 2017 - hpj@urpla.net
- update to version 20161025
- new: Mono Font
- new: Naskh Arabic Font
- new: Bengali Sans Serif Font
- new: Devanagari Sans Serif Font
- new: Gujarati Sans Serif Font
- new: Gurmukhi Sans Serif Font
- new: Kannada Sans Serif Font
- new: Khmer Sans Serif Font
- new: Lao Sans Serif Font
- new: Malayalam Sans Serif Font
- new: Myanmar Sans Serif Font
- new: Oriya Sans Serif Font
- new: Tamil Sans Serif Font
- new: Telugu Sans Serif Font
- new: Thai Sans Serif Font
- new: Sans UI Font
- new: Bengali Font
- new: Devanagari Font
- new: Gujarati Font
- new: Kannada Font
- new: Malayalam Font
- new: Tamil Font
- new: Telugu Font
- fix generate-specfile.sh:
- handle UI fonts, that do not start with Sans ot Serif
- fix description of fonts, that do not start with Sans ot Serif
- flag sans fonts only, that really deserve it
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Sep 11 07:59:49 UTC 2016 - ftake@geeko.jp Sun Sep 11 07:59:49 UTC 2016 - ftake@geeko.jp

View File

@ -1,7 +1,7 @@
# #
# spec file for package google-noto-fonts # spec file for package google-noto-fonts
# #
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -16,9 +16,9 @@
# #
%define hyear 2015 %define hyear 2016
%define hmonth 12 %define hmonth 10
%define hday 15 %define hday 25
%define src_name NotoFonts %define src_name NotoFonts
# DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-specfile.sh scriptZZ # DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-specfile.sh scriptZZ
@ -51,7 +51,7 @@ Group: Documentation/Other
License for Google's Noto fonts. License for Google's Noto fonts.
%package -n noto-coloremoji-fonts %package -n noto-coloremoji-fonts
Summary: Noto Font Summary: Noto Color Emoji Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-coloremoji Obsoletes: noto-coloremoji
@ -61,10 +61,10 @@ Provides: noto-coloremoji
%description -n noto-coloremoji-fonts %description -n noto-coloremoji-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
font, hinted. ColorEmoji font, hinted.
%package -n noto-emoji-fonts %package -n noto-emoji-fonts
Summary: Noto Font Summary: Noto Emoji Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-emoji Obsoletes: noto-emoji
@ -74,10 +74,10 @@ Provides: noto-emoji
%description -n noto-emoji-fonts %description -n noto-emoji-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
font, hinted. Emoji font, hinted.
%package -n noto-kufiarabic-fonts %package -n noto-kufiarabic-fonts
Summary: Noto Font Summary: Noto Kufi Arabic Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-kufiarabic Obsoletes: noto-kufiarabic
@ -87,10 +87,23 @@ Provides: noto-kufiarabic
%description -n noto-kufiarabic-fonts %description -n noto-kufiarabic-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
font, hinted. KufiArabic font, hinted.
%package -n noto-mono-fonts
Summary: Noto Mono Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-mono
Provides: noto-mono
%reconfigure_fonts_prereq
%description -n noto-mono-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Mono font, hinted.
%package -n noto-naskharabic-fonts %package -n noto-naskharabic-fonts
Summary: Noto Font Summary: Noto Naskh Arabic Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-naskharabic Obsoletes: noto-naskharabic
@ -100,10 +113,23 @@ Provides: noto-naskharabic
%description -n noto-naskharabic-fonts %description -n noto-naskharabic-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
font, hinted. NaskhArabic font, hinted.
%package -n noto-naskharabic-ui-fonts
Summary: Noto Naskh Arabic Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-naskharabic-ui
Provides: noto-naskharabic-ui
%reconfigure_fonts_prereq
%description -n noto-naskharabic-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
NaskhArabic font, hinted.
%package -n noto-nastaliqurdu-fonts %package -n noto-nastaliqurdu-fonts
Summary: Noto Font Summary: Noto Nastaliq Urdu Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-nastaliqurdu Obsoletes: noto-nastaliqurdu
@ -113,10 +139,10 @@ Provides: noto-nastaliqurdu
%description -n noto-nastaliqurdu-fonts %description -n noto-nastaliqurdu-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
font, hinted. NastaliqUrdu font, hinted.
%package -n noto-sans-fonts %package -n noto-sans-fonts
Summary: Noto Sans Serif Font Summary: Noto Sans Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-sans Obsoletes: noto-sans
@ -126,7 +152,7 @@ Provides: noto-sans
%description -n noto-sans-fonts %description -n noto-sans-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Sans Serif font, hinted. Sans font, hinted.
%package -n noto-sans-armenian-fonts %package -n noto-sans-armenian-fonts
Summary: Noto Armenian Sans Serif Font Summary: Noto Armenian Sans Serif Font
@ -206,6 +232,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Bengali Sans Serif font, hinted. Bengali Sans Serif font, hinted.
%package -n noto-sans-bengali-ui-fonts
Summary: Noto Bengali Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-bengali-ui
Provides: noto-sans-bengali-ui
%reconfigure_fonts_prereq
%description -n noto-sans-bengali-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Bengali Sans Serif font, hinted.
%package -n noto-sans-brahmi-fonts %package -n noto-sans-brahmi-fonts
Summary: Noto Brahmi Sans Serif Font Summary: Noto Brahmi Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -399,6 +438,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Devanagari Sans Serif font, hinted. Devanagari Sans Serif font, hinted.
%package -n noto-sans-devanagari-ui-fonts
Summary: Noto Devanagari Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-devanagari-ui
Provides: noto-sans-devanagari-ui
%reconfigure_fonts_prereq
%description -n noto-sans-devanagari-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Devanagari Sans Serif font, hinted.
%package -n noto-sans-egyptianhieroglyphs-fonts %package -n noto-sans-egyptianhieroglyphs-fonts
Summary: Noto Egyptian Hieroglyphs Sans Serif Font Summary: Noto Egyptian Hieroglyphs Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -477,6 +529,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Gujarati Sans Serif font, hinted. Gujarati Sans Serif font, hinted.
%package -n noto-sans-gujarati-ui-fonts
Summary: Noto Gujarati Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-gujarati-ui
Provides: noto-sans-gujarati-ui
%reconfigure_fonts_prereq
%description -n noto-sans-gujarati-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Gujarati Sans Serif font, hinted.
%package -n noto-sans-gurmukhi-fonts %package -n noto-sans-gurmukhi-fonts
Summary: Noto Gurmukhi Sans Serif Font Summary: Noto Gurmukhi Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -490,6 +555,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Gurmukhi Sans Serif font, hinted. Gurmukhi Sans Serif font, hinted.
%package -n noto-sans-gurmukhi-ui-fonts
Summary: Noto Gurmukhi Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-gurmukhi-ui
Provides: noto-sans-gurmukhi-ui
%reconfigure_fonts_prereq
%description -n noto-sans-gurmukhi-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Gurmukhi Sans Serif font, hinted.
%package -n noto-sans-hanunoo-fonts %package -n noto-sans-hanunoo-fonts
Summary: Noto Hanunoo Sans Serif Font Summary: Noto Hanunoo Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -594,6 +672,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Kannada Sans Serif font, hinted. Kannada Sans Serif font, hinted.
%package -n noto-sans-kannada-ui-fonts
Summary: Noto Kannada Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-kannada-ui
Provides: noto-sans-kannada-ui
%reconfigure_fonts_prereq
%description -n noto-sans-kannada-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Kannada Sans Serif font, hinted.
%package -n noto-sans-kayahli-fonts %package -n noto-sans-kayahli-fonts
Summary: Noto Kayah Li Sans Serif Font Summary: Noto Kayah Li Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -633,6 +724,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Khmer Sans Serif font, hinted. Khmer Sans Serif font, hinted.
%package -n noto-sans-khmer-ui-fonts
Summary: Noto Khmer Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-khmer-ui
Provides: noto-sans-khmer-ui
%reconfigure_fonts_prereq
%description -n noto-sans-khmer-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Khmer Sans Serif font, hinted.
%package -n noto-sans-lao-fonts %package -n noto-sans-lao-fonts
Summary: Noto Lao Sans Serif Font Summary: Noto Lao Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -646,6 +750,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Lao Sans Serif font, hinted. Lao Sans Serif font, hinted.
%package -n noto-sans-lao-ui-fonts
Summary: Noto Lao Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-lao-ui
Provides: noto-sans-lao-ui
%reconfigure_fonts_prereq
%description -n noto-sans-lao-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Lao Sans Serif font, hinted.
%package -n noto-sans-lepcha-fonts %package -n noto-sans-lepcha-fonts
Summary: Noto Lepcha Sans Serif Font Summary: Noto Lepcha Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -737,6 +854,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Malayalam Sans Serif font, hinted. Malayalam Sans Serif font, hinted.
%package -n noto-sans-malayalam-ui-fonts
Summary: Noto Malayalam Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-malayalam-ui
Provides: noto-sans-malayalam-ui
%reconfigure_fonts_prereq
%description -n noto-sans-malayalam-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Malayalam Sans Serif font, hinted.
%package -n noto-sans-mandaic-fonts %package -n noto-sans-mandaic-fonts
Summary: Noto Mandaic Sans Serif Font Summary: Noto Mandaic Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -789,6 +919,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Myanmar Sans Serif font, hinted. Myanmar Sans Serif font, hinted.
%package -n noto-sans-myanmar-ui-fonts
Summary: Noto Myanmar Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-myanmar-ui
Provides: noto-sans-myanmar-ui
%reconfigure_fonts_prereq
%description -n noto-sans-myanmar-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Myanmar Sans Serif font, hinted.
%package -n noto-sans-newtailue-fonts %package -n noto-sans-newtailue-fonts
Summary: Noto New TaiLue Sans Serif Font Summary: Noto New TaiLue Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -906,6 +1049,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Oriya Sans Serif font, hinted. Oriya Sans Serif font, hinted.
%package -n noto-sans-oriya-ui-fonts
Summary: Noto Oriya Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-oriya-ui
Provides: noto-sans-oriya-ui
%reconfigure_fonts_prereq
%description -n noto-sans-oriya-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Oriya Sans Serif font, hinted.
%package -n noto-sans-osmanya-fonts %package -n noto-sans-osmanya-fonts
Summary: Noto Osmanya Sans Serif Font Summary: Noto Osmanya Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -1179,6 +1335,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Tamil Sans Serif font, hinted. Tamil Sans Serif font, hinted.
%package -n noto-sans-tamil-ui-fonts
Summary: Noto Tamil Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-tamil-ui
Provides: noto-sans-tamil-ui
%reconfigure_fonts_prereq
%description -n noto-sans-tamil-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Tamil Sans Serif font, hinted.
%package -n noto-sans-telugu-fonts %package -n noto-sans-telugu-fonts
Summary: Noto Telugu Sans Serif Font Summary: Noto Telugu Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -1192,6 +1361,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Telugu Sans Serif font, hinted. Telugu Sans Serif font, hinted.
%package -n noto-sans-telugu-ui-fonts
Summary: Noto Telugu Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-telugu-ui
Provides: noto-sans-telugu-ui
%reconfigure_fonts_prereq
%description -n noto-sans-telugu-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Telugu Sans Serif font, hinted.
%package -n noto-sans-thaana-fonts %package -n noto-sans-thaana-fonts
Summary: Noto Thaana Sans Serif Font Summary: Noto Thaana Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -1218,6 +1400,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Thai Sans Serif font, hinted. Thai Sans Serif font, hinted.
%package -n noto-sans-thai-ui-fonts
Summary: Noto Thai Sans Serif Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-thai-ui
Provides: noto-sans-thai-ui
%reconfigure_fonts_prereq
%description -n noto-sans-thai-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Thai Sans Serif font, hinted.
%package -n noto-sans-tibetan-fonts %package -n noto-sans-tibetan-fonts
Summary: Noto Tibetan Sans Serif Font Summary: Noto Tibetan Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -1257,6 +1452,19 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Ugaritic Sans Serif font, hinted. Ugaritic Sans Serif font, hinted.
%package -n noto-sans-ui-fonts
Summary: Noto Sans Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-sans-ui
Provides: noto-sans-ui
%reconfigure_fonts_prereq
%description -n noto-sans-ui-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Sans font, hinted.
%package -n noto-sans-vai-fonts %package -n noto-sans-vai-fonts
Summary: Noto Vai Sans Serif Font Summary: Noto Vai Sans Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
@ -1284,7 +1492,7 @@ heights and stroke thicknesses) across languages. This package contains
Yi Sans Serif font, hinted. Yi Sans Serif font, hinted.
%package -n noto-serif-fonts %package -n noto-serif-fonts
Summary: Noto Sans Serif Font Summary: Noto Serif Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-serif Obsoletes: noto-serif
@ -1294,10 +1502,10 @@ Provides: noto-serif
%description -n noto-serif-fonts %description -n noto-serif-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Sans Serif font, hinted. Serif font, hinted.
%package -n noto-serif-armenian-fonts %package -n noto-serif-armenian-fonts
Summary: Noto Armenian Sans Serif Font Summary: Noto Armenian Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-serif-armenian Obsoletes: noto-serif-armenian
@ -1307,10 +1515,36 @@ Provides: noto-serif-armenian
%description -n noto-serif-armenian-fonts %description -n noto-serif-armenian-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Armenian Sans Serif font, hinted. Armenian font, hinted.
%package -n noto-serif-bengali-fonts
Summary: Noto Bengali Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-serif-bengali
Provides: noto-serif-bengali
%reconfigure_fonts_prereq
%description -n noto-serif-bengali-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Bengali font, hinted.
%package -n noto-serif-devanagari-fonts
Summary: Noto Devanagari Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-serif-devanagari
Provides: noto-serif-devanagari
%reconfigure_fonts_prereq
%description -n noto-serif-devanagari-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Devanagari font, hinted.
%package -n noto-serif-georgian-fonts %package -n noto-serif-georgian-fonts
Summary: Noto Georgian Sans Serif Font Summary: Noto Georgian Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-serif-georgian Obsoletes: noto-serif-georgian
@ -1320,10 +1554,36 @@ Provides: noto-serif-georgian
%description -n noto-serif-georgian-fonts %description -n noto-serif-georgian-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Georgian Sans Serif font, hinted. Georgian font, hinted.
%package -n noto-serif-gujarati-fonts
Summary: Noto Gujarati Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-serif-gujarati
Provides: noto-serif-gujarati
%reconfigure_fonts_prereq
%description -n noto-serif-gujarati-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Gujarati font, hinted.
%package -n noto-serif-kannada-fonts
Summary: Noto Kannada Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-serif-kannada
Provides: noto-serif-kannada
%reconfigure_fonts_prereq
%description -n noto-serif-kannada-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Kannada font, hinted.
%package -n noto-serif-khmer-fonts %package -n noto-serif-khmer-fonts
Summary: Noto Khmer Sans Serif Font Summary: Noto Khmer Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-serif-khmer Obsoletes: noto-serif-khmer
@ -1333,10 +1593,10 @@ Provides: noto-serif-khmer
%description -n noto-serif-khmer-fonts %description -n noto-serif-khmer-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Khmer Sans Serif font, hinted. Khmer font, hinted.
%package -n noto-serif-lao-fonts %package -n noto-serif-lao-fonts
Summary: Noto Lao Sans Serif Font Summary: Noto Lao Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-serif-lao Obsoletes: noto-serif-lao
@ -1346,10 +1606,49 @@ Provides: noto-serif-lao
%description -n noto-serif-lao-fonts %description -n noto-serif-lao-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Lao Sans Serif font, hinted. Lao font, hinted.
%package -n noto-serif-malayalam-fonts
Summary: Noto Malayalam Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-serif-malayalam
Provides: noto-serif-malayalam
%reconfigure_fonts_prereq
%description -n noto-serif-malayalam-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Malayalam font, hinted.
%package -n noto-serif-tamil-fonts
Summary: Noto Tamil Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-serif-tamil
Provides: noto-serif-tamil
%reconfigure_fonts_prereq
%description -n noto-serif-tamil-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Tamil font, hinted.
%package -n noto-serif-telugu-fonts
Summary: Noto Telugu Font
Group: System/X11/Fonts
Requires: google-noto-fonts-doc
Obsoletes: noto-serif-telugu
Provides: noto-serif-telugu
%reconfigure_fonts_prereq
%description -n noto-serif-telugu-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains
Telugu font, hinted.
%package -n noto-serif-thai-fonts %package -n noto-serif-thai-fonts
Summary: Noto Thai Sans Serif Font Summary: Noto Thai Font
Group: System/X11/Fonts Group: System/X11/Fonts
Requires: google-noto-fonts-doc Requires: google-noto-fonts-doc
Obsoletes: noto-serif-thai Obsoletes: noto-serif-thai
@ -1359,7 +1658,7 @@ Provides: noto-serif-thai
%description -n noto-serif-thai-fonts %description -n noto-serif-thai-fonts
Noto's design goal is to achieve visual harmonization (e.g., compatible Noto's design goal is to achieve visual harmonization (e.g., compatible
heights and stroke thicknesses) across languages. This package contains heights and stroke thicknesses) across languages. This package contains
Thai Sans Serif font, hinted. Thai font, hinted.
@ -1383,8 +1682,12 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-kufiarabic-fonts %reconfigure_fonts_scriptlets -n noto-kufiarabic-fonts
%reconfigure_fonts_scriptlets -n noto-mono-fonts
%reconfigure_fonts_scriptlets -n noto-naskharabic-fonts %reconfigure_fonts_scriptlets -n noto-naskharabic-fonts
%reconfigure_fonts_scriptlets -n noto-naskharabic-ui-fonts
%reconfigure_fonts_scriptlets -n noto-nastaliqurdu-fonts %reconfigure_fonts_scriptlets -n noto-nastaliqurdu-fonts
%reconfigure_fonts_scriptlets -n noto-sans-fonts %reconfigure_fonts_scriptlets -n noto-sans-fonts
@ -1401,6 +1704,8 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-bengali-fonts %reconfigure_fonts_scriptlets -n noto-sans-bengali-fonts
%reconfigure_fonts_scriptlets -n noto-sans-bengali-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-brahmi-fonts %reconfigure_fonts_scriptlets -n noto-sans-brahmi-fonts
%reconfigure_fonts_scriptlets -n noto-sans-buginese-fonts %reconfigure_fonts_scriptlets -n noto-sans-buginese-fonts
@ -1427,6 +1732,8 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-devanagari-fonts %reconfigure_fonts_scriptlets -n noto-sans-devanagari-fonts
%reconfigure_fonts_scriptlets -n noto-sans-devanagari-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-egyptianhieroglyphs-fonts %reconfigure_fonts_scriptlets -n noto-sans-egyptianhieroglyphs-fonts
%reconfigure_fonts_scriptlets -n noto-sans-ethiopic-fonts %reconfigure_fonts_scriptlets -n noto-sans-ethiopic-fonts
@ -1439,8 +1746,12 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-gujarati-fonts %reconfigure_fonts_scriptlets -n noto-sans-gujarati-fonts
%reconfigure_fonts_scriptlets -n noto-sans-gujarati-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-gurmukhi-fonts %reconfigure_fonts_scriptlets -n noto-sans-gurmukhi-fonts
%reconfigure_fonts_scriptlets -n noto-sans-gurmukhi-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-hanunoo-fonts %reconfigure_fonts_scriptlets -n noto-sans-hanunoo-fonts
%reconfigure_fonts_scriptlets -n noto-sans-hebrew-fonts %reconfigure_fonts_scriptlets -n noto-sans-hebrew-fonts
@ -1457,14 +1768,20 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-kannada-fonts %reconfigure_fonts_scriptlets -n noto-sans-kannada-fonts
%reconfigure_fonts_scriptlets -n noto-sans-kannada-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-kayahli-fonts %reconfigure_fonts_scriptlets -n noto-sans-kayahli-fonts
%reconfigure_fonts_scriptlets -n noto-sans-kharoshthi-fonts %reconfigure_fonts_scriptlets -n noto-sans-kharoshthi-fonts
%reconfigure_fonts_scriptlets -n noto-sans-khmer-fonts %reconfigure_fonts_scriptlets -n noto-sans-khmer-fonts
%reconfigure_fonts_scriptlets -n noto-sans-khmer-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-lao-fonts %reconfigure_fonts_scriptlets -n noto-sans-lao-fonts
%reconfigure_fonts_scriptlets -n noto-sans-lao-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-lepcha-fonts %reconfigure_fonts_scriptlets -n noto-sans-lepcha-fonts
%reconfigure_fonts_scriptlets -n noto-sans-limbu-fonts %reconfigure_fonts_scriptlets -n noto-sans-limbu-fonts
@ -1479,6 +1796,8 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-malayalam-fonts %reconfigure_fonts_scriptlets -n noto-sans-malayalam-fonts
%reconfigure_fonts_scriptlets -n noto-sans-malayalam-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-mandaic-fonts %reconfigure_fonts_scriptlets -n noto-sans-mandaic-fonts
%reconfigure_fonts_scriptlets -n noto-sans-meeteimayek-fonts %reconfigure_fonts_scriptlets -n noto-sans-meeteimayek-fonts
@ -1487,6 +1806,8 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-myanmar-fonts %reconfigure_fonts_scriptlets -n noto-sans-myanmar-fonts
%reconfigure_fonts_scriptlets -n noto-sans-myanmar-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-newtailue-fonts %reconfigure_fonts_scriptlets -n noto-sans-newtailue-fonts
%reconfigure_fonts_scriptlets -n noto-sans-nko-fonts %reconfigure_fonts_scriptlets -n noto-sans-nko-fonts
@ -1505,6 +1826,8 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-oriya-fonts %reconfigure_fonts_scriptlets -n noto-sans-oriya-fonts
%reconfigure_fonts_scriptlets -n noto-sans-oriya-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-osmanya-fonts %reconfigure_fonts_scriptlets -n noto-sans-osmanya-fonts
%reconfigure_fonts_scriptlets -n noto-sans-phagspa-fonts %reconfigure_fonts_scriptlets -n noto-sans-phagspa-fonts
@ -1547,18 +1870,26 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-sans-tamil-fonts %reconfigure_fonts_scriptlets -n noto-sans-tamil-fonts
%reconfigure_fonts_scriptlets -n noto-sans-tamil-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-telugu-fonts %reconfigure_fonts_scriptlets -n noto-sans-telugu-fonts
%reconfigure_fonts_scriptlets -n noto-sans-telugu-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-thaana-fonts %reconfigure_fonts_scriptlets -n noto-sans-thaana-fonts
%reconfigure_fonts_scriptlets -n noto-sans-thai-fonts %reconfigure_fonts_scriptlets -n noto-sans-thai-fonts
%reconfigure_fonts_scriptlets -n noto-sans-thai-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-tibetan-fonts %reconfigure_fonts_scriptlets -n noto-sans-tibetan-fonts
%reconfigure_fonts_scriptlets -n noto-sans-tifinagh-fonts %reconfigure_fonts_scriptlets -n noto-sans-tifinagh-fonts
%reconfigure_fonts_scriptlets -n noto-sans-ugaritic-fonts %reconfigure_fonts_scriptlets -n noto-sans-ugaritic-fonts
%reconfigure_fonts_scriptlets -n noto-sans-ui-fonts
%reconfigure_fonts_scriptlets -n noto-sans-vai-fonts %reconfigure_fonts_scriptlets -n noto-sans-vai-fonts
%reconfigure_fonts_scriptlets -n noto-sans-yi-fonts %reconfigure_fonts_scriptlets -n noto-sans-yi-fonts
@ -1567,12 +1898,26 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%reconfigure_fonts_scriptlets -n noto-serif-armenian-fonts %reconfigure_fonts_scriptlets -n noto-serif-armenian-fonts
%reconfigure_fonts_scriptlets -n noto-serif-bengali-fonts
%reconfigure_fonts_scriptlets -n noto-serif-devanagari-fonts
%reconfigure_fonts_scriptlets -n noto-serif-georgian-fonts %reconfigure_fonts_scriptlets -n noto-serif-georgian-fonts
%reconfigure_fonts_scriptlets -n noto-serif-gujarati-fonts
%reconfigure_fonts_scriptlets -n noto-serif-kannada-fonts
%reconfigure_fonts_scriptlets -n noto-serif-khmer-fonts %reconfigure_fonts_scriptlets -n noto-serif-khmer-fonts
%reconfigure_fonts_scriptlets -n noto-serif-lao-fonts %reconfigure_fonts_scriptlets -n noto-serif-lao-fonts
%reconfigure_fonts_scriptlets -n noto-serif-malayalam-fonts
%reconfigure_fonts_scriptlets -n noto-serif-tamil-fonts
%reconfigure_fonts_scriptlets -n noto-serif-telugu-fonts
%reconfigure_fonts_scriptlets -n noto-serif-thai-fonts %reconfigure_fonts_scriptlets -n noto-serif-thai-fonts
%files doc %files doc
@ -1594,11 +1939,21 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoKufiArabic-*.?tf %{_ttfontsdir}/NotoKufiArabic-*.?tf
%files -n noto-mono-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoMono-*.?tf
%files -n noto-naskharabic-fonts %files -n noto-naskharabic-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoNaskhArabic-*.?tf %{_ttfontsdir}/NotoNaskhArabic-*.?tf
%files -n noto-naskharabic-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoNaskhArabicUI-*.?tf
%files -n noto-nastaliqurdu-fonts %files -n noto-nastaliqurdu-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1639,6 +1994,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansBengali-*.?tf %{_ttfontsdir}/NotoSansBengali-*.?tf
%files -n noto-sans-bengali-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansBengaliUI-*.?tf
%files -n noto-sans-brahmi-fonts %files -n noto-sans-brahmi-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1704,6 +2064,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansDevanagari-*.?tf %{_ttfontsdir}/NotoSansDevanagari-*.?tf
%files -n noto-sans-devanagari-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansDevanagariUI-*.?tf
%files -n noto-sans-egyptianhieroglyphs-fonts %files -n noto-sans-egyptianhieroglyphs-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1734,11 +2099,21 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansGujarati-*.?tf %{_ttfontsdir}/NotoSansGujarati-*.?tf
%files -n noto-sans-gujarati-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansGujaratiUI-*.?tf
%files -n noto-sans-gurmukhi-fonts %files -n noto-sans-gurmukhi-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansGurmukhi-*.?tf %{_ttfontsdir}/NotoSansGurmukhi-*.?tf
%files -n noto-sans-gurmukhi-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansGurmukhiUI-*.?tf
%files -n noto-sans-hanunoo-fonts %files -n noto-sans-hanunoo-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1779,6 +2154,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansKannada-*.?tf %{_ttfontsdir}/NotoSansKannada-*.?tf
%files -n noto-sans-kannada-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansKannadaUI-*.?tf
%files -n noto-sans-kayahli-fonts %files -n noto-sans-kayahli-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1794,11 +2174,21 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansKhmer-*.?tf %{_ttfontsdir}/NotoSansKhmer-*.?tf
%files -n noto-sans-khmer-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansKhmerUI-*.?tf
%files -n noto-sans-lao-fonts %files -n noto-sans-lao-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansLao-*.?tf %{_ttfontsdir}/NotoSansLao-*.?tf
%files -n noto-sans-lao-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansLaoUI-*.?tf
%files -n noto-sans-lepcha-fonts %files -n noto-sans-lepcha-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1834,6 +2224,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansMalayalam-*.?tf %{_ttfontsdir}/NotoSansMalayalam-*.?tf
%files -n noto-sans-malayalam-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansMalayalamUI-*.?tf
%files -n noto-sans-mandaic-fonts %files -n noto-sans-mandaic-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1854,6 +2249,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansMyanmar-*.?tf %{_ttfontsdir}/NotoSansMyanmar-*.?tf
%files -n noto-sans-myanmar-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansMyanmarUI-*.?tf
%files -n noto-sans-newtailue-fonts %files -n noto-sans-newtailue-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -1899,6 +2299,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansOriya-*.?tf %{_ttfontsdir}/NotoSansOriya-*.?tf
%files -n noto-sans-oriya-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansOriyaUI-*.?tf
%files -n noto-sans-osmanya-fonts %files -n noto-sans-osmanya-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -2004,11 +2409,21 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansTamil-*.?tf %{_ttfontsdir}/NotoSansTamil-*.?tf
%files -n noto-sans-tamil-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansTamilUI-*.?tf
%files -n noto-sans-telugu-fonts %files -n noto-sans-telugu-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansTelugu-*.?tf %{_ttfontsdir}/NotoSansTelugu-*.?tf
%files -n noto-sans-telugu-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansTeluguUI-*.?tf
%files -n noto-sans-thaana-fonts %files -n noto-sans-thaana-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -2019,6 +2434,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansThai-*.?tf %{_ttfontsdir}/NotoSansThai-*.?tf
%files -n noto-sans-thai-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansThaiUI-*.?tf
%files -n noto-sans-tibetan-fonts %files -n noto-sans-tibetan-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -2034,6 +2454,11 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansUgaritic-*.?tf %{_ttfontsdir}/NotoSansUgaritic-*.?tf
%files -n noto-sans-ui-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSansUI-*.?tf
%files -n noto-sans-vai-fonts %files -n noto-sans-vai-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -2054,11 +2479,31 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifArmenian-*.?tf %{_ttfontsdir}/NotoSerifArmenian-*.?tf
%files -n noto-serif-bengali-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifBengali-*.?tf
%files -n noto-serif-devanagari-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifDevanagari-*.?tf
%files -n noto-serif-georgian-fonts %files -n noto-serif-georgian-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifGeorgian-*.?tf %{_ttfontsdir}/NotoSerifGeorgian-*.?tf
%files -n noto-serif-gujarati-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifGujarati-*.?tf
%files -n noto-serif-kannada-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifKannada-*.?tf
%files -n noto-serif-khmer-fonts %files -n noto-serif-khmer-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
@ -2069,6 +2514,21 @@ cp *.ttc %{buildroot}%{_ttfontsdir}/
%dir %{_ttfontsdir} %dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifLao-*.?tf %{_ttfontsdir}/NotoSerifLao-*.?tf
%files -n noto-serif-malayalam-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifMalayalam-*.?tf
%files -n noto-serif-tamil-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifTamil-*.?tf
%files -n noto-serif-telugu-fonts
%defattr(0644,root,root,755)
%dir %{_ttfontsdir}
%{_ttfontsdir}/NotoSerifTelugu-*.?tf
%files -n noto-serif-thai-fonts %files -n noto-serif-thai-fonts
%defattr(0644,root,root,755) %defattr(0644,root,root,755)
%dir %{_ttfontsdir} %dir %{_ttfontsdir}

View File

@ -15,9 +15,9 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
%define hyear 2015 %define hyear 2016
%define hmonth 12 %define hmonth 10
%define hday 15 %define hday 25
%define src_name NotoFonts %define src_name NotoFonts
# DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-specfile.sh scriptZZ # DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-specfile.sh scriptZZ