diff --git a/flatpak-runtime.yaml b/flatpak-runtime.yaml index 048691e..35c1fa8 100644 --- a/flatpak-runtime.yaml +++ b/flatpak-runtime.yaml @@ -18,6 +18,7 @@ data: profiles: runtime: rpms: + - abattis-cantarell-fonts - acl - libacl - adwaita-cursor-theme @@ -799,6 +800,7 @@ data: - zlib sdk: rpms: + - abattis-cantarell-fonts - acl - libacl - libacl-devel diff --git a/tools/resolve-files.py b/tools/resolve-files.py index de5631f..b1c4abd 100755 --- a/tools/resolve-files.py +++ b/tools/resolve-files.py @@ -263,6 +263,7 @@ rename_patterns = [ (r'^/usr/include/python3.5m/(.*)', r'/usr/include/python3.6m/\1'), (r'^/usr/lib64/pkgconfig/(.*proto.pc)', r'/usr/share/pkgconfig/\1'), (r'^/usr/share/fonts/liberation-fonts/(.*)', r'/usr/share/fonts/liberation/\1'), + (r'^/usr/share/fonts/cantarell/(.*)', r'/usr/share/fonts/abattis-cantarell/\1'), ] rename_compiled = [(re.compile(a), b) for a, b in rename_patterns]