Update version element-web metabase zigbee2mqtt

This commit is contained in:
thomas 2022-04-08 09:09:18 +02:00
parent a36f18bb86
commit 9de0f839b6
3 changed files with 23 additions and 14 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
VERSION=1.10.7
RELEASE=3
VERSION=1.10.8
RELEASE=1
[ -e ./lib/function.sh ] && source ./lib/function.sh

View File

@ -1,6 +1,6 @@
#!/bin/bash
VERSION=0.42.3
VERSION=0.42.4
[ -e ./lib/function.sh ] && source ./lib/function.sh

View File

@ -1,39 +1,48 @@
#!/bin/bash
VERSION=1.25.0
RELEASE=1
[ -e ./lib/function.sh ] && source ./lib/function.sh
APP=zigbee2mqtt
VERSION=1.24.0
GIT_VERSION=$VERSION
DEB_VERSION=$VERSION-3
DEPOT=https://github.com/Koenkk/zigbee2mqtt.git
GIT_VERSION=${VERSION}
DEB_VERSION=${VERSION}-${RELEASE}
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=
IMAGE_SIZE=2
STEP="envinit prebuild build makedeb"
envinit() {
apt install -y --no-install-recommends wget ca-certificates nodejs npm git make g++ gcc fakeroot dpkg
if [ $(dpkg -l | grep -e 'ii nodejs' | wc -l) -eq 1 ];
then
apt-get update
apt-get dist-upgrade -y
else
apt install -y --no-install-recommends wget ca-certificates nodejs npm git make g++ gcc fakeroot dpkg
fi
}
prebuild(){
GIT_VERSION=$1
git clone --depth 1 -b ${GIT_VERSION} https://github.com/Koenkk/zigbee2mqtt.git /tmp/zigbee2mqtt
[ -e /tmp/git ] && rm -fr /tmp/git
[ -e /tmp/${APP} ] || mkdir /tmp/${APP}
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/git
cp -r /tmp/git/. /tmp/${APP}
}
build() {
cd /tmp/zigbee2mqtt/
cd /tmp/${APP}
npm ci
npm run build
}
makedeb(){
GIT_VERSION=$1
DEB_VERSION=$2
PATH_DEB=/tmp/src/rootfs
cp -fr /tmp/zigbee2mqtt/data/configuration.yaml ${PATH_DEB}/etc/zigbee2mqtt/configuration.yaml
cp -fr /tmp/zigbee2mqtt/* ${PATH_DEB}/usr/lib/zigbee2mqtt/
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
}