Compare commits
2 Commits
6c4f22d566
...
9a733a6499
Author | SHA1 | Date |
---|---|---|
thomas | 9a733a6499 | |
thomas | 06ecaba890 |
|
@ -64,6 +64,7 @@ To enter in temporary filesystem
|
|||
- [metabase](./ressources/metabase)
|
||||
- [minio](./ressources/minio)
|
||||
- [phpbb](./ressources/phpbb)
|
||||
- [picapport](./ressources/picapport)
|
||||
- [roundcubemail](./ressources/roundcubemail)
|
||||
- [rss-bridge](./ressources/rss-bridge)
|
||||
- [rustdesk-server](./ressources/rustdesk-server)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: adguardhome
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: amd64
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: authelia
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: bitwarden-desktop
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION=2.0.37
|
||||
VERSION=2.1.3
|
||||
APP=budibase
|
||||
DEPOT=https://github.com/Budibase/budibase.git
|
||||
GIT_VERSION=last
|
||||
GIT_VERSION=v${VERSION}
|
||||
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||
DEBIAN_VERSION_CODENAME=bullseye
|
||||
IMAGE_SIZE=20
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: budibase
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: cloudbeaver
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: default-jre-headless
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: clouseau
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: zulu-7
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION=1.11.12
|
||||
VERSION=1.11.13
|
||||
APP=element-web
|
||||
DEPOT=https://github.com/vector-im/element-web.git
|
||||
GIT_VERSION=v${VERSION}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: element-web
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: flame
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends:nodejs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: gitea
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: git
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: glpi
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: php-json, php-xml, php-curl, php-gd, php-intl, php-ldap, php-zip, php-mysql, php-bz2, php-mbstring
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: gotify-server
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: grocy
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: php-simplexml, php-gd, php-sqlite3, php-intl, php-mbstring
|
||||
|
|
|
@ -1,19 +1,22 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION=2.9.11
|
||||
VERSION=2.9.12
|
||||
APP=joplin-desktop
|
||||
GIT_VERSION=v${VERSION}
|
||||
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
|
||||
DEPOT=https://github.com/laurent22/joplin.git
|
||||
DEBIAN_VERSION_CODENAME=bullseye
|
||||
IMAGE_SIZE=10
|
||||
PACKAGE_DEPENDENCY="build-essential python nodejs rsync yarn"
|
||||
|
||||
STEP="base_package_upgrade envinit get_git_source build makedeb"
|
||||
|
||||
envinit() {
|
||||
main(){
|
||||
base_package_upgrade
|
||||
configure_depot_yarn
|
||||
configure_depot_nodejs
|
||||
apt install -y --no-install-recommends build-essential python nodejs rsync yarn
|
||||
install_package_dependency
|
||||
get_git_source
|
||||
build
|
||||
makedeb
|
||||
}
|
||||
|
||||
build() {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: joplin
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: nodejs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: joplin-server
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: nodejs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: keycloak
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: default-jre
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: kimai2
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: php (>= 7.4), php-gd, php-intl, php-json, php-mbstring, php-pdo, php-xsl, php-zip
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: joplin-server
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: nodejs
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: mailhog
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: mautrix-syncproxy
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: mautrix-wsproxy
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
VERSION=0.44.5
|
||||
VERSION=0.44.6
|
||||
APP=metabase
|
||||
DEPOT=https://github.com/metabase/metabase.git
|
||||
GIT_VERSION=v$VERSION
|
||||
|
@ -9,13 +9,15 @@ DEBIAN_VERSION_CODENAME=bullseye
|
|||
IMAGE_SIZE=10
|
||||
PACKAGE_DEPENDENCY="build-essential default-jdk curl nodejs yarn"
|
||||
|
||||
STEP="base_package_upgrade envinit get_git_source build makedeb"
|
||||
|
||||
envinit() {
|
||||
main(){
|
||||
base_package_upgrade
|
||||
configure_depot_yarn
|
||||
configure_depot_nodejs
|
||||
install_package_dependency
|
||||
install_clojure
|
||||
get_git_source
|
||||
build
|
||||
makedeb
|
||||
}
|
||||
|
||||
build() {
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
Package: metabase
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Depends: default-jre
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
Description: metabase
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: minio
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: amd64
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: phpbb-language-fr
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: phpbb
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: picapport
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: non-free
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: default-jre
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
source /etc/default/picapport
|
||||
|
||||
/usr/bin/java ${JAVA_ARGS} -jar /usr/lib/picapport/picapport-headless.jar ${PICAPPORT_CONF}
|
||||
exec /usr/bin/java ${JAVA_ARGS} -jar /usr/lib/picapport/picapport-headless.jar ${PICAPPORT_CONF}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: roundcubemail
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: php-common, php-xml, php-json, php-gd, php-mbstring, php-xml, php-tidy, php-curl, php-tokenizer, php-bcmath, php-intl, php-fpm, php-sqlite3, php-pgsql, php-mysql
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: rss-bridge
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: tt-rss-plugin-wallabag
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: tt-rss, php-curl
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: tt-rss
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: php-pgsql, php-mysql, php-intl, php-mbstring, php-xml
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: vaultwarden-web
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: vaultwarden
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: libmariadb-dev, libpq-dev, libmysql++-dev
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: wallabag
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: php-common, php-xml, php-json, php-gd, php-mbstring, php-xml, php-tidy, php-curl, php-tokenizer, php-bcmath, php-intl, php-fpm, php-sqlite3, php-pgsql, php-mysql
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Package: zigbee2mqtt
|
||||
Version: %VERSION%
|
||||
Section: base
|
||||
Section: contrib
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: nodejs, npm
|
||||
|
|
Loading…
Reference in New Issue