From 30d7c7e9ecac081e3f7c6d43fc43f63765c68cda Mon Sep 17 00:00:00 2001 From: GitLab CI Date: Fri, 5 Sep 2025 13:01:06 +0000 Subject: [PATCH] chore: update firedragon This commit was automatically generated to reflect changes to this package in another repository. The changelog for this package can be found at https://gitlab.com/garuda-linux/pkgbuilds/-/commits/main/firedragon. Logs of the corresponding pipeline run can be found here: https://gitlab.com/garuda-linux/pkgbuilds/-/pipelines/2024003459. --- .SRCINFO | 5 ++++- PKGBUILD | 10 +++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index ae4d6a7..fe37788 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -7,7 +7,6 @@ pkgbase = firedragon arch = x86_64 arch = aarch64 license = MPL2 - makedepends = deno makedepends = rsync makedepends = cbindgen makedepends = clang @@ -65,5 +64,9 @@ pkgbase = firedragon source = firedragon.psd::https://github.com/stefanwimmer128/profile-sync-daemon/raw/refs/heads/firedragon/contrib/firedragon sha256sums = 924ef1e351b62c4afc070abaceeea5ff2e067ed180a9314faba0fdecafc7e787 sha256sums = 61355930cc59813e7e610ffdab8a01e32be980fffe1dfd8f9654b8f8f9f7fdc0 + source_x86_64 = deno-x86_64-v2.3.2.zip::https://github.com/denoland/deno/releases/download/v2.3.2/deno-x86_64-unknown-linux-gnu.zip + sha256sums_x86_64 = fc6311f01566489ac70ab76ba939a24bde0a5c7735a9ca5dcb84d6210e5715c7 + source_aarch64 = deno-aarch64-v2.3.2.zip::https://github.com/denoland/deno/releases/download/v2.3.2/deno-aarch64-unknown-linux-gnu.zip + sha256sums_aarch64 = 84a3ae2b6f00ad06bdc03337208d88101dbd2897f0fa2295f101bda435a9514b pkgname = firedragon diff --git a/PKGBUILD b/PKGBUILD index bc67273..a7b9bdb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,6 +9,7 @@ : ${_build_pgo_xvfb:=false} _pkgver=12.3.0 +_deno_ver=2.3.2 pkgname=firedragon _pkgname=FireDragon @@ -29,8 +30,7 @@ depends=(dbus mime-types nss ttf-font) -makedepends=(deno - rsync +makedepends=(rsync cbindgen clang diffutils @@ -73,8 +73,12 @@ backup=("usr/lib/${pkgname}/${pkgname}.cfg" "usr/lib/${pkgname}/distribution/policies.json") source=(firedragon-source-v"$_pkgver".tar.zst::https://gitlab.com/garuda-linux/firedragon/firedragon12/-/releases/v"$_pkgver"/downloads/firedragon-source.tar.zst firedragon.psd::https://github.com/stefanwimmer128/profile-sync-daemon/raw/refs/heads/firedragon/contrib/firedragon) +source_x86_64=(deno-x86_64-v$"$_deno_ver".zip::https://github.com/denoland/deno/releases/download/v"$_deno_ver"/deno-x86_64-unknown-linux-gnu.zip) +source_aarch64=(deno-aarch64-v$"$_deno_ver".zip::https://github.com/denoland/deno/releases/download/v"$_deno_ver"/deno-aarch64-unknown-linux-gnu.zip) sha256sums=('924ef1e351b62c4afc070abaceeea5ff2e067ed180a9314faba0fdecafc7e787' '61355930cc59813e7e610ffdab8a01e32be980fffe1dfd8f9654b8f8f9f7fdc0') +sha256sums_x86_64=('fc6311f01566489ac70ab76ba939a24bde0a5c7735a9ca5dcb84d6210e5715c7') +sha256sums_aarch64=('84a3ae2b6f00ad06bdc03337208d88101dbd2897f0fa2295f101bda435a9514b') # Select the method of profiling if [[ "${_build_pgo::1}" == "t" ]]; then @@ -87,7 +91,7 @@ fi _deno() { pushd "${srcdir}/firedragon-source-v${_pkgver}/firedragon" > /dev/null || return - DENO_DIR="${srcdir}/deno" deno "$@" + DENO_DIR="${srcdir}/.deno" "${srcdir}/deno" "$@" popd > /dev/null || return }