mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Improvements to future WeKan Snap core20. Does not work yet. In Progress.
Thanks to xet7 !
This commit is contained in:
parent
5ddf88bca1
commit
38d26fa7e3
1 changed files with 41 additions and 11 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
name: wekan
|
name: wekan
|
||||||
version: '6.10'
|
version: '6.21'
|
||||||
base: core20
|
base: core20
|
||||||
summary: Open Source kanban
|
summary: Open Source kanban
|
||||||
description: |
|
description: |
|
||||||
|
|
@ -20,6 +20,12 @@ architectures:
|
||||||
- build-on: arm64
|
- build-on: arm64
|
||||||
run-on: arm64
|
run-on: arm64
|
||||||
|
|
||||||
|
- build-on: ppc64el
|
||||||
|
run-on: ppc64el
|
||||||
|
|
||||||
|
- build-on: s390x
|
||||||
|
run-on: s390x
|
||||||
|
|
||||||
plugs:
|
plugs:
|
||||||
mongodb-plug:
|
mongodb-plug:
|
||||||
interface: content
|
interface: content
|
||||||
|
|
@ -73,8 +79,10 @@ parts:
|
||||||
mongodb:
|
mongodb:
|
||||||
plugin: dump
|
plugin: dump
|
||||||
source:
|
source:
|
||||||
- on amd64: https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/4.4/multiverse/binary-amd64/mongodb-org-server_4.4.12_amd64.deb
|
- on amd64: https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/4.4/multiverse/binary-amd64/mongodb-org-server_4.4.13_amd64.deb
|
||||||
- on arm64: https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/4.4/multiverse/binary-arm64/mongodb-org-server_4.4.12_arm64.deb
|
- on arm64: https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/4.4/multiverse/binary-arm64/mongodb-org-server_4.4.13_arm64.deb
|
||||||
|
- on ppc64el: https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/4.4/multiverse/binary-ppc64el/mongodb-org-server_4.4.13_ppc64el.deb
|
||||||
|
- on s390x: https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/4.4/multiverse/binary-s390x/mongodb-org-server_4.4.13_s390x.deb
|
||||||
stage-packages:
|
stage-packages:
|
||||||
- libssl1.1
|
- libssl1.1
|
||||||
- libcurl3-dev
|
- libcurl3-dev
|
||||||
|
|
@ -90,19 +98,22 @@ parts:
|
||||||
- $mongo
|
- $mongo
|
||||||
|
|
||||||
wekan:
|
wekan:
|
||||||
plugin: npm
|
#plugin: npm
|
||||||
|
plugin: dump
|
||||||
source:
|
source:
|
||||||
# TODO: Fix URLs to some allowed GitHub releases URL.
|
# Fixed URLs to some allowed GitHub releases URL.
|
||||||
# Non-GitHub build server file urls are not allowed at 2022-03-02 and later.
|
# Non-GitHub build server file urls are not allowed at 2022-03-02 and later.
|
||||||
- on amd64: https://wekan.github.io/wekan-latest-x64.zip
|
- on amd64: https://github.com/wekan/wekan/releases/download/v6.20/wekan-6.20-amd64.zip
|
||||||
- on arm64: https://wekan.github.io/raspi3/wekan-latest-arm64.zip
|
- on arm64: https://github.com/wekan/wekan/releases/download/v6.20/wekan-6.20-arm64.zip
|
||||||
npm-node-version: 14.19.0
|
- on ppc64el: https://github.com/wekan/wekan/releases/download/v6.20/wekan-6.20-ppc64el.zip
|
||||||
|
- on s390x: https://github.com/wekan/wekan/releases/download/v6.20/wekan-6.20-s390x.zip
|
||||||
|
# npm-node-version: 14.19.1
|
||||||
# node-packages:
|
# node-packages:
|
||||||
# - node-gyp
|
# - node-gyp
|
||||||
# - node-pre-gyp
|
# - node-pre-gyp
|
||||||
# - fibers
|
# - fibers
|
||||||
build-packages:
|
# build-packages:
|
||||||
- npm
|
# - npm
|
||||||
# - build-essential
|
# - build-essential
|
||||||
# - ca-certificates
|
# - ca-certificates
|
||||||
# - apt-utils
|
# - apt-utils
|
||||||
|
|
@ -114,7 +125,7 @@ parts:
|
||||||
# - execstack
|
# - execstack
|
||||||
# - nodejs
|
# - nodejs
|
||||||
# - npm
|
# - npm
|
||||||
- p7zip-full
|
# - p7zip-full
|
||||||
# stage-packages:
|
# stage-packages:
|
||||||
# - libfontconfig1
|
# - libfontconfig1
|
||||||
override-build: |
|
override-build: |
|
||||||
|
|
@ -151,3 +162,22 @@ parts:
|
||||||
README.txt: CADDY_README.txt
|
README.txt: CADDY_README.txt
|
||||||
stage:
|
stage:
|
||||||
- -init
|
- -init
|
||||||
|
|
||||||
|
caddy2:
|
||||||
|
plugin: dump
|
||||||
|
source:
|
||||||
|
# Fixed URLs to some allowed GitHub releases URL.
|
||||||
|
# Non-GitHub build server file urls are not allowed at 2022-03-02 and later.
|
||||||
|
- on amd64: https://github.com/wekan/wekan/releases/download/v6.20/caddy-v2-amd64.zip
|
||||||
|
- on arm64: https://github.com/wekan/wekan/releases/download/v6.20/caddy-v2-arm64.zip
|
||||||
|
- on ppc64el: https://github.com/wekan/wekan/releases/download/v6.20/caddy-v2-ppc64el.zip
|
||||||
|
- on s390x: https://github.com/wekan/wekan/releases/download/v6.20/caddy-v2-s390x.zip
|
||||||
|
source-type: zip
|
||||||
|
organize:
|
||||||
|
caddy: bin/caddy
|
||||||
|
CHANGES.txt: CADDY_CHANGES.txt
|
||||||
|
EULA.txt: CADDY_EULA.txt
|
||||||
|
LICENSES.txt: CADDY_LICENSES.txt
|
||||||
|
README.txt: CADDY_README.txt
|
||||||
|
stage:
|
||||||
|
- -init
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue