updater-waypipe-0.10.4 — waypipe => 0.10.4 (#12477)

* Add unbuilt waypipe to updater-waypipe-0.10.4

* Refactor waypipe package

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust build options.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust build settings

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* 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 <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
This commit is contained in:
chromebrew-actions[bot]
2025-08-15 13:28:21 -05:00
committed by GitHub
parent 21e3e3c0fa
commit 2876e55c47
3 changed files with 15 additions and 20 deletions

View File

@@ -1 +1,2 @@
/usr/local/bin/waypipe
/usr/local/share/man/man1/waypipe.1.zst

View File

@@ -1 +1,2 @@
/usr/local/bin/waypipe
/usr/local/share/man/man1/waypipe.1.zst

View File

@@ -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