diff --git a/ressources/adguardhome/debmaker b/ressources/adguardhome/debmaker index d752d31..7a5b486 100755 --- a/ressources/adguardhome/debmaker +++ b/ressources/adguardhome/debmaker @@ -1,12 +1,12 @@ #!/bin/bash -VERSION=0.108.0-b.57 +VERSION=0.108.0-b.62 APP=adguardhome DEPOT=https://github.com/AdguardTeam/AdGuardHome.git GIT_VERSION=v${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm -IMAGE_SIZE=4 +IMAGE_SIZE=6 PACKAGE_DEPENDENCY="build-essential nodejs yarn" main(){ @@ -23,6 +23,7 @@ main(){ build() { cd /tmp/${APP} PATH=$PATH:/usr/local/go/bin + sed -i "s/CHANNEL = development/CHANNEL = release/" Makefile make } diff --git a/ressources/authelia/debmaker b/ressources/authelia/debmaker index 35aa8e5..f45a692 100755 --- a/ressources/authelia/debmaker +++ b/ressources/authelia/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=4.38.10 +VERSION=4.38.18 APP=authelia DEPOT=https://github.com/authelia/authelia.git GIT_VERSION=v${VERSION} diff --git a/ressources/babybuddy/debmaker b/ressources/babybuddy/debmaker index b0d2586..4ca13d7 100755 --- a/ressources/babybuddy/debmaker +++ b/ressources/babybuddy/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.6.3 +VERSION=2.7.0 APP=babybuddy DEPOT=https://github.com/babybuddy/babybuddy.git GIT_VERSION=v${VERSION} diff --git a/ressources/baikal/debmaker b/ressources/baikal/debmaker index 8d25ae2..f6fcde2 100755 --- a/ressources/baikal/debmaker +++ b/ressources/baikal/debmaker @@ -1,11 +1,11 @@ #!/bin/bash -VERSION=0.9.5 +VERSION=0.10.1 APP=baikal DEPOT=https://github.com/sabre-io/Baikal.git GIT_VERSION=${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) -DEBIAN_VERSION_CODENAME=bullseye +DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=2 PACKAGE_DEPENDENCY="php-mbstring php-exif php-opcache php-sockets php-tokenizer php-iconv php-json php-phar php-curl rsync zip make composer unzip devscripts debhelper-compat build-essential" diff --git a/ressources/bitwarden-desktop/debmaker b/ressources/bitwarden-desktop/debmaker index 47185da..2f3235f 100755 --- a/ressources/bitwarden-desktop/debmaker +++ b/ressources/bitwarden-desktop/debmaker @@ -1,13 +1,13 @@ #!/bin/bash -VERSION=2024.10.1 +VERSION=2025.1.1 APP=bitwarden-desktop DEPOT=https://github.com/bitwarden/clients.git GIT_VERSION=desktop-v${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=8 -PACKAGE_DEPENDENCY="pkg-config libsecret-1-dev yarn nodejs build-essential libglib2.0-dev" +PACKAGE_DEPENDENCY="pkg-config libsecret-1-dev yarn nodejs build-essential libglib2.0-dev rpm" main(){ base_package_upgrade @@ -28,7 +28,8 @@ build() { cd /tmp/${APP} npm ci cd /tmp/${APP}/apps/desktop/desktop_native/ - npm run build -- --target x86_64-unknown-linux-musl + node build.js cross-platform + npm run dist:lin cd /tmp/${APP}/apps/desktop PATH=$PATH:/tmp/${APP}/node_modules/.bin/ npm run clean:dist @@ -51,7 +52,7 @@ makedeb(){ cp $tmp ${PATH_DEB}/usr/share/icons/hicolor/${RESOLUTION}/apps/bitwarden.png done ln -s /usr/lib/bitwarden-desktop/bitwarden ${PATH_DEB}/usr/bin/bitwarden - chmod u+s ${PATH_DEB}/usr/bin/bitwarden/chrome-sandbox + chmod u+s ${PATH_DEB}/usr/lib/bitwarden-desktop/chrome-sandbox sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist diff --git a/ressources/element-web/debmaker b/ressources/element-web/debmaker index 0d61578..33787cf 100755 --- a/ressources/element-web/debmaker +++ b/ressources/element-web/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.11.78 +VERSION=1.11.89 APP=element-web DEPOT=https://github.com/vector-im/element-web.git GIT_VERSION=v${VERSION} @@ -14,6 +14,7 @@ main(){ configure_depot_yarn configure_depot_nodejs 20 install_package_dependency + get_git_source build makedeb } diff --git a/ressources/forgejo/debmaker b/ressources/forgejo/debmaker index 5b4ddfe..47008c5 100755 --- a/ressources/forgejo/debmaker +++ b/ressources/forgejo/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=9.0.1 +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 daebc22..29b5b1b 100755 --- a/ressources/glpi/debmaker +++ b/ressources/glpi/debmaker @@ -49,6 +49,7 @@ makedeb(){ mv ${PATH_DEB}/local_define.php ${PATH_DEB}/etc/glpi mv ${PATH_DEB}/apache2-glpi.conf ${PATH_DEB}/usr/share/doc/glpi/ mv ${PATH_DEB}/glpi.cron ${PATH_DEB}/etc/cron.d/glpi + chmod 644 ${PATH_DEB}/etc/cron.d/glpi sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist diff --git a/ressources/grocy/debmaker b/ressources/grocy/debmaker index 23e3456..2303f99 100755 --- a/ressources/grocy/debmaker +++ b/ressources/grocy/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=4.0.3 +VERSION=4.3.0 APP=grocy DEPOT=https://github.com/grocy/grocy.git GIT_VERSION=v$VERSION diff --git a/ressources/joplin-desktop/debmaker b/ressources/joplin-desktop/debmaker index 0fb2909..aaf3aa9 100755 --- a/ressources/joplin-desktop/debmaker +++ b/ressources/joplin-desktop/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=3.1.15 +VERSION=3.2.6 APP=joplin-desktop GIT_VERSION=v${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) diff --git a/ressources/keycloak/debmaker b/ressources/keycloak/debmaker index b9e7363..7b2a0f4 100755 --- a/ressources/keycloak/debmaker +++ b/ressources/keycloak/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=26.0.5 +VERSION=26.1.0 APP=keycloak DEPOT=https://github.com/keycloak/keycloak.git GIT_VERSION=${VERSION} diff --git a/ressources/kimai2/debmaker b/ressources/kimai2/debmaker index a399ba3..249751c 100755 --- a/ressources/kimai2/debmaker +++ b/ressources/kimai2/debmaker @@ -1,18 +1,19 @@ #!/bin/bash -VERSION=2.24.0 +VERSION=2.27.0 APP=kimai2 DEPOT=https://github.com/kevinpapst/kimai2.git GIT_VERSION=${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=2 -PACKAGE_DEPENDENCY="composer php-zip php-gd php-intl php-xsl" +PACKAGE_DEPENDENCY="php-zip php-gd php-intl php-xsl" main() { base_package_upgrade install_package_dependency - default_prebuild + install_composer + get_git_source build makedeb } diff --git a/ressources/mautrix-whatsapp/debmaker b/ressources/mautrix-whatsapp/debmaker index 0addc96..cab717a 100755 --- a/ressources/mautrix-whatsapp/debmaker +++ b/ressources/mautrix-whatsapp/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.11.0 +VERSION=0.11.2 APP=mautrix-whatsapp DEPOT=https://github.com/mautrix/whatsapp.git GIT_VERSION=v${VERSION} diff --git a/ressources/metabase/debmaker b/ressources/metabase/debmaker index 10c623e..7189f88 100755 --- a/ressources/metabase/debmaker +++ b/ressources/metabase/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.51.3 +VERSION=0.52.5.4 APP=metabase DEPOT=https://github.com/metabase/metabase.git GIT_VERSION=v$VERSION diff --git a/ressources/moodle-auth-oidc/debmaker b/ressources/moodle-auth-oidc/debmaker index 2917891..97a38a0 100755 --- a/ressources/moodle-auth-oidc/debmaker +++ b/ressources/moodle-auth-oidc/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=4.4.0 +VERSION=4.4.1 APP=moodle-auth-oidc DEPOT=https://github.com/microsoft/moodle-auth_oidc.git GIT_VERSION=v$VERSION diff --git a/ressources/moodle-editor-morefontcolors/debmaker b/ressources/moodle-editor-morefontcolors/debmaker new file mode 100755 index 0000000..cd50713 --- /dev/null +++ b/ressources/moodle-editor-morefontcolors/debmaker @@ -0,0 +1,27 @@ +#!/bin/bash + +VERSION=2021062100 +APP=moodle-editor-morefontcolors +DEPOT=https://github.com/ndunand/moodle-atto_morefontcolors.git +GIT_VERSION=$VERSION +DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) +DEBIAN_VERSION_CODENAME=bookworm +IMAGE_SIZE=1 +PACKAGE_DEPENDENCY="" + +main(){ + base_package_upgrade + install_package_dependency + default_prebuild + makedeb +} + +makedeb(){ + PATH_DEB=/tmp/src/rootfs + + mkdir -p ${PATH_DEB}/usr/share/moodle/lib/editor/atto/plugins/ + mv /tmp/${APP} ${PATH_DEB}/usr/share/moodle/lib/editor/atto/plugins/morefontcolors + + sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control + fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist +} diff --git a/ressources/moodle-editor-morefontcolors/rootfs/DEBIAN/changelog b/ressources/moodle-editor-morefontcolors/rootfs/DEBIAN/changelog new file mode 100644 index 0000000..e69de29 diff --git a/ressources/moodle-editor-morefontcolors/rootfs/DEBIAN/control b/ressources/moodle-editor-morefontcolors/rootfs/DEBIAN/control new file mode 100644 index 0000000..2ed0239 --- /dev/null +++ b/ressources/moodle-editor-morefontcolors/rootfs/DEBIAN/control @@ -0,0 +1,8 @@ +Package: moodle-editor-morefontcolors +Version: %VERSION% +Section: contrib +Priority: optional +Architecture: all +Maintainer: Thomas Legay +Depends: moodle +Description: moodle-editor-morefontcolors diff --git a/ressources/moodle-theme-pimenko/debmaker b/ressources/moodle-theme-pimenko/debmaker new file mode 100755 index 0000000..b2375ac --- /dev/null +++ b/ressources/moodle-theme-pimenko/debmaker @@ -0,0 +1,32 @@ +#!/bin/bash + +VERSION=4.4.0 +APP=moodle-theme-pimenko +DEPOT=https://github.com/DigiDago/moodle-theme_pimenko.git +GIT_VERSION=last +DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) +DEBIAN_VERSION_CODENAME=bookworm +IMAGE_SIZE=1 +PACKAGE_DEPENDENCY="" + +main(){ + base_package_upgrade + install_package_dependency + default_prebuild + build + makedeb +} + +build(){ + cd /tmp/${APP} +} + +makedeb(){ + PATH_DEB=/tmp/src/rootfs + + mkdir -p ${PATH_DEB}/usr/share/moodle/theme/ + mv /tmp/${APP} ${PATH_DEB}/usr/share/moodle/theme/pimenko + + sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control + fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist +} diff --git a/ressources/moodle-theme-pimenko/rootfs/DEBIAN/changelog b/ressources/moodle-theme-pimenko/rootfs/DEBIAN/changelog new file mode 100644 index 0000000..e69de29 diff --git a/ressources/moodle-theme-pimenko/rootfs/DEBIAN/control b/ressources/moodle-theme-pimenko/rootfs/DEBIAN/control new file mode 100644 index 0000000..38528da --- /dev/null +++ b/ressources/moodle-theme-pimenko/rootfs/DEBIAN/control @@ -0,0 +1,8 @@ +Package:moodle-theme-pimenko +Version: %VERSION% +Section: contrib +Priority: optional +Architecture: all +Maintainer: Thomas Legay +Depends: moodle +Description: moodle-theme-pimenko diff --git a/ressources/moodle/debmaker b/ressources/moodle/debmaker index d8ba1f1..02c86e9 100755 --- a/ressources/moodle/debmaker +++ b/ressources/moodle/debmaker @@ -1,9 +1,9 @@ #!/bin/bash -VERSION=4.4.0 +VERSION=4.5.0 APP=moodle DEPOT=git://git.moodle.org/moodle.git -GIT_VERSION=MOODLE_404_STABLE +GIT_VERSION=MOODLE_405_STABLE DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=2 diff --git a/ressources/phpbb/debmaker b/ressources/phpbb/debmaker index 6b1042f..64ebba4 100755 --- a/ressources/phpbb/debmaker +++ b/ressources/phpbb/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=3.3.13 +VERSION=3.3.14 APP=phpbb DEPOT=https://github.com/phpbb/phpbb.git GIT_VERSION=release-$VERSION diff --git a/ressources/postfixadmin/debmaker b/ressources/postfixadmin/debmaker index d1ffe8d..f3f78e1 100755 --- a/ressources/postfixadmin/debmaker +++ b/ressources/postfixadmin/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=3.3.13 +VERSION=3.3.15 APP=postfixadmin DEPOT=https://github.com/postfixadmin/postfixadmin.git GIT_VERSION=postfixadmin-${VERSION} diff --git a/ressources/rustdesk-server/debmaker b/ressources/rustdesk-server/debmaker index 1890b3a..1727401 100755 --- a/ressources/rustdesk-server/debmaker +++ b/ressources/rustdesk-server/debmaker @@ -1,7 +1,7 @@ #!/bin/bash APP=rustdesk-server -VERSION=1.1.12 +VERSION=1.1.13 GIT_VERSION=$VERSION DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm diff --git a/ressources/uptime-kuma/debmaker b/ressources/uptime-kuma/debmaker index 08f30db..a16a370 100755 --- a/ressources/uptime-kuma/debmaker +++ b/ressources/uptime-kuma/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.23.15 +VERSION=1.23.16 APP=uptime-kuma GIT_VERSION=${VERSION} DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/vaultwarden-web/debmaker b/ressources/vaultwarden-web/debmaker index f46d41d..f2246dd 100755 --- a/ressources/vaultwarden-web/debmaker +++ b/ressources/vaultwarden-web/debmaker @@ -1,9 +1,9 @@ #!/bin/bash -VERSION=2024.6.2 +VERSION=2025.1.0 APP=vaultwarden-web BITWARDEN_VERSION=v${VERSION} -GIT_VERSION=${BITWARDEN_VERSION}c +GIT_VERSION=${BITWARDEN_VERSION} DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) DEBIAN_VERSION_CODENAME=bookworm IMAGE_SIZE=5 @@ -12,7 +12,7 @@ PACKAGE_DEPENDENCY="build-essential python-is-python3 nodejs" main(){ base_package_upgrade - configure_depot_nodejs 18 + configure_depot_nodejs 22 install_package_dependency get_git_source build diff --git a/ressources/vaultwarden/debmaker b/ressources/vaultwarden/debmaker index 39003e4..de1c9b9 100755 --- a/ressources/vaultwarden/debmaker +++ b/ressources/vaultwarden/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.32.4 +VERSION=1.32.7 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 6723103..bb66c32 100755 --- a/ressources/zigbee2mqtt/debmaker +++ b/ressources/zigbee2mqtt/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.40.0 +VERSION=1.42.0 APP=zigbee2mqtt DEPOT=https://github.com/Koenkk/zigbee2mqtt.git GIT_VERSION=${VERSION}