Compare commits
3 Commits
6bc789087e
...
d528292a08
Author | SHA1 | Date |
---|---|---|
Thomas Legay | d528292a08 | |
Thomas Legay | c0eab91a7e | |
Thomas Legay | 038343fc0f |
|
@ -23,6 +23,11 @@ get_git_source(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configure_depot_erlang_rabbitmq(){
|
||||||
|
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/erlang-rabbitmq.gpg] https://ppa1.rabbitmq.com/rabbitmq/rabbitmq-erlang/deb/debian bookworm main" > /etc/apt/sources.list.d/erlang.list
|
||||||
|
wget -qO - "https://github.com/rabbitmq/signing-keys/releases/download/3.0/cloudsmith.rabbitmq-erlang.E495BB49CC4BBE5B.key" | gpg --dearmor > /usr/share/keyrings/erlang-rabbitmq.gpg
|
||||||
|
}
|
||||||
|
|
||||||
configure_depot_yarn() {
|
configure_depot_yarn() {
|
||||||
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" > /etc/apt/sources.list.d/yarn.list
|
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" > /etc/apt/sources.list.d/yarn.list
|
||||||
wget -qO - https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor > /usr/share/keyrings/yarnkey.gpg
|
wget -qO - https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor > /usr/share/keyrings/yarnkey.gpg
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=2.5.0
|
VERSION=2.6.0
|
||||||
APP=babybuddy
|
APP=babybuddy
|
||||||
DEPOT=https://github.com/babybuddy/babybuddy.git
|
DEPOT=https://github.com/babybuddy/babybuddy.git
|
||||||
GIT_VERSION=v${VERSION}
|
GIT_VERSION=v${VERSION}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=2024.7.1
|
VERSION=2024.10.1
|
||||||
APP=bitwarden-desktop
|
APP=bitwarden-desktop
|
||||||
DEPOT=https://github.com/bitwarden/clients.git
|
DEPOT=https://github.com/bitwarden/clients.git
|
||||||
GIT_VERSION=desktop-v${VERSION}
|
GIT_VERSION=desktop-v${VERSION}
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
#### claper
|
||||||
|
|
||||||
|
##### Information
|
||||||
|
Site : https://claper.co/
|
||||||
|
|
||||||
|
Doc : https://docs.claper.co/
|
||||||
|
|
||||||
|
Source : https://github.com/ClaperCo/Claper
|
||||||
|
|
||||||
|
##### Install
|
||||||
|
|
||||||
|
```bash
|
||||||
|
apt install -y wget ca-certificates
|
||||||
|
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||||
|
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/erlang-rabbitmq.gpg] https://ppa1.rabbitmq.com/rabbitmq/rabbitmq-erlang/deb/debian bookworm main" > /etc/apt/sources.list.d/erlang.list
|
||||||
|
wget -qO - "https://github.com/rabbitmq/signing-keys/releases/download/3.0/cloudsmith.rabbitmq-erlang.E495BB49CC4BBE5B.key" | gpg --dearmor > /usr/share/keyrings/erlang-rabbitmq.gpg
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y claper
|
||||||
|
|
||||||
|
systemctl enable --now claper
|
||||||
|
|
||||||
|
```
|
|
@ -0,0 +1,42 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
VERSION=2.1.1
|
||||||
|
APP=claper
|
||||||
|
DEPOT=https://github.com/ClaperCo/Claper.git
|
||||||
|
GIT_VERSION=v${VERSION}
|
||||||
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||||
|
DEBIAN_VERSION_CODENAME=bookworm
|
||||||
|
IMAGE_SIZE=5
|
||||||
|
PACKAGE_DEPENDENCY="nodejs elixir npm erlang-dev erlang-syntax-tools make build-essential erlang-xmerl"
|
||||||
|
|
||||||
|
main(){
|
||||||
|
configure_depot_erlang_rabbitmq
|
||||||
|
base_package_upgrade
|
||||||
|
install_package_dependency
|
||||||
|
get_git_source
|
||||||
|
build
|
||||||
|
makedeb
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd /tmp/${APP}
|
||||||
|
mix local.hex --force
|
||||||
|
mix deps.get
|
||||||
|
mix ecto.migrate
|
||||||
|
mix assets.deploy
|
||||||
|
}
|
||||||
|
|
||||||
|
makedeb(){
|
||||||
|
PATH_DEB=/tmp/src/rootfs
|
||||||
|
mkdir -p ${PATH_DEB}/opt/
|
||||||
|
mkdir -p ${PATH_DEB}/etc/default/
|
||||||
|
mkdir -p ${PATH_DEB}/usr/lib/systemd/system/
|
||||||
|
|
||||||
|
mv ${PATH_DEB}/DEBIAN/claper.default ${PATH_DEB}/etc/default/claper
|
||||||
|
mv ${PATH_DEB}/DEBIAN/claper.service ${PATH_DEB}/usr/lib/systemd/system/
|
||||||
|
cp -fr /tmp/${APP} ${PATH_DEB}/opt/${APP}
|
||||||
|
cp -fr /root/.mix ${PATH_DEB}/opt/${APP}
|
||||||
|
|
||||||
|
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
|
||||||
|
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
|
||||||
|
BASE_URL=https://domainer.com
|
||||||
|
# SAME_SITE_COOKIE=Lax
|
||||||
|
# SECURE_COOKIE=false
|
||||||
|
|
||||||
|
DATABASE_URL=postgres://claper:xxxxxxxxxxx@postgresql:5432/claper
|
||||||
|
SECRET_KEY_BASE=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
|
# ⚠️ Don't use this exact value for SECRET_KEY_BASE or someone would be able to sign a cookie with user_id=1 and log in as the admin!
|
||||||
|
|
||||||
|
# Storage configuration
|
||||||
|
|
||||||
|
PRESENTATION_STORAGE=local
|
||||||
|
PRESENTATION_STORAGE_DIR=priv/static
|
||||||
|
#MAX_FILE_SIZE_MB=15
|
||||||
|
|
||||||
|
#AWS_ACCESS_KEY_ID=xxx
|
||||||
|
#AWS_SECRET_ACCESS_KEY=xxx
|
||||||
|
#AWS_REGION=eu-west-3
|
||||||
|
#AWS_PRES_BUCKET=xxx
|
||||||
|
|
||||||
|
# Mail configuration
|
||||||
|
|
||||||
|
MAIL_TRANSPORT=local
|
||||||
|
MAIL_FROM=noreply@claper.co
|
||||||
|
MAIL_FROM_NAME=Claper
|
||||||
|
|
||||||
|
SMTP_RELAY=smtprelay
|
||||||
|
#SMTP_USERNAME=johndoe@example.com
|
||||||
|
#SMTP_PASSWORD=xxx
|
||||||
|
#SMTP_PORT=465
|
||||||
|
#SMTP_TLS=if_available
|
||||||
|
|
||||||
|
#ENABLE_MAILBOX_ROUTE=false
|
||||||
|
#MAILBOX_USER=admin
|
||||||
|
#MAILBOX_PASSWORD=admin
|
||||||
|
|
||||||
|
# Claper configuration
|
||||||
|
|
||||||
|
ENABLE_ACCOUNT_CREATION=false
|
||||||
|
#ALLOW_UNLINK_EXTERNAL_PROVIDER=false
|
||||||
|
#LOGOUT_REDIRECT_URL=https://google.com
|
||||||
|
#GS_JPG_RESOLUTION=300x300
|
||||||
|
|
||||||
|
# OIDC configuration
|
||||||
|
|
||||||
|
#OIDC_PROVIDER_NAME="keycloak"
|
||||||
|
#OIDC_ISSUER=
|
||||||
|
#OIDC_CLIENT_ID=
|
||||||
|
#OIDC_CLIENT_SECRET=
|
||||||
|
# OIDC_SCOPES="openid email profile"
|
||||||
|
# OIDC_LOGO_URL=""
|
||||||
|
# OIDC_PROPERTY_MAPPINGS="roles:custom_attributes.roles,organization:custom_attributes.organization"
|
||||||
|
#OIDC_AUTO_REDIRECT_LOGIN=true
|
|
@ -0,0 +1,19 @@
|
||||||
|
[Unit]
|
||||||
|
Description=claper
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
User=claper
|
||||||
|
Group=claper
|
||||||
|
EnvironmentFile=/etc/default/claper
|
||||||
|
ExecStart=/usr/bin/mix phx.server
|
||||||
|
WorkingDirectory=/opt/claper
|
||||||
|
PrivateTmp=true
|
||||||
|
PrivateDevices=true
|
||||||
|
ProtectHome=true
|
||||||
|
ProtectSystem=strict
|
||||||
|
Restart=on-failure
|
||||||
|
RestartSec=30s
|
||||||
|
ReadWritePaths=/opt/claper
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
|
@ -0,0 +1 @@
|
||||||
|
/etc/default/claper
|
|
@ -0,0 +1,8 @@
|
||||||
|
Package: claper
|
||||||
|
Version: %VERSION%
|
||||||
|
Section: contrib
|
||||||
|
Priority: optional
|
||||||
|
Architecture: all
|
||||||
|
Depends: inotify-tools, erlang-base, erlang-syntax-tools, erlang-xmerl
|
||||||
|
Maintainer: Thomas Legay <thomas@lgy.fr>
|
||||||
|
Description: claper
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
id claper &> /dev/null || useradd claper -r -s /bin/false -d /opt/claper
|
||||||
|
|
||||||
|
chown -R claper:claper /opt/claper
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=1.11.74
|
VERSION=1.11.78
|
||||||
APP=element-web
|
APP=element-web
|
||||||
DEPOT=https://github.com/vector-im/element-web.git
|
DEPOT=https://github.com/vector-im/element-web.git
|
||||||
GIT_VERSION=v${VERSION}
|
GIT_VERSION=v${VERSION}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=8.0.1
|
VERSION=9.0.0
|
||||||
APP=forgejo
|
APP=forgejo
|
||||||
DEPOT=https://codeberg.org/forgejo/forgejo
|
DEPOT=https://codeberg.org/forgejo/forgejo
|
||||||
GIT_VERSION=v${VERSION}
|
GIT_VERSION=v${VERSION}
|
||||||
|
@ -11,7 +11,7 @@ PACKAGE_DEPENDENCY="build-essential nodejs"
|
||||||
|
|
||||||
main() {
|
main() {
|
||||||
base_package_upgrade
|
base_package_upgrade
|
||||||
configure_depot_nodejs 18
|
configure_depot_nodejs 20
|
||||||
install_package_dependency
|
install_package_dependency
|
||||||
install_go
|
install_go
|
||||||
get_git_source
|
get_git_source
|
||||||
|
|
|
@ -28,6 +28,7 @@ build() {
|
||||||
cd /tmp/${APP}
|
cd /tmp/${APP}
|
||||||
PATH=${PATH}:/usr/local/go/bin
|
PATH=${PATH}:/usr/local/go/bin
|
||||||
export GO111MODULE=on
|
export GO111MODULE=on
|
||||||
|
export NODE_OPTIONS=--openssl-legacy-provider
|
||||||
make download-tools
|
make download-tools
|
||||||
go get -d
|
go get -d
|
||||||
(cd ui && yarn && yarn build)
|
(cd ui && yarn && yarn build)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=3.1.1
|
VERSION=3.1.15
|
||||||
APP=joplin-desktop
|
APP=joplin-desktop
|
||||||
GIT_VERSION=v${VERSION}
|
GIT_VERSION=v${VERSION}
|
||||||
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=25.0.2
|
VERSION=25.0.6
|
||||||
APP=keycloak
|
APP=keycloak
|
||||||
DEPOT=https://github.com/keycloak/keycloak.git
|
DEPOT=https://github.com/keycloak/keycloak.git
|
||||||
GIT_VERSION=${VERSION}
|
GIT_VERSION=${VERSION}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=2.20.1
|
VERSION=2.24.0
|
||||||
APP=kimai2
|
APP=kimai2
|
||||||
DEPOT=https://github.com/kevinpapst/kimai2.git
|
DEPOT=https://github.com/kevinpapst/kimai2.git
|
||||||
GIT_VERSION=${VERSION}
|
GIT_VERSION=${VERSION}
|
||||||
|
|
|
@ -25,4 +25,4 @@
|
||||||
|
|
||||||
override_dh_auto_build:
|
override_dh_auto_build:
|
||||||
./build.sh
|
./build.sh
|
||||||
cp example-config.yaml config.yaml
|
touch config.yaml
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=0.10.9
|
VERSION=0.11.0
|
||||||
APP=mautrix-whatsapp
|
APP=mautrix-whatsapp
|
||||||
DEPOT=https://github.com/mautrix/whatsapp.git
|
DEPOT=https://github.com/mautrix/whatsapp.git
|
||||||
GIT_VERSION=v${VERSION}
|
GIT_VERSION=v${VERSION}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=0.50.19.3
|
VERSION=0.50.29.1
|
||||||
APP=metabase
|
APP=metabase
|
||||||
DEPOT=https://github.com/metabase/metabase.git
|
DEPOT=https://github.com/metabase/metabase.git
|
||||||
GIT_VERSION=v$VERSION
|
GIT_VERSION=v$VERSION
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=4.3.1
|
VERSION=4.4.0
|
||||||
APP=moodle-auth-oidc
|
APP=moodle-auth-oidc
|
||||||
DEPOT=https://github.com/microsoft/moodle-auth_oidc.git
|
DEPOT=https://github.com/microsoft/moodle-auth_oidc.git
|
||||||
GIT_VERSION=v$VERSION
|
GIT_VERSION=v$VERSION
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=4.3
|
VERSION=4.4
|
||||||
APP=moodle-block-cohortspecifichtml
|
APP=moodle-block-cohortspecifichtml
|
||||||
DEPOT=https://github.com/moodle-an-hochschulen/moodle-block_cohortspecifichtml.git
|
DEPOT=https://github.com/moodle-an-hochschulen/moodle-block_cohortspecifichtml.git
|
||||||
GIT_VERSION=v$VERSION-r1
|
GIT_VERSION=v$VERSION-r1
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=4.4.0.5
|
VERSION=4.4.0.24
|
||||||
APP=moodle-format-tiles
|
APP=moodle-format-tiles
|
||||||
DEPOT=https://bitbucket.org/dw8/moodle-format_tiles.git
|
DEPOT=https://bitbucket.org/dw8/moodle-format_tiles.git
|
||||||
GIT_VERSION=moodle44
|
GIT_VERSION=moodle44
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=403.1.4
|
VERSION=404.1.0
|
||||||
APP=moodle-theme-adaptable
|
APP=moodle-theme-adaptable
|
||||||
DEPOT=https://github.com/gjbarnard/moodle-theme_adaptable.git
|
DEPOT=https://github.com/gjbarnard/moodle-theme_adaptable.git
|
||||||
GIT_VERSION=V$VERSION
|
GIT_VERSION=V$VERSION
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=3.3.12
|
VERSION=3.3.13
|
||||||
APP=phpbb
|
APP=phpbb
|
||||||
DEPOT=https://github.com/phpbb/phpbb.git
|
DEPOT=https://github.com/phpbb/phpbb.git
|
||||||
GIT_VERSION=release-$VERSION
|
GIT_VERSION=release-$VERSION
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=1.6.8
|
VERSION=1.6.9
|
||||||
APP=roundcubemail
|
APP=roundcubemail
|
||||||
DEPOT=https://github.com/roundcube/roundcubemail.git
|
DEPOT=https://github.com/roundcube/roundcubemail.git
|
||||||
GIT_VERSION=${VERSION}
|
GIT_VERSION=${VERSION}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=1.32.0
|
VERSION=1.32.2
|
||||||
APP=vaultwarden
|
APP=vaultwarden
|
||||||
GIT_VERSION=$VERSION
|
GIT_VERSION=$VERSION
|
||||||
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
|
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=1.39.1
|
VERSION=1.40.0
|
||||||
APP=zigbee2mqtt
|
APP=zigbee2mqtt
|
||||||
DEPOT=https://github.com/Koenkk/zigbee2mqtt.git
|
DEPOT=https://github.com/Koenkk/zigbee2mqtt.git
|
||||||
GIT_VERSION=${VERSION}
|
GIT_VERSION=${VERSION}
|
||||||
|
|
Loading…
Reference in New Issue