From cfbc75bf4f2a07d61b9edea1c21e3aef1856fc6d Mon Sep 17 00:00:00 2001 From: Raboneko <119771935+raboneko@users.noreply.github.com> Date: Thu, 19 Mar 2026 00:13:35 -0700 Subject: [PATCH] feat: Update terra-gamescope to the latest OGC release (#10711) (#10719) * feat: Update terra-gamescope to the latest OGC release * chore: Add update.rhai script * Update anda/games/terra-gamescope/update.rhai * chore: Set nightly --------- (cherry picked from commit 1e6d93341974e71a326ebd26454f4c404d8fdb8e) Signed-off-by: Kyle Gospodnetich Co-authored-by: Kyle Gospodnetich Co-authored-by: madomado --- anda/games/terra-gamescope/anda.hcl | 1 + anda/games/terra-gamescope/terra-gamescope.spec | 2 +- anda/games/terra-gamescope/update.rhai | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 anda/games/terra-gamescope/update.rhai diff --git a/anda/games/terra-gamescope/anda.hcl b/anda/games/terra-gamescope/anda.hcl index e66956b621..1bc4cc6311 100755 --- a/anda/games/terra-gamescope/anda.hcl +++ b/anda/games/terra-gamescope/anda.hcl @@ -5,6 +5,7 @@ project pkg { } labels { mock = 1 + nightly = 1 subrepo = "extras" } } diff --git a/anda/games/terra-gamescope/terra-gamescope.spec b/anda/games/terra-gamescope/terra-gamescope.spec index ff25d8dd3c..2de32bd0e0 100755 --- a/anda/games/terra-gamescope/terra-gamescope.spec +++ b/anda/games/terra-gamescope/terra-gamescope.spec @@ -2,7 +2,7 @@ %global _default_patch_fuzz 2 %global build_timestamp %(date +"%Y%m%d") -%global gamescope_commit b6a368af614ee93bf7b1d05a8d203f0c84a87c74 +%global gamescope_commit 402bfb81bc25943cac9061eb022fe229c5414f5e %define short_commit %(echo %{gamescope_commit} | cut -c1-8) Name: terra-gamescope diff --git a/anda/games/terra-gamescope/update.rhai b/anda/games/terra-gamescope/update.rhai new file mode 100644 index 0000000000..c0deb9c10f --- /dev/null +++ b/anda/games/terra-gamescope/update.rhai @@ -0,0 +1,6 @@ +if rpm.changed() { + rpm.release(); + let v = gh_commit("OpenGamingCollective/gamescope")); + v.crop(1); + rpm.global("gamescope_commit", v); +}