From 2876e55c47932f22c4b9941cf7d42ba422daae6e Mon Sep 17 00:00:00 2001 From: "chromebrew-actions[bot]" <220035932+chromebrew-actions[bot]@users.noreply.github.com> Date: Fri, 15 Aug 2025 13:28:21 -0500 Subject: [PATCH] =?UTF-8?q?updater-waypipe-0.10.4=20=E2=80=94=20waypipe=20?= =?UTF-8?q?=3D>=200.10.4=20(#12477)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add unbuilt waypipe to updater-waypipe-0.10.4 * Refactor waypipe package Signed-off-by: Satadru Pramanik * Adjust build options. Signed-off-by: Satadru Pramanik * Adjust build settings Signed-off-by: Satadru Pramanik * updater-waypipe-0.10.4: Build Run on linux/amd64. * updater-waypipe-0.10.4: Build Run on linux/arm/v7. * updater-waypipe-0.10.4: Package File Update Run on linux/amd64 container. --------- Signed-off-by: Satadru Pramanik Co-authored-by: satmandu Co-authored-by: Satadru Pramanik Co-authored-by: chromebrew-actions[bot] --- manifest/armv7l/w/waypipe.filelist | 1 + manifest/x86_64/w/waypipe.filelist | 1 + packages/waypipe.rb | 33 ++++++++++++------------------ 3 files changed, 15 insertions(+), 20 deletions(-) diff --git a/manifest/armv7l/w/waypipe.filelist b/manifest/armv7l/w/waypipe.filelist index c02767e5a..7aa44196e 100644 --- a/manifest/armv7l/w/waypipe.filelist +++ b/manifest/armv7l/w/waypipe.filelist @@ -1 +1,2 @@ /usr/local/bin/waypipe +/usr/local/share/man/man1/waypipe.1.zst diff --git a/manifest/x86_64/w/waypipe.filelist b/manifest/x86_64/w/waypipe.filelist index c02767e5a..7aa44196e 100644 --- a/manifest/x86_64/w/waypipe.filelist +++ b/manifest/x86_64/w/waypipe.filelist @@ -1 +1,2 @@ /usr/local/bin/waypipe +/usr/local/share/man/man1/waypipe.1.zst diff --git a/packages/waypipe.rb b/packages/waypipe.rb index 52f0bf148..80b3037db 100644 --- a/packages/waypipe.rb +++ b/packages/waypipe.rb @@ -1,9 +1,9 @@ -require 'package' +require 'buildsystems/meson' -class Waypipe < Package +class Waypipe < Meson description 'A proxy for Wayland protocol applications. WARNING: different versions are incompatible' homepage 'https://gitlab.freedesktop.org/mstoeckl/waypipe' - version '0.8.6' + version '0.10.4' license 'MIT' compatibility 'aarch64 armv7l x86_64' source_url 'https://gitlab.freedesktop.org/mstoeckl/waypipe.git' @@ -11,29 +11,22 @@ class Waypipe < Package binary_compression 'tar.zst' binary_sha256({ - aarch64: '9bedb1ee7e35eb794158e28ac9f3c7a6c1590bd63c49d8f1edac2eef0cb445ac', - armv7l: '9bedb1ee7e35eb794158e28ac9f3c7a6c1590bd63c49d8f1edac2eef0cb445ac', - x86_64: '30f1226d52c91d34235fcbd58fd5405e586f0e37350f7d1ea43b6a485e2bc01d' + aarch64: '4b96adfa989ddc31e40ed8c9d064d9f65e2bc76513ea06c139f58b5bbe1b885d', + armv7l: '4b96adfa989ddc31e40ed8c9d064d9f65e2bc76513ea06c139f58b5bbe1b885d', + x86_64: '1462f21b1a15e3f4860b7a2c231982106d2d90f2461c84eaae4db1182b78c918' }) - depends_on 'speexdsp' => :build - depends_on 'ffmpeg' # R depends_on 'gcc_lib' # R depends_on 'glibc' # R depends_on 'libdrm' => :build - depends_on 'libva' # R - depends_on 'lz4' # R - depends_on 'mesa' # R - depends_on 'zstd' # R + depends_on 'rust' => :build + depends_on 'scdoc' => :build + depends_on 'shaderc' => :build + depends_on 'speexdsp' => :build - def self.build - system "CC=clang LD=mold meson setup #{CREW_MESON_OPTIONS.gsub('-ffat-lto-objects', '').gsub('-fuse-ld=mold', '')} \ - builddir" - system 'meson configure --no-pager builddir' - system "#{CREW_NINJA} -C builddir" + def self.prebuild + system 'cargo fetch --locked' end - def self.install - system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install" - end + meson_options '-Dwith_systemtap=false' end