mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Updated In Progress future snapcraft configs.
Thanks to xet7 !
This commit is contained in:
parent
82129139a2
commit
dc6bc9ed54
2 changed files with 217 additions and 64 deletions
155
.future-snap/old-snapcraft.yaml
Normal file
155
.future-snap/old-snapcraft.yaml
Normal file
|
|
@ -0,0 +1,155 @@
|
||||||
|
name: wekan
|
||||||
|
version: git
|
||||||
|
summary: The open-source kanban
|
||||||
|
description: |
|
||||||
|
Wekan is an open-source and collaborative kanban board application.
|
||||||
|
|
||||||
|
Whether you’re maintaining a personal todo list, planning your holidays with some friends, or working in a team on your next revolutionary idea, Kanban boards are an unbeatable tool to keep your things organized. They give you a visual overview of the current state of your project, and make you productive by allowing you to focus on the few items that matter the most.
|
||||||
|
Depending on target environment, some configuration settings might need to be adjusted.
|
||||||
|
For full list of configuration options call:
|
||||||
|
$ wekan.help
|
||||||
|
|
||||||
|
confinement: strict
|
||||||
|
grade: stable
|
||||||
|
base: core18
|
||||||
|
|
||||||
|
architectures:
|
||||||
|
- amd64
|
||||||
|
|
||||||
|
plugs:
|
||||||
|
mongodb-plug:
|
||||||
|
interface: content
|
||||||
|
target: $SNAP_DATA/shared
|
||||||
|
|
||||||
|
hooks:
|
||||||
|
configure:
|
||||||
|
plugs:
|
||||||
|
- network
|
||||||
|
- network-bind
|
||||||
|
|
||||||
|
slots:
|
||||||
|
mongodb-slot:
|
||||||
|
interface: content
|
||||||
|
write:
|
||||||
|
- $SNAP_DATA/share
|
||||||
|
|
||||||
|
apps:
|
||||||
|
wekan:
|
||||||
|
command: wekan-control
|
||||||
|
daemon: simple
|
||||||
|
plugs: [network, network-bind]
|
||||||
|
|
||||||
|
mongodb:
|
||||||
|
command: mongodb-control
|
||||||
|
daemon: simple
|
||||||
|
plugs: [network, network-bind]
|
||||||
|
|
||||||
|
caddy:
|
||||||
|
command: caddy-control
|
||||||
|
daemon: simple
|
||||||
|
plugs: [network, network-bind]
|
||||||
|
|
||||||
|
help:
|
||||||
|
command: wekan-help
|
||||||
|
|
||||||
|
database-backup:
|
||||||
|
command: mongodb-backup
|
||||||
|
plugs: [network, network-bind]
|
||||||
|
|
||||||
|
database-list-backups:
|
||||||
|
command: ls -al $SNAP_COMMON/db-backups/
|
||||||
|
|
||||||
|
database-restore:
|
||||||
|
command: mongodb-restore
|
||||||
|
plugs: [network, network-bind]
|
||||||
|
|
||||||
|
parts:
|
||||||
|
mongodb:
|
||||||
|
source: https://repo.mongodb.org/apt/ubuntu/dists/xenial/mongodb-org/4.2/multiverse/binary-amd64/mongodb-org-server_4.2.2_amd64.deb
|
||||||
|
#https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.14.tgz
|
||||||
|
#https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.22.tgz
|
||||||
|
plugin: dump
|
||||||
|
stage-packages: [libssl1.0.0, libcurl3]
|
||||||
|
filesets:
|
||||||
|
mongo:
|
||||||
|
- usr
|
||||||
|
- bin
|
||||||
|
- lib
|
||||||
|
stage:
|
||||||
|
- $mongo
|
||||||
|
prime:
|
||||||
|
- $mongo
|
||||||
|
|
||||||
|
wekan:
|
||||||
|
source: .
|
||||||
|
plugin: nodejs
|
||||||
|
node-engine: 14.19.0
|
||||||
|
node-packages:
|
||||||
|
- node-gyp
|
||||||
|
- node-pre-gyp
|
||||||
|
- fibers
|
||||||
|
build-packages:
|
||||||
|
- ca-certificates
|
||||||
|
- apt-utils
|
||||||
|
- build-essential
|
||||||
|
- python
|
||||||
|
- python3
|
||||||
|
- g++
|
||||||
|
- capnproto
|
||||||
|
- curl
|
||||||
|
- libcurl3
|
||||||
|
- execstack
|
||||||
|
- nodejs
|
||||||
|
- npm
|
||||||
|
stage-packages:
|
||||||
|
- libfontconfig1
|
||||||
|
override-build: |
|
||||||
|
echo "Cleaning environment first"
|
||||||
|
rm -rf ~/.meteor ~/.npm /usr/local/lib/node_modules
|
||||||
|
rm -rf .build
|
||||||
|
echo "Installing meteor"
|
||||||
|
curl https://install.meteor.com/ -o install_meteor.sh
|
||||||
|
chmod +x install_meteor.sh
|
||||||
|
sh install_meteor.sh
|
||||||
|
rm install_meteor.sh
|
||||||
|
rm -rf .build
|
||||||
|
meteor add standard-minifier-js --allow-superuser
|
||||||
|
meteor npm install --allow-superuser
|
||||||
|
meteor npm install --allow-superuser --save babel-runtime
|
||||||
|
meteor build .build --directory --allow-superuser
|
||||||
|
cp -f fix-download-unicode/cfs_access-point.txt .build/bundle/programs/server/packages/cfs_access-point.js
|
||||||
|
cd .build/bundle/programs/server
|
||||||
|
npm install
|
||||||
|
npm install --allow-superuser --save babel-runtime
|
||||||
|
# Change back to Wekan source directory
|
||||||
|
cd ../../../..
|
||||||
|
cp -r .build/bundle/* $SNAPCRAFT_PART_INSTALL/
|
||||||
|
cp .build/bundle/.node_version.txt $SNAPCRAFT_PART_INSTALL/
|
||||||
|
rm -f $SNAPCRAFT_PART_INSTALL/lib/node_modules/wekan
|
||||||
|
rm -f $SNAPCRAFT_PART_INSTALL/programs/server/npm/node_modules/meteor/rajit_bootstrap3-datepicker/lib/bootstrap-datepicker/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs
|
||||||
|
rm -f $SNAPCRAFT_PART_INSTALL/programs/server/npm/node_modules/tar/lib/.mkdir.js.swp
|
||||||
|
rm -f $SNAPCRAFT_PART_INSTALL/lib/node_modules/node-pre-gyp/node_modules/tar/lib/.mkdir.js.swp
|
||||||
|
rm -f $SNAPCRAFT_PART_INSTALL/lib/node_modules/node-gyp/node_modules/tar/lib/.mkdir.js.swp
|
||||||
|
rm -f $SNAPCRAFT_PART_INSTALL/programs/server/node_modules/node-pre-gyp/node_modules/tar/lib/.mkdir.js.swp
|
||||||
|
|
||||||
|
organize:
|
||||||
|
README: README.wekan
|
||||||
|
prime:
|
||||||
|
- -lib/node_modules/node-pre-gyp/node_modules/tar/lib/.unpack.js.swp
|
||||||
|
|
||||||
|
helpers:
|
||||||
|
source: snap-src
|
||||||
|
plugin: dump
|
||||||
|
|
||||||
|
caddy:
|
||||||
|
plugin: dump
|
||||||
|
source: https://caddyserver.com/download/linux/amd64?license=personal&telemetry=off
|
||||||
|
source-type: tar
|
||||||
|
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
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
name: wekan
|
name: wekan
|
||||||
version: git
|
version: '6.10'
|
||||||
summary: The open-source kanban
|
base: core20
|
||||||
|
summary: Open Source kanban
|
||||||
description: |
|
description: |
|
||||||
Wekan is an open-source and collaborative kanban board application.
|
WeKan ® is an Open Source and collaborative kanban board application.
|
||||||
|
|
||||||
Whether you’re maintaining a personal todo list, planning your holidays with some friends, or working in a team on your next revolutionary idea, Kanban boards are an unbeatable tool to keep your things organized. They give you a visual overview of the current state of your project, and make you productive by allowing you to focus on the few items that matter the most.
|
Whether you’re maintaining a personal todo list, planning your holidays with some friends, or working in a team on your next revolutionary idea, Kanban boards are an unbeatable tool to keep your things organized. They give you a visual overview of the current state of your project, and make you productive by allowing you to focus on the few items that matter the most.
|
||||||
Depending on target environment, some configuration settings might need to be adjusted.
|
Depending on target environment, some configuration settings might need to be adjusted.
|
||||||
|
|
@ -11,10 +12,13 @@ description: |
|
||||||
|
|
||||||
confinement: strict
|
confinement: strict
|
||||||
grade: stable
|
grade: stable
|
||||||
base: core18
|
|
||||||
|
|
||||||
architectures:
|
architectures:
|
||||||
- amd64
|
- build-on: amd64
|
||||||
|
run-on: amd64
|
||||||
|
|
||||||
|
- build-on: arm64
|
||||||
|
run-on: arm64
|
||||||
|
|
||||||
plugs:
|
plugs:
|
||||||
mongodb-plug:
|
mongodb-plug:
|
||||||
|
|
@ -37,12 +41,14 @@ apps:
|
||||||
wekan:
|
wekan:
|
||||||
command: wekan-control
|
command: wekan-control
|
||||||
daemon: simple
|
daemon: simple
|
||||||
plugs: [network, network-bind]
|
plugs: [network, network-bind, mount-observe, system-observe, bluetooth-control]
|
||||||
|
restart-condition: on-failure
|
||||||
|
|
||||||
mongodb:
|
mongodb:
|
||||||
command: mongodb-control
|
command: mongodb-control
|
||||||
daemon: simple
|
daemon: simple
|
||||||
plugs: [network, network-bind]
|
plugs: [network, network-bind, mount-observe, system-observe, bluetooth-control]
|
||||||
|
restart-condition: on-failure
|
||||||
|
|
||||||
caddy:
|
caddy:
|
||||||
command: caddy-control
|
command: caddy-control
|
||||||
|
|
@ -54,22 +60,25 @@ apps:
|
||||||
|
|
||||||
database-backup:
|
database-backup:
|
||||||
command: mongodb-backup
|
command: mongodb-backup
|
||||||
plugs: [network, network-bind]
|
plugs: [network, network-bind, mount-observe, system-observe, bluetooth-control]
|
||||||
|
|
||||||
database-list-backups:
|
database-list-backups:
|
||||||
command: ls -al $SNAP_COMMON/db-backups/
|
command: ls -al $SNAP_COMMON/db-backups/
|
||||||
|
|
||||||
database-restore:
|
database-restore:
|
||||||
command: mongodb-restore
|
command: mongodb-restore
|
||||||
plugs: [network, network-bind]
|
plugs: [network, network-bind, mount-observe, system-observe, bluetooth-control]
|
||||||
|
|
||||||
parts:
|
parts:
|
||||||
mongodb:
|
mongodb:
|
||||||
source: https://repo.mongodb.org/apt/ubuntu/dists/xenial/mongodb-org/4.2/multiverse/binary-amd64/mongodb-org-server_4.2.2_amd64.deb
|
|
||||||
#https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.14.tgz
|
|
||||||
#https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.22.tgz
|
|
||||||
plugin: dump
|
plugin: dump
|
||||||
stage-packages: [libssl1.0.0, libcurl3]
|
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 arm64: https://repo.mongodb.org/apt/ubuntu/dists/focal/mongodb-org/4.4/multiverse/binary-arm64/mongodb-org-server_4.4.12_arm64.deb
|
||||||
|
stage-packages:
|
||||||
|
- libssl1.1
|
||||||
|
- libcurl3-dev
|
||||||
|
- libcurl4-openssl-dev
|
||||||
filesets:
|
filesets:
|
||||||
mongo:
|
mongo:
|
||||||
- usr
|
- usr
|
||||||
|
|
@ -81,61 +90,43 @@ parts:
|
||||||
- $mongo
|
- $mongo
|
||||||
|
|
||||||
wekan:
|
wekan:
|
||||||
source: .
|
plugin: npm
|
||||||
plugin: nodejs
|
source:
|
||||||
node-engine: 14.19.0
|
# TODO: Fix URLs to some allowed GitHub releases URL.
|
||||||
node-packages:
|
# Non-GitHub build server file urls are not allowed at 2022-03-02 and later.
|
||||||
- node-gyp
|
- on amd64: https://wekan.github.io/wekan-latest-x64.zip
|
||||||
- node-pre-gyp
|
- on arm64: https://wekan.github.io/raspi3/wekan-latest-arm64.zip
|
||||||
- fibers
|
npm-node-version: 14.19.0
|
||||||
|
# node-packages:
|
||||||
|
# - node-gyp
|
||||||
|
# - node-pre-gyp
|
||||||
|
# - fibers
|
||||||
build-packages:
|
build-packages:
|
||||||
- ca-certificates
|
- npm
|
||||||
- apt-utils
|
# - build-essential
|
||||||
- build-essential
|
# - ca-certificates
|
||||||
- python
|
# - apt-utils
|
||||||
- python3
|
# - python
|
||||||
- g++
|
# - python3
|
||||||
- capnproto
|
# - g++
|
||||||
- curl
|
# - capnproto
|
||||||
- libcurl3
|
# - curl
|
||||||
- execstack
|
# - execstack
|
||||||
- nodejs
|
# - nodejs
|
||||||
- npm
|
# - npm
|
||||||
stage-packages:
|
- p7zip-full
|
||||||
- libfontconfig1
|
# stage-packages:
|
||||||
|
# - libfontconfig1
|
||||||
override-build: |
|
override-build: |
|
||||||
echo "Cleaning environment first"
|
cp -r bundle/* $SNAPCRAFT_PART_INSTALL/
|
||||||
rm -rf ~/.meteor ~/.npm /usr/local/lib/node_modules
|
cp bundle/.node_version.txt $SNAPCRAFT_PART_INSTALL/
|
||||||
rm -rf .build
|
rm -f $SNAPCRAFT_PART_INSTALL/lib/node_modules/wekan
|
||||||
echo "Installing meteor"
|
snapcraftctl build
|
||||||
curl https://install.meteor.com/ -o install_meteor.sh
|
|
||||||
chmod +x install_meteor.sh
|
|
||||||
sh install_meteor.sh
|
|
||||||
rm install_meteor.sh
|
|
||||||
rm -rf .build
|
|
||||||
meteor add standard-minifier-js --allow-superuser
|
|
||||||
meteor npm install --allow-superuser
|
|
||||||
meteor npm install --allow-superuser --save babel-runtime
|
|
||||||
meteor build .build --directory --allow-superuser
|
|
||||||
cp -f fix-download-unicode/cfs_access-point.txt .build/bundle/programs/server/packages/cfs_access-point.js
|
|
||||||
cd .build/bundle/programs/server
|
|
||||||
npm install
|
|
||||||
npm install --allow-superuser --save babel-runtime
|
|
||||||
# Change back to Wekan source directory
|
|
||||||
cd ../../../..
|
|
||||||
cp -r .build/bundle/* $SNAPCRAFT_PART_INSTALL/
|
|
||||||
cp .build/bundle/.node_version.txt $SNAPCRAFT_PART_INSTALL/
|
|
||||||
rm -f $SNAPCRAFT_PART_INSTALL/lib/node_modules/wekan
|
|
||||||
rm -f $SNAPCRAFT_PART_INSTALL/programs/server/npm/node_modules/meteor/rajit_bootstrap3-datepicker/lib/bootstrap-datepicker/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs
|
|
||||||
rm -f $SNAPCRAFT_PART_INSTALL/programs/server/npm/node_modules/tar/lib/.mkdir.js.swp
|
|
||||||
rm -f $SNAPCRAFT_PART_INSTALL/lib/node_modules/node-pre-gyp/node_modules/tar/lib/.mkdir.js.swp
|
|
||||||
rm -f $SNAPCRAFT_PART_INSTALL/lib/node_modules/node-gyp/node_modules/tar/lib/.mkdir.js.swp
|
|
||||||
rm -f $SNAPCRAFT_PART_INSTALL/programs/server/node_modules/node-pre-gyp/node_modules/tar/lib/.mkdir.js.swp
|
|
||||||
|
|
||||||
organize:
|
organize:
|
||||||
README: README.wekan
|
README: README.wekan
|
||||||
prime:
|
prime:
|
||||||
- -lib/node_modules/node-pre-gyp/node_modules/tar/lib/.unpack.js.swp
|
- -lib/node_modules/node-pre-gyp/node_modules/tar/lib/.unpack.js.swp
|
||||||
|
- -lib/node_modules/weka*
|
||||||
|
|
||||||
helpers:
|
helpers:
|
||||||
source: snap-src
|
source: snap-src
|
||||||
|
|
@ -143,8 +134,15 @@ parts:
|
||||||
|
|
||||||
caddy:
|
caddy:
|
||||||
plugin: dump
|
plugin: dump
|
||||||
source: https://caddyserver.com/download/linux/amd64?license=personal&telemetry=off
|
## Caddy v1 is not developed anymore. TODO: Sometime migrate to Caddy v2.
|
||||||
source-type: tar
|
## https://caddy.community/t/caddyfile-v1-adapter/9129
|
||||||
|
## https://github.com/caddyserver/caddy/tree/v1
|
||||||
|
#source: https://caddyserver.com/download/linux/amd64?license=personal&telemetry=off
|
||||||
|
#source-type: tar
|
||||||
|
# Using last working binary that was downloaded from above URL to Wekan Snap,
|
||||||
|
# and .txt files from https://github.com/caddyserver/caddy/tree/v1/dist
|
||||||
|
source: https://wekan.github.io/caddy-v1-linux-amd64.7z
|
||||||
|
source-type: 7z
|
||||||
organize:
|
organize:
|
||||||
caddy: bin/caddy
|
caddy: bin/caddy
|
||||||
CHANGES.txt: CADDY_CHANGES.txt
|
CHANGES.txt: CADDY_CHANGES.txt
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue