Files
SysTray-X/update_tb_version.sh
2021-08-17 22:09:32 +02:00

41 lines
1.6 KiB
Bash
Executable File

#!/bin/bash
VERSION=$1
INCVERSION=$((VERSION+1))
echo "Version: "$VERSION
echo "Version + 1: "$INCVERSION
SERVICE_FILE="./dist/rpm/kde/systray-x.spec"
sed -i -e "s?\(^Requires: thunderbird < \).*?\1$INCVERSION?" $SERVICE_FILE
sed -i -e "s?\(^Requires: MozillaThunderbird < \).*?\1$INCVERSION?" $SERVICE_FILE
SERVICE_FILE="./dist/rpm/gnome/systray-x-gnome.spec"
sed -i -e "s?\(^Requires: thunderbird < \).*?\1$INCVERSION?" $SERVICE_FILE
sed -i -e "s?\(^Requires: MozillaThunderbird < \).*?\1$INCVERSION?" $SERVICE_FILE
SERVICE_FILE="./dist/rpm/minimal/systray-x-minimal.spec"
sed -i -e "s?\(^Requires: thunderbird < \).*?\1$INCVERSION?" $SERVICE_FILE
sed -i -e "s?\(^Requires: MozillaThunderbird < \).*?\1$INCVERSION?" $SERVICE_FILE
SERVICE_FILE="./dist/deb/kde/debian.control"
sed -i -e "s?\(^Depends:.*, thunderbird (< 1:\).*?\1$INCVERSION)?" $SERVICE_FILE
SERVICE_FILE="./dist/deb/gnome/debian.control"
sed -i -e "s?\(^Depends:.*, thunderbird (< 1:\).*?\1$INCVERSION)?" $SERVICE_FILE
SERVICE_FILE="./dist/deb/minimal/debian.control"
sed -i -e "s?\(^Depends:.*, thunderbird (< 1:\).*?\1$INCVERSION)?" $SERVICE_FILE
SERVICE_FILE="./dist/arch/kde/PKGBUILD"
sed -i -e "s?\(^.*thunderbird<\).*?\1$INCVERSION'?" $SERVICE_FILE
SERVICE_FILE="./dist/arch/gnome/PKGBUILD"
sed -i -e "s?\(^.*thunderbird<\).*?\1$INCVERSION'?" $SERVICE_FILE
SERVICE_FILE="./dist/arch/minimal/PKGBUILD"
sed -i -e "s?\(^.*thunderbird<\).*?\1$INCVERSION'?" $SERVICE_FILE
MANIFEST_FILE="./webext/manifest.json"
sed -i -e "s?\(^.*\"strict_max_version\": \"\).*\(\.\*\"\)?\1$VERSION\2?" $MANIFEST_FILE