blob: 8d3a64c764dbdbd8d3ae269ef11387c4d865506c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!/usr/bin/env bash
# Description: This is a script to update the version
# Run it with `sh update.sh <version>` and it will do the following:
# 1. Update the `pkgver` in `PKGBUILD` to the latest version
# 2. Run `updpkgsums` to update the sha256 sums
# - If you don't have it installed, run `sudo pacman -S pacman-contrib`
# 3. Update the `.SRCINFO` by running:
# ```bash
# # This is the file that is used by the AUR to show package info.
# makepkg --printsrcinfo > .SRCINFO
# ```
# 4. Push changes to GitHub: `git push`
set -euo pipefail
main() {
# Check that they have updpkgsums installed
if ! command -v updpkgsums &>/dev/null; then
echo "updpkgsums could not be found."
echo "This is needed to update the sha256 sums"
echo -e "Installing for you with: sudo pacman -S pacman-contrib"
sudo pacman -S pacman-contrib --noconfirm
fi
ls
grep "pkgver=" PKGBUILD
CODE_SERVER_CURRENT_VERSION=$(grep "pkgver=" PKGBUILD | cut -d "=" -f2-)
echo "Current version: ${CODE_SERVER_CURRENT_VERSION}"
CODE_SERVER_VERSION_TO_UPDATE=${1:-""}
if [ "$CODE_SERVER_VERSION_TO_UPDATE" == "" ]; then
echo "Please call this script with the version to update to."
echo "i.e. 4.5.2"
exit 1
fi
echo -e "Great! We'll update to $CODE_SERVER_VERSION_TO_UPDATE\n"
sed -i "s/$CODE_SERVER_CURRENT_VERSION/$CODE_SERVER_VERSION_TO_UPDATE/" PKGBUILD
updpkgsums
makepkg --printsrcinfo > .SRCINFO
echo "All updated!"
echo "Committing and pushing to GitHub"
git add .
git commit -m "chore: updating version $CODE_SERVER_VERSION_TO_UPDATE"
git push
echo "Action requried: make sure to push to aur: git push aur"
}
main "$@"
|