diff --git a/lib/exec_in_chroot.sh b/lib/exec_in_chroot.sh index b406c91..d34d7d1 100755 --- a/lib/exec_in_chroot.sh +++ b/lib/exec_in_chroot.sh @@ -14,14 +14,14 @@ install_package_dependency(){ get_git_source(){ GIT_PATH=/tmp/${APP} [ ! "$1" == "" ] && GIT_PATH=$1 - [ -e ${GIT_PATH} ] && rm -fr ${GIT_PATH} + [ -e ${GIT_PATH} ] && rm -fr ${GIT_PATH} if [ "${GIT_VERSION}" = "last" ] ; then git clone --depth 1 ${DEPOT} ${GIT_PATH} else git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} ${GIT_PATH} fi -# [ "$1" != "noremovegit" ] && find ${GIT_PATH} -name .git -exec rm -fr {} \; + [ "$1" != "noremovegit" ] && find ${GIT_PATH} -name .git -exec rm -fr {} \; } configure_depot_lgy(){ diff --git a/ressources/adguardhome/debmaker b/ressources/adguardhome/debmaker index ad6dd5c..bb4ecd1 100755 --- a/ressources/adguardhome/debmaker +++ b/ressources/adguardhome/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.108.0-b.69 +VERSION=0.108.0-b.65 APP=adguardhome DEPOT=https://github.com/AdguardTeam/AdGuardHome.git GIT_VERSION=v${VERSION} diff --git a/ressources/bitwarden-desktop/debmaker b/ressources/bitwarden-desktop/debmaker index b8026d1..3cdb705 100755 --- a/ressources/bitwarden-desktop/debmaker +++ b/ressources/bitwarden-desktop/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2025.4.2 +VERSION=2025.3.0 APP=bitwarden-desktop DEPOT=https://github.com/bitwarden/clients.git GIT_VERSION=desktop-v${VERSION} diff --git a/ressources/forgejo/debmaker b/ressources/forgejo/debmaker index f8cb3a3..47008c5 100755 --- a/ressources/forgejo/debmaker +++ b/ressources/forgejo/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=11.0.0 +VERSION=9.0.3 APP=forgejo DEPOT=https://codeberg.org/forgejo/forgejo GIT_VERSION=v${VERSION} diff --git a/ressources/glpi/debmaker b/ressources/glpi/debmaker index 7603e55..a4829e3 100755 --- a/ressources/glpi/debmaker +++ b/ressources/glpi/debmaker @@ -1,9 +1,9 @@ #!/bin/bash -VERSION=11.0.0 +VERSION=10.0.18 APP=glpi DEPOT=https://github.com/glpi-project/glpi.git -GIT_VERSION=last +GIT_VERSION=${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=4 diff --git a/ressources/joplin-desktop/debmaker b/ressources/joplin-desktop/debmaker index 20d83ed..b6af66d 100755 --- a/ressources/joplin-desktop/debmaker +++ b/ressources/joplin-desktop/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=3.3.7 +VERSION=3.2.13 APP=joplin-desktop GIT_VERSION=v${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) @@ -9,12 +9,7 @@ DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=14 PACKAGE_DEPENDENCY="build-essential python-is-python3 nodejs rsync yarn" -clean(){ - rm -fr ~/.cache ~/.npm ~/.yarn -} - main(){ - clean base_package_upgrade configure_depot_yarn configure_depot_nodejs 20 @@ -25,6 +20,7 @@ main(){ } build() { +# rm -fr /tmp/${APP}/packages/app-mobile cd /tmp/${APP}/ BUILD_SEQUENCIAL=1 yarn install cd packages/app-desktop diff --git a/ressources/keycloak/debmaker b/ressources/keycloak/debmaker index 2074b94..135aaaf 100755 --- a/ressources/keycloak/debmaker +++ b/ressources/keycloak/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=26.2.4 +VERSION=26.2.0 APP=keycloak DEPOT=https://github.com/keycloak/keycloak.git GIT_VERSION=${VERSION} diff --git a/ressources/mautrix-whatsapp/debian/conffiles b/ressources/mautrix-whatsapp/debian/conffiles new file mode 100644 index 0000000..6dd2818 --- /dev/null +++ b/ressources/mautrix-whatsapp/debian/conffiles @@ -0,0 +1 @@ +/etc/mautrix-whatsapp/config.yaml diff --git a/ressources/mautrix-whatsapp/debian/postinst b/ressources/mautrix-whatsapp/debian/postinst index 969cfb0..bbcb658 100755 --- a/ressources/mautrix-whatsapp/debian/postinst +++ b/ressources/mautrix-whatsapp/debian/postinst @@ -1,9 +1,6 @@ -#!/bin/sh -set -e +#!/bin/bash APP=mautrix-whatsapp id $APP &> /dev/null || useradd $APP -r -s /bin/false -md /var/lib/$APP/ chown -R $APP:$APP /var/lib/$APP/ chown -R $APP:$APP /etc/mautrix-whatsapp/ - -#DEBHELPER# diff --git a/ressources/mautrix-whatsapp/debian/rules b/ressources/mautrix-whatsapp/debian/rules index c13185a..7d1249a 100755 --- a/ressources/mautrix-whatsapp/debian/rules +++ b/ressources/mautrix-whatsapp/debian/rules @@ -16,7 +16,6 @@ %: dh $@ - dh_installsystemd # dh_make generated override targets # This is example for Cmake (See https://bugs.debian.org/641051 ) diff --git a/ressources/mautrix-whatsapp/debmaker b/ressources/mautrix-whatsapp/debmaker index 01da3c0..2a54fcb 100755 --- a/ressources/mautrix-whatsapp/debmaker +++ b/ressources/mautrix-whatsapp/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.12.0 +VERSION=0.11.4 APP=mautrix-whatsapp DEPOT=https://github.com/mautrix/whatsapp.git GIT_VERSION=v${VERSION} diff --git a/ressources/vaultwarden-web/debmaker b/ressources/vaultwarden-web/debmaker index 9c7f7e2..1f6c135 100755 --- a/ressources/vaultwarden-web/debmaker +++ b/ressources/vaultwarden-web/debmaker @@ -1,10 +1,10 @@ #!/bin/bash -VERSION=2025.4.0 +VERSION=2025.3.1 APP=vaultwarden-web -BITWARDEN_VERSION=v$VERSION -GIT_VERSION=v$VERSION +BITWARDEN_VERSION=v2025.1.1 +GIT_VERSION=v2025.1.1 DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=5 diff --git a/ressources/zigbee2mqtt/debmaker b/ressources/zigbee2mqtt/debmaker index a5e3ec0..a441231 100755 --- a/ressources/zigbee2mqtt/debmaker +++ b/ressources/zigbee2mqtt/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.3.0 +VERSION=2.2.1 APP=zigbee2mqtt DEPOT=https://github.com/Koenkk/zigbee2mqtt.git GIT_VERSION=${VERSION}