mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-08 04:42:22 +00:00
3c1be11bfd
* add: Terra WINE stack * chore: Rename some stuff and conflicts * chore: Rename Git * Update winetricks-git.spec Signed-off-by: Gilver <rockgrub@disroot.org> * Update winetricks.spec Signed-off-by: Gilver <rockgrub@disroot.org> * Update and rename wine-devel.spec to wine-dev.spec Signed-off-by: Gilver <rockgrub@disroot.org> * fix: Weird ix86 stuff * fix: I messed with Winetricks last can you tell * fix: Requires * fix: Files * fix?: aarch64 fixes * fix: Better dir fix * fix: Even better * fix: What * fix: ? * AaaaaAAAAA Signed-off-by: Gilver <rockgrub@disroot.org> * Update wine-stable.spec Signed-off-by: Gilver <rockgrub@disroot.org> * Update wine-dev.spec Signed-off-by: Gilver <rockgrub@disroot.org> * Update winetricks-git.spec Signed-off-by: Gilver <rockgrub@disroot.org> * Hopefully actually fix that jank --------- Signed-off-by: Gilver <rockgrub@disroot.org>
13 lines
565 B
Plaintext
13 lines
565 B
Plaintext
let v = (gitlab_tag("gitlab.winehq.org", "5"));
|
|
v.crop(1);
|
|
rpm.global("ver", v); // Sometimes the development branch includes RC candidates
|
|
if rpm.changed () {
|
|
rpm.release();
|
|
// Only find versions ending in .x (point releases)
|
|
let matches = (find_all("[\\d.]+[.]x", get("https://dl.winehq.org/wine/source/")));
|
|
matches.dedup();
|
|
let s = sh(`echo ${matches} | sed 's/,//g' | sed 's/\[//g' | sed 's/\]//g' | sed 's/"//g' | tr ' ' '\n' | sort -nr | tr '\n' ' '`, #{"stdout": "piped"}).ctx.stdout;
|
|
s.truncate(4);
|
|
rpm.global("srcmajor", s);
|
|
}
|