From 91d45acb8bf4d0c705a112b2357e10605bcb1ef7f1e95751c04e2969159946b1 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Tue, 14 Jun 2022 11:58:14 +0000 Subject: [PATCH] Accepting request 982316 from home:Pi-Cla:branches:M17N:fonts update: 20220524 -> 20220607 - Noto Sans and Noto Sans Myanmar have been updated fix(spec): add LICENSE to every package, remove redundant doc package - It is likely a legal requirement that the license must be included with the package (rather than only recommends) - Using the %license macro and including the license in every subpackage is the norm fix(sh): prevent redundant .svn files from being compressed into archive chore(spec): use install instead of mkdir and cp chore(sh): fix typo OBS-URL: https://build.opensuse.org/request/show/982316 OBS-URL: https://build.opensuse.org/package/show/M17N:fonts/google-noto-fonts?expand=0&rev=51 --- generate-fonts-and-specfile.sh | 14 +- google-noto-fonts.changes | 14 + google-noto-fonts.spec | 468 ++++++++++++++++----------------- google-noto-fonts.spec.in | 24 +- ttf.tar.gz | 4 +- 5 files changed, 254 insertions(+), 270 deletions(-) diff --git a/generate-fonts-and-specfile.sh b/generate-fonts-and-specfile.sh index 4ff96e4..1d6b675 100644 --- a/generate-fonts-and-specfile.sh +++ b/generate-fonts-and-specfile.sh @@ -2,9 +2,9 @@ pkg_name="google-noto-fonts" font_dir="ttf" -# Get only the otf fonts +# Get only the hinted fonts svn checkout https://github.com/googlefonts/noto-fonts/trunk/hinted/$font_dir -tar -cvzf $font_dir.tar.gz $font_dir +tar -cvzf $font_dir.tar.gz $font_dir/[!\.]* cp -f $pkg_name.spec.in $pkg_name.spec ls $font_dir/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc::' | sort -f | uniq | while read font; do @@ -38,12 +38,8 @@ ls $font_dir/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc:: OBSOLETES=($packagename 'noto-sans-syriacwestern' 'noto-sans-syriacwestern-fonts' 'noto-sans-syriacestrangela' 'noto-sans-syriacestrangela-fonts' 'noto-sans-syriaceastern' 'noto-sans-syriaceastern-fonts') elif [ $packagename == "noto-sans-mono" ]; then OBSOLETES=($packagename 'noto-mono' 'noto-mono-fonts') - elif [ $packagename == "noto-arimo" ]; then - OBSOLETES=($packagename 'google-arimo') - elif [ $packagename == "noto-cousine" ]; then - OBSOLETES=($packagename 'google-cousine') - elif [ $packagename == "noto-tinos" ]; then - OBSOLETES=($packagename 'google-tinos') + elif [ $packagename == "noto-arimo" ] || [ $packagename == "noto-cousine" ] || [ $packagename == "noto-tinos" ]; then + OBSOLETES=($packagename `echo "google-$serif-fonts" | tr [A-Z] [a-z]`) else OBSOLETES=($packagename) fi @@ -56,7 +52,6 @@ ls $font_dir/ | sed -e 's:Noto::' -e 's:-.*\..tf::' -e 's:\..tf::' -e 's:\.ttc:: sed -i "s/@SUBPACKAGE_HEADERS@/%package -n $packagename\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/Summary: $summary\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s;@SUBPACKAGE_HEADERS@;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 < %{version}\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_HEADERS@/Provides: $i = %{version}\n@SUBPACKAGE_HEADERS@/" $pkg_name.spec @@ -77,6 +72,7 @@ ls $font_dir/ | 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@/%license LICENSE\n@SUBPACKAGE_FILELISTS@/" $pkg_name.spec sed -i "s/@SUBPACKAGE_FILELISTS@/%dir %{_ttfontsdir}\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 diff --git a/google-noto-fonts.changes b/google-noto-fonts.changes index d1ab971..113e9da 100644 --- a/google-noto-fonts.changes +++ b/google-noto-fonts.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Sun Jun 12 22:29:40 UTC 2022 - Gordon Leung - 20220607 + +update: 20220524 -> 20220607 +- Noto Sans and Noto Sans Myanmar have been updated + +fix(spec): add LICENSE to every package, remove redundant doc package +- It is likely a legal requirement that the license must be included with the package (rather than only recommends) +- Using the %license macro and including the license in every subpackage is the norm + +fix(sh): prevent redundant .svn files from being compressed into archive +chore(spec): use install instead of mkdir and cp +chore(sh): fix typo + ------------------------------------------------------------------- Wed Jun 1 08:43:48 UTC 2022 - Bruno Pitrus - Add obsoletes and provides for google-{arimo,cousine,tinos}-fonts diff --git a/google-noto-fonts.spec b/google-noto-fonts.spec index 2fe70c6..1babdd9 100644 --- a/google-noto-fonts.spec +++ b/google-noto-fonts.spec @@ -17,8 +17,8 @@ %define hyear 2022 -%define hmonth 05 -%define hday 24 +%define hmonth 06 +%define hday 07 %define src_name NotoFonts @@ -40,20 +40,12 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch %description -Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke +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 -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} Obsoletes: google-arimo-fonts < %{version} @@ -68,7 +60,6 @@ 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} Obsoletes: google-cousine-fonts < %{version} @@ -83,7 +74,6 @@ 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 < %{version} Provides: noto-kufiarabic = %{version} %reconfigure_fonts_prereq @@ -96,7 +86,6 @@ KufiArabic font, hinted. %package -n noto-loopedlao-fonts Summary: Noto Looped Lao Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-loopedlao < %{version} Provides: noto-loopedlao = %{version} %reconfigure_fonts_prereq @@ -109,7 +98,6 @@ 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 @@ -122,7 +110,6 @@ 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 @@ -135,7 +122,6 @@ 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 @@ -148,7 +134,6 @@ 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 @@ -161,7 +146,6 @@ 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 < %{version} Provides: noto-naskharabic = %{version} %reconfigure_fonts_prereq @@ -174,7 +158,6 @@ NaskhArabic font, hinted. %package -n noto-naskharabic-ui-fonts Summary: Noto Naskh Arabic Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-naskharabic-ui < %{version} Provides: noto-naskharabic-ui = %{version} %reconfigure_fonts_prereq @@ -187,7 +170,6 @@ NaskhArabic font, hinted. %package -n noto-nastaliqurdu-fonts Summary: Noto Nastaliq Urdu Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-nastaliqurdu < %{version} Provides: noto-nastaliqurdu = %{version} %reconfigure_fonts_prereq @@ -200,7 +182,6 @@ 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 @@ -213,7 +194,6 @@ RashiHebrew font, hinted. %package -n noto-sans-fonts Summary: Noto Sans Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans < %{version} Provides: noto-sans = %{version} Obsoletes: noto-sans-display < %{version} @@ -230,7 +210,6 @@ Sans font, hinted. %package -n noto-sans-adlam-fonts Summary: Noto Adlam Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-adlam < %{version} Provides: noto-sans-adlam = %{version} %reconfigure_fonts_prereq @@ -243,7 +222,6 @@ Adlam Sans Serif font, hinted. %package -n noto-sans-adlamunjoined-fonts Summary: Noto Adlam Unjoined Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-adlamunjoined < %{version} Provides: noto-sans-adlamunjoined = %{version} %reconfigure_fonts_prereq @@ -256,7 +234,6 @@ AdlamUnjoined Sans Serif font, hinted. %package -n noto-sans-anatolianhieroglyphs-fonts Summary: Noto Anatolian Hieroglyphs Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-anatolianhieroglyphs < %{version} Provides: noto-sans-anatolianhieroglyphs = %{version} %reconfigure_fonts_prereq @@ -269,7 +246,6 @@ AnatolianHieroglyphs Sans Serif font, hinted. %package -n noto-sans-arabic-fonts Summary: Noto Arabic Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-arabic < %{version} Provides: noto-sans-arabic = %{version} %reconfigure_fonts_prereq @@ -282,7 +258,6 @@ Arabic Sans Serif font, hinted. %package -n noto-sans-arabic-ui-fonts Summary: Noto Arabic Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-arabic-ui < %{version} Provides: noto-sans-arabic-ui = %{version} %reconfigure_fonts_prereq @@ -295,7 +270,6 @@ Arabic Sans Serif font, hinted. %package -n noto-sans-armenian-fonts Summary: Noto Armenian Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-armenian < %{version} Provides: noto-sans-armenian = %{version} %reconfigure_fonts_prereq @@ -308,7 +282,6 @@ Armenian Sans Serif font, hinted. %package -n noto-sans-avestan-fonts Summary: Noto Avestan Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-avestan < %{version} Provides: noto-sans-avestan = %{version} %reconfigure_fonts_prereq @@ -321,7 +294,6 @@ Avestan Sans Serif font, hinted. %package -n noto-sans-balinese-fonts Summary: Noto Balinese Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-balinese < %{version} Provides: noto-sans-balinese = %{version} %reconfigure_fonts_prereq @@ -334,7 +306,6 @@ Balinese Sans Serif font, hinted. %package -n noto-sans-bamum-fonts Summary: Noto Bamum Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-bamum < %{version} Provides: noto-sans-bamum = %{version} %reconfigure_fonts_prereq @@ -347,7 +318,6 @@ 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 @@ -360,7 +330,6 @@ 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 < %{version} Provides: noto-sans-batak = %{version} %reconfigure_fonts_prereq @@ -373,7 +342,6 @@ Batak Sans Serif font, hinted. %package -n noto-sans-bengali-fonts Summary: Noto Bengali Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-bengali < %{version} Provides: noto-sans-bengali = %{version} %reconfigure_fonts_prereq @@ -386,7 +354,6 @@ Bengali Sans Serif font, hinted. %package -n noto-sans-bengali-ui-fonts Summary: Noto Bengali Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-bengali-ui < %{version} Provides: noto-sans-bengali-ui = %{version} %reconfigure_fonts_prereq @@ -399,7 +366,6 @@ 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 @@ -412,7 +378,6 @@ 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 < %{version} Provides: noto-sans-brahmi = %{version} %reconfigure_fonts_prereq @@ -425,7 +390,6 @@ Brahmi Sans Serif font, hinted. %package -n noto-sans-buginese-fonts Summary: Noto Buginese Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-buginese < %{version} Provides: noto-sans-buginese = %{version} %reconfigure_fonts_prereq @@ -438,7 +402,6 @@ Buginese Sans Serif font, hinted. %package -n noto-sans-buhid-fonts Summary: Noto Buhid Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-buhid < %{version} Provides: noto-sans-buhid = %{version} %reconfigure_fonts_prereq @@ -451,7 +414,6 @@ Buhid Sans Serif font, hinted. %package -n noto-sans-canadianaboriginal-fonts Summary: Noto Canadian Aboriginal Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-canadianaboriginal < %{version} Provides: noto-sans-canadianaboriginal = %{version} %reconfigure_fonts_prereq @@ -464,7 +426,6 @@ CanadianAboriginal Sans Serif font, hinted. %package -n noto-sans-carian-fonts Summary: Noto Carian Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-carian < %{version} Provides: noto-sans-carian = %{version} %reconfigure_fonts_prereq @@ -477,7 +438,6 @@ 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 @@ -490,7 +450,6 @@ 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 < %{version} Provides: noto-sans-chakma = %{version} %reconfigure_fonts_prereq @@ -503,7 +462,6 @@ Chakma Sans Serif font, hinted. %package -n noto-sans-cham-fonts Summary: Noto Cham Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-cham < %{version} Provides: noto-sans-cham = %{version} %reconfigure_fonts_prereq @@ -516,7 +474,6 @@ Cham Sans Serif font, hinted. %package -n noto-sans-cherokee-fonts Summary: Noto Cherokee Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-cherokee < %{version} Provides: noto-sans-cherokee = %{version} %reconfigure_fonts_prereq @@ -529,7 +486,6 @@ 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 @@ -542,7 +498,6 @@ 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 < %{version} Provides: noto-sans-coptic = %{version} %reconfigure_fonts_prereq @@ -555,7 +510,6 @@ Coptic Sans Serif font, hinted. %package -n noto-sans-cuneiform-fonts Summary: Noto Cuneiform Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-cuneiform < %{version} Provides: noto-sans-cuneiform = %{version} %reconfigure_fonts_prereq @@ -568,7 +522,6 @@ Cuneiform Sans Serif font, hinted. %package -n noto-sans-cypriot-fonts Summary: Noto Cypriot Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-cypriot < %{version} Provides: noto-sans-cypriot = %{version} %reconfigure_fonts_prereq @@ -581,7 +534,6 @@ 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 @@ -594,7 +546,6 @@ 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 < %{version} Provides: noto-sans-deseret = %{version} %reconfigure_fonts_prereq @@ -607,7 +558,6 @@ Deseret Sans Serif font, hinted. %package -n noto-sans-devanagari-fonts Summary: Noto Devanagari Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-devanagari < %{version} Provides: noto-sans-devanagari = %{version} %reconfigure_fonts_prereq @@ -620,7 +570,6 @@ Devanagari Sans Serif font, hinted. %package -n noto-sans-devanagari-ui-fonts Summary: Noto Devanagari Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-devanagari-ui < %{version} Provides: noto-sans-devanagari-ui = %{version} %reconfigure_fonts_prereq @@ -633,7 +582,6 @@ Devanagari Sans Serif font, hinted. %package -n noto-sans-duployan-fonts Summary: Noto Duployan Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-duployan < %{version} Provides: noto-sans-duployan = %{version} %reconfigure_fonts_prereq @@ -646,7 +594,6 @@ 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 < %{version} Provides: noto-sans-egyptianhieroglyphs = %{version} %reconfigure_fonts_prereq @@ -659,7 +606,6 @@ 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 @@ -672,7 +618,6 @@ 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 @@ -685,7 +630,6 @@ 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 < %{version} Provides: noto-sans-ethiopic = %{version} %reconfigure_fonts_prereq @@ -698,7 +642,6 @@ Ethiopic Sans Serif font, hinted. %package -n noto-sans-georgian-fonts Summary: Noto Georgian Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-georgian < %{version} Provides: noto-sans-georgian = %{version} %reconfigure_fonts_prereq @@ -711,7 +654,6 @@ Georgian Sans Serif font, hinted. %package -n noto-sans-glagolitic-fonts Summary: Noto Glagolitic Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-glagolitic < %{version} Provides: noto-sans-glagolitic = %{version} %reconfigure_fonts_prereq @@ -724,7 +666,6 @@ Glagolitic Sans Serif font, hinted. %package -n noto-sans-gothic-fonts Summary: Noto Gothic Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-gothic < %{version} Provides: noto-sans-gothic = %{version} %reconfigure_fonts_prereq @@ -737,7 +678,6 @@ 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 @@ -750,7 +690,6 @@ 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 < %{version} Provides: noto-sans-gujarati = %{version} %reconfigure_fonts_prereq @@ -763,7 +702,6 @@ Gujarati Sans Serif font, hinted. %package -n noto-sans-gujarati-ui-fonts Summary: Noto Gujarati Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-gujarati-ui < %{version} Provides: noto-sans-gujarati-ui = %{version} %reconfigure_fonts_prereq @@ -776,7 +714,6 @@ 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 @@ -789,7 +726,6 @@ 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 < %{version} Provides: noto-sans-gurmukhi = %{version} %reconfigure_fonts_prereq @@ -802,7 +738,6 @@ Gurmukhi Sans Serif font, hinted. %package -n noto-sans-gurmukhi-ui-fonts Summary: Noto Gurmukhi Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-gurmukhi-ui < %{version} Provides: noto-sans-gurmukhi-ui = %{version} %reconfigure_fonts_prereq @@ -815,7 +750,6 @@ 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 @@ -828,7 +762,6 @@ 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 < %{version} Provides: noto-sans-hanunoo = %{version} %reconfigure_fonts_prereq @@ -841,7 +774,6 @@ 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 @@ -854,7 +786,6 @@ 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 < %{version} Provides: noto-sans-hebrew = %{version} %reconfigure_fonts_prereq @@ -867,7 +798,6 @@ 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 @@ -880,7 +810,6 @@ 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 @@ -893,7 +822,6 @@ 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 < %{version} Provides: noto-sans-imperialaramaic = %{version} %reconfigure_fonts_prereq @@ -906,7 +834,6 @@ 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 @@ -919,7 +846,6 @@ 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 < %{version} Provides: noto-sans-inscriptionalpahlavi = %{version} %reconfigure_fonts_prereq @@ -932,7 +858,6 @@ InscriptionalPahlavi Sans Serif font, hinted. %package -n noto-sans-inscriptionalparthian-fonts Summary: Noto Inscriptional Parthian Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-inscriptionalparthian < %{version} Provides: noto-sans-inscriptionalparthian = %{version} %reconfigure_fonts_prereq @@ -945,7 +870,6 @@ InscriptionalParthian Sans Serif font, hinted. %package -n noto-sans-javanese-fonts Summary: Noto Javanese Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-javanese < %{version} Provides: noto-sans-javanese = %{version} %reconfigure_fonts_prereq @@ -958,7 +882,6 @@ Javanese Sans Serif font, hinted. %package -n noto-sans-kaithi-fonts Summary: Noto Kaithi Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-kaithi < %{version} Provides: noto-sans-kaithi = %{version} %reconfigure_fonts_prereq @@ -971,7 +894,6 @@ Kaithi Sans Serif font, hinted. %package -n noto-sans-kannada-fonts Summary: Noto Kannada Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-kannada < %{version} Provides: noto-sans-kannada = %{version} %reconfigure_fonts_prereq @@ -984,7 +906,6 @@ Kannada Sans Serif font, hinted. %package -n noto-sans-kannada-ui-fonts Summary: Noto Kannada Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-kannada-ui < %{version} Provides: noto-sans-kannada-ui = %{version} %reconfigure_fonts_prereq @@ -997,7 +918,6 @@ Kannada Sans Serif font, hinted. %package -n noto-sans-kayahli-fonts Summary: Noto Kayah Li Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-kayahli < %{version} Provides: noto-sans-kayahli = %{version} %reconfigure_fonts_prereq @@ -1010,7 +930,6 @@ KayahLi Sans Serif font, hinted. %package -n noto-sans-kharoshthi-fonts Summary: Noto Kharoshthi Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-kharoshthi < %{version} Provides: noto-sans-kharoshthi = %{version} %reconfigure_fonts_prereq @@ -1023,7 +942,6 @@ Kharoshthi Sans Serif font, hinted. %package -n noto-sans-khmer-fonts Summary: Noto Khmer Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-khmer < %{version} Provides: noto-sans-khmer = %{version} %reconfigure_fonts_prereq @@ -1036,7 +954,6 @@ Khmer Sans Serif font, hinted. %package -n noto-sans-khmer-ui-fonts Summary: Noto Khmer Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-khmer-ui < %{version} Provides: noto-sans-khmer-ui = %{version} %reconfigure_fonts_prereq @@ -1049,7 +966,6 @@ 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 @@ -1062,7 +978,6 @@ 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 @@ -1075,7 +990,6 @@ 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 < %{version} Provides: noto-sans-lao = %{version} %reconfigure_fonts_prereq @@ -1088,7 +1002,6 @@ Lao Sans Serif font, hinted. %package -n noto-sans-lao-ui-fonts Summary: Noto Lao Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-lao-ui < %{version} Provides: noto-sans-lao-ui = %{version} %reconfigure_fonts_prereq @@ -1101,7 +1014,6 @@ Lao Sans Serif font, hinted. %package -n noto-sans-lepcha-fonts Summary: Noto Lepcha Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-lepcha < %{version} Provides: noto-sans-lepcha = %{version} %reconfigure_fonts_prereq @@ -1114,7 +1026,6 @@ Lepcha Sans Serif font, hinted. %package -n noto-sans-limbu-fonts Summary: Noto Limbu Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-limbu < %{version} Provides: noto-sans-limbu = %{version} %reconfigure_fonts_prereq @@ -1127,7 +1038,6 @@ 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 @@ -1140,7 +1050,6 @@ 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 < %{version} Provides: noto-sans-linearb = %{version} %reconfigure_fonts_prereq @@ -1153,7 +1062,6 @@ LinearB Sans Serif font, hinted. %package -n noto-sans-lisu-fonts Summary: Noto Lisu Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-lisu < %{version} Provides: noto-sans-lisu = %{version} %reconfigure_fonts_prereq @@ -1166,7 +1074,6 @@ Lisu Sans Serif font, hinted. %package -n noto-sans-lycian-fonts Summary: Noto Lycian Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-lycian < %{version} Provides: noto-sans-lycian = %{version} %reconfigure_fonts_prereq @@ -1179,7 +1086,6 @@ Lycian Sans Serif font, hinted. %package -n noto-sans-lydian-fonts Summary: Noto Lydian Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-lydian < %{version} Provides: noto-sans-lydian = %{version} %reconfigure_fonts_prereq @@ -1192,7 +1098,6 @@ 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 @@ -1205,7 +1110,6 @@ 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 < %{version} Provides: noto-sans-malayalam = %{version} %reconfigure_fonts_prereq @@ -1218,7 +1122,6 @@ Malayalam Sans Serif font, hinted. %package -n noto-sans-malayalam-ui-fonts Summary: Noto Malayalam Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-malayalam-ui < %{version} Provides: noto-sans-malayalam-ui = %{version} %reconfigure_fonts_prereq @@ -1231,7 +1134,6 @@ Malayalam Sans Serif font, hinted. %package -n noto-sans-mandaic-fonts Summary: Noto Mandaic Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-mandaic < %{version} Provides: noto-sans-mandaic = %{version} %reconfigure_fonts_prereq @@ -1244,7 +1146,6 @@ 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 @@ -1257,7 +1158,6 @@ 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 @@ -1270,7 +1170,6 @@ 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 @@ -1283,7 +1182,6 @@ 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 @@ -1296,7 +1194,6 @@ 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 @@ -1309,7 +1206,6 @@ 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 @@ -1322,7 +1218,6 @@ 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 < %{version} Provides: noto-sans-meeteimayek = %{version} %reconfigure_fonts_prereq @@ -1335,7 +1230,6 @@ 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 @@ -1348,7 +1242,6 @@ 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 @@ -1361,7 +1254,6 @@ 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 @@ -1374,7 +1266,6 @@ 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 @@ -1387,7 +1278,6 @@ 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 < %{version} Provides: noto-sans-mongolian = %{version} %reconfigure_fonts_prereq @@ -1400,7 +1290,6 @@ Mongolian Sans Serif font, hinted. %package -n noto-sans-mono-fonts Summary: Noto Mono Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-mono < %{version} Provides: noto-sans-mono = %{version} Obsoletes: noto-mono < %{version} @@ -1417,7 +1306,6 @@ 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 @@ -1430,7 +1318,6 @@ 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 @@ -1443,7 +1330,6 @@ 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 < %{version} Provides: noto-sans-myanmar = %{version} %reconfigure_fonts_prereq @@ -1456,7 +1342,6 @@ Myanmar Sans Serif font, hinted. %package -n noto-sans-myanmar-ui-fonts Summary: Noto Myanmar Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-myanmar-ui < %{version} Provides: noto-sans-myanmar-ui = %{version} %reconfigure_fonts_prereq @@ -1469,7 +1354,6 @@ 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 @@ -1482,7 +1366,6 @@ 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 @@ -1495,7 +1378,6 @@ 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 @@ -1508,7 +1390,6 @@ 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 < %{version} Provides: noto-sans-newtailue = %{version} %reconfigure_fonts_prereq @@ -1521,7 +1402,6 @@ NewTaiLue Sans Serif font, hinted. %package -n noto-sans-nko-fonts Summary: Noto NKo Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-nko < %{version} Provides: noto-sans-nko = %{version} %reconfigure_fonts_prereq @@ -1534,7 +1414,6 @@ 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 @@ -1547,7 +1426,6 @@ 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 < %{version} Provides: noto-sans-ogham = %{version} %reconfigure_fonts_prereq @@ -1560,7 +1438,6 @@ Ogham Sans Serif font, hinted. %package -n noto-sans-olchiki-fonts Summary: Noto Ol Chiki Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-olchiki < %{version} Provides: noto-sans-olchiki = %{version} %reconfigure_fonts_prereq @@ -1573,7 +1450,6 @@ 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 @@ -1586,7 +1462,6 @@ 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 < %{version} Provides: noto-sans-olditalic = %{version} %reconfigure_fonts_prereq @@ -1599,7 +1474,6 @@ 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 @@ -1612,7 +1486,6 @@ 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 @@ -1625,7 +1498,6 @@ 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 < %{version} Provides: noto-sans-oldpersian = %{version} %reconfigure_fonts_prereq @@ -1638,7 +1510,6 @@ 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 @@ -1651,7 +1522,6 @@ 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 < %{version} Provides: noto-sans-oldsoutharabian = %{version} %reconfigure_fonts_prereq @@ -1664,7 +1534,6 @@ OldSouthArabian Sans Serif font, hinted. %package -n noto-sans-oldturkic-fonts Summary: Noto Old Turkic Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-oldturkic < %{version} Provides: noto-sans-oldturkic = %{version} %reconfigure_fonts_prereq @@ -1677,7 +1546,6 @@ OldTurkic Sans Serif font, hinted. %package -n noto-sans-oriya-fonts Summary: Noto Oriya Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-oriya < %{version} Provides: noto-sans-oriya = %{version} %reconfigure_fonts_prereq @@ -1690,7 +1558,6 @@ Oriya Sans Serif font, hinted. %package -n noto-sans-oriya-ui-fonts Summary: Noto Oriya Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-oriya-ui < %{version} Provides: noto-sans-oriya-ui = %{version} %reconfigure_fonts_prereq @@ -1703,7 +1570,6 @@ Oriya Sans Serif font, hinted. %package -n noto-sans-osage-fonts Summary: Noto Osage Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-osage < %{version} Provides: noto-sans-osage = %{version} %reconfigure_fonts_prereq @@ -1716,7 +1582,6 @@ Osage Sans Serif font, hinted. %package -n noto-sans-osmanya-fonts Summary: Noto Osmanya Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-osmanya < %{version} Provides: noto-sans-osmanya = %{version} %reconfigure_fonts_prereq @@ -1729,7 +1594,6 @@ 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 @@ -1742,7 +1606,6 @@ 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 @@ -1755,7 +1618,6 @@ 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 @@ -1768,7 +1630,6 @@ 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 < %{version} Provides: noto-sans-phagspa = %{version} %reconfigure_fonts_prereq @@ -1781,7 +1642,6 @@ PhagsPa Sans Serif font, hinted. %package -n noto-sans-phoenician-fonts Summary: Noto Phoenician Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-phoenician < %{version} Provides: noto-sans-phoenician = %{version} %reconfigure_fonts_prereq @@ -1794,7 +1654,6 @@ 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 @@ -1807,7 +1666,6 @@ 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 < %{version} Provides: noto-sans-rejang = %{version} %reconfigure_fonts_prereq @@ -1820,7 +1678,6 @@ Rejang Sans Serif font, hinted. %package -n noto-sans-runic-fonts Summary: Noto Runic Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-runic < %{version} Provides: noto-sans-runic = %{version} %reconfigure_fonts_prereq @@ -1833,7 +1690,6 @@ Runic Sans Serif font, hinted. %package -n noto-sans-samaritan-fonts Summary: Noto Samaritan Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-samaritan < %{version} Provides: noto-sans-samaritan = %{version} %reconfigure_fonts_prereq @@ -1846,7 +1702,6 @@ Samaritan Sans Serif font, hinted. %package -n noto-sans-saurashtra-fonts Summary: Noto Saurashtra Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-saurashtra < %{version} Provides: noto-sans-saurashtra = %{version} %reconfigure_fonts_prereq @@ -1859,7 +1714,6 @@ 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 @@ -1872,7 +1726,6 @@ 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 < %{version} Provides: noto-sans-shavian = %{version} %reconfigure_fonts_prereq @@ -1885,7 +1738,6 @@ 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 @@ -1898,7 +1750,6 @@ 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 @@ -1911,7 +1762,6 @@ 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 < %{version} Provides: noto-sans-sinhala = %{version} %reconfigure_fonts_prereq @@ -1924,7 +1774,6 @@ Sinhala Sans Serif font, hinted. %package -n noto-sans-sinhala-ui-fonts Summary: Noto Sinhala Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-sinhala-ui < %{version} Provides: noto-sans-sinhala-ui = %{version} %reconfigure_fonts_prereq @@ -1937,7 +1786,6 @@ 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 @@ -1950,7 +1798,6 @@ 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 @@ -1963,7 +1810,6 @@ 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 @@ -1976,7 +1822,6 @@ 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 < %{version} Provides: noto-sans-sundanese = %{version} %reconfigure_fonts_prereq @@ -1989,7 +1834,6 @@ Sundanese Sans Serif font, hinted. %package -n noto-sans-sylotinagri-fonts Summary: Noto Syloti Nagri Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-sylotinagri < %{version} Provides: noto-sans-sylotinagri = %{version} %reconfigure_fonts_prereq @@ -2002,7 +1846,6 @@ SylotiNagri Sans Serif font, hinted. %package -n noto-sans-symbols-fonts Summary: Noto Symbols Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-symbols < %{version} Provides: noto-sans-symbols = %{version} %reconfigure_fonts_prereq @@ -2015,7 +1858,6 @@ Symbols Sans Serif font, hinted. %package -n noto-sans-symbols2-fonts Summary: Noto Symbols2 Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-symbols2 < %{version} Provides: noto-sans-symbols2 = %{version} %reconfigure_fonts_prereq @@ -2028,7 +1870,6 @@ Symbols2 Sans Serif font, hinted. %package -n noto-sans-syriac-fonts Summary: Noto Syriac Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-syriac < %{version} Provides: noto-sans-syriac = %{version} Obsoletes: noto-sans-syriacwestern < %{version} @@ -2053,7 +1894,6 @@ 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 < %{version} Provides: noto-sans-tagalog = %{version} %reconfigure_fonts_prereq @@ -2066,7 +1906,6 @@ Tagalog Sans Serif font, hinted. %package -n noto-sans-tagbanwa-fonts Summary: Noto Tagbanwa Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-tagbanwa < %{version} Provides: noto-sans-tagbanwa = %{version} %reconfigure_fonts_prereq @@ -2079,7 +1918,6 @@ Tagbanwa Sans Serif font, hinted. %package -n noto-sans-taile-fonts Summary: Noto Tai Le Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-taile < %{version} Provides: noto-sans-taile = %{version} %reconfigure_fonts_prereq @@ -2092,7 +1930,6 @@ TaiLe Sans Serif font, hinted. %package -n noto-sans-taitham-fonts Summary: Noto Tai Tham Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-taitham < %{version} Provides: noto-sans-taitham = %{version} %reconfigure_fonts_prereq @@ -2105,7 +1942,6 @@ TaiTham Sans Serif font, hinted. %package -n noto-sans-taiviet-fonts Summary: Noto Tai Viet Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-taiviet < %{version} Provides: noto-sans-taiviet = %{version} %reconfigure_fonts_prereq @@ -2118,7 +1954,6 @@ 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 @@ -2131,7 +1966,6 @@ 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 < %{version} Provides: noto-sans-tamil = %{version} %reconfigure_fonts_prereq @@ -2144,7 +1978,6 @@ 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 @@ -2157,7 +1990,6 @@ 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 < %{version} Provides: noto-sans-tamil-ui = %{version} %reconfigure_fonts_prereq @@ -2170,7 +2002,6 @@ 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 @@ -2183,7 +2014,6 @@ 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 < %{version} Provides: noto-sans-telugu = %{version} %reconfigure_fonts_prereq @@ -2196,7 +2026,6 @@ Telugu Sans Serif font, hinted. %package -n noto-sans-telugu-ui-fonts Summary: Noto Telugu Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-telugu-ui < %{version} Provides: noto-sans-telugu-ui = %{version} %reconfigure_fonts_prereq @@ -2209,7 +2038,6 @@ Telugu Sans Serif font, hinted. %package -n noto-sans-thaana-fonts Summary: Noto Thaana Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-thaana < %{version} Provides: noto-sans-thaana = %{version} %reconfigure_fonts_prereq @@ -2222,7 +2050,6 @@ Thaana Sans Serif font, hinted. %package -n noto-sans-thai-fonts Summary: Noto Thai Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-thai < %{version} Provides: noto-sans-thai = %{version} %reconfigure_fonts_prereq @@ -2235,7 +2062,6 @@ Thai Sans Serif font, hinted. %package -n noto-sans-thai-ui-fonts Summary: Noto Thai Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-thai-ui < %{version} Provides: noto-sans-thai-ui = %{version} %reconfigure_fonts_prereq @@ -2248,7 +2074,6 @@ Thai 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 < %{version} Provides: noto-sans-tifinagh = %{version} %reconfigure_fonts_prereq @@ -2261,7 +2086,6 @@ 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 @@ -2274,7 +2098,6 @@ 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 @@ -2287,7 +2110,6 @@ 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 @@ -2300,7 +2122,6 @@ 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 @@ -2313,7 +2134,6 @@ 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 @@ -2326,7 +2146,6 @@ 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 @@ -2339,7 +2158,6 @@ 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 @@ -2352,7 +2170,6 @@ 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 @@ -2365,7 +2182,6 @@ 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 @@ -2378,7 +2194,6 @@ 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 @@ -2391,7 +2206,6 @@ 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 @@ -2404,7 +2218,6 @@ 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 @@ -2417,7 +2230,6 @@ 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 < %{version} Provides: noto-sans-ugaritic = %{version} %reconfigure_fonts_prereq @@ -2430,7 +2242,6 @@ Ugaritic Sans Serif font, hinted. %package -n noto-sans-vai-fonts Summary: Noto Vai Sans Serif Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-sans-vai < %{version} Provides: noto-sans-vai = %{version} %reconfigure_fonts_prereq @@ -2443,7 +2254,6 @@ 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 @@ -2456,7 +2266,6 @@ 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 @@ -2469,7 +2278,6 @@ 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 @@ -2482,7 +2290,6 @@ 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 < %{version} Provides: noto-sans-yi = %{version} %reconfigure_fonts_prereq @@ -2495,7 +2302,6 @@ 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 @@ -2508,7 +2314,6 @@ 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 < %{version} Provides: noto-serif = %{version} %reconfigure_fonts_prereq @@ -2521,7 +2326,6 @@ 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 @@ -2534,7 +2338,6 @@ 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 < %{version} Provides: noto-serif-armenian = %{version} %reconfigure_fonts_prereq @@ -2547,7 +2350,6 @@ 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 @@ -2560,7 +2362,6 @@ 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 < %{version} Provides: noto-serif-bengali = %{version} %reconfigure_fonts_prereq @@ -2573,7 +2374,6 @@ Bengali font, hinted. %package -n noto-serif-devanagari-fonts Summary: Noto Devanagari Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-devanagari < %{version} Provides: noto-serif-devanagari = %{version} %reconfigure_fonts_prereq @@ -2586,7 +2386,6 @@ Devanagari font, hinted. %package -n noto-serif-display-fonts Summary: Noto Display Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-display < %{version} Provides: noto-serif-display = %{version} %reconfigure_fonts_prereq @@ -2599,7 +2398,6 @@ 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 @@ -2612,7 +2410,6 @@ 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 @@ -2625,7 +2422,6 @@ 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 < %{version} Provides: noto-serif-ethiopic = %{version} %reconfigure_fonts_prereq @@ -2638,7 +2434,6 @@ Ethiopic font, hinted. %package -n noto-serif-georgian-fonts Summary: Noto Georgian Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-georgian < %{version} Provides: noto-serif-georgian = %{version} %reconfigure_fonts_prereq @@ -2651,7 +2446,6 @@ 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 @@ -2664,7 +2458,6 @@ 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 < %{version} Provides: noto-serif-gujarati = %{version} %reconfigure_fonts_prereq @@ -2677,7 +2470,6 @@ 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 @@ -2690,7 +2482,6 @@ 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 < %{version} Provides: noto-serif-hebrew = %{version} %reconfigure_fonts_prereq @@ -2703,7 +2494,6 @@ Hebrew font, hinted. %package -n noto-serif-kannada-fonts Summary: Noto Kannada Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-kannada < %{version} Provides: noto-serif-kannada = %{version} %reconfigure_fonts_prereq @@ -2716,7 +2506,6 @@ Kannada font, hinted. %package -n noto-serif-khmer-fonts Summary: Noto Khmer Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-khmer < %{version} Provides: noto-serif-khmer = %{version} %reconfigure_fonts_prereq @@ -2729,7 +2518,6 @@ 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 @@ -2742,7 +2530,6 @@ 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 < %{version} Provides: noto-serif-lao = %{version} %reconfigure_fonts_prereq @@ -2755,7 +2542,6 @@ 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 @@ -2768,7 +2554,6 @@ 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 < %{version} Provides: noto-serif-malayalam = %{version} %reconfigure_fonts_prereq @@ -2781,7 +2566,6 @@ Malayalam font, hinted. %package -n noto-serif-myanmar-fonts Summary: Noto Myanmar Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-myanmar < %{version} Provides: noto-serif-myanmar = %{version} %reconfigure_fonts_prereq @@ -2794,7 +2578,6 @@ 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 @@ -2807,7 +2590,6 @@ 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 @@ -2820,7 +2602,6 @@ 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 @@ -2833,7 +2614,6 @@ 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 < %{version} Provides: noto-serif-sinhala = %{version} %reconfigure_fonts_prereq @@ -2846,7 +2626,6 @@ Sinhala font, hinted. %package -n noto-serif-tamil-fonts Summary: Noto Tamil Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-tamil < %{version} Provides: noto-serif-tamil = %{version} %reconfigure_fonts_prereq @@ -2859,7 +2638,6 @@ 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 @@ -2872,7 +2650,6 @@ 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 @@ -2885,7 +2662,6 @@ 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 < %{version} Provides: noto-serif-telugu = %{version} %reconfigure_fonts_prereq @@ -2898,7 +2674,6 @@ Telugu font, hinted. %package -n noto-serif-thai-fonts Summary: Noto Thai Font Group: System/X11/Fonts -Recommends: google-noto-fonts-doc Obsoletes: noto-serif-thai < %{version} Provides: noto-serif-thai = %{version} %reconfigure_fonts_prereq @@ -2911,7 +2686,6 @@ 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} Obsoletes: noto-sans-tibetan < %{version} @@ -2928,7 +2702,6 @@ 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 @@ -2941,7 +2714,6 @@ 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 @@ -2954,7 +2726,6 @@ 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 @@ -2967,7 +2738,6 @@ 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} Obsoletes: google-tinos-fonts < %{version} @@ -2982,7 +2752,6 @@ 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 @@ -2999,7 +2768,6 @@ cp %{SOURCE2} . %build %install -mkdir -p %{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 ttf/NotoSansTifinagh/NotoSansTifinagh[!\-]* @@ -3008,7 +2776,7 @@ rm ttf/NotoSansTifinagh/NotoSansTifinagh[!\-]* # Also they have inconsistent family names: https://github.com/googlefonts/noto-fonts/issues/2315 rm -r ttf/NotoSansDisplay/ -cp ttf/*/*.ttf %{buildroot}%{_ttfontsdir}/ +install -Dm 644 -t %{buildroot}%{_ttfontsdir} ttf/*/*.ttf %reconfigure_fonts_scriptlets -n noto-arimo-fonts @@ -3458,1127 +3226,1347 @@ cp ttf/*/*.ttf %{buildroot}%{_ttfontsdir}/ %reconfigure_fonts_scriptlets -n noto-traditionalnushu-fonts -%files doc -%defattr(0644,root,root,755) -%doc LICENSE - %files -n noto-arimo-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/Arimo-*.?tf %files -n noto-cousine-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/Cousine-*.?tf %files -n noto-kufiarabic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoKufiArabic-*.?tf %files -n noto-loopedlao-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoLoopedLao-*.?tf %files -n noto-loopedlao-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoLoopedLaoUI-*.?tf %files -n noto-loopedthai-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoLoopedThai-*.?tf %files -n noto-loopedthai-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoLoopedThaiUI-*.?tf %files -n noto-music-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoMusic-*.?tf %files -n noto-naskharabic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoNaskhArabic-*.?tf %files -n noto-naskharabic-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoNaskhArabicUI-*.?tf %files -n noto-nastaliqurdu-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoNastaliqUrdu-*.?tf %files -n noto-rashihebrew-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoRashiHebrew-*.?tf %files -n noto-sans-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSans-*.?tf %files -n noto-sans-adlam-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansAdlam-*.?tf %files -n noto-sans-adlamunjoined-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansAdlamUnjoined-*.?tf %files -n noto-sans-anatolianhieroglyphs-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansAnatolianHieroglyphs-*.?tf %files -n noto-sans-arabic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansArabic-*.?tf %files -n noto-sans-arabic-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansArabicUI-*.?tf %files -n noto-sans-armenian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansArmenian-*.?tf %files -n noto-sans-avestan-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansAvestan-*.?tf %files -n noto-sans-balinese-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBalinese-*.?tf %files -n noto-sans-bamum-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBamum-*.?tf %files -n noto-sans-bassavah-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBassaVah-*.?tf %files -n noto-sans-batak-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBatak-*.?tf %files -n noto-sans-bengali-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBengali-*.?tf %files -n noto-sans-bengali-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBengaliUI-*.?tf %files -n noto-sans-bhaiksuki-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBhaiksuki-*.?tf %files -n noto-sans-brahmi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBrahmi-*.?tf %files -n noto-sans-buginese-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBuginese-*.?tf %files -n noto-sans-buhid-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansBuhid-*.?tf %files -n noto-sans-canadianaboriginal-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCanadianAboriginal-*.?tf %files -n noto-sans-carian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCarian-*.?tf %files -n noto-sans-caucasianalbanian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCaucasianAlbanian-*.?tf %files -n noto-sans-chakma-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansChakma-*.?tf %files -n noto-sans-cham-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCham-*.?tf %files -n noto-sans-cherokee-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCherokee-*.?tf %files -n noto-sans-chorasmian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansChorasmian-*.?tf %files -n noto-sans-coptic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCoptic-*.?tf %files -n noto-sans-cuneiform-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCuneiform-*.?tf %files -n noto-sans-cypriot-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCypriot-*.?tf %files -n noto-sans-cyprominoan-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansCyproMinoan-*.?tf %files -n noto-sans-deseret-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansDeseret-*.?tf %files -n noto-sans-devanagari-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansDevanagari-*.?tf %files -n noto-sans-devanagari-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansDevanagariUI-*.?tf %files -n noto-sans-duployan-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansDuployan-*.?tf %files -n noto-sans-egyptianhieroglyphs-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansEgyptianHieroglyphs-*.?tf %files -n noto-sans-elbasan-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansElbasan-*.?tf %files -n noto-sans-elymaic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansElymaic-*.?tf %files -n noto-sans-ethiopic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansEthiopic-*.?tf %files -n noto-sans-georgian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGeorgian-*.?tf %files -n noto-sans-glagolitic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGlagolitic-*.?tf %files -n noto-sans-gothic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGothic-*.?tf %files -n noto-sans-grantha-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGrantha-*.?tf %files -n noto-sans-gujarati-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGujarati-*.?tf %files -n noto-sans-gujarati-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGujaratiUI-*.?tf %files -n noto-sans-gunjalagondi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGunjalaGondi-*.?tf %files -n noto-sans-gurmukhi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGurmukhi-*.?tf %files -n noto-sans-gurmukhi-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansGurmukhiUI-*.?tf %files -n noto-sans-hanifirohingya-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHanifiRohingya-*.?tf %files -n noto-sans-hanunoo-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHanunoo-*.?tf %files -n noto-sans-hatran-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHatran-*.?tf %files -n noto-sans-hebrew-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHebrew-*.?tf %files -n noto-sans-hebrewdroid-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHebrewDroid-*.?tf %files -n noto-sans-hebrewnew-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansHebrewNew-*.?tf %files -n noto-sans-imperialaramaic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansImperialAramaic-*.?tf %files -n noto-sans-indicsiyaqnumbers-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansIndicSiyaqNumbers-*.?tf %files -n noto-sans-inscriptionalpahlavi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansInscriptionalPahlavi-*.?tf %files -n noto-sans-inscriptionalparthian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansInscriptionalParthian-*.?tf %files -n noto-sans-javanese-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansJavanese-*.?tf %files -n noto-sans-kaithi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKaithi-*.?tf %files -n noto-sans-kannada-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKannada-*.?tf %files -n noto-sans-kannada-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKannadaUI-*.?tf %files -n noto-sans-kayahli-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKayahLi-*.?tf %files -n noto-sans-kharoshthi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKharoshthi-*.?tf %files -n noto-sans-khmer-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKhmer-*.?tf %files -n noto-sans-khmer-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKhmerUI-*.?tf %files -n noto-sans-khojki-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKhojki-*.?tf %files -n noto-sans-khudawadi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansKhudawadi-*.?tf %files -n noto-sans-lao-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLao-*.?tf %files -n noto-sans-lao-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLaoUI-*.?tf %files -n noto-sans-lepcha-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLepcha-*.?tf %files -n noto-sans-limbu-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLimbu-*.?tf %files -n noto-sans-lineara-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLinearA-*.?tf %files -n noto-sans-linearb-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLinearB-*.?tf %files -n noto-sans-lisu-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLisu-*.?tf %files -n noto-sans-lycian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLycian-*.?tf %files -n noto-sans-lydian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansLydian-*.?tf %files -n noto-sans-mahajani-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMahajani-*.?tf %files -n noto-sans-malayalam-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMalayalam-*.?tf %files -n noto-sans-malayalam-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMalayalamUI-*.?tf %files -n noto-sans-mandaic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMandaic-*.?tf %files -n noto-sans-manichaean-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansManichaean-*.?tf %files -n noto-sans-marchen-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMarchen-*.?tf %files -n noto-sans-masaramgondi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMasaramGondi-*.?tf %files -n noto-sans-math-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMath-*.?tf %files -n noto-sans-mayannumerals-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMayanNumerals-*.?tf %files -n noto-sans-medefaidrin-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMedefaidrin-*.?tf %files -n noto-sans-meeteimayek-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMeeteiMayek-*.?tf %files -n noto-sans-mendekikakui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMendeKikakui-*.?tf %files -n noto-sans-meroitic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMeroitic-*.?tf %files -n noto-sans-miao-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMiao-*.?tf %files -n noto-sans-modi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansModi-*.?tf %files -n noto-sans-mongolian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMongolian-*.?tf %files -n noto-sans-mono-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMono-*.?tf %files -n noto-sans-mro-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMro-*.?tf %files -n noto-sans-multani-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMultani-*.?tf %files -n noto-sans-myanmar-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMyanmar-*.?tf %files -n noto-sans-myanmar-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansMyanmarUI-*.?tf %files -n noto-sans-nabataean-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansNabataean-*.?tf %files -n noto-sans-nandinagari-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansNandinagari-*.?tf %files -n noto-sans-newa-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansNewa-*.?tf %files -n noto-sans-newtailue-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansNewTaiLue-*.?tf %files -n noto-sans-nko-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansNKo-*.?tf %files -n noto-sans-nushu-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansNushu-*.?tf %files -n noto-sans-ogham-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOgham-*.?tf %files -n noto-sans-olchiki-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOlChiki-*.?tf %files -n noto-sans-oldhungarian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldHungarian-*.?tf %files -n noto-sans-olditalic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldItalic-*.?tf %files -n noto-sans-oldnortharabian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldNorthArabian-*.?tf %files -n noto-sans-oldpermic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldPermic-*.?tf %files -n noto-sans-oldpersian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldPersian-*.?tf %files -n noto-sans-oldsogdian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldSogdian-*.?tf %files -n noto-sans-oldsoutharabian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldSouthArabian-*.?tf %files -n noto-sans-oldturkic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOldTurkic-*.?tf %files -n noto-sans-oriya-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOriya-*.?tf %files -n noto-sans-oriya-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOriyaUI-*.?tf %files -n noto-sans-osage-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOsage-*.?tf %files -n noto-sans-osmanya-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansOsmanya-*.?tf %files -n noto-sans-pahawhhmong-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansPahawhHmong-*.?tf %files -n noto-sans-palmyrene-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansPalmyrene-*.?tf %files -n noto-sans-paucinhau-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansPauCinHau-*.?tf %files -n noto-sans-phagspa-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansPhagsPa-*.?tf %files -n noto-sans-phoenician-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansPhoenician-*.?tf %files -n noto-sans-psalterpahlavi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansPsalterPahlavi-*.?tf %files -n noto-sans-rejang-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansRejang-*.?tf %files -n noto-sans-runic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansRunic-*.?tf %files -n noto-sans-samaritan-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSamaritan-*.?tf %files -n noto-sans-saurashtra-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSaurashtra-*.?tf %files -n noto-sans-sharada-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSharada-*.?tf %files -n noto-sans-shavian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansShavian-*.?tf %files -n noto-sans-siddham-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSiddham-*.?tf %files -n noto-sans-signwriting-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSignWriting-*.?tf %files -n noto-sans-sinhala-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSinhala-*.?tf %files -n noto-sans-sinhala-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSinhalaUI-*.?tf %files -n noto-sans-sogdian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSogdian-*.?tf %files -n noto-sans-sorasompeng-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSoraSompeng-*.?tf %files -n noto-sans-soyombo-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSoyombo-*.?tf %files -n noto-sans-sundanese-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSundanese-*.?tf %files -n noto-sans-sylotinagri-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSylotiNagri-*.?tf %files -n noto-sans-symbols-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSymbols-*.?tf %files -n noto-sans-symbols2-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSymbols2-*.?tf %files -n noto-sans-syriac-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansSyriac-*.?tf %files -n noto-sans-tagalog-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTagalog-*.?tf %files -n noto-sans-tagbanwa-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTagbanwa-*.?tf %files -n noto-sans-taile-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTaiLe-*.?tf %files -n noto-sans-taitham-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTaiTham-*.?tf %files -n noto-sans-taiviet-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTaiViet-*.?tf %files -n noto-sans-takri-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTakri-*.?tf %files -n noto-sans-tamil-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTamil-*.?tf %files -n noto-sans-tamilsupplement-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTamilSupplement-*.?tf %files -n noto-sans-tamil-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTamilUI-*.?tf %files -n noto-sans-tangsa-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTangsa-*.?tf %files -n noto-sans-telugu-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTelugu-*.?tf %files -n noto-sans-telugu-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTeluguUI-*.?tf %files -n noto-sans-thaana-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansThaana-*.?tf %files -n noto-sans-thai-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansThai-*.?tf %files -n noto-sans-thai-ui-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansThaiUI-*.?tf %files -n noto-sans-tifinagh-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinagh-*.?tf %files -n noto-sans-tifinaghadrar-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghAdrar-*.?tf %files -n noto-sans-tifinaghagrawimazighen-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghAgrawImazighen-*.?tf %files -n noto-sans-tifinaghahaggar-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghAhaggar-*.?tf %files -n noto-sans-tifinaghair-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghAir-*.?tf %files -n noto-sans-tifinaghapt-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghAPT-*.?tf %files -n noto-sans-tifinaghazawagh-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghAzawagh-*.?tf %files -n noto-sans-tifinaghghat-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghGhat-*.?tf %files -n noto-sans-tifinaghhawad-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghHawad-*.?tf %files -n noto-sans-tifinaghrhissaixa-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghRhissaIxa-*.?tf %files -n noto-sans-tifinaghsil-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghSIL-*.?tf %files -n noto-sans-tifinaghtawellemmet-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTifinaghTawellemmet-*.?tf %files -n noto-sans-tirhuta-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansTirhuta-*.?tf %files -n noto-sans-ugaritic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansUgaritic-*.?tf %files -n noto-sans-vai-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansVai-*.?tf %files -n noto-sans-vithkuqi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansVithkuqi-*.?tf %files -n noto-sans-wancho-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansWancho-*.?tf %files -n noto-sans-warangciti-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansWarangCiti-*.?tf %files -n noto-sans-yi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansYi-*.?tf %files -n noto-sans-zanabazarsquare-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSansZanabazarSquare-*.?tf %files -n noto-serif-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerif-*.?tf %files -n noto-serif-ahom-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifAhom-*.?tf %files -n noto-serif-armenian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifArmenian-*.?tf %files -n noto-serif-balinese-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifBalinese-*.?tf %files -n noto-serif-bengali-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifBengali-*.?tf %files -n noto-serif-devanagari-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifDevanagari-*.?tf %files -n noto-serif-display-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifDisplay-*.?tf %files -n noto-serif-divesakuru-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifDivesAkuru-*.?tf %files -n noto-serif-dogra-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifDogra-*.?tf %files -n noto-serif-ethiopic-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifEthiopic-*.?tf %files -n noto-serif-georgian-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifGeorgian-*.?tf %files -n noto-serif-grantha-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifGrantha-*.?tf %files -n noto-serif-gujarati-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifGujarati-*.?tf %files -n noto-serif-gurmukhi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifGurmukhi-*.?tf %files -n noto-serif-hebrew-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifHebrew-*.?tf %files -n noto-serif-kannada-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifKannada-*.?tf %files -n noto-serif-khmer-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifKhmer-*.?tf %files -n noto-serif-khojki-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifKhojki-*.?tf %files -n noto-serif-lao-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifLao-*.?tf %files -n noto-serif-makasar-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifMakasar-*.?tf %files -n noto-serif-malayalam-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifMalayalam-*.?tf %files -n noto-serif-myanmar-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifMyanmar-*.?tf %files -n noto-serif-nyiakengpuachuehmong-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifNyiakengPuachueHmong-*.?tf %files -n noto-serif-olduyghur-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifOldUyghur-*.?tf %files -n noto-serif-oriya-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifOriya-*.?tf %files -n noto-serif-sinhala-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifSinhala-*.?tf %files -n noto-serif-tamil-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifTamil-*.?tf %files -n noto-serif-tamilslanted-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifTamilSlanted-*.?tf %files -n noto-serif-tangut-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifTangut-*.?tf %files -n noto-serif-telugu-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifTelugu-*.?tf %files -n noto-serif-thai-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifThai-*.?tf %files -n noto-serif-tibetan-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifTibetan-*.?tf %files -n noto-serif-toto-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifToto-*.?tf %files -n noto-serif-vithkuqi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifVithkuqi-*.?tf %files -n noto-serif-yezidi-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoSerifYezidi-*.?tf %files -n noto-tinos-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/Tinos-*.?tf %files -n noto-traditionalnushu-fonts %defattr(0644,root,root,755) +%license LICENSE %dir %{_ttfontsdir} %{_ttfontsdir}/NotoTraditionalNushu-*.?tf diff --git a/google-noto-fonts.spec.in b/google-noto-fonts.spec.in index 166eb4d..347a61e 100644 --- a/google-noto-fonts.spec.in +++ b/google-noto-fonts.spec.in @@ -17,8 +17,8 @@ %define hyear 2022 -%define hmonth 05 -%define hday 24 +%define hmonth 06 +%define hday 07 %define src_name NotoFonts @@ -40,15 +40,8 @@ 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. - -%package doc -Summary: Noto Font Families License -Group: Documentation/Other - -%description doc -License for Google's Noto fonts. +Noto's design goal is to achieve visual harmonization (e.g., compatible heights and stroke +thicknesses) across languages. @SUBPACKAGE_HEADERS@ %prep @@ -58,7 +51,6 @@ cp %{SOURCE2} . %build %install -mkdir -p %{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 ttf/NotoSansTifinagh/NotoSansTifinagh[!\-]* @@ -67,14 +59,8 @@ rm ttf/NotoSansTifinagh/NotoSansTifinagh[!\-]* # Also they have inconsistent family names: https://github.com/googlefonts/noto-fonts/issues/2315 rm -r ttf/NotoSansDisplay/ -cp ttf/*/*.ttf %{buildroot}%{_ttfontsdir}/ +install -Dm 644 -t %{buildroot}%{_ttfontsdir} ttf/*/*.ttf @SUBPACKAGE_SCRIPTLETS@ - -%files doc -%defattr(0644,root,root,755) -%doc LICENSE - @SUBPACKAGE_FILELISTS@ - %changelog diff --git a/ttf.tar.gz b/ttf.tar.gz index 7070d6c..8efe2e7 100644 --- a/ttf.tar.gz +++ b/ttf.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8304dc403dcabc41b2f8619b0169cb05f524f6529dfd9bafe5c4854b4cb30f35 -size 472361436 +oid sha256:a3aa32d41e5d2f3f647881cc1e200d62becd8c0d3f86e88f5b4e0ae7471ad569 +size 247038182