summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntonin Dach2024-03-15 00:44:36 +0100
committerAntonin Dach2024-03-15 00:44:36 +0100
commit9d2e6c8d7162a257ae5caa5e0095e3d868ed2238 (patch)
treeefa3f483783eb970c7f2b2e36a9394d47a124304
parentcddb21280092f218d204a8b311ec28490fe2c3d4 (diff)
downloadaur-librewolf-firefox-shim.tar.gz
rm pkgrel from pkgver lookup
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 55e41cac8156..52af1713864c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
pkgbase = librewolf-firefox-shim
pkgdesc = A symlink for using librewolf as a firefox
- pkgver = 121.0
+ pkgver = 123.0
pkgrel = 1
url = https://librewolf-community.gitlab.io/
arch = any
license = MIT
depends = librewolf
- provides = firefox=121.0
+ provides = firefox=123.0
conflicts = firefox
pkgname = librewolf-firefox-shim
diff --git a/PKGBUILD b/PKGBUILD
index 7afd4f6081e6..90a650970cb3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Antonin Dach <dach@protonmail.com>
pkgname=librewolf-firefox-shim
-pkgver=121.0
+pkgver=123.0
pkgrel=1
pkgdesc="A symlink for using librewolf as a firefox"
arch=('any')
@@ -17,7 +17,7 @@ conflicts=(
pkgver() {
if [[ $CI == true ]]; then
# Assuming build runner is without extra and has online access
- git ls-remote https://codeberg.org/librewolf/source | grep -oP '\d{3}\.\d+\.\d+.\d+' | sort -r | head -n 1
+ git ls-remote https://codeberg.org/librewolf/source | grep -oP '\d{3}\.\d+\.\d+' | sort -r | head -n 1
else
pacman -Qi librewolf | grep -E '^Version[[:space:]]*:' | head -n 1 | awk -F ':' '{print $2}' | sed -E 's|-.*||' | tr -d '[[:space:]]'
fi