From 2ab7cf7938318149f580a3d79eeb0c03139c8613 Mon Sep 17 00:00:00 2001 From: thomas Date: Sun, 1 Jan 2023 23:02:32 +0100 Subject: [PATCH] update --- ressources/budibase/debmaker | 4 ++-- ressources/budibase/rootfs/DEBIAN/postinst | 4 ++-- ressources/gitea/debmaker | 4 ++-- ressources/gotify/debmaker | 2 +- ressources/joplin-desktop/debmaker | 2 +- ressources/joplin-server/debmaker | 2 +- ressources/kimai2/debmaker | 2 +- ressources/mealie/rootfs-api/DEBIAN/control | 2 +- ressources/mealie/rootfs-api/usr/bin/mealie-api | 2 +- ressources/minio/debmaker | 2 +- ressources/vaultwarden-web/debmaker | 2 +- ressources/vaultwarden/debmaker | 2 +- ressources/zigbee2mqtt/debmaker | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/ressources/budibase/debmaker b/ressources/budibase/debmaker index 6429d5b..e552122 100755 --- a/ressources/budibase/debmaker +++ b/ressources/budibase/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.2.6 +VERSION=2.2.9 APP=budibase DEPOT=https://github.com/Budibase/budibase.git GIT_VERSION=v${VERSION} @@ -19,7 +19,7 @@ main(){ envinit() { configure_depot_yarn - configure_depot_nodejs + configure_depot_nodejs 18 install_package_dependency } diff --git a/ressources/budibase/rootfs/DEBIAN/postinst b/ressources/budibase/rootfs/DEBIAN/postinst index 0523ce3..b29c2bb 100755 --- a/ressources/budibase/rootfs/DEBIAN/postinst +++ b/ressources/budibase/rootfs/DEBIAN/postinst @@ -1,9 +1,9 @@ #!/bin/bash -id budibase-server &> /dev/null || useradd budibase-server -r -s /bin/false -d /var/lib/budibase-server +id budibase-server &> /dev/null || useradd budibase-server -r -s /bin/false -md /var/lib/budibase-server chown -R budibase-server:budibase-server /var/lib/budibase-server -id budibase-worker &> /dev/null || useradd budibase-worker -r -s /bin/false -d /var/lib/budibase-worker +id budibase-worker &> /dev/null || useradd budibase-worker -r -s /bin/false -md /var/lib/budibase-worker chown -R budibase-worker:budibase-worker /var/lib/budibase-worker diff --git a/ressources/gitea/debmaker b/ressources/gitea/debmaker index e04ef5c..81dbc8e 100755 --- a/ressources/gitea/debmaker +++ b/ressources/gitea/debmaker @@ -1,12 +1,12 @@ #!/bin/bash -VERSION=1.17.4 +VERSION=1.18.0 APP=gitea DEPOT=https://github.com/go-gitea/gitea.git GIT_VERSION=v${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bullseye -IMAGE_SIZE=5 +IMAGE_SIZE=6 PACKAGE_DEPENDENCY="build-essential nodejs" main() { diff --git a/ressources/gotify/debmaker b/ressources/gotify/debmaker index 5a9ddc6..b8b2958 100755 --- a/ressources/gotify/debmaker +++ b/ressources/gotify/debmaker @@ -1,7 +1,7 @@ #!/bin/bash APP=gotify -VERSION=2.2.0 +VERSION=2.2.1 GIT_VERSION=v$VERSION DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bullseye diff --git a/ressources/joplin-desktop/debmaker b/ressources/joplin-desktop/debmaker index 1b3bb74..ef70334 100755 --- a/ressources/joplin-desktop/debmaker +++ b/ressources/joplin-desktop/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.10.2 +VERSION=2.10.3 APP=joplin-desktop GIT_VERSION=v${VERSION} DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/joplin-server/debmaker b/ressources/joplin-server/debmaker index 73ef054..8242257 100755 --- a/ressources/joplin-server/debmaker +++ b/ressources/joplin-server/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.10.4 +VERSION=2.10.5 APP=joplin-server GIT_VERSION=server-v${VERSION} DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/kimai2/debmaker b/ressources/kimai2/debmaker index d9679ec..c76fffa 100755 --- a/ressources/kimai2/debmaker +++ b/ressources/kimai2/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.30.0 +VERSION=1.30.1 APP=kimai2 DEPOT=https://github.com/kevinpapst/kimai2.git GIT_VERSION=${VERSION} diff --git a/ressources/mealie/rootfs-api/DEBIAN/control b/ressources/mealie/rootfs-api/DEBIAN/control index 9342f8d..fada14d 100644 --- a/ressources/mealie/rootfs-api/DEBIAN/control +++ b/ressources/mealie/rootfs-api/DEBIAN/control @@ -3,6 +3,6 @@ Version: %VERSION% Section: contrib Priority: optional Architecture: all -Depends: python-is-python3 ( >= 3.10 ), crfpp +Depends: python3 ( >= 3.10 ), crfpp, python-is-python3 Maintainer: Thomas Legay Description: mealie-api diff --git a/ressources/mealie/rootfs-api/usr/bin/mealie-api b/ressources/mealie/rootfs-api/usr/bin/mealie-api index 13599de..d3a6615 100755 --- a/ressources/mealie/rootfs-api/usr/bin/mealie-api +++ b/ressources/mealie/rootfs-api/usr/bin/mealie-api @@ -1,3 +1,3 @@ -#!usr/bin/env bash +#!/usr/bin/env bash /usr/share/mealie/.venv/bin/python /usr/share/mealie/mealie/db/init_db.py /usr/share/mealie/.venv/bin/uvicorn mealie.app:app --host 0.0.0.0 diff --git a/ressources/minio/debmaker b/ressources/minio/debmaker index fa25e3e..c37cf32 100755 --- a/ressources/minio/debmaker +++ b/ressources/minio/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=RELEASE.2022-10-05T14-58-27Z +VERSION=RELEASE.2022-12-12T19-27-27Z APP=minio DEPOT=https://github.com/minio/minio.git GIT_VERSION=$VERSION diff --git a/ressources/vaultwarden-web/debmaker b/ressources/vaultwarden-web/debmaker index 128d5cf..81259ce 100755 --- a/ressources/vaultwarden-web/debmaker +++ b/ressources/vaultwarden-web/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2022.10.0 +VERSION=2022.12.0 APP=vaultwarden-web GIT_VERSION=v$VERSION DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/vaultwarden/debmaker b/ressources/vaultwarden/debmaker index 1044189..7edb5da 100755 --- a/ressources/vaultwarden/debmaker +++ b/ressources/vaultwarden/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.26.0 +VERSION=1.27.0 APP=vaultwarden GIT_VERSION=$VERSION DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/zigbee2mqtt/debmaker b/ressources/zigbee2mqtt/debmaker index a6c5554..ba01f9c 100755 --- a/ressources/zigbee2mqtt/debmaker +++ b/ressources/zigbee2mqtt/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.28.4 +VERSION=1.29.0 APP=zigbee2mqtt DEPOT=https://github.com/Koenkk/zigbee2mqtt.git GIT_VERSION=${VERSION}