Commit 439ef8bc authored by Vitaly Lipatov's avatar Vitaly Lipatov

packaging/AUR: automate update.sh

parent b07b295a
#!/bin/sh #!/bin/sh
SPECNAME=$(pwd)/../../eepm.spec fatal()
{
echo "$*" >&2
exit 1
}
SPECNAME=$(realpath $(dirname $0)/../../eepm.spec)
ls "$SPECNAME" || fatal
cd ~/Projects/git/eepm.aur/ || exit cd ~/Projects/git/eepm.aur/ || fatal
if [ -f /usr/share/eterbuild/eterbuild ] ; then if [ -f /usr/share/eterbuild/eterbuild ] ; then
...@@ -11,6 +19,7 @@ if [ -f /usr/share/eterbuild/eterbuild ] ; then ...@@ -11,6 +19,7 @@ if [ -f /usr/share/eterbuild/eterbuild ] ; then
load_mod spec etersoft load_mod spec etersoft
VERSION="$(get_version $SPECNAME)" VERSION="$(get_version $SPECNAME)"
[ -n "$VERSION" ] || fatal
echo "$ subst \"s|^pkgver=.*|pkgver=$VERSION|\" PKGBUILD" echo "$ subst \"s|^pkgver=.*|pkgver=$VERSION|\" PKGBUILD"
...@@ -20,13 +29,16 @@ fi ...@@ -20,13 +29,16 @@ fi
if [ $(epm print info -g) != "pacman" ] ; then if [ $(epm print info -g) != "pacman" ] ; then
echo "Rerun the script on Arch based system" echo "Rerun the script on Arch based system"
exit 1 ssh manjaro bash -x ~/Projects/git/eepm/packaging/AUR/update.sh
exit 0
fi fi
updpkgsums updpkgsums
makepkg --printsrcinfo > .SRCINFO makepkg --printsrcinfo > .SRCINFO
git add PKGBUILD .SRCINFO git add PKGBUILD .SRCINFO
git commit
. PKGBUILD
git commit -m "new version $pkgver"
makepkg -C -f --noconfirm makepkg -C -f --noconfirm
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment