From 68417386f42296248c542da8d23440c5fbbd27a6 Mon Sep 17 00:00:00 2001 From: "chromebrew-actions[bot]" <220035932+chromebrew-actions[bot]@users.noreply.github.com> Date: Sat, 4 Oct 2025 13:21:04 -0500 Subject: [PATCH] =?UTF-8?q?updater-libfontenc-1.1.8=20=E2=80=94=20libfonte?= =?UTF-8?q?nc=20=E2=86=92=201.1.8=20(#13045)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Modernize libfontenc Signed-off-by: Satadru Pramanik * Update to commit with meson enabled. Signed-off-by: Satadru Pramanik * updater-libfontenc-1.1.8: Package File Update Run on linux/386 container. * updater-libfontenc-1.1.8: Package File Update Run on linux/amd64 container. * updater-libfontenc-1.1.8: Package File Update Run on linux/arm/v7 container. --------- Signed-off-by: Satadru Pramanik Co-authored-by: Satadru Pramanik Co-authored-by: chromebrew-actions[bot] --- manifest/armv7l/l/libfontenc.filelist | 4 +--- manifest/i686/l/libfontenc.filelist | 4 +--- manifest/x86_64/l/libfontenc.filelist | 4 +--- packages/libfontenc.rb | 32 ++++++++++----------------- 4 files changed, 15 insertions(+), 29 deletions(-) diff --git a/manifest/armv7l/l/libfontenc.filelist b/manifest/armv7l/l/libfontenc.filelist index 8422bea24..5ef151868 100644 --- a/manifest/armv7l/l/libfontenc.filelist +++ b/manifest/armv7l/l/libfontenc.filelist @@ -1,7 +1,5 @@ -# Total size: 151382 +# Total size: 23583 /usr/local/include/X11/fonts/fontenc.h -/usr/local/lib/libfontenc.a -/usr/local/lib/libfontenc.la /usr/local/lib/libfontenc.so /usr/local/lib/libfontenc.so.1 /usr/local/lib/libfontenc.so.1.0.0 diff --git a/manifest/i686/l/libfontenc.filelist b/manifest/i686/l/libfontenc.filelist index b7984e10a..d0602e984 100644 --- a/manifest/i686/l/libfontenc.filelist +++ b/manifest/i686/l/libfontenc.filelist @@ -1,7 +1,5 @@ -# Total size: 176326 +# Total size: 32107 /usr/local/include/X11/fonts/fontenc.h -/usr/local/lib/libfontenc.a -/usr/local/lib/libfontenc.la /usr/local/lib/libfontenc.so /usr/local/lib/libfontenc.so.1 /usr/local/lib/libfontenc.so.1.0.0 diff --git a/manifest/x86_64/l/libfontenc.filelist b/manifest/x86_64/l/libfontenc.filelist index b9ec86d0d..1e67e9c74 100644 --- a/manifest/x86_64/l/libfontenc.filelist +++ b/manifest/x86_64/l/libfontenc.filelist @@ -1,7 +1,5 @@ -# Total size: 180418 +# Total size: 34761 /usr/local/include/X11/fonts/fontenc.h -/usr/local/lib64/libfontenc.a -/usr/local/lib64/libfontenc.la /usr/local/lib64/libfontenc.so /usr/local/lib64/libfontenc.so.1 /usr/local/lib64/libfontenc.so.1.0.0 diff --git a/packages/libfontenc.rb b/packages/libfontenc.rb index 3efd3351d..b2d7b986f 100644 --- a/packages/libfontenc.rb +++ b/packages/libfontenc.rb @@ -1,34 +1,26 @@ -require 'package' +require 'buildsystems/meson' -class Libfontenc < Package +class Libfontenc < Meson description 'Fontenc Library from X.org' homepage 'https://xorg.freedesktop.org/wiki/' - version '1.1.7' + version '1.1.8-dcdbcce' license 'MIT' compatibility 'all' - source_url 'https://www.x.org/releases/individual/lib/libfontenc-1.1.7.tar.xz' - source_sha256 'c0d36991faee06551ddbaf5d99266e97becdc05edfae87a833c3ff7bf73cfec2' + source_url 'https://gitlab.freedesktop.org/xorg/lib/libfontenc.git' + git_hashtag 'dcdbcce903ee49200040c0da092b45253c20c6df' + # git_hashtag "libfontenc-#{version}" binary_compression 'tar.zst' binary_sha256({ - aarch64: '8d2dee2568b7a2389cff4435c26653fe56c8b3bda1132ec74215ed87ca8eb287', - armv7l: '8d2dee2568b7a2389cff4435c26653fe56c8b3bda1132ec74215ed87ca8eb287', - i686: '20d2b4358c6b10ac9f215919ec0b57691565d7dd1e8883d32397ed5b1d773b32', - x86_64: '4331cdbb4108722b6fc8d05249cdba21b67e917270ccba8b03b17808176dc30f' + aarch64: 'd70cccae338c12cd80cb891b8f1694a70cdba76da9d077a39e3eea271405fd1a', + armv7l: 'd70cccae338c12cd80cb891b8f1694a70cdba76da9d077a39e3eea271405fd1a', + i686: '8ad3c20ea1adfe41284ae9f87dc3120bdae83538213da0fbb54e5334940dffc2', + x86_64: '419779b15ee846873388eee1ab46cbb8fc31dab220443043f15abaa59698be31' }) - depends_on 'xorg_proto' + depends_on 'xorg_proto' => :build depends_on 'glibc' # R depends_on 'zlib' # R - def self.build - system '[ -x configure ] || NOCONFIGURE=1 ./autogen.sh' - system "./configure #{CREW_CONFIGURE_OPTIONS} \ - --with-fontrootdir=#{CREW_PREFIX}/share/fonts/X11" - system 'make' - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' - end + meson_options "-Dwith-fontrootdir=#{CREW_PREFIX}/share/fonts/X11" end