From cc9ee5bf82482289d30a671e04ce4aaa7daa7581135eab6109f2d9b39bbaf428 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Fri, 20 May 2022 08:12:35 +0000 Subject: [PATCH] Accepting request 978146 from home:Pi-Cla:branches:M17N:fonts - Clarify sources - Fix unversioned obsoletes - Merge noto-sans-display-fonts into noto-sans-fonts - Fixes inconsistent font family names see Github issue #2315 - Bump version to 20220516 - Start using OTF fonts to be in-line with Noto CJK and Emoji - No new fonts - Update URL and source for zips - Update to version 20220509 - 96 new fonts, details at https://pastebin.com/ycnpAn88 OBS-URL: https://build.opensuse.org/request/show/978146 OBS-URL: https://build.opensuse.org/package/show/M17N:fonts/google-noto-fonts?expand=0&rev=45 --- LICENSE | 94 + Noto-hinted.zip | 3 - ...cfile.sh => generate-fonts-and-specfile.sh | 40 +- google-noto-fonts.changes | 22 + google-noto-fonts.spec | 2531 ++++++++++++++--- google-noto-fonts.spec.in | 40 +- otf.tar.gz | 3 + 7 files changed, 2332 insertions(+), 401 deletions(-) create mode 100644 LICENSE delete mode 100644 Noto-hinted.zip rename generate-specfile.sh => generate-fonts-and-specfile.sh (72%) create mode 100644 otf.tar.gz diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a0e97ca --- /dev/null +++ b/LICENSE @@ -0,0 +1,94 @@ +Copyright 2018 The Noto Project Authors (github.com/googlei18n/noto-fonts) + +This Font Software is licensed under the SIL Open Font License, +Version 1.1. + +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font +creation efforts of academic and linguistic communities, and to +provide a free and open framework in which fonts may be shared and +improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply to +any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software +components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, +deleting, or substituting -- in part or in whole -- any of the +components of the Original Version, by changing formats or by porting +the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, +modify, redistribute, and sell modified and unmodified copies of the +Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in +Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the +corresponding Copyright Holder. This restriction only applies to the +primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created using +the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/Noto-hinted.zip b/Noto-hinted.zip deleted file mode 100644 index 3243bbf..0000000 --- a/Noto-hinted.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:837b4a9352fce32ad7f298fbf155af1da5b6f3f8dbd995eb63fdd8e82117e4ae -size 1159948133 diff --git a/generate-specfile.sh b/generate-fonts-and-specfile.sh similarity index 72% rename from generate-specfile.sh rename to generate-fonts-and-specfile.sh index 89f012c..4b32c0b 100644 --- a/generate-specfile.sh +++ b/generate-fonts-and-specfile.sh @@ -1,21 +1,13 @@ #!/bin/sh pkg_name="google-noto-fonts" +font_dir="otf" -for a in *.zip; do - mkdir -p $pkg_name - unzip -o -d $pkg_name $a -done - -rm $pkg_name/LICENSE_OFL.txt -# remove cjk -rm $pkg_name/*CJK*.?tf -# remove emoji -rm $pkg_name/*Emoji*.ttf -# remove README -rm $pkg_name/README +# Get only the otf fonts +svn checkout https://github.com/googlefonts/noto-fonts/trunk/unhinted/otf +tar -cvzf otf.tar.gz otf cp -f $pkg_name.spec.in $pkg_name.spec -ls $pkg_name/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc::' | sort -f | uniq | while read font; do +ls $font_dir/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc::' | sort -f | uniq | while read font; do ui=`(echo $font | grep -q UI) && echo UI` font=${font%%$ui} serif=`echo $font | sed 's:\(Sans\|Serif\).*:\1:'` @@ -28,12 +20,21 @@ ls $pkg_name/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc:: packagename="$packagename-$ui" fi packagename=`echo "$packagename" | tr [A-Z] [a-z]` + # NotoSansDisplay is already provided by NotoSans + # Also they have inconsistent family names: https://github.com/googlefonts/noto-fonts/issues/2315 + if [ $packagename == "noto-sans-display" ]; then + continue + fi if [ $serif == "Sans" ]; then serif_dsc="Sans Serif " else serif_dsc="" fi - obsoletes=$packagename + if [ $packagename == "noto-sans" ]; then + OBSOLETES=($packagename 'noto-sans-display' 'noto-sans-display-fonts') + else + OBSOLETES=($packagename) + fi packagename="$packagename-fonts" if [ ! -z "$script" ]; then summary=`echo "Noto $script ${serif_dsc}Font" | sed 's:\([a-z]\)\([A-Z]\):\1 \2:g'` @@ -44,9 +45,9 @@ ls $pkg_name/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc:: 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@/Recommends: $pkg_name-doc\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec - for i in $obsoletes ; do - sed -i "s/@SUBPACKAGE_HEADERS@/Obsoletes: $i\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec - sed -i "s/@SUBPACKAGE_HEADERS@/Provides: $i\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec + for i in "${OBSOLETES[@]}" ; do + sed -i "s/@SUBPACKAGE_HEADERS@/Obsoletes: $i < %{version}\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec + sed -i "s/@SUBPACKAGE_HEADERS@/Provides: $i = %{version}\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec done sed -i "s/@SUBPACKAGE_HEADERS@/%reconfigure_fonts_prereq\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec @@ -65,8 +66,8 @@ ls $pkg_name/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc:: sed -i "s/@SUBPACKAGE_FILELISTS@/%files -n $packagename\n@SUBPACKAGE_FILELISTS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_FILELISTS@/%defattr(0644,root,root,755)\n@SUBPACKAGE_FILELISTS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_FILELISTS@/%dir %{_ttfontsdir}\n@SUBPACKAGE_FILELISTS@/" $pkg_name.spec - if [ $serif == "ColorEmoji" ]; then - sed -i "s:@SUBPACKAGE_FILELISTS@:%{_ttfontsdir}/Noto$serif$script$ui\*.?tf\n@SUBPACKAGE_FILELISTS@:" $pkg_name.spec + if [ $serif == "Arimo" ] || [ $serif == "Cousine" ] || [ $serif == "Tinos" ]; then + sed -i "s:@SUBPACKAGE_FILELISTS@:%{_ttfontsdir}/$serif$script$ui-\*.?tf\n@SUBPACKAGE_FILELISTS@:" $pkg_name.spec else sed -i "s:@SUBPACKAGE_FILELISTS@:%{_ttfontsdir}/Noto$serif$script$ui-\*.?tf\n@SUBPACKAGE_FILELISTS@:" $pkg_name.spec fi @@ -77,4 +78,3 @@ sed -i 's/@SUBPACKAGE_HEADERS@//' $pkg_name.spec sed -i 's/@SUBPACKAGE_SCRIPTLETS@//' $pkg_name.spec sed -i 's/@SUBPACKAGE_FILELISTS@//' $pkg_name.spec -rm -r $pkg_name diff --git a/google-noto-fonts.changes b/google-noto-fonts.changes index f31c699..008811f 100644 --- a/google-noto-fonts.changes +++ b/google-noto-fonts.changes @@ -1,3 +1,25 @@ +------------------------------------------------------------------- +Thu May 19 15:10:51 UTC 2022 - Gordon Leung + +- Clarify sources + +------------------------------------------------------------------- +Tue May 17 16:47:27 UTC 2022 - Gordon Leung + +- Fix unversioned obsoletes +- Merge noto-sans-display-fonts into noto-sans-fonts + - Fixes inconsistent font family names see Github issue #2315 +- Bump version to 20220516 + - Start using OTF fonts to be in-line with Noto CJK and Emoji + - No new fonts + +------------------------------------------------------------------- +Sat May 14 06:51:21 UTC 2022 - Gordon Leung + +- Update URL and source for zips +- Update to version 20220509 + - 96 new fonts, details at https://pastebin.com/ycnpAn88 + ------------------------------------------------------------------- Mon Jun 3 15:46:48 UTC 2019 - Fuminobu Takeyama diff --git a/google-noto-fonts.spec b/google-noto-fonts.spec index 60b3f5a..7ad6ee9 100644 --- a/google-noto-fonts.spec +++ b/google-noto-fonts.spec @@ -1,7 +1,7 @@ # # spec file for package google-noto-fonts # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,12 +16,13 @@ # -%define hyear 2017 -%define hmonth 09 -%define hday 19 +%define hyear 2022 +%define hmonth 05 +%define hday 16 + %define src_name NotoFonts -# DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-specfile.sh script +# DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-fonts-and-specfile.sh script Name: google-noto-fonts Version: %{hyear}%{hmonth}%{hday} @@ -29,17 +30,18 @@ Release: 0 Summary: Noto Font Families License: OFL-1.1 Group: System/X11/Fonts -Url: https://github.com/googlei18n/noto-fonts -Source0: https://noto-website-2.storage.googleapis.com/pkgs/Noto-hinted.zip -Source1: generate-specfile.sh +URL: https://github.com/googlefonts/noto-fonts +# Generate Source0 via generate-fonts-and-specfile.sh +Source0: otf.tar.gz +Source1: generate-fonts-and-specfile.sh +Source2: LICENSE BuildRequires: fontpackages-devel -BuildRequires: unzip BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch %description -Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke -thicknesses) across languages. +Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke +thicknesses) across languages. %package doc Summary: Noto Font Families License @@ -48,12 +50,38 @@ Group: Documentation/Other %description doc License for Google's Noto fonts. +%package -n noto-arimo-fonts +Summary: Noto Arimo Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-arimo < %{version} +Provides: noto-arimo = %{version} +%reconfigure_fonts_prereq + +%description -n noto-arimo-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Arimo font, hinted. + +%package -n noto-cousine-fonts +Summary: Noto Cousine Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-cousine < %{version} +Provides: noto-cousine = %{version} +%reconfigure_fonts_prereq + +%description -n noto-cousine-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Cousine font, hinted. + %package -n noto-kufiarabic-fonts Summary: Noto Kufi Arabic Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-kufiarabic -Provides: noto-kufiarabic +Obsoletes: noto-kufiarabic < %{version} +Provides: noto-kufiarabic = %{version} %reconfigure_fonts_prereq %description -n noto-kufiarabic-fonts @@ -61,25 +89,77 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains KufiArabic font, hinted. -%package -n noto-mono-fonts -Summary: Noto Mono Font +%package -n noto-loopedlao-fonts +Summary: Noto Looped Lao Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-mono -Provides: noto-mono +Obsoletes: noto-loopedlao < %{version} +Provides: noto-loopedlao = %{version} %reconfigure_fonts_prereq -%description -n noto-mono-fonts +%description -n noto-loopedlao-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. +LoopedLao font, hinted. + +%package -n noto-loopedlao-ui-fonts +Summary: Noto Looped Lao Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-loopedlao-ui < %{version} +Provides: noto-loopedlao-ui = %{version} +%reconfigure_fonts_prereq + +%description -n noto-loopedlao-ui-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +LoopedLao font, hinted. + +%package -n noto-loopedthai-fonts +Summary: Noto Looped Thai Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-loopedthai < %{version} +Provides: noto-loopedthai = %{version} +%reconfigure_fonts_prereq + +%description -n noto-loopedthai-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +LoopedThai font, hinted. + +%package -n noto-loopedthai-ui-fonts +Summary: Noto Looped Thai Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-loopedthai-ui < %{version} +Provides: noto-loopedthai-ui = %{version} +%reconfigure_fonts_prereq + +%description -n noto-loopedthai-ui-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +LoopedThai font, hinted. + +%package -n noto-music-fonts +Summary: Noto Music Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-music < %{version} +Provides: noto-music = %{version} +%reconfigure_fonts_prereq + +%description -n noto-music-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Music font, hinted. %package -n noto-naskharabic-fonts Summary: Noto Naskh Arabic Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-naskharabic -Provides: noto-naskharabic +Obsoletes: noto-naskharabic < %{version} +Provides: noto-naskharabic = %{version} %reconfigure_fonts_prereq %description -n noto-naskharabic-fonts @@ -91,8 +171,8 @@ NaskhArabic font, hinted. Summary: Noto Naskh Arabic Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-naskharabic-ui -Provides: noto-naskharabic-ui +Obsoletes: noto-naskharabic-ui < %{version} +Provides: noto-naskharabic-ui = %{version} %reconfigure_fonts_prereq %description -n noto-naskharabic-ui-fonts @@ -104,8 +184,8 @@ NaskhArabic font, hinted. Summary: Noto Nastaliq Urdu Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-nastaliqurdu -Provides: noto-nastaliqurdu +Obsoletes: noto-nastaliqurdu < %{version} +Provides: noto-nastaliqurdu = %{version} %reconfigure_fonts_prereq %description -n noto-nastaliqurdu-fonts @@ -113,12 +193,29 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains NastaliqUrdu font, hinted. +%package -n noto-rashihebrew-fonts +Summary: Noto Rashi Hebrew Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-rashihebrew < %{version} +Provides: noto-rashihebrew = %{version} +%reconfigure_fonts_prereq + +%description -n noto-rashihebrew-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +RashiHebrew font, hinted. + %package -n noto-sans-fonts Summary: Noto Sans Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans -Provides: noto-sans +Obsoletes: noto-sans < %{version} +Provides: noto-sans = %{version} +Obsoletes: noto-sans-display < %{version} +Provides: noto-sans-display = %{version} +Obsoletes: noto-sans-display-fonts < %{version} +Provides: noto-sans-display-fonts = %{version} %reconfigure_fonts_prereq %description -n noto-sans-fonts @@ -130,8 +227,8 @@ Sans font, hinted. Summary: Noto Adlam Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-adlam -Provides: noto-sans-adlam +Obsoletes: noto-sans-adlam < %{version} +Provides: noto-sans-adlam = %{version} %reconfigure_fonts_prereq %description -n noto-sans-adlam-fonts @@ -143,8 +240,8 @@ Adlam Sans Serif font, hinted. Summary: Noto Adlam Unjoined Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-adlamunjoined -Provides: noto-sans-adlamunjoined +Obsoletes: noto-sans-adlamunjoined < %{version} +Provides: noto-sans-adlamunjoined = %{version} %reconfigure_fonts_prereq %description -n noto-sans-adlamunjoined-fonts @@ -156,8 +253,8 @@ AdlamUnjoined Sans Serif font, hinted. Summary: Noto Anatolian Hieroglyphs Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-anatolianhieroglyphs -Provides: noto-sans-anatolianhieroglyphs +Obsoletes: noto-sans-anatolianhieroglyphs < %{version} +Provides: noto-sans-anatolianhieroglyphs = %{version} %reconfigure_fonts_prereq %description -n noto-sans-anatolianhieroglyphs-fonts @@ -169,8 +266,8 @@ AnatolianHieroglyphs Sans Serif font, hinted. Summary: Noto Arabic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-arabic -Provides: noto-sans-arabic +Obsoletes: noto-sans-arabic < %{version} +Provides: noto-sans-arabic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-arabic-fonts @@ -182,8 +279,8 @@ Arabic Sans Serif font, hinted. Summary: Noto Arabic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-arabic-ui -Provides: noto-sans-arabic-ui +Obsoletes: noto-sans-arabic-ui < %{version} +Provides: noto-sans-arabic-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-arabic-ui-fonts @@ -195,8 +292,8 @@ Arabic Sans Serif font, hinted. Summary: Noto Armenian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-armenian -Provides: noto-sans-armenian +Obsoletes: noto-sans-armenian < %{version} +Provides: noto-sans-armenian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-armenian-fonts @@ -208,8 +305,8 @@ Armenian Sans Serif font, hinted. Summary: Noto Avestan Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-avestan -Provides: noto-sans-avestan +Obsoletes: noto-sans-avestan < %{version} +Provides: noto-sans-avestan = %{version} %reconfigure_fonts_prereq %description -n noto-sans-avestan-fonts @@ -221,8 +318,8 @@ Avestan Sans Serif font, hinted. Summary: Noto Balinese Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-balinese -Provides: noto-sans-balinese +Obsoletes: noto-sans-balinese < %{version} +Provides: noto-sans-balinese = %{version} %reconfigure_fonts_prereq %description -n noto-sans-balinese-fonts @@ -234,8 +331,8 @@ Balinese Sans Serif font, hinted. Summary: Noto Bamum Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-bamum -Provides: noto-sans-bamum +Obsoletes: noto-sans-bamum < %{version} +Provides: noto-sans-bamum = %{version} %reconfigure_fonts_prereq %description -n noto-sans-bamum-fonts @@ -243,12 +340,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Bamum Sans Serif font, hinted. +%package -n noto-sans-bassavah-fonts +Summary: Noto Bassa Vah Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-bassavah < %{version} +Provides: noto-sans-bassavah = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-bassavah-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +BassaVah Sans Serif font, hinted. + %package -n noto-sans-batak-fonts Summary: Noto Batak Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-batak -Provides: noto-sans-batak +Obsoletes: noto-sans-batak < %{version} +Provides: noto-sans-batak = %{version} %reconfigure_fonts_prereq %description -n noto-sans-batak-fonts @@ -260,8 +370,8 @@ Batak Sans Serif font, hinted. Summary: Noto Bengali Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-bengali -Provides: noto-sans-bengali +Obsoletes: noto-sans-bengali < %{version} +Provides: noto-sans-bengali = %{version} %reconfigure_fonts_prereq %description -n noto-sans-bengali-fonts @@ -273,8 +383,8 @@ Bengali Sans Serif font, hinted. Summary: Noto Bengali Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-bengali-ui -Provides: noto-sans-bengali-ui +Obsoletes: noto-sans-bengali-ui < %{version} +Provides: noto-sans-bengali-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-bengali-ui-fonts @@ -282,12 +392,25 @@ 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-bhaiksuki-fonts +Summary: Noto Bhaiksuki Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-bhaiksuki < %{version} +Provides: noto-sans-bhaiksuki = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-bhaiksuki-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Bhaiksuki Sans Serif font, hinted. + %package -n noto-sans-brahmi-fonts Summary: Noto Brahmi Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-brahmi -Provides: noto-sans-brahmi +Obsoletes: noto-sans-brahmi < %{version} +Provides: noto-sans-brahmi = %{version} %reconfigure_fonts_prereq %description -n noto-sans-brahmi-fonts @@ -299,8 +422,8 @@ Brahmi Sans Serif font, hinted. Summary: Noto Buginese Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-buginese -Provides: noto-sans-buginese +Obsoletes: noto-sans-buginese < %{version} +Provides: noto-sans-buginese = %{version} %reconfigure_fonts_prereq %description -n noto-sans-buginese-fonts @@ -312,8 +435,8 @@ Buginese Sans Serif font, hinted. Summary: Noto Buhid Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-buhid -Provides: noto-sans-buhid +Obsoletes: noto-sans-buhid < %{version} +Provides: noto-sans-buhid = %{version} %reconfigure_fonts_prereq %description -n noto-sans-buhid-fonts @@ -325,8 +448,8 @@ Buhid Sans Serif font, hinted. Summary: Noto Canadian Aboriginal Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-canadianaboriginal -Provides: noto-sans-canadianaboriginal +Obsoletes: noto-sans-canadianaboriginal < %{version} +Provides: noto-sans-canadianaboriginal = %{version} %reconfigure_fonts_prereq %description -n noto-sans-canadianaboriginal-fonts @@ -338,8 +461,8 @@ CanadianAboriginal Sans Serif font, hinted. Summary: Noto Carian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-carian -Provides: noto-sans-carian +Obsoletes: noto-sans-carian < %{version} +Provides: noto-sans-carian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-carian-fonts @@ -347,12 +470,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Carian Sans Serif font, hinted. +%package -n noto-sans-caucasianalbanian-fonts +Summary: Noto Caucasian Albanian Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-caucasianalbanian < %{version} +Provides: noto-sans-caucasianalbanian = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-caucasianalbanian-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +CaucasianAlbanian Sans Serif font, hinted. + %package -n noto-sans-chakma-fonts Summary: Noto Chakma Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-chakma -Provides: noto-sans-chakma +Obsoletes: noto-sans-chakma < %{version} +Provides: noto-sans-chakma = %{version} %reconfigure_fonts_prereq %description -n noto-sans-chakma-fonts @@ -364,8 +500,8 @@ Chakma Sans Serif font, hinted. Summary: Noto Cham Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-cham -Provides: noto-sans-cham +Obsoletes: noto-sans-cham < %{version} +Provides: noto-sans-cham = %{version} %reconfigure_fonts_prereq %description -n noto-sans-cham-fonts @@ -377,8 +513,8 @@ Cham Sans Serif font, hinted. Summary: Noto Cherokee Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-cherokee -Provides: noto-sans-cherokee +Obsoletes: noto-sans-cherokee < %{version} +Provides: noto-sans-cherokee = %{version} %reconfigure_fonts_prereq %description -n noto-sans-cherokee-fonts @@ -386,12 +522,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Cherokee Sans Serif font, hinted. +%package -n noto-sans-chorasmian-fonts +Summary: Noto Chorasmian Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-chorasmian < %{version} +Provides: noto-sans-chorasmian = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-chorasmian-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Chorasmian Sans Serif font, hinted. + %package -n noto-sans-coptic-fonts Summary: Noto Coptic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-coptic -Provides: noto-sans-coptic +Obsoletes: noto-sans-coptic < %{version} +Provides: noto-sans-coptic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-coptic-fonts @@ -403,8 +552,8 @@ Coptic Sans Serif font, hinted. Summary: Noto Cuneiform Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-cuneiform -Provides: noto-sans-cuneiform +Obsoletes: noto-sans-cuneiform < %{version} +Provides: noto-sans-cuneiform = %{version} %reconfigure_fonts_prereq %description -n noto-sans-cuneiform-fonts @@ -416,8 +565,8 @@ Cuneiform Sans Serif font, hinted. Summary: Noto Cypriot Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-cypriot -Provides: noto-sans-cypriot +Obsoletes: noto-sans-cypriot < %{version} +Provides: noto-sans-cypriot = %{version} %reconfigure_fonts_prereq %description -n noto-sans-cypriot-fonts @@ -425,12 +574,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Cypriot Sans Serif font, hinted. +%package -n noto-sans-cyprominoan-fonts +Summary: Noto Cypro Minoan Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-cyprominoan < %{version} +Provides: noto-sans-cyprominoan = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-cyprominoan-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +CyproMinoan Sans Serif font, hinted. + %package -n noto-sans-deseret-fonts Summary: Noto Deseret Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-deseret -Provides: noto-sans-deseret +Obsoletes: noto-sans-deseret < %{version} +Provides: noto-sans-deseret = %{version} %reconfigure_fonts_prereq %description -n noto-sans-deseret-fonts @@ -442,8 +604,8 @@ Deseret Sans Serif font, hinted. Summary: Noto Devanagari Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-devanagari -Provides: noto-sans-devanagari +Obsoletes: noto-sans-devanagari < %{version} +Provides: noto-sans-devanagari = %{version} %reconfigure_fonts_prereq %description -n noto-sans-devanagari-fonts @@ -455,8 +617,8 @@ Devanagari Sans Serif font, hinted. Summary: Noto Devanagari Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-devanagari-ui -Provides: noto-sans-devanagari-ui +Obsoletes: noto-sans-devanagari-ui < %{version} +Provides: noto-sans-devanagari-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-devanagari-ui-fonts @@ -464,25 +626,25 @@ 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-display-fonts -Summary: Noto Display Sans Serif Font +%package -n noto-sans-duployan-fonts +Summary: Noto Duployan Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-display -Provides: noto-sans-display +Obsoletes: noto-sans-duployan < %{version} +Provides: noto-sans-duployan = %{version} %reconfigure_fonts_prereq -%description -n noto-sans-display-fonts +%description -n noto-sans-duployan-fonts Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains -Display Sans Serif font, hinted. +Duployan Sans Serif font, hinted. %package -n noto-sans-egyptianhieroglyphs-fonts Summary: Noto Egyptian Hieroglyphs Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-egyptianhieroglyphs -Provides: noto-sans-egyptianhieroglyphs +Obsoletes: noto-sans-egyptianhieroglyphs < %{version} +Provides: noto-sans-egyptianhieroglyphs = %{version} %reconfigure_fonts_prereq %description -n noto-sans-egyptianhieroglyphs-fonts @@ -490,12 +652,38 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains EgyptianHieroglyphs Sans Serif font, hinted. +%package -n noto-sans-elbasan-fonts +Summary: Noto Elbasan Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-elbasan < %{version} +Provides: noto-sans-elbasan = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-elbasan-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Elbasan Sans Serif font, hinted. + +%package -n noto-sans-elymaic-fonts +Summary: Noto Elymaic Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-elymaic < %{version} +Provides: noto-sans-elymaic = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-elymaic-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Elymaic Sans Serif font, hinted. + %package -n noto-sans-ethiopic-fonts Summary: Noto Ethiopic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-ethiopic -Provides: noto-sans-ethiopic +Obsoletes: noto-sans-ethiopic < %{version} +Provides: noto-sans-ethiopic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-ethiopic-fonts @@ -507,8 +695,8 @@ Ethiopic Sans Serif font, hinted. Summary: Noto Georgian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-georgian -Provides: noto-sans-georgian +Obsoletes: noto-sans-georgian < %{version} +Provides: noto-sans-georgian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-georgian-fonts @@ -520,8 +708,8 @@ Georgian Sans Serif font, hinted. Summary: Noto Glagolitic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-glagolitic -Provides: noto-sans-glagolitic +Obsoletes: noto-sans-glagolitic < %{version} +Provides: noto-sans-glagolitic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-glagolitic-fonts @@ -533,8 +721,8 @@ Glagolitic Sans Serif font, hinted. Summary: Noto Gothic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-gothic -Provides: noto-sans-gothic +Obsoletes: noto-sans-gothic < %{version} +Provides: noto-sans-gothic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-gothic-fonts @@ -542,12 +730,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Gothic Sans Serif font, hinted. +%package -n noto-sans-grantha-fonts +Summary: Noto Grantha Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-grantha < %{version} +Provides: noto-sans-grantha = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-grantha-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Grantha Sans Serif font, hinted. + %package -n noto-sans-gujarati-fonts Summary: Noto Gujarati Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-gujarati -Provides: noto-sans-gujarati +Obsoletes: noto-sans-gujarati < %{version} +Provides: noto-sans-gujarati = %{version} %reconfigure_fonts_prereq %description -n noto-sans-gujarati-fonts @@ -559,8 +760,8 @@ Gujarati Sans Serif font, hinted. Summary: Noto Gujarati Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-gujarati-ui -Provides: noto-sans-gujarati-ui +Obsoletes: noto-sans-gujarati-ui < %{version} +Provides: noto-sans-gujarati-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-gujarati-ui-fonts @@ -568,12 +769,25 @@ 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-gunjalagondi-fonts +Summary: Noto Gunjala Gondi Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-gunjalagondi < %{version} +Provides: noto-sans-gunjalagondi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-gunjalagondi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +GunjalaGondi Sans Serif font, hinted. + %package -n noto-sans-gurmukhi-fonts Summary: Noto Gurmukhi Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-gurmukhi -Provides: noto-sans-gurmukhi +Obsoletes: noto-sans-gurmukhi < %{version} +Provides: noto-sans-gurmukhi = %{version} %reconfigure_fonts_prereq %description -n noto-sans-gurmukhi-fonts @@ -585,8 +799,8 @@ Gurmukhi Sans Serif font, hinted. Summary: Noto Gurmukhi Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-gurmukhi-ui -Provides: noto-sans-gurmukhi-ui +Obsoletes: noto-sans-gurmukhi-ui < %{version} +Provides: noto-sans-gurmukhi-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-gurmukhi-ui-fonts @@ -594,12 +808,25 @@ 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-hanifirohingya-fonts +Summary: Noto Hanifi Rohingya Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-hanifirohingya < %{version} +Provides: noto-sans-hanifirohingya = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-hanifirohingya-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +HanifiRohingya Sans Serif font, hinted. + %package -n noto-sans-hanunoo-fonts Summary: Noto Hanunoo Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-hanunoo -Provides: noto-sans-hanunoo +Obsoletes: noto-sans-hanunoo < %{version} +Provides: noto-sans-hanunoo = %{version} %reconfigure_fonts_prereq %description -n noto-sans-hanunoo-fonts @@ -607,12 +834,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Hanunoo Sans Serif font, hinted. +%package -n noto-sans-hatran-fonts +Summary: Noto Hatran Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-hatran < %{version} +Provides: noto-sans-hatran = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-hatran-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Hatran Sans Serif font, hinted. + %package -n noto-sans-hebrew-fonts Summary: Noto Hebrew Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-hebrew -Provides: noto-sans-hebrew +Obsoletes: noto-sans-hebrew < %{version} +Provides: noto-sans-hebrew = %{version} %reconfigure_fonts_prereq %description -n noto-sans-hebrew-fonts @@ -620,12 +860,38 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Hebrew Sans Serif font, hinted. +%package -n noto-sans-hebrewdroid-fonts +Summary: Noto Hebrew Droid Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-hebrewdroid < %{version} +Provides: noto-sans-hebrewdroid = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-hebrewdroid-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +HebrewDroid Sans Serif font, hinted. + +%package -n noto-sans-hebrewnew-fonts +Summary: Noto Hebrew New Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-hebrewnew < %{version} +Provides: noto-sans-hebrewnew = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-hebrewnew-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +HebrewNew Sans Serif font, hinted. + %package -n noto-sans-imperialaramaic-fonts Summary: Noto Imperial Aramaic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-imperialaramaic -Provides: noto-sans-imperialaramaic +Obsoletes: noto-sans-imperialaramaic < %{version} +Provides: noto-sans-imperialaramaic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-imperialaramaic-fonts @@ -633,12 +899,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains ImperialAramaic Sans Serif font, hinted. +%package -n noto-sans-indicsiyaqnumbers-fonts +Summary: Noto Indic Siyaq Numbers Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-indicsiyaqnumbers < %{version} +Provides: noto-sans-indicsiyaqnumbers = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-indicsiyaqnumbers-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +IndicSiyaqNumbers Sans Serif font, hinted. + %package -n noto-sans-inscriptionalpahlavi-fonts Summary: Noto Inscriptional Pahlavi Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-inscriptionalpahlavi -Provides: noto-sans-inscriptionalpahlavi +Obsoletes: noto-sans-inscriptionalpahlavi < %{version} +Provides: noto-sans-inscriptionalpahlavi = %{version} %reconfigure_fonts_prereq %description -n noto-sans-inscriptionalpahlavi-fonts @@ -650,8 +929,8 @@ InscriptionalPahlavi Sans Serif font, hinted. Summary: Noto Inscriptional Parthian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-inscriptionalparthian -Provides: noto-sans-inscriptionalparthian +Obsoletes: noto-sans-inscriptionalparthian < %{version} +Provides: noto-sans-inscriptionalparthian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-inscriptionalparthian-fonts @@ -663,8 +942,8 @@ InscriptionalParthian Sans Serif font, hinted. Summary: Noto Javanese Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-javanese -Provides: noto-sans-javanese +Obsoletes: noto-sans-javanese < %{version} +Provides: noto-sans-javanese = %{version} %reconfigure_fonts_prereq %description -n noto-sans-javanese-fonts @@ -676,8 +955,8 @@ Javanese Sans Serif font, hinted. Summary: Noto Kaithi Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-kaithi -Provides: noto-sans-kaithi +Obsoletes: noto-sans-kaithi < %{version} +Provides: noto-sans-kaithi = %{version} %reconfigure_fonts_prereq %description -n noto-sans-kaithi-fonts @@ -689,8 +968,8 @@ Kaithi Sans Serif font, hinted. Summary: Noto Kannada Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-kannada -Provides: noto-sans-kannada +Obsoletes: noto-sans-kannada < %{version} +Provides: noto-sans-kannada = %{version} %reconfigure_fonts_prereq %description -n noto-sans-kannada-fonts @@ -702,8 +981,8 @@ Kannada Sans Serif font, hinted. Summary: Noto Kannada Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-kannada-ui -Provides: noto-sans-kannada-ui +Obsoletes: noto-sans-kannada-ui < %{version} +Provides: noto-sans-kannada-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-kannada-ui-fonts @@ -715,8 +994,8 @@ Kannada Sans Serif font, hinted. Summary: Noto Kayah Li Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-kayahli -Provides: noto-sans-kayahli +Obsoletes: noto-sans-kayahli < %{version} +Provides: noto-sans-kayahli = %{version} %reconfigure_fonts_prereq %description -n noto-sans-kayahli-fonts @@ -728,8 +1007,8 @@ KayahLi Sans Serif font, hinted. Summary: Noto Kharoshthi Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-kharoshthi -Provides: noto-sans-kharoshthi +Obsoletes: noto-sans-kharoshthi < %{version} +Provides: noto-sans-kharoshthi = %{version} %reconfigure_fonts_prereq %description -n noto-sans-kharoshthi-fonts @@ -741,8 +1020,8 @@ Kharoshthi Sans Serif font, hinted. Summary: Noto Khmer Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-khmer -Provides: noto-sans-khmer +Obsoletes: noto-sans-khmer < %{version} +Provides: noto-sans-khmer = %{version} %reconfigure_fonts_prereq %description -n noto-sans-khmer-fonts @@ -754,8 +1033,8 @@ Khmer Sans Serif font, hinted. Summary: Noto Khmer Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-khmer-ui -Provides: noto-sans-khmer-ui +Obsoletes: noto-sans-khmer-ui < %{version} +Provides: noto-sans-khmer-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-khmer-ui-fonts @@ -763,12 +1042,38 @@ 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-khojki-fonts +Summary: Noto Khojki Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-khojki < %{version} +Provides: noto-sans-khojki = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-khojki-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Khojki Sans Serif font, hinted. + +%package -n noto-sans-khudawadi-fonts +Summary: Noto Khudawadi Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-khudawadi < %{version} +Provides: noto-sans-khudawadi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-khudawadi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Khudawadi Sans Serif font, hinted. + %package -n noto-sans-lao-fonts Summary: Noto Lao Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-lao -Provides: noto-sans-lao +Obsoletes: noto-sans-lao < %{version} +Provides: noto-sans-lao = %{version} %reconfigure_fonts_prereq %description -n noto-sans-lao-fonts @@ -780,8 +1085,8 @@ Lao Sans Serif font, hinted. Summary: Noto Lao Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-lao-ui -Provides: noto-sans-lao-ui +Obsoletes: noto-sans-lao-ui < %{version} +Provides: noto-sans-lao-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-lao-ui-fonts @@ -793,8 +1098,8 @@ Lao Sans Serif font, hinted. Summary: Noto Lepcha Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-lepcha -Provides: noto-sans-lepcha +Obsoletes: noto-sans-lepcha < %{version} +Provides: noto-sans-lepcha = %{version} %reconfigure_fonts_prereq %description -n noto-sans-lepcha-fonts @@ -806,8 +1111,8 @@ Lepcha Sans Serif font, hinted. Summary: Noto Limbu Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-limbu -Provides: noto-sans-limbu +Obsoletes: noto-sans-limbu < %{version} +Provides: noto-sans-limbu = %{version} %reconfigure_fonts_prereq %description -n noto-sans-limbu-fonts @@ -815,12 +1120,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Limbu Sans Serif font, hinted. +%package -n noto-sans-lineara-fonts +Summary: Noto Linear A Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-lineara < %{version} +Provides: noto-sans-lineara = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-lineara-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +LinearA Sans Serif font, hinted. + %package -n noto-sans-linearb-fonts Summary: Noto Linear B Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-linearb -Provides: noto-sans-linearb +Obsoletes: noto-sans-linearb < %{version} +Provides: noto-sans-linearb = %{version} %reconfigure_fonts_prereq %description -n noto-sans-linearb-fonts @@ -832,8 +1150,8 @@ LinearB Sans Serif font, hinted. Summary: Noto Lisu Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-lisu -Provides: noto-sans-lisu +Obsoletes: noto-sans-lisu < %{version} +Provides: noto-sans-lisu = %{version} %reconfigure_fonts_prereq %description -n noto-sans-lisu-fonts @@ -845,8 +1163,8 @@ Lisu Sans Serif font, hinted. Summary: Noto Lycian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-lycian -Provides: noto-sans-lycian +Obsoletes: noto-sans-lycian < %{version} +Provides: noto-sans-lycian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-lycian-fonts @@ -858,8 +1176,8 @@ Lycian Sans Serif font, hinted. Summary: Noto Lydian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-lydian -Provides: noto-sans-lydian +Obsoletes: noto-sans-lydian < %{version} +Provides: noto-sans-lydian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-lydian-fonts @@ -867,12 +1185,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Lydian Sans Serif font, hinted. +%package -n noto-sans-mahajani-fonts +Summary: Noto Mahajani Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-mahajani < %{version} +Provides: noto-sans-mahajani = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-mahajani-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Mahajani Sans Serif font, hinted. + %package -n noto-sans-malayalam-fonts Summary: Noto Malayalam Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-malayalam -Provides: noto-sans-malayalam +Obsoletes: noto-sans-malayalam < %{version} +Provides: noto-sans-malayalam = %{version} %reconfigure_fonts_prereq %description -n noto-sans-malayalam-fonts @@ -884,8 +1215,8 @@ Malayalam Sans Serif font, hinted. Summary: Noto Malayalam Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-malayalam-ui -Provides: noto-sans-malayalam-ui +Obsoletes: noto-sans-malayalam-ui < %{version} +Provides: noto-sans-malayalam-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-malayalam-ui-fonts @@ -897,8 +1228,8 @@ Malayalam Sans Serif font, hinted. Summary: Noto Mandaic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-mandaic -Provides: noto-sans-mandaic +Obsoletes: noto-sans-mandaic < %{version} +Provides: noto-sans-mandaic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-mandaic-fonts @@ -906,12 +1237,90 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Mandaic Sans Serif font, hinted. +%package -n noto-sans-manichaean-fonts +Summary: Noto Manichaean Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-manichaean < %{version} +Provides: noto-sans-manichaean = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-manichaean-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Manichaean Sans Serif font, hinted. + +%package -n noto-sans-marchen-fonts +Summary: Noto Marchen Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-marchen < %{version} +Provides: noto-sans-marchen = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-marchen-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Marchen Sans Serif font, hinted. + +%package -n noto-sans-masaramgondi-fonts +Summary: Noto Masaram Gondi Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-masaramgondi < %{version} +Provides: noto-sans-masaramgondi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-masaramgondi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +MasaramGondi Sans Serif font, hinted. + +%package -n noto-sans-math-fonts +Summary: Noto Math Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-math < %{version} +Provides: noto-sans-math = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-math-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Math Sans Serif font, hinted. + +%package -n noto-sans-mayannumerals-fonts +Summary: Noto Mayan Numerals Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-mayannumerals < %{version} +Provides: noto-sans-mayannumerals = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-mayannumerals-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +MayanNumerals Sans Serif font, hinted. + +%package -n noto-sans-medefaidrin-fonts +Summary: Noto Medefaidrin Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-medefaidrin < %{version} +Provides: noto-sans-medefaidrin = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-medefaidrin-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Medefaidrin Sans Serif font, hinted. + %package -n noto-sans-meeteimayek-fonts Summary: Noto Meetei Mayek Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-meeteimayek -Provides: noto-sans-meeteimayek +Obsoletes: noto-sans-meeteimayek < %{version} +Provides: noto-sans-meeteimayek = %{version} %reconfigure_fonts_prereq %description -n noto-sans-meeteimayek-fonts @@ -919,12 +1328,64 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains MeeteiMayek Sans Serif font, hinted. +%package -n noto-sans-mendekikakui-fonts +Summary: Noto Mende Kikakui Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-mendekikakui < %{version} +Provides: noto-sans-mendekikakui = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-mendekikakui-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +MendeKikakui Sans Serif font, hinted. + +%package -n noto-sans-meroitic-fonts +Summary: Noto Meroitic Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-meroitic < %{version} +Provides: noto-sans-meroitic = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-meroitic-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Meroitic Sans Serif font, hinted. + +%package -n noto-sans-miao-fonts +Summary: Noto Miao Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-miao < %{version} +Provides: noto-sans-miao = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-miao-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Miao Sans Serif font, hinted. + +%package -n noto-sans-modi-fonts +Summary: Noto Modi Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-modi < %{version} +Provides: noto-sans-modi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-modi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Modi Sans Serif font, hinted. + %package -n noto-sans-mongolian-fonts Summary: Noto Mongolian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-mongolian -Provides: noto-sans-mongolian +Obsoletes: noto-sans-mongolian < %{version} +Provides: noto-sans-mongolian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-mongolian-fonts @@ -936,8 +1397,8 @@ Mongolian Sans Serif font, hinted. Summary: Noto Mono Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-mono -Provides: noto-sans-mono +Obsoletes: noto-sans-mono < %{version} +Provides: noto-sans-mono = %{version} %reconfigure_fonts_prereq %description -n noto-sans-mono-fonts @@ -945,12 +1406,38 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Mono Sans Serif font, hinted. +%package -n noto-sans-mro-fonts +Summary: Noto Mro Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-mro < %{version} +Provides: noto-sans-mro = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-mro-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Mro Sans Serif font, hinted. + +%package -n noto-sans-multani-fonts +Summary: Noto Multani Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-multani < %{version} +Provides: noto-sans-multani = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-multani-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Multani Sans Serif font, hinted. + %package -n noto-sans-myanmar-fonts Summary: Noto Myanmar Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-myanmar -Provides: noto-sans-myanmar +Obsoletes: noto-sans-myanmar < %{version} +Provides: noto-sans-myanmar = %{version} %reconfigure_fonts_prereq %description -n noto-sans-myanmar-fonts @@ -962,8 +1449,8 @@ Myanmar Sans Serif font, hinted. Summary: Noto Myanmar Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-myanmar-ui -Provides: noto-sans-myanmar-ui +Obsoletes: noto-sans-myanmar-ui < %{version} +Provides: noto-sans-myanmar-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-myanmar-ui-fonts @@ -971,12 +1458,51 @@ 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-nabataean-fonts +Summary: Noto Nabataean Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-nabataean < %{version} +Provides: noto-sans-nabataean = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-nabataean-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Nabataean Sans Serif font, hinted. + +%package -n noto-sans-nandinagari-fonts +Summary: Noto Nandinagari Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-nandinagari < %{version} +Provides: noto-sans-nandinagari = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-nandinagari-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Nandinagari Sans Serif font, hinted. + +%package -n noto-sans-newa-fonts +Summary: Noto Newa Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-newa < %{version} +Provides: noto-sans-newa = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-newa-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Newa Sans Serif font, hinted. + %package -n noto-sans-newtailue-fonts Summary: Noto New Tai Lue Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-newtailue -Provides: noto-sans-newtailue +Obsoletes: noto-sans-newtailue < %{version} +Provides: noto-sans-newtailue = %{version} %reconfigure_fonts_prereq %description -n noto-sans-newtailue-fonts @@ -988,8 +1514,8 @@ NewTaiLue Sans Serif font, hinted. Summary: Noto NKo Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-nko -Provides: noto-sans-nko +Obsoletes: noto-sans-nko < %{version} +Provides: noto-sans-nko = %{version} %reconfigure_fonts_prereq %description -n noto-sans-nko-fonts @@ -997,12 +1523,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains NKo Sans Serif font, hinted. +%package -n noto-sans-nushu-fonts +Summary: Noto Nushu Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-nushu < %{version} +Provides: noto-sans-nushu = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-nushu-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Nushu Sans Serif font, hinted. + %package -n noto-sans-ogham-fonts Summary: Noto Ogham Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-ogham -Provides: noto-sans-ogham +Obsoletes: noto-sans-ogham < %{version} +Provides: noto-sans-ogham = %{version} %reconfigure_fonts_prereq %description -n noto-sans-ogham-fonts @@ -1014,8 +1553,8 @@ Ogham Sans Serif font, hinted. Summary: Noto Ol Chiki Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-olchiki -Provides: noto-sans-olchiki +Obsoletes: noto-sans-olchiki < %{version} +Provides: noto-sans-olchiki = %{version} %reconfigure_fonts_prereq %description -n noto-sans-olchiki-fonts @@ -1023,12 +1562,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains OlChiki Sans Serif font, hinted. +%package -n noto-sans-oldhungarian-fonts +Summary: Noto Old Hungarian Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-oldhungarian < %{version} +Provides: noto-sans-oldhungarian = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-oldhungarian-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +OldHungarian Sans Serif font, hinted. + %package -n noto-sans-olditalic-fonts Summary: Noto Old Italic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-olditalic -Provides: noto-sans-olditalic +Obsoletes: noto-sans-olditalic < %{version} +Provides: noto-sans-olditalic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-olditalic-fonts @@ -1036,12 +1588,38 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains OldItalic Sans Serif font, hinted. +%package -n noto-sans-oldnortharabian-fonts +Summary: Noto Old North Arabian Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-oldnortharabian < %{version} +Provides: noto-sans-oldnortharabian = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-oldnortharabian-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +OldNorthArabian Sans Serif font, hinted. + +%package -n noto-sans-oldpermic-fonts +Summary: Noto Old Permic Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-oldpermic < %{version} +Provides: noto-sans-oldpermic = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-oldpermic-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +OldPermic Sans Serif font, hinted. + %package -n noto-sans-oldpersian-fonts Summary: Noto Old Persian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-oldpersian -Provides: noto-sans-oldpersian +Obsoletes: noto-sans-oldpersian < %{version} +Provides: noto-sans-oldpersian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-oldpersian-fonts @@ -1049,12 +1627,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains OldPersian Sans Serif font, hinted. +%package -n noto-sans-oldsogdian-fonts +Summary: Noto Old Sogdian Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-oldsogdian < %{version} +Provides: noto-sans-oldsogdian = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-oldsogdian-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +OldSogdian Sans Serif font, hinted. + %package -n noto-sans-oldsoutharabian-fonts Summary: Noto Old South Arabian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-oldsoutharabian -Provides: noto-sans-oldsoutharabian +Obsoletes: noto-sans-oldsoutharabian < %{version} +Provides: noto-sans-oldsoutharabian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-oldsoutharabian-fonts @@ -1066,8 +1657,8 @@ OldSouthArabian Sans Serif font, hinted. Summary: Noto Old Turkic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-oldturkic -Provides: noto-sans-oldturkic +Obsoletes: noto-sans-oldturkic < %{version} +Provides: noto-sans-oldturkic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-oldturkic-fonts @@ -1079,8 +1670,8 @@ OldTurkic Sans Serif font, hinted. Summary: Noto Oriya Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-oriya -Provides: noto-sans-oriya +Obsoletes: noto-sans-oriya < %{version} +Provides: noto-sans-oriya = %{version} %reconfigure_fonts_prereq %description -n noto-sans-oriya-fonts @@ -1092,8 +1683,8 @@ Oriya Sans Serif font, hinted. Summary: Noto Oriya Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-oriya-ui -Provides: noto-sans-oriya-ui +Obsoletes: noto-sans-oriya-ui < %{version} +Provides: noto-sans-oriya-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-oriya-ui-fonts @@ -1105,8 +1696,8 @@ Oriya Sans Serif font, hinted. Summary: Noto Osage Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-osage -Provides: noto-sans-osage +Obsoletes: noto-sans-osage < %{version} +Provides: noto-sans-osage = %{version} %reconfigure_fonts_prereq %description -n noto-sans-osage-fonts @@ -1118,8 +1709,8 @@ Osage Sans Serif font, hinted. Summary: Noto Osmanya Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-osmanya -Provides: noto-sans-osmanya +Obsoletes: noto-sans-osmanya < %{version} +Provides: noto-sans-osmanya = %{version} %reconfigure_fonts_prereq %description -n noto-sans-osmanya-fonts @@ -1127,12 +1718,51 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Osmanya Sans Serif font, hinted. +%package -n noto-sans-pahawhhmong-fonts +Summary: Noto Pahawh Hmong Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-pahawhhmong < %{version} +Provides: noto-sans-pahawhhmong = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-pahawhhmong-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +PahawhHmong Sans Serif font, hinted. + +%package -n noto-sans-palmyrene-fonts +Summary: Noto Palmyrene Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-palmyrene < %{version} +Provides: noto-sans-palmyrene = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-palmyrene-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Palmyrene Sans Serif font, hinted. + +%package -n noto-sans-paucinhau-fonts +Summary: Noto Pau Cin Hau Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-paucinhau < %{version} +Provides: noto-sans-paucinhau = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-paucinhau-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +PauCinHau Sans Serif font, hinted. + %package -n noto-sans-phagspa-fonts Summary: Noto Phags Pa Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-phagspa -Provides: noto-sans-phagspa +Obsoletes: noto-sans-phagspa < %{version} +Provides: noto-sans-phagspa = %{version} %reconfigure_fonts_prereq %description -n noto-sans-phagspa-fonts @@ -1144,8 +1774,8 @@ PhagsPa Sans Serif font, hinted. Summary: Noto Phoenician Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-phoenician -Provides: noto-sans-phoenician +Obsoletes: noto-sans-phoenician < %{version} +Provides: noto-sans-phoenician = %{version} %reconfigure_fonts_prereq %description -n noto-sans-phoenician-fonts @@ -1153,12 +1783,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Phoenician Sans Serif font, hinted. +%package -n noto-sans-psalterpahlavi-fonts +Summary: Noto Psalter Pahlavi Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-psalterpahlavi < %{version} +Provides: noto-sans-psalterpahlavi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-psalterpahlavi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +PsalterPahlavi Sans Serif font, hinted. + %package -n noto-sans-rejang-fonts Summary: Noto Rejang Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-rejang -Provides: noto-sans-rejang +Obsoletes: noto-sans-rejang < %{version} +Provides: noto-sans-rejang = %{version} %reconfigure_fonts_prereq %description -n noto-sans-rejang-fonts @@ -1170,8 +1813,8 @@ Rejang Sans Serif font, hinted. Summary: Noto Runic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-runic -Provides: noto-sans-runic +Obsoletes: noto-sans-runic < %{version} +Provides: noto-sans-runic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-runic-fonts @@ -1183,8 +1826,8 @@ Runic Sans Serif font, hinted. Summary: Noto Samaritan Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-samaritan -Provides: noto-sans-samaritan +Obsoletes: noto-sans-samaritan < %{version} +Provides: noto-sans-samaritan = %{version} %reconfigure_fonts_prereq %description -n noto-sans-samaritan-fonts @@ -1196,8 +1839,8 @@ Samaritan Sans Serif font, hinted. Summary: Noto Saurashtra Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-saurashtra -Provides: noto-sans-saurashtra +Obsoletes: noto-sans-saurashtra < %{version} +Provides: noto-sans-saurashtra = %{version} %reconfigure_fonts_prereq %description -n noto-sans-saurashtra-fonts @@ -1205,12 +1848,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Saurashtra Sans Serif font, hinted. +%package -n noto-sans-sharada-fonts +Summary: Noto Sharada Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-sharada < %{version} +Provides: noto-sans-sharada = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-sharada-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Sharada Sans Serif font, hinted. + %package -n noto-sans-shavian-fonts Summary: Noto Shavian Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-shavian -Provides: noto-sans-shavian +Obsoletes: noto-sans-shavian < %{version} +Provides: noto-sans-shavian = %{version} %reconfigure_fonts_prereq %description -n noto-sans-shavian-fonts @@ -1218,12 +1874,38 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Shavian Sans Serif font, hinted. +%package -n noto-sans-siddham-fonts +Summary: Noto Siddham Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-siddham < %{version} +Provides: noto-sans-siddham = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-siddham-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Siddham Sans Serif font, hinted. + +%package -n noto-sans-signwriting-fonts +Summary: Noto Sign Writing Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-signwriting < %{version} +Provides: noto-sans-signwriting = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-signwriting-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +SignWriting Sans Serif font, hinted. + %package -n noto-sans-sinhala-fonts Summary: Noto Sinhala Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-sinhala -Provides: noto-sans-sinhala +Obsoletes: noto-sans-sinhala < %{version} +Provides: noto-sans-sinhala = %{version} %reconfigure_fonts_prereq %description -n noto-sans-sinhala-fonts @@ -1235,8 +1917,8 @@ Sinhala Sans Serif font, hinted. Summary: Noto Sinhala Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-sinhala-ui -Provides: noto-sans-sinhala-ui +Obsoletes: noto-sans-sinhala-ui < %{version} +Provides: noto-sans-sinhala-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-sinhala-ui-fonts @@ -1244,12 +1926,51 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Sinhala Sans Serif font, hinted. +%package -n noto-sans-sogdian-fonts +Summary: Noto Sogdian Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-sogdian < %{version} +Provides: noto-sans-sogdian = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-sogdian-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Sogdian Sans Serif font, hinted. + +%package -n noto-sans-sorasompeng-fonts +Summary: Noto Sora Sompeng Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-sorasompeng < %{version} +Provides: noto-sans-sorasompeng = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-sorasompeng-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +SoraSompeng Sans Serif font, hinted. + +%package -n noto-sans-soyombo-fonts +Summary: Noto Soyombo Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-soyombo < %{version} +Provides: noto-sans-soyombo = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-soyombo-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Soyombo Sans Serif font, hinted. + %package -n noto-sans-sundanese-fonts Summary: Noto Sundanese Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-sundanese -Provides: noto-sans-sundanese +Obsoletes: noto-sans-sundanese < %{version} +Provides: noto-sans-sundanese = %{version} %reconfigure_fonts_prereq %description -n noto-sans-sundanese-fonts @@ -1261,8 +1982,8 @@ Sundanese Sans Serif font, hinted. Summary: Noto Syloti Nagri Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-sylotinagri -Provides: noto-sans-sylotinagri +Obsoletes: noto-sans-sylotinagri < %{version} +Provides: noto-sans-sylotinagri = %{version} %reconfigure_fonts_prereq %description -n noto-sans-sylotinagri-fonts @@ -1274,8 +1995,8 @@ SylotiNagri Sans Serif font, hinted. Summary: Noto Symbols Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-symbols -Provides: noto-sans-symbols +Obsoletes: noto-sans-symbols < %{version} +Provides: noto-sans-symbols = %{version} %reconfigure_fonts_prereq %description -n noto-sans-symbols-fonts @@ -1287,8 +2008,8 @@ Symbols Sans Serif font, hinted. Summary: Noto Symbols2 Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-symbols2 -Provides: noto-sans-symbols2 +Obsoletes: noto-sans-symbols2 < %{version} +Provides: noto-sans-symbols2 = %{version} %reconfigure_fonts_prereq %description -n noto-sans-symbols2-fonts @@ -1296,51 +2017,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Symbols2 Sans Serif font, hinted. -%package -n noto-sans-syriaceastern-fonts -Summary: Noto Syriac Eastern Sans Serif Font +%package -n noto-sans-syriac-fonts +Summary: Noto Syriac Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-syriaceastern -Provides: noto-sans-syriaceastern +Obsoletes: noto-sans-syriac < %{version} +Provides: noto-sans-syriac = %{version} %reconfigure_fonts_prereq -%description -n noto-sans-syriaceastern-fonts +%description -n noto-sans-syriac-fonts Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains -SyriacEastern Sans Serif font, hinted. - -%package -n noto-sans-syriacestrangela-fonts -Summary: Noto Syriac Estrangela Sans Serif Font -Group: System/X11/Fonts -Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-syriacestrangela -Provides: noto-sans-syriacestrangela -%reconfigure_fonts_prereq - -%description -n noto-sans-syriacestrangela-fonts -Noto's design goal is to achieve visual harmonization (e.g., compatible -heights and stroke thicknesses) across languages. This package contains -SyriacEstrangela Sans Serif font, hinted. - -%package -n noto-sans-syriacwestern-fonts -Summary: Noto Syriac Western Sans Serif Font -Group: System/X11/Fonts -Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-syriacwestern -Provides: noto-sans-syriacwestern -%reconfigure_fonts_prereq - -%description -n noto-sans-syriacwestern-fonts -Noto's design goal is to achieve visual harmonization (e.g., compatible -heights and stroke thicknesses) across languages. This package contains -SyriacWestern Sans Serif font, hinted. +Syriac Sans Serif font, hinted. %package -n noto-sans-tagalog-fonts Summary: Noto Tagalog Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-tagalog -Provides: noto-sans-tagalog +Obsoletes: noto-sans-tagalog < %{version} +Provides: noto-sans-tagalog = %{version} %reconfigure_fonts_prereq %description -n noto-sans-tagalog-fonts @@ -1352,8 +2047,8 @@ Tagalog Sans Serif font, hinted. Summary: Noto Tagbanwa Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-tagbanwa -Provides: noto-sans-tagbanwa +Obsoletes: noto-sans-tagbanwa < %{version} +Provides: noto-sans-tagbanwa = %{version} %reconfigure_fonts_prereq %description -n noto-sans-tagbanwa-fonts @@ -1365,8 +2060,8 @@ Tagbanwa Sans Serif font, hinted. Summary: Noto Tai Le Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-taile -Provides: noto-sans-taile +Obsoletes: noto-sans-taile < %{version} +Provides: noto-sans-taile = %{version} %reconfigure_fonts_prereq %description -n noto-sans-taile-fonts @@ -1378,8 +2073,8 @@ TaiLe Sans Serif font, hinted. Summary: Noto Tai Tham Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-taitham -Provides: noto-sans-taitham +Obsoletes: noto-sans-taitham < %{version} +Provides: noto-sans-taitham = %{version} %reconfigure_fonts_prereq %description -n noto-sans-taitham-fonts @@ -1391,8 +2086,8 @@ TaiTham Sans Serif font, hinted. Summary: Noto Tai Viet Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-taiviet -Provides: noto-sans-taiviet +Obsoletes: noto-sans-taiviet < %{version} +Provides: noto-sans-taiviet = %{version} %reconfigure_fonts_prereq %description -n noto-sans-taiviet-fonts @@ -1400,12 +2095,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains TaiViet Sans Serif font, hinted. +%package -n noto-sans-takri-fonts +Summary: Noto Takri Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-takri < %{version} +Provides: noto-sans-takri = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-takri-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Takri Sans Serif font, hinted. + %package -n noto-sans-tamil-fonts Summary: Noto Tamil Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-tamil -Provides: noto-sans-tamil +Obsoletes: noto-sans-tamil < %{version} +Provides: noto-sans-tamil = %{version} %reconfigure_fonts_prereq %description -n noto-sans-tamil-fonts @@ -1413,12 +2121,25 @@ 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-tamilsupplement-fonts +Summary: Noto Tamil Supplement Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tamilsupplement < %{version} +Provides: noto-sans-tamilsupplement = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tamilsupplement-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TamilSupplement Sans Serif font, hinted. + %package -n noto-sans-tamil-ui-fonts Summary: Noto Tamil Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-tamil-ui -Provides: noto-sans-tamil-ui +Obsoletes: noto-sans-tamil-ui < %{version} +Provides: noto-sans-tamil-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-tamil-ui-fonts @@ -1426,12 +2147,25 @@ 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-tangsa-fonts +Summary: Noto Tangsa Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tangsa < %{version} +Provides: noto-sans-tangsa = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tangsa-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Tangsa Sans Serif font, hinted. + %package -n noto-sans-telugu-fonts Summary: Noto Telugu Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-telugu -Provides: noto-sans-telugu +Obsoletes: noto-sans-telugu < %{version} +Provides: noto-sans-telugu = %{version} %reconfigure_fonts_prereq %description -n noto-sans-telugu-fonts @@ -1443,8 +2177,8 @@ Telugu Sans Serif font, hinted. Summary: Noto Telugu Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-telugu-ui -Provides: noto-sans-telugu-ui +Obsoletes: noto-sans-telugu-ui < %{version} +Provides: noto-sans-telugu-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-telugu-ui-fonts @@ -1456,8 +2190,8 @@ Telugu Sans Serif font, hinted. Summary: Noto Thaana Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-thaana -Provides: noto-sans-thaana +Obsoletes: noto-sans-thaana < %{version} +Provides: noto-sans-thaana = %{version} %reconfigure_fonts_prereq %description -n noto-sans-thaana-fonts @@ -1469,8 +2203,8 @@ Thaana Sans Serif font, hinted. Summary: Noto Thai Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-thai -Provides: noto-sans-thai +Obsoletes: noto-sans-thai < %{version} +Provides: noto-sans-thai = %{version} %reconfigure_fonts_prereq %description -n noto-sans-thai-fonts @@ -1482,8 +2216,8 @@ Thai Sans Serif font, hinted. Summary: Noto Thai Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-thai-ui -Provides: noto-sans-thai-ui +Obsoletes: noto-sans-thai-ui < %{version} +Provides: noto-sans-thai-ui = %{version} %reconfigure_fonts_prereq %description -n noto-sans-thai-ui-fonts @@ -1491,25 +2225,12 @@ 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 -Summary: Noto Tibetan Sans Serif Font -Group: System/X11/Fonts -Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-tibetan -Provides: noto-sans-tibetan -%reconfigure_fonts_prereq - -%description -n noto-sans-tibetan-fonts -Noto's design goal is to achieve visual harmonization (e.g., compatible -heights and stroke thicknesses) across languages. This package contains -Tibetan Sans Serif font, hinted. - %package -n noto-sans-tifinagh-fonts Summary: Noto Tifinagh Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-tifinagh -Provides: noto-sans-tifinagh +Obsoletes: noto-sans-tifinagh < %{version} +Provides: noto-sans-tifinagh = %{version} %reconfigure_fonts_prereq %description -n noto-sans-tifinagh-fonts @@ -1517,12 +2238,168 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Tifinagh Sans Serif font, hinted. +%package -n noto-sans-tifinaghadrar-fonts +Summary: Noto Tifinagh Adrar Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghadrar < %{version} +Provides: noto-sans-tifinaghadrar = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghadrar-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghAdrar Sans Serif font, hinted. + +%package -n noto-sans-tifinaghagrawimazighen-fonts +Summary: Noto Tifinagh Agraw Imazighen Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghagrawimazighen < %{version} +Provides: noto-sans-tifinaghagrawimazighen = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghagrawimazighen-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghAgrawImazighen Sans Serif font, hinted. + +%package -n noto-sans-tifinaghahaggar-fonts +Summary: Noto Tifinagh Ahaggar Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghahaggar < %{version} +Provides: noto-sans-tifinaghahaggar = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghahaggar-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghAhaggar Sans Serif font, hinted. + +%package -n noto-sans-tifinaghair-fonts +Summary: Noto Tifinagh Air Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghair < %{version} +Provides: noto-sans-tifinaghair = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghair-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghAir Sans Serif font, hinted. + +%package -n noto-sans-tifinaghapt-fonts +Summary: Noto Tifinagh APT Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghapt < %{version} +Provides: noto-sans-tifinaghapt = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghapt-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghAPT Sans Serif font, hinted. + +%package -n noto-sans-tifinaghazawagh-fonts +Summary: Noto Tifinagh Azawagh Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghazawagh < %{version} +Provides: noto-sans-tifinaghazawagh = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghazawagh-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghAzawagh Sans Serif font, hinted. + +%package -n noto-sans-tifinaghghat-fonts +Summary: Noto Tifinagh Ghat Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghghat < %{version} +Provides: noto-sans-tifinaghghat = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghghat-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghGhat Sans Serif font, hinted. + +%package -n noto-sans-tifinaghhawad-fonts +Summary: Noto Tifinagh Hawad Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghhawad < %{version} +Provides: noto-sans-tifinaghhawad = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghhawad-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghHawad Sans Serif font, hinted. + +%package -n noto-sans-tifinaghrhissaixa-fonts +Summary: Noto Tifinagh Rhissa Ixa Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghrhissaixa < %{version} +Provides: noto-sans-tifinaghrhissaixa = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghrhissaixa-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghRhissaIxa Sans Serif font, hinted. + +%package -n noto-sans-tifinaghsil-fonts +Summary: Noto Tifinagh SIL Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghsil < %{version} +Provides: noto-sans-tifinaghsil = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghsil-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghSIL Sans Serif font, hinted. + +%package -n noto-sans-tifinaghtawellemmet-fonts +Summary: Noto Tifinagh Tawellemmet Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tifinaghtawellemmet < %{version} +Provides: noto-sans-tifinaghtawellemmet = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tifinaghtawellemmet-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TifinaghTawellemmet Sans Serif font, hinted. + +%package -n noto-sans-tirhuta-fonts +Summary: Noto Tirhuta Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-tirhuta < %{version} +Provides: noto-sans-tirhuta = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-tirhuta-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Tirhuta Sans Serif font, hinted. + %package -n noto-sans-ugaritic-fonts Summary: Noto Ugaritic Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-ugaritic -Provides: noto-sans-ugaritic +Obsoletes: noto-sans-ugaritic < %{version} +Provides: noto-sans-ugaritic = %{version} %reconfigure_fonts_prereq %description -n noto-sans-ugaritic-fonts @@ -1534,8 +2411,8 @@ Ugaritic Sans Serif font, hinted. Summary: Noto Vai Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-vai -Provides: noto-sans-vai +Obsoletes: noto-sans-vai < %{version} +Provides: noto-sans-vai = %{version} %reconfigure_fonts_prereq %description -n noto-sans-vai-fonts @@ -1543,12 +2420,51 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Vai Sans Serif font, hinted. +%package -n noto-sans-vithkuqi-fonts +Summary: Noto Vithkuqi Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-vithkuqi < %{version} +Provides: noto-sans-vithkuqi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-vithkuqi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Vithkuqi Sans Serif font, hinted. + +%package -n noto-sans-wancho-fonts +Summary: Noto Wancho Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-wancho < %{version} +Provides: noto-sans-wancho = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-wancho-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Wancho Sans Serif font, hinted. + +%package -n noto-sans-warangciti-fonts +Summary: Noto Warang Citi Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-warangciti < %{version} +Provides: noto-sans-warangciti = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-warangciti-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +WarangCiti Sans Serif font, hinted. + %package -n noto-sans-yi-fonts Summary: Noto Yi Sans Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-sans-yi -Provides: noto-sans-yi +Obsoletes: noto-sans-yi < %{version} +Provides: noto-sans-yi = %{version} %reconfigure_fonts_prereq %description -n noto-sans-yi-fonts @@ -1556,12 +2472,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Yi Sans Serif font, hinted. +%package -n noto-sans-zanabazarsquare-fonts +Summary: Noto Zanabazar Square Sans Serif Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-sans-zanabazarsquare < %{version} +Provides: noto-sans-zanabazarsquare = %{version} +%reconfigure_fonts_prereq + +%description -n noto-sans-zanabazarsquare-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +ZanabazarSquare Sans Serif font, hinted. + %package -n noto-serif-fonts Summary: Noto Serif Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif -Provides: noto-serif +Obsoletes: noto-serif < %{version} +Provides: noto-serif = %{version} %reconfigure_fonts_prereq %description -n noto-serif-fonts @@ -1569,12 +2498,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Serif font, hinted. +%package -n noto-serif-ahom-fonts +Summary: Noto Ahom Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-ahom < %{version} +Provides: noto-serif-ahom = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-ahom-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Ahom font, hinted. + %package -n noto-serif-armenian-fonts Summary: Noto Armenian Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-armenian -Provides: noto-serif-armenian +Obsoletes: noto-serif-armenian < %{version} +Provides: noto-serif-armenian = %{version} %reconfigure_fonts_prereq %description -n noto-serif-armenian-fonts @@ -1582,12 +2524,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Armenian font, hinted. +%package -n noto-serif-balinese-fonts +Summary: Noto Balinese Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-balinese < %{version} +Provides: noto-serif-balinese = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-balinese-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Balinese font, hinted. + %package -n noto-serif-bengali-fonts Summary: Noto Bengali Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-bengali -Provides: noto-serif-bengali +Obsoletes: noto-serif-bengali < %{version} +Provides: noto-serif-bengali = %{version} %reconfigure_fonts_prereq %description -n noto-serif-bengali-fonts @@ -1599,8 +2554,8 @@ Bengali font, hinted. Summary: Noto Devanagari Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-devanagari -Provides: noto-serif-devanagari +Obsoletes: noto-serif-devanagari < %{version} +Provides: noto-serif-devanagari = %{version} %reconfigure_fonts_prereq %description -n noto-serif-devanagari-fonts @@ -1612,8 +2567,8 @@ Devanagari font, hinted. Summary: Noto Display Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-display -Provides: noto-serif-display +Obsoletes: noto-serif-display < %{version} +Provides: noto-serif-display = %{version} %reconfigure_fonts_prereq %description -n noto-serif-display-fonts @@ -1621,12 +2576,38 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Display font, hinted. +%package -n noto-serif-divesakuru-fonts +Summary: Noto Dives Akuru Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-divesakuru < %{version} +Provides: noto-serif-divesakuru = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-divesakuru-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +DivesAkuru font, hinted. + +%package -n noto-serif-dogra-fonts +Summary: Noto Dogra Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-dogra < %{version} +Provides: noto-serif-dogra = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-dogra-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Dogra font, hinted. + %package -n noto-serif-ethiopic-fonts Summary: Noto Ethiopic Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-ethiopic -Provides: noto-serif-ethiopic +Obsoletes: noto-serif-ethiopic < %{version} +Provides: noto-serif-ethiopic = %{version} %reconfigure_fonts_prereq %description -n noto-serif-ethiopic-fonts @@ -1638,8 +2619,8 @@ Ethiopic font, hinted. Summary: Noto Georgian Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-georgian -Provides: noto-serif-georgian +Obsoletes: noto-serif-georgian < %{version} +Provides: noto-serif-georgian = %{version} %reconfigure_fonts_prereq %description -n noto-serif-georgian-fonts @@ -1647,12 +2628,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Georgian font, hinted. +%package -n noto-serif-grantha-fonts +Summary: Noto Grantha Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-grantha < %{version} +Provides: noto-serif-grantha = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-grantha-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Grantha font, hinted. + %package -n noto-serif-gujarati-fonts Summary: Noto Gujarati Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-gujarati -Provides: noto-serif-gujarati +Obsoletes: noto-serif-gujarati < %{version} +Provides: noto-serif-gujarati = %{version} %reconfigure_fonts_prereq %description -n noto-serif-gujarati-fonts @@ -1660,12 +2654,25 @@ 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-gurmukhi-fonts +Summary: Noto Gurmukhi Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-gurmukhi < %{version} +Provides: noto-serif-gurmukhi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-gurmukhi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Gurmukhi font, hinted. + %package -n noto-serif-hebrew-fonts Summary: Noto Hebrew Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-hebrew -Provides: noto-serif-hebrew +Obsoletes: noto-serif-hebrew < %{version} +Provides: noto-serif-hebrew = %{version} %reconfigure_fonts_prereq %description -n noto-serif-hebrew-fonts @@ -1677,8 +2684,8 @@ Hebrew font, hinted. Summary: Noto Kannada Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-kannada -Provides: noto-serif-kannada +Obsoletes: noto-serif-kannada < %{version} +Provides: noto-serif-kannada = %{version} %reconfigure_fonts_prereq %description -n noto-serif-kannada-fonts @@ -1690,8 +2697,8 @@ Kannada font, hinted. Summary: Noto Khmer Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-khmer -Provides: noto-serif-khmer +Obsoletes: noto-serif-khmer < %{version} +Provides: noto-serif-khmer = %{version} %reconfigure_fonts_prereq %description -n noto-serif-khmer-fonts @@ -1699,12 +2706,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Khmer font, hinted. +%package -n noto-serif-khojki-fonts +Summary: Noto Khojki Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-khojki < %{version} +Provides: noto-serif-khojki = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-khojki-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Khojki font, hinted. + %package -n noto-serif-lao-fonts Summary: Noto Lao Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-lao -Provides: noto-serif-lao +Obsoletes: noto-serif-lao < %{version} +Provides: noto-serif-lao = %{version} %reconfigure_fonts_prereq %description -n noto-serif-lao-fonts @@ -1712,12 +2732,25 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Lao font, hinted. +%package -n noto-serif-makasar-fonts +Summary: Noto Makasar Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-makasar < %{version} +Provides: noto-serif-makasar = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-makasar-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Makasar font, hinted. + %package -n noto-serif-malayalam-fonts Summary: Noto Malayalam Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-malayalam -Provides: noto-serif-malayalam +Obsoletes: noto-serif-malayalam < %{version} +Provides: noto-serif-malayalam = %{version} %reconfigure_fonts_prereq %description -n noto-serif-malayalam-fonts @@ -1729,8 +2762,8 @@ Malayalam font, hinted. Summary: Noto Myanmar Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-myanmar -Provides: noto-serif-myanmar +Obsoletes: noto-serif-myanmar < %{version} +Provides: noto-serif-myanmar = %{version} %reconfigure_fonts_prereq %description -n noto-serif-myanmar-fonts @@ -1738,12 +2771,51 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Myanmar font, hinted. +%package -n noto-serif-nyiakengpuachuehmong-fonts +Summary: Noto Nyiakeng Puachue Hmong Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-nyiakengpuachuehmong < %{version} +Provides: noto-serif-nyiakengpuachuehmong = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-nyiakengpuachuehmong-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +NyiakengPuachueHmong font, hinted. + +%package -n noto-serif-olduyghur-fonts +Summary: Noto Old Uyghur Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-olduyghur < %{version} +Provides: noto-serif-olduyghur = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-olduyghur-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +OldUyghur font, hinted. + +%package -n noto-serif-oriya-fonts +Summary: Noto Oriya Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-oriya < %{version} +Provides: noto-serif-oriya = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-oriya-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Oriya font, hinted. + %package -n noto-serif-sinhala-fonts Summary: Noto Sinhala Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-sinhala -Provides: noto-serif-sinhala +Obsoletes: noto-serif-sinhala < %{version} +Provides: noto-serif-sinhala = %{version} %reconfigure_fonts_prereq %description -n noto-serif-sinhala-fonts @@ -1755,8 +2827,8 @@ Sinhala font, hinted. Summary: Noto Tamil Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-tamil -Provides: noto-serif-tamil +Obsoletes: noto-serif-tamil < %{version} +Provides: noto-serif-tamil = %{version} %reconfigure_fonts_prereq %description -n noto-serif-tamil-fonts @@ -1764,12 +2836,38 @@ 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-tamilslanted-fonts +Summary: Noto Tamil Slanted Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-tamilslanted < %{version} +Provides: noto-serif-tamilslanted = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-tamilslanted-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TamilSlanted font, hinted. + +%package -n noto-serif-tangut-fonts +Summary: Noto Tangut Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-tangut < %{version} +Provides: noto-serif-tangut = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-tangut-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Tangut font, hinted. + %package -n noto-serif-telugu-fonts Summary: Noto Telugu Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-telugu -Provides: noto-serif-telugu +Obsoletes: noto-serif-telugu < %{version} +Provides: noto-serif-telugu = %{version} %reconfigure_fonts_prereq %description -n noto-serif-telugu-fonts @@ -1781,8 +2879,8 @@ Telugu font, hinted. Summary: Noto Thai Font Group: System/X11/Fonts Recommends: google-noto-fonts-doc -Obsoletes: noto-serif-thai -Provides: noto-serif-thai +Obsoletes: noto-serif-thai < %{version} +Provides: noto-serif-thai = %{version} %reconfigure_fonts_prereq %description -n noto-serif-thai-fonts @@ -1790,24 +2888,117 @@ Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke thicknesses) across languages. This package contains Thai font, hinted. +%package -n noto-serif-tibetan-fonts +Summary: Noto Tibetan Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-tibetan < %{version} +Provides: noto-serif-tibetan = %{version} +%reconfigure_fonts_prereq +%description -n noto-serif-tibetan-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Tibetan font, hinted. + +%package -n noto-serif-toto-fonts +Summary: Noto Toto Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-toto < %{version} +Provides: noto-serif-toto = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-toto-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Toto font, hinted. + +%package -n noto-serif-vithkuqi-fonts +Summary: Noto Vithkuqi Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-vithkuqi < %{version} +Provides: noto-serif-vithkuqi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-vithkuqi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Vithkuqi font, hinted. + +%package -n noto-serif-yezidi-fonts +Summary: Noto Yezidi Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-serif-yezidi < %{version} +Provides: noto-serif-yezidi = %{version} +%reconfigure_fonts_prereq + +%description -n noto-serif-yezidi-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Yezidi font, hinted. + +%package -n noto-tinos-fonts +Summary: Noto Tinos Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-tinos < %{version} +Provides: noto-tinos = %{version} +%reconfigure_fonts_prereq + +%description -n noto-tinos-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +Tinos font, hinted. + +%package -n noto-traditionalnushu-fonts +Summary: Noto Traditional Nushu Font +Group: System/X11/Fonts +Recommends: google-noto-fonts-doc +Obsoletes: noto-traditionalnushu < %{version} +Provides: noto-traditionalnushu = %{version} +%reconfigure_fonts_prereq + +%description -n noto-traditionalnushu-fonts +Noto's design goal is to achieve visual harmonization (e.g., compatible +heights and stroke thicknesses) across languages. This package contains +TraditionalNushu font, hinted. %prep -%setup -q -c -n %{name}-%{version} -# remove cjk -rm -rf *CJK*.?tf -# remove emoji -rm -rf *Emoji*.ttf +tar -xzf %{SOURCE0} -C . +cp %{SOURCE2} . %build %install mkdir -p %{buildroot}%{_ttfontsdir} -cp *.?tf %{buildroot}%{_ttfontsdir}/ +# Tifinagh fonts have duplicates in NotoSansTifinagh folder +# https://github.com/googlefonts/noto-fonts/issues/2177 and https://github.com/googlefonts/noto-fonts/issues/2326 +rm otf/NotoSansTifinagh/NotoSansTifinagh[!\-]* + +# NotoSansDisplay is already provided by NotoSans +# Also they have inconsistent family names: https://github.com/googlefonts/noto-fonts/issues/2315 +rm -r otf/NotoSansDisplay/ + +cp otf/*/*.otf %{buildroot}%{_ttfontsdir}/ + +%reconfigure_fonts_scriptlets -n noto-arimo-fonts + +%reconfigure_fonts_scriptlets -n noto-cousine-fonts %reconfigure_fonts_scriptlets -n noto-kufiarabic-fonts -%reconfigure_fonts_scriptlets -n noto-mono-fonts +%reconfigure_fonts_scriptlets -n noto-loopedlao-fonts + +%reconfigure_fonts_scriptlets -n noto-loopedlao-ui-fonts + +%reconfigure_fonts_scriptlets -n noto-loopedthai-fonts + +%reconfigure_fonts_scriptlets -n noto-loopedthai-ui-fonts + +%reconfigure_fonts_scriptlets -n noto-music-fonts %reconfigure_fonts_scriptlets -n noto-naskharabic-fonts @@ -1815,6 +3006,8 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-nastaliqurdu-fonts +%reconfigure_fonts_scriptlets -n noto-rashihebrew-fonts + %reconfigure_fonts_scriptlets -n noto-sans-fonts %reconfigure_fonts_scriptlets -n noto-sans-adlam-fonts @@ -1835,12 +3028,16 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-bamum-fonts +%reconfigure_fonts_scriptlets -n noto-sans-bassavah-fonts + %reconfigure_fonts_scriptlets -n noto-sans-batak-fonts %reconfigure_fonts_scriptlets -n noto-sans-bengali-fonts %reconfigure_fonts_scriptlets -n noto-sans-bengali-ui-fonts +%reconfigure_fonts_scriptlets -n noto-sans-bhaiksuki-fonts + %reconfigure_fonts_scriptlets -n noto-sans-brahmi-fonts %reconfigure_fonts_scriptlets -n noto-sans-buginese-fonts @@ -1851,28 +3048,38 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-carian-fonts +%reconfigure_fonts_scriptlets -n noto-sans-caucasianalbanian-fonts + %reconfigure_fonts_scriptlets -n noto-sans-chakma-fonts %reconfigure_fonts_scriptlets -n noto-sans-cham-fonts %reconfigure_fonts_scriptlets -n noto-sans-cherokee-fonts +%reconfigure_fonts_scriptlets -n noto-sans-chorasmian-fonts + %reconfigure_fonts_scriptlets -n noto-sans-coptic-fonts %reconfigure_fonts_scriptlets -n noto-sans-cuneiform-fonts %reconfigure_fonts_scriptlets -n noto-sans-cypriot-fonts +%reconfigure_fonts_scriptlets -n noto-sans-cyprominoan-fonts + %reconfigure_fonts_scriptlets -n noto-sans-deseret-fonts %reconfigure_fonts_scriptlets -n noto-sans-devanagari-fonts %reconfigure_fonts_scriptlets -n noto-sans-devanagari-ui-fonts -%reconfigure_fonts_scriptlets -n noto-sans-display-fonts +%reconfigure_fonts_scriptlets -n noto-sans-duployan-fonts %reconfigure_fonts_scriptlets -n noto-sans-egyptianhieroglyphs-fonts +%reconfigure_fonts_scriptlets -n noto-sans-elbasan-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-elymaic-fonts + %reconfigure_fonts_scriptlets -n noto-sans-ethiopic-fonts %reconfigure_fonts_scriptlets -n noto-sans-georgian-fonts @@ -1881,20 +3088,34 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-gothic-fonts +%reconfigure_fonts_scriptlets -n noto-sans-grantha-fonts + %reconfigure_fonts_scriptlets -n noto-sans-gujarati-fonts %reconfigure_fonts_scriptlets -n noto-sans-gujarati-ui-fonts +%reconfigure_fonts_scriptlets -n noto-sans-gunjalagondi-fonts + %reconfigure_fonts_scriptlets -n noto-sans-gurmukhi-fonts %reconfigure_fonts_scriptlets -n noto-sans-gurmukhi-ui-fonts +%reconfigure_fonts_scriptlets -n noto-sans-hanifirohingya-fonts + %reconfigure_fonts_scriptlets -n noto-sans-hanunoo-fonts +%reconfigure_fonts_scriptlets -n noto-sans-hatran-fonts + %reconfigure_fonts_scriptlets -n noto-sans-hebrew-fonts +%reconfigure_fonts_scriptlets -n noto-sans-hebrewdroid-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-hebrewnew-fonts + %reconfigure_fonts_scriptlets -n noto-sans-imperialaramaic-fonts +%reconfigure_fonts_scriptlets -n noto-sans-indicsiyaqnumbers-fonts + %reconfigure_fonts_scriptlets -n noto-sans-inscriptionalpahlavi-fonts %reconfigure_fonts_scriptlets -n noto-sans-inscriptionalparthian-fonts @@ -1915,6 +3136,10 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-khmer-ui-fonts +%reconfigure_fonts_scriptlets -n noto-sans-khojki-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-khudawadi-fonts + %reconfigure_fonts_scriptlets -n noto-sans-lao-fonts %reconfigure_fonts_scriptlets -n noto-sans-lao-ui-fonts @@ -1923,6 +3148,8 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-limbu-fonts +%reconfigure_fonts_scriptlets -n noto-sans-lineara-fonts + %reconfigure_fonts_scriptlets -n noto-sans-linearb-fonts %reconfigure_fonts_scriptlets -n noto-sans-lisu-fonts @@ -1931,34 +3158,76 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-lydian-fonts +%reconfigure_fonts_scriptlets -n noto-sans-mahajani-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-manichaean-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-marchen-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-masaramgondi-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-math-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-mayannumerals-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-medefaidrin-fonts + %reconfigure_fonts_scriptlets -n noto-sans-meeteimayek-fonts +%reconfigure_fonts_scriptlets -n noto-sans-mendekikakui-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-meroitic-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-miao-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-modi-fonts + %reconfigure_fonts_scriptlets -n noto-sans-mongolian-fonts %reconfigure_fonts_scriptlets -n noto-sans-mono-fonts +%reconfigure_fonts_scriptlets -n noto-sans-mro-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-multani-fonts + %reconfigure_fonts_scriptlets -n noto-sans-myanmar-fonts %reconfigure_fonts_scriptlets -n noto-sans-myanmar-ui-fonts +%reconfigure_fonts_scriptlets -n noto-sans-nabataean-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-nandinagari-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-newa-fonts + %reconfigure_fonts_scriptlets -n noto-sans-newtailue-fonts %reconfigure_fonts_scriptlets -n noto-sans-nko-fonts +%reconfigure_fonts_scriptlets -n noto-sans-nushu-fonts + %reconfigure_fonts_scriptlets -n noto-sans-ogham-fonts %reconfigure_fonts_scriptlets -n noto-sans-olchiki-fonts +%reconfigure_fonts_scriptlets -n noto-sans-oldhungarian-fonts + %reconfigure_fonts_scriptlets -n noto-sans-olditalic-fonts +%reconfigure_fonts_scriptlets -n noto-sans-oldnortharabian-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-oldpermic-fonts + %reconfigure_fonts_scriptlets -n noto-sans-oldpersian-fonts +%reconfigure_fonts_scriptlets -n noto-sans-oldsogdian-fonts + %reconfigure_fonts_scriptlets -n noto-sans-oldsoutharabian-fonts %reconfigure_fonts_scriptlets -n noto-sans-oldturkic-fonts @@ -1971,10 +3240,18 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-osmanya-fonts +%reconfigure_fonts_scriptlets -n noto-sans-pahawhhmong-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-palmyrene-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-paucinhau-fonts + %reconfigure_fonts_scriptlets -n noto-sans-phagspa-fonts %reconfigure_fonts_scriptlets -n noto-sans-phoenician-fonts +%reconfigure_fonts_scriptlets -n noto-sans-psalterpahlavi-fonts + %reconfigure_fonts_scriptlets -n noto-sans-rejang-fonts %reconfigure_fonts_scriptlets -n noto-sans-runic-fonts @@ -1983,12 +3260,24 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-saurashtra-fonts +%reconfigure_fonts_scriptlets -n noto-sans-sharada-fonts + %reconfigure_fonts_scriptlets -n noto-sans-shavian-fonts +%reconfigure_fonts_scriptlets -n noto-sans-siddham-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-signwriting-fonts + %reconfigure_fonts_scriptlets -n noto-sans-sinhala-fonts %reconfigure_fonts_scriptlets -n noto-sans-sinhala-ui-fonts +%reconfigure_fonts_scriptlets -n noto-sans-sogdian-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-sorasompeng-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-soyombo-fonts + %reconfigure_fonts_scriptlets -n noto-sans-sundanese-fonts %reconfigure_fonts_scriptlets -n noto-sans-sylotinagri-fonts @@ -1997,11 +3286,7 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-symbols2-fonts -%reconfigure_fonts_scriptlets -n noto-sans-syriaceastern-fonts - -%reconfigure_fonts_scriptlets -n noto-sans-syriacestrangela-fonts - -%reconfigure_fonts_scriptlets -n noto-sans-syriacwestern-fonts +%reconfigure_fonts_scriptlets -n noto-sans-syriac-fonts %reconfigure_fonts_scriptlets -n noto-sans-tagalog-fonts @@ -2013,10 +3298,16 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-taiviet-fonts +%reconfigure_fonts_scriptlets -n noto-sans-takri-fonts + %reconfigure_fonts_scriptlets -n noto-sans-tamil-fonts +%reconfigure_fonts_scriptlets -n noto-sans-tamilsupplement-fonts + %reconfigure_fonts_scriptlets -n noto-sans-tamil-ui-fonts +%reconfigure_fonts_scriptlets -n noto-sans-tangsa-fonts + %reconfigure_fonts_scriptlets -n noto-sans-telugu-fonts %reconfigure_fonts_scriptlets -n noto-sans-telugu-ui-fonts @@ -2027,65 +3318,163 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-sans-thai-ui-fonts -%reconfigure_fonts_scriptlets -n noto-sans-tibetan-fonts - %reconfigure_fonts_scriptlets -n noto-sans-tifinagh-fonts +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghadrar-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghagrawimazighen-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghahaggar-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghair-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghapt-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghazawagh-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghghat-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghhawad-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghrhissaixa-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghsil-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tifinaghtawellemmet-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-tirhuta-fonts + %reconfigure_fonts_scriptlets -n noto-sans-ugaritic-fonts %reconfigure_fonts_scriptlets -n noto-sans-vai-fonts +%reconfigure_fonts_scriptlets -n noto-sans-vithkuqi-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-wancho-fonts + +%reconfigure_fonts_scriptlets -n noto-sans-warangciti-fonts + %reconfigure_fonts_scriptlets -n noto-sans-yi-fonts +%reconfigure_fonts_scriptlets -n noto-sans-zanabazarsquare-fonts + %reconfigure_fonts_scriptlets -n noto-serif-fonts +%reconfigure_fonts_scriptlets -n noto-serif-ahom-fonts + %reconfigure_fonts_scriptlets -n noto-serif-armenian-fonts +%reconfigure_fonts_scriptlets -n noto-serif-balinese-fonts + %reconfigure_fonts_scriptlets -n noto-serif-bengali-fonts %reconfigure_fonts_scriptlets -n noto-serif-devanagari-fonts %reconfigure_fonts_scriptlets -n noto-serif-display-fonts +%reconfigure_fonts_scriptlets -n noto-serif-divesakuru-fonts + +%reconfigure_fonts_scriptlets -n noto-serif-dogra-fonts + %reconfigure_fonts_scriptlets -n noto-serif-ethiopic-fonts %reconfigure_fonts_scriptlets -n noto-serif-georgian-fonts +%reconfigure_fonts_scriptlets -n noto-serif-grantha-fonts + %reconfigure_fonts_scriptlets -n noto-serif-gujarati-fonts +%reconfigure_fonts_scriptlets -n noto-serif-gurmukhi-fonts + %reconfigure_fonts_scriptlets -n noto-serif-hebrew-fonts %reconfigure_fonts_scriptlets -n noto-serif-kannada-fonts %reconfigure_fonts_scriptlets -n noto-serif-khmer-fonts +%reconfigure_fonts_scriptlets -n noto-serif-khojki-fonts + %reconfigure_fonts_scriptlets -n noto-serif-lao-fonts +%reconfigure_fonts_scriptlets -n noto-serif-makasar-fonts + %reconfigure_fonts_scriptlets -n noto-serif-malayalam-fonts %reconfigure_fonts_scriptlets -n noto-serif-myanmar-fonts +%reconfigure_fonts_scriptlets -n noto-serif-nyiakengpuachuehmong-fonts + +%reconfigure_fonts_scriptlets -n noto-serif-olduyghur-fonts + +%reconfigure_fonts_scriptlets -n noto-serif-oriya-fonts + %reconfigure_fonts_scriptlets -n noto-serif-sinhala-fonts %reconfigure_fonts_scriptlets -n noto-serif-tamil-fonts +%reconfigure_fonts_scriptlets -n noto-serif-tamilslanted-fonts + +%reconfigure_fonts_scriptlets -n noto-serif-tangut-fonts + %reconfigure_fonts_scriptlets -n noto-serif-telugu-fonts %reconfigure_fonts_scriptlets -n noto-serif-thai-fonts +%reconfigure_fonts_scriptlets -n noto-serif-tibetan-fonts + +%reconfigure_fonts_scriptlets -n noto-serif-toto-fonts + +%reconfigure_fonts_scriptlets -n noto-serif-vithkuqi-fonts + +%reconfigure_fonts_scriptlets -n noto-serif-yezidi-fonts + +%reconfigure_fonts_scriptlets -n noto-tinos-fonts + +%reconfigure_fonts_scriptlets -n noto-traditionalnushu-fonts + %files doc %defattr(0644,root,root,755) -%doc LICENSE*.txt +%doc LICENSE + +%files -n noto-arimo-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/Arimo-*.?tf + +%files -n noto-cousine-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/Cousine-*.?tf %files -n noto-kufiarabic-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoKufiArabic-*.?tf -%files -n noto-mono-fonts +%files -n noto-loopedlao-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} -%{_ttfontsdir}/NotoMono-*.?tf +%{_ttfontsdir}/NotoLoopedLao-*.?tf + +%files -n noto-loopedlao-ui-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoLoopedLaoUI-*.?tf + +%files -n noto-loopedthai-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoLoopedThai-*.?tf + +%files -n noto-loopedthai-ui-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoLoopedThaiUI-*.?tf + +%files -n noto-music-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoMusic-*.?tf %files -n noto-naskharabic-fonts %defattr(0644,root,root,755) @@ -2102,6 +3491,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoNastaliqUrdu-*.?tf +%files -n noto-rashihebrew-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoRashiHebrew-*.?tf + %files -n noto-sans-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2152,6 +3546,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBamum-*.?tf +%files -n noto-sans-bassavah-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansBassaVah-*.?tf + %files -n noto-sans-batak-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2167,6 +3566,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBengaliUI-*.?tf +%files -n noto-sans-bhaiksuki-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansBhaiksuki-*.?tf + %files -n noto-sans-brahmi-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2192,6 +3596,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCarian-*.?tf +%files -n noto-sans-caucasianalbanian-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansCaucasianAlbanian-*.?tf + %files -n noto-sans-chakma-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2207,6 +3616,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCherokee-*.?tf +%files -n noto-sans-chorasmian-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansChorasmian-*.?tf + %files -n noto-sans-coptic-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2222,6 +3636,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCypriot-*.?tf +%files -n noto-sans-cyprominoan-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansCyproMinoan-*.?tf + %files -n noto-sans-deseret-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2237,16 +3656,26 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansDevanagariUI-*.?tf -%files -n noto-sans-display-fonts +%files -n noto-sans-duployan-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} -%{_ttfontsdir}/NotoSansDisplay-*.?tf +%{_ttfontsdir}/NotoSansDuployan-*.?tf %files -n noto-sans-egyptianhieroglyphs-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansEgyptianHieroglyphs-*.?tf +%files -n noto-sans-elbasan-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansElbasan-*.?tf + +%files -n noto-sans-elymaic-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansElymaic-*.?tf + %files -n noto-sans-ethiopic-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2267,6 +3696,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGothic-*.?tf +%files -n noto-sans-grantha-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansGrantha-*.?tf + %files -n noto-sans-gujarati-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2277,6 +3711,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGujaratiUI-*.?tf +%files -n noto-sans-gunjalagondi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansGunjalaGondi-*.?tf + %files -n noto-sans-gurmukhi-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2287,21 +3726,46 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGurmukhiUI-*.?tf +%files -n noto-sans-hanifirohingya-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansHanifiRohingya-*.?tf + %files -n noto-sans-hanunoo-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHanunoo-*.?tf +%files -n noto-sans-hatran-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansHatran-*.?tf + %files -n noto-sans-hebrew-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHebrew-*.?tf +%files -n noto-sans-hebrewdroid-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansHebrewDroid-*.?tf + +%files -n noto-sans-hebrewnew-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansHebrewNew-*.?tf + %files -n noto-sans-imperialaramaic-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansImperialAramaic-*.?tf +%files -n noto-sans-indicsiyaqnumbers-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansIndicSiyaqNumbers-*.?tf + %files -n noto-sans-inscriptionalpahlavi-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2352,6 +3816,16 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKhmerUI-*.?tf +%files -n noto-sans-khojki-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansKhojki-*.?tf + +%files -n noto-sans-khudawadi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansKhudawadi-*.?tf + %files -n noto-sans-lao-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2372,6 +3846,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLimbu-*.?tf +%files -n noto-sans-lineara-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansLinearA-*.?tf + %files -n noto-sans-linearb-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2392,6 +3871,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLydian-*.?tf +%files -n noto-sans-mahajani-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMahajani-*.?tf + %files -n noto-sans-malayalam-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2407,11 +3891,61 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMandaic-*.?tf +%files -n noto-sans-manichaean-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansManichaean-*.?tf + +%files -n noto-sans-marchen-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMarchen-*.?tf + +%files -n noto-sans-masaramgondi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMasaramGondi-*.?tf + +%files -n noto-sans-math-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMath-*.?tf + +%files -n noto-sans-mayannumerals-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMayanNumerals-*.?tf + +%files -n noto-sans-medefaidrin-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMedefaidrin-*.?tf + %files -n noto-sans-meeteimayek-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMeeteiMayek-*.?tf +%files -n noto-sans-mendekikakui-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMendeKikakui-*.?tf + +%files -n noto-sans-meroitic-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMeroitic-*.?tf + +%files -n noto-sans-miao-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMiao-*.?tf + +%files -n noto-sans-modi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansModi-*.?tf + %files -n noto-sans-mongolian-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2422,6 +3956,16 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMono-*.?tf +%files -n noto-sans-mro-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMro-*.?tf + +%files -n noto-sans-multani-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansMultani-*.?tf + %files -n noto-sans-myanmar-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2432,6 +3976,21 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMyanmarUI-*.?tf +%files -n noto-sans-nabataean-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansNabataean-*.?tf + +%files -n noto-sans-nandinagari-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansNandinagari-*.?tf + +%files -n noto-sans-newa-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansNewa-*.?tf + %files -n noto-sans-newtailue-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2442,6 +4001,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansNKo-*.?tf +%files -n noto-sans-nushu-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansNushu-*.?tf + %files -n noto-sans-ogham-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2452,16 +4016,36 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOlChiki-*.?tf +%files -n noto-sans-oldhungarian-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansOldHungarian-*.?tf + %files -n noto-sans-olditalic-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldItalic-*.?tf +%files -n noto-sans-oldnortharabian-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansOldNorthArabian-*.?tf + +%files -n noto-sans-oldpermic-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansOldPermic-*.?tf + %files -n noto-sans-oldpersian-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldPersian-*.?tf +%files -n noto-sans-oldsogdian-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansOldSogdian-*.?tf + %files -n noto-sans-oldsoutharabian-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2492,6 +4076,21 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOsmanya-*.?tf +%files -n noto-sans-pahawhhmong-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansPahawhHmong-*.?tf + +%files -n noto-sans-palmyrene-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansPalmyrene-*.?tf + +%files -n noto-sans-paucinhau-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansPauCinHau-*.?tf + %files -n noto-sans-phagspa-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2502,6 +4101,11 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansPhoenician-*.?tf +%files -n noto-sans-psalterpahlavi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansPsalterPahlavi-*.?tf + %files -n noto-sans-rejang-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2522,11 +4126,26 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSaurashtra-*.?tf +%files -n noto-sans-sharada-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansSharada-*.?tf + %files -n noto-sans-shavian-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansShavian-*.?tf +%files -n noto-sans-siddham-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansSiddham-*.?tf + +%files -n noto-sans-signwriting-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansSignWriting-*.?tf + %files -n noto-sans-sinhala-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2537,6 +4156,21 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSinhalaUI-*.?tf +%files -n noto-sans-sogdian-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansSogdian-*.?tf + +%files -n noto-sans-sorasompeng-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansSoraSompeng-*.?tf + +%files -n noto-sans-soyombo-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansSoyombo-*.?tf + %files -n noto-sans-sundanese-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2557,20 +4191,10 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSymbols2-*.?tf -%files -n noto-sans-syriaceastern-fonts +%files -n noto-sans-syriac-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} -%{_ttfontsdir}/NotoSansSyriacEastern-*.?tf - -%files -n noto-sans-syriacestrangela-fonts -%defattr(0644,root,root,755) -%dir %{_ttfontsdir} -%{_ttfontsdir}/NotoSansSyriacEstrangela-*.?tf - -%files -n noto-sans-syriacwestern-fonts -%defattr(0644,root,root,755) -%dir %{_ttfontsdir} -%{_ttfontsdir}/NotoSansSyriacWestern-*.?tf +%{_ttfontsdir}/NotoSansSyriac-*.?tf %files -n noto-sans-tagalog-fonts %defattr(0644,root,root,755) @@ -2597,16 +4221,31 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTaiViet-*.?tf +%files -n noto-sans-takri-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTakri-*.?tf + %files -n noto-sans-tamil-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTamil-*.?tf +%files -n noto-sans-tamilsupplement-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTamilSupplement-*.?tf + %files -n noto-sans-tamil-ui-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTamilUI-*.?tf +%files -n noto-sans-tangsa-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTangsa-*.?tf + %files -n noto-sans-telugu-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2632,16 +4271,71 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansThaiUI-*.?tf -%files -n noto-sans-tibetan-fonts -%defattr(0644,root,root,755) -%dir %{_ttfontsdir} -%{_ttfontsdir}/NotoSansTibetan-*.?tf - %files -n noto-sans-tifinagh-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinagh-*.?tf +%files -n noto-sans-tifinaghadrar-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghAdrar-*.?tf + +%files -n noto-sans-tifinaghagrawimazighen-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghAgrawImazighen-*.?tf + +%files -n noto-sans-tifinaghahaggar-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghAhaggar-*.?tf + +%files -n noto-sans-tifinaghair-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghAir-*.?tf + +%files -n noto-sans-tifinaghapt-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghAPT-*.?tf + +%files -n noto-sans-tifinaghazawagh-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghAzawagh-*.?tf + +%files -n noto-sans-tifinaghghat-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghGhat-*.?tf + +%files -n noto-sans-tifinaghhawad-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghHawad-*.?tf + +%files -n noto-sans-tifinaghrhissaixa-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghRhissaIxa-*.?tf + +%files -n noto-sans-tifinaghsil-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghSIL-*.?tf + +%files -n noto-sans-tifinaghtawellemmet-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTifinaghTawellemmet-*.?tf + +%files -n noto-sans-tirhuta-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansTirhuta-*.?tf + %files -n noto-sans-ugaritic-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2652,21 +4346,51 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansVai-*.?tf +%files -n noto-sans-vithkuqi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansVithkuqi-*.?tf + +%files -n noto-sans-wancho-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansWancho-*.?tf + +%files -n noto-sans-warangciti-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansWarangCiti-*.?tf + %files -n noto-sans-yi-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansYi-*.?tf +%files -n noto-sans-zanabazarsquare-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSansZanabazarSquare-*.?tf + %files -n noto-serif-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerif-*.?tf +%files -n noto-serif-ahom-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifAhom-*.?tf + %files -n noto-serif-armenian-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifArmenian-*.?tf +%files -n noto-serif-balinese-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifBalinese-*.?tf + %files -n noto-serif-bengali-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2682,6 +4406,16 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifDisplay-*.?tf +%files -n noto-serif-divesakuru-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifDivesAkuru-*.?tf + +%files -n noto-serif-dogra-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifDogra-*.?tf + %files -n noto-serif-ethiopic-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2692,11 +4426,21 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifGeorgian-*.?tf +%files -n noto-serif-grantha-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifGrantha-*.?tf + %files -n noto-serif-gujarati-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifGujarati-*.?tf +%files -n noto-serif-gurmukhi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifGurmukhi-*.?tf + %files -n noto-serif-hebrew-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2712,11 +4456,21 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifKhmer-*.?tf +%files -n noto-serif-khojki-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifKhojki-*.?tf + %files -n noto-serif-lao-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifLao-*.?tf +%files -n noto-serif-makasar-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifMakasar-*.?tf + %files -n noto-serif-malayalam-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2727,6 +4481,21 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifMyanmar-*.?tf +%files -n noto-serif-nyiakengpuachuehmong-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifNyiakengPuachueHmong-*.?tf + +%files -n noto-serif-olduyghur-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifOldUyghur-*.?tf + +%files -n noto-serif-oriya-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifOriya-*.?tf + %files -n noto-serif-sinhala-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2737,6 +4506,16 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifTamil-*.?tf +%files -n noto-serif-tamilslanted-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifTamilSlanted-*.?tf + +%files -n noto-serif-tangut-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifTangut-*.?tf + %files -n noto-serif-telugu-fonts %defattr(0644,root,root,755) %dir %{_ttfontsdir} @@ -2747,4 +4526,34 @@ cp *.?tf %{buildroot}%{_ttfontsdir}/ %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifThai-*.?tf +%files -n noto-serif-tibetan-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifTibetan-*.?tf + +%files -n noto-serif-toto-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifToto-*.?tf + +%files -n noto-serif-vithkuqi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifVithkuqi-*.?tf + +%files -n noto-serif-yezidi-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoSerifYezidi-*.?tf + +%files -n noto-tinos-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/Tinos-*.?tf + +%files -n noto-traditionalnushu-fonts +%defattr(0644,root,root,755) +%dir %{_ttfontsdir} +%{_ttfontsdir}/NotoTraditionalNushu-*.?tf + %changelog diff --git a/google-noto-fonts.spec.in b/google-noto-fonts.spec.in index cc8b2d4..90b473d 100644 --- a/google-noto-fonts.spec.in +++ b/google-noto-fonts.spec.in @@ -1,7 +1,7 @@ # # spec file for package google-noto-fonts # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,12 +16,13 @@ # -%define hyear 2017 -%define hmonth 09 -%define hday 19 +%define hyear 2022 +%define hmonth 05 +%define hday 16 + %define src_name NotoFonts -# DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-specfile.sh script +# DO NOT EDIT THIS SPECFILE DIRECTLY, edit google-noto-fonts.spec.in and run generate-fonts-and-specfile.sh script Name: google-noto-fonts Version: %{hyear}%{hmonth}%{hday} @@ -29,11 +30,12 @@ Release: 0 Summary: Noto Font Families License: OFL-1.1 Group: System/X11/Fonts -Url: https://github.com/googlei18n/noto-fonts -Source0: https://noto-website-2.storage.googleapis.com/pkgs/Noto-hinted.zip -Source1: generate-specfile.sh +Url: https://github.com/googlefonts/noto-fonts +# Generate Source0 via generate-fonts-and-specfile.sh +Source0: otf.tar.gz +Source1: generate-fonts-and-specfile.sh +Source2: LICENSE BuildRequires: fontpackages-devel -BuildRequires: unzip BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch @@ -49,25 +51,29 @@ Group: Documentation/Other License for Google's Noto fonts. @SUBPACKAGE_HEADERS@ - %prep -%setup -q -c -n %{name}-%{version} -# remove cjk -rm -rf *CJK*.?tf -# remove emoji -rm -rf *Emoji*.ttf +tar -xzf %{SOURCE0} -C . +cp %{SOURCE2} . %build %install mkdir -p %{buildroot}%{_ttfontsdir} -cp *.?tf %{buildroot}%{_ttfontsdir}/ +# Tifinagh fonts have duplicates in NotoSansTifinagh folder +# https://github.com/googlefonts/noto-fonts/issues/2177 and https://github.com/googlefonts/noto-fonts/issues/2326 +rm otf/NotoSansTifinagh/NotoSansTifinagh[!\-]* + +# NotoSansDisplay is already provided by NotoSans +# Also they have inconsistent family names: https://github.com/googlefonts/noto-fonts/issues/2315 +rm -r otf/NotoSansDisplay/ + +cp otf/*/*.otf %{buildroot}%{_ttfontsdir}/ @SUBPACKAGE_SCRIPTLETS@ %files doc %defattr(0644,root,root,755) -%doc LICENSE*.txt +%doc LICENSE @SUBPACKAGE_FILELISTS@ diff --git a/otf.tar.gz b/otf.tar.gz new file mode 100644 index 0000000..dbffa73 --- /dev/null +++ b/otf.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864eb89d1c0467e00d4ce8999ae4c06719b2bd7c5c925ff992663bf43840a37c +size 351664455