mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 12:41:55 +01:00
* removed opt dependencies * removed icon resizing * changed source from deb to rpm ** thanks nowy for your contribution Signed-off-by: Aakash Hemadri <aakashhemadri123@gmail.com>
65 lines
1.8 KiB
Bash
Executable file
65 lines
1.8 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script updates the package version if a new version is available
|
|
set -euxo pipefail
|
|
|
|
# Pull latest changes
|
|
git pull
|
|
|
|
# Get channel
|
|
CHANNEL=$(awk -F '=' '/^_channel/{ print $2 }' PKGBUILD)
|
|
PKG="microsoft-edge-${CHANNEL}"
|
|
|
|
#Get filelists URL
|
|
FILELISTS=$(curl -sSf "https://packages.microsoft.com/yumrepos/edge/repodata/repomd.xml" |
|
|
xmllint --xpath 'string(//*[local-name()="data"][@type="filelists"]/*[local-name()="location"]/@href)' -)
|
|
|
|
# Get latest version
|
|
VER=$(curl -sSf "https://packages.microsoft.com/yumrepos/edge/${FILELISTS}" |
|
|
gzip -dc |
|
|
xmllint --xpath 'string(//*[local-name()="package"][@name="microsoft-edge-stable"][last()]/*[local-name()="version"]/@ver)' -)
|
|
|
|
# updpkgsums
|
|
SUM256=$(curl -sSf "https://packages.microsoft.com/yumrepos/edge/${FILELISTS}" |
|
|
gzip -dc |
|
|
xmllint --xpath 'string(//*[local-name()="package"][@name="microsoft-edge-stable"][last()]/@pkgid)' -)
|
|
|
|
# Insert latest version into PKGBUILD and update hashes
|
|
sed -i \
|
|
-e "s/^pkgver=.*/pkgver=${VER}/" \
|
|
PKGBUILD
|
|
|
|
# Check whether this changed anything
|
|
if (git diff --exit-code PKGBUILD); then
|
|
echo "Package ${PKG} has most recent version ${VER}"
|
|
exit 0
|
|
fi
|
|
|
|
# Insert latest shasum into PKGBUILD and update hashes
|
|
sed -i \
|
|
-e "s/^sha256sums=('.*/sha256sums=('${SUM256}'/" \
|
|
PKGBUILD
|
|
|
|
# Reset pkgrel
|
|
sed -i \
|
|
-e 's/pkgrel=.*/pkgrel=1/' \
|
|
PKGBUILD
|
|
|
|
# Preparing arch-chroot
|
|
CHROOT=$HOME/.local/share/chroot
|
|
if [[ ! -d "$CHROOT" ]]; then
|
|
mkdir -p ~/.local/share/chroot
|
|
mkarchroot $HOME/.local/share/chroot/root base-devel
|
|
arch-nspawn $HOME/.local/share/chroot/root pacman -Syu
|
|
fi
|
|
|
|
# Start generate package
|
|
makechrootpkg -c -r $CHROOT -- -Acsf .
|
|
|
|
# Update .SRCINFO
|
|
makepkg --printsrcinfo >.SRCINFO
|
|
|
|
# Commit changes
|
|
git add PKGBUILD .SRCINFO
|
|
git commit -s -m "Update ${PKG} to v${VER}"
|
|
rm -rf *.deb *.rpm *.log *.zst
|