feat(ghostty-nightly): Use actual Tip version (#3508) (#3514)

* Dev ver changes

Signed-off-by: Gilver <rockgrub@disroot.org>

* Yay shorter Rhai script

Signed-off-by: Gilver <rockgrub@disroot.org>

* Technically a version bump so drop rel

Signed-off-by: Gilver <rockgrub@disroot.org>

---------

Signed-off-by: Gilver <rockgrub@disroot.org>
(cherry picked from commit 92f4424f01)

Co-authored-by: Gilver <rockgrub@disroot.org>
This commit is contained in:
Raboneko
2025-02-22 09:10:14 -08:00
committed by GitHub
parent 44f87398a8
commit bbbb86adf9
2 changed files with 5 additions and 9 deletions
@@ -3,8 +3,7 @@
%global fulldate 2025-02-22
%global commit_date %(echo %{fulldate} | sed 's/-//g')
%global public_key RWQlAjJC23149WL2sEpT/l0QKy7hMIFhYdQOFy0Z7z7PbneUgvlsnYcV
%global base_ver 1.1.2
%global dev_ver 1.1.3
%global ver 1.1.3
%if 0%{?fedora} <= 40
%global cache_dir %{_builddir}/zig-cache
%else
@@ -12,8 +11,8 @@
%endif
Name: ghostty-nightly
Version: %{base_ver}~tip^%{commit_date}git%{shortcommit}
Release: 3%{?dist}
Version: %{ver}~tip^%{commit_date}git%{shortcommit}
Release: 1%{?dist}
%if 0%{?fedora} <= 41
Epoch: 1
%endif
@@ -142,7 +141,7 @@ zig build \
--prefix "%{_prefix}" --prefix-lib-dir "%{_libdir}" \
--prefix-exe-dir "%{_bindir}" --prefix-include-dir "%{_includedir}" \
--verbose \
-Dversion-string="%{dev_ver}-dev+%{shortcommit}" \
-Dversion-string="%{ver}-dev+%{shortcommit}" \
-Dcpu=baseline \
-Dstrip=false \
-Dpie=true \
+1 -4
View File
@@ -7,10 +7,7 @@ if rpm.changed() {
date.truncate(10);
let html = get(`https://raw.githubusercontent.com/ghostty-org/ghostty/refs/heads/main/build.zig.zon`);
let ver = find(".version = \"([\\d.]+)\"", html, 1);
let base = gh_tag("ghostty-org/ghostty");
base.crop(1);
rpm.global("base_ver", base);
rpm.global("fulldate", date);
rpm.global("dev_ver", ver);
rpm.global("ver", ver);
rpm.release();
}