mirror of
https://github.com/luzifer-aur/google-chrome-dev.git
synced 2024-11-09 11:30:05 +00:00
Switch version search to Debian repo
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
55073b3398
commit
f00edfa368
1 changed files with 6 additions and 4 deletions
|
@ -6,16 +6,16 @@ CHANNEL=$(awk -F '=' '/^_channel/{ print $2 }' PKGBUILD)
|
|||
PKG="google-chrome-${CHANNEL}"
|
||||
|
||||
# Get latest version
|
||||
VER=$(curl -sL "https://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/other.xml.gz" | gzip -df |
|
||||
tr ' ' '\n' | grep -e name= -e ver= | cut -d '"' -f2 | sed 'N;s/\n/ /' |
|
||||
grep "${PKG}" | cut -d ' ' -f 2)
|
||||
VER=$(curl -sSf https://dl.google.com/linux/chrome/deb/dists/stable/main/binary-amd64/Packages |
|
||||
grep -A1 "Package: ${PKG}" |
|
||||
awk '/Version/{print $2}' |
|
||||
cut -d '-' -f1)
|
||||
|
||||
# Insert latest version into PKGBUILD and update hashes
|
||||
sed -i \
|
||||
-e "s/^pkgver=.*/pkgver=${VER}/" \
|
||||
-e 's/pkgrel=.*/pkgrel=1/' \
|
||||
PKGBUILD
|
||||
updpkgsums
|
||||
|
||||
# Check whether this changed anything
|
||||
if (git diff --exit-code PKGBUILD); then
|
||||
|
@ -23,6 +23,8 @@ if (git diff --exit-code PKGBUILD); then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
updpkgsums
|
||||
|
||||
# Update .SRCINFO
|
||||
makepkg --printsrcinfo >.SRCINFO
|
||||
|
||||
|
|
Loading…
Reference in a new issue