update version
This commit is contained in:
parent
0ec450ed04
commit
249a7e28e1
|
@ -51,7 +51,7 @@ install_rust() {
|
||||||
bash /tmp/rustup -qy
|
bash /tmp/rustup -qy
|
||||||
}
|
}
|
||||||
|
|
||||||
install_rust() {
|
install_clojure() {
|
||||||
wget -qO - https://download.clojure.org/install/linux-install-1.11.1.1155.sh | bash
|
wget -qO - https://download.clojure.org/install/linux-install-1.11.1.1155.sh | bash
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=4.36.7
|
VERSION=4.36.8
|
||||||
APP=authelia
|
APP=authelia
|
||||||
DEPOT=https://github.com/authelia/authelia.git
|
DEPOT=https://github.com/authelia/authelia.git
|
||||||
GIT_VERSION=v${VERSION}
|
GIT_VERSION=v${VERSION}
|
||||||
|
|
|
@ -1,19 +1,25 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=2022.9.0
|
VERSION=2022.9.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}
|
||||||
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||||
DEBIAN_VERSION_CODENAME=bullseye
|
DEBIAN_VERSION_CODENAME=bullseye
|
||||||
IMAGE_SIZE=8
|
IMAGE_SIZE=8
|
||||||
PACKAGE_DEPENDENCY="pkg-config libsecret-1-dev yarn nodejs"
|
PACKAGE_DEPENDENCY="pkg-config libsecret-1-dev yarn nodejs build-essential libglib2.0-dev"
|
||||||
|
|
||||||
STEP="base_package_upgrade configure_depot_yarn configure_depot_nodejs install_package_dependency get_git_source build makedeb"
|
STEP="base_package_upgrade configure_depot_yarn configure_depot_nodejs install_package_dependency install_rust get_git_source build makedeb"
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
source ~/.cargo/env
|
||||||
|
export PKG_CONFIG_ALL_STATIC=1
|
||||||
|
export PKG_CONFIG_ALLOW_CROSS=1
|
||||||
|
rustup target add x86_64-unknown-linux-musl
|
||||||
cd /tmp/${APP}
|
cd /tmp/${APP}
|
||||||
npm ci
|
npm ci
|
||||||
|
cd /tmp/${APP}/apps/desktop/desktop_native/
|
||||||
|
npm run build -- --target x86_64-unknown-linux-musl
|
||||||
cd /tmp/${APP}/apps/desktop
|
cd /tmp/${APP}/apps/desktop
|
||||||
PATH=$PATH:/tmp/${APP}/node_modules/.bin/
|
PATH=$PATH:/tmp/${APP}/node_modules/.bin/
|
||||||
npm run clean:dist
|
npm run clean:dist
|
||||||
|
@ -21,6 +27,8 @@ build() {
|
||||||
electron-builder --linux dir --x64 -p never
|
electron-builder --linux dir --x64 -p never
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
makedeb(){
|
makedeb(){
|
||||||
PATH_DEB=/tmp/src/rootfs
|
PATH_DEB=/tmp/src/rootfs
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ After=network.target
|
||||||
User=joplin-server
|
User=joplin-server
|
||||||
Group=joplin-server
|
Group=joplin-server
|
||||||
EnvironmentFile=/etc/default/joplin-server
|
EnvironmentFile=/etc/default/joplin-server
|
||||||
ExecStart=/usr/bin/yarn --cwd /usr/lib/joplin-server/server/ start
|
ExecStart=/usr/bin/yarn --cwd /usr/share/joplin-server/server/ start
|
||||||
WorkingDirectory=/var/lib/joplin-server/
|
WorkingDirectory=/var/lib/joplin-server/
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
RestartSec=30s
|
RestartSec=30s
|
|
@ -1,3 +1,9 @@
|
||||||
|
mautrix-whatsapp (0.7) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* First deb version
|
||||||
|
|
||||||
|
-- Thomas Legay <thomas@lgy.fr> Mon, 17 Sep 2022 21:08:37 +0200
|
||||||
|
|
||||||
mautrix-whatsapp (0.6.1) UNRELEASED; urgency=medium
|
mautrix-whatsapp (0.6.1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* First deb version
|
* First deb version
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=0.6.1
|
VERSION=0.7.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,20 +1,21 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
VERSION=0.44.2
|
VERSION=0.44.3
|
||||||
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
|
||||||
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
|
||||||
DEBIAN_VERSION_CODENAME=bullseye
|
DEBIAN_VERSION_CODENAME=bullseye
|
||||||
IMAGE_SIZE=10
|
IMAGE_SIZE=10
|
||||||
|
PACKAGE_DEPENDENCY="build-essential openjdk-17-jdk curl nodejs yarn"
|
||||||
|
|
||||||
STEP="base_package_upgrade envinit get_git_source build makedeb"
|
STEP="base_package_upgrade envinit get_git_source build makedeb"
|
||||||
|
|
||||||
envinit() {
|
envinit() {
|
||||||
configure_depot_yarn
|
configure_depot_yarn
|
||||||
configure_depot_nodejs
|
configure_depot_nodejs
|
||||||
apt install -y --no-install-recommends build-essential openjdk-17-jdk curl nodejs yarn
|
install_package_dependency
|
||||||
wget -qO - https://download.clojure.org/install/linux-install-1.11.1.1155.sh | bash
|
install_clojure
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
APP=rustdesk-server
|
APP=rustdesk-server
|
||||||
VERSION=1.1.5-1
|
VERSION=1.1.6-1
|
||||||
GIT_VERSION=$VERSION
|
GIT_VERSION=$VERSION
|
||||||
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
|
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
|
||||||
DEBIAN_VERSION_CODENAME=bullseye
|
DEBIAN_VERSION_CODENAME=bullseye
|
||||||
|
|
Loading…
Reference in New Issue