snapcraft.yaml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. name: zwavejs2mqtt
  2. base: core20
  3. version: 'v5.4.1'
  4. summary: Fully configurable Zwave to MQTT Gateway and Control Panel.
  5. description: |
  6. - Configurable Zwave to Mqtt Gateway
  7. - Home Assistant integration (beta)
  8. - Zwave Control Panel:
  9. - Nodes management: check all nodes discovered in the z-wave network, send/receive nodes values updates directly from the UI and send action to the nodes and controller for diagnostics and network heal Custom Node naming and Location: Starting from v1.3.0 nodes name and location are stored in a JSON file named nodes.json. This because not all nodes have native support for naming and location features (#45). This change is back compatible with older versions of this package: on startup it will get all nodes names and location from the zwcfg_homeHEX.xml file (if present) and create the new nodes.json file based on that. This file can be imported/exported from the UI control panel with the import/export buttons placed on the top of nodes table, on the right of controller actions select.
  10. - Firmware updates: You are able to send firmware updates to your devices using the UI, just select the controller action Begin Firmware Update
  11. - Groups associations: create associations between nodes (also supports multi-instance associations, need to use last version of zwave-js)
  12. - Custom scenes management
  13. - Log debug in UI
  14. - Mesh graph showing devices neighbors
  15. grade: stable # must be 'stable' to release into candidate/stable channels
  16. confinement: strict # use 'strict' once you have the right plugs and slots
  17. assumes:
  18. - command-chain
  19. architectures:
  20. - build-on: amd64
  21. - build-on: arm64
  22. - build-on: armhf
  23. apps:
  24. zwavejs2mqtt:
  25. daemon: simple
  26. restart-condition: always
  27. environment:
  28. STORE_DIR: $SNAP_DATA
  29. ZWAVEJS_EXTERNAL_CONFIG: $SNAP_DATA/.ext-config
  30. DAEMONIZED: 1
  31. command: lib/node_modules/yarn/bin/yarn --cwd $SNAP/lib/node_modules/zwavejs2mqtt --global-folder $SNAP/lib/node_modules/npm/node_modules start
  32. command-chain:
  33. - helper/env-wrapper
  34. plugs:
  35. - network
  36. - network-bind
  37. - raw-usb
  38. - serial-port
  39. - hardware-observe
  40. exec:
  41. environment:
  42. STORE_DIR: $SNAP_DATA
  43. ZWAVEJS_EXTERNAL_CONFIG: $SNAP_DATA/.ext-config
  44. #command: lib/node_modules/zwavejs2mqtt/bin/www.ts
  45. command: lib/node_modules/yarn/bin/yarn --cwd $SNAP/lib/node_modules/zwavejs2mqtt start
  46. command-chain:
  47. - helper/env-wrapper
  48. plugs:
  49. - network
  50. - network-bind
  51. - raw-usb
  52. - serial-port
  53. - hardware-observe
  54. help:
  55. command: helper/env-wrapper --help
  56. enable:
  57. command: bin/daemonize
  58. disable:
  59. command: bin/de-daemonize
  60. restart:
  61. command: bin/restart
  62. layout:
  63. /usr/local/share/.cache/yarn:
  64. bind: $SNAP/.cache/yarn
  65. /usr/local/share/.yarn:
  66. symlink: $SNAP/lib/node_modules
  67. $SNAP/lib/node_modules/zwavejs2mqtt/package.json.lock:
  68. bind-file: $SNAP_DATA/.ext-config.lock
  69. # Not needed anymore as of ZWAVEJS_EXTERNAL_CONFIG ?
  70. # $SNAP/lib/node_modules/zwavejs2mqtt/node_modules/@zwave-js/config:
  71. # bind: $SNAP/lib/node_modules/zwavejs2mqtt/node_modules/@zwave-js/config
  72. parts:
  73. zwavejs2mqtt:
  74. after: [nodejs]
  75. plugin: dump
  76. source: https://github.com/zwave-js/zwavejs2mqtt.git
  77. #source-branch: "fix#1274"
  78. source-tag: $SNAPCRAFT_PROJECT_VERSION
  79. build-packages:
  80. - gcc
  81. - build-essential
  82. override-build: |
  83. set -x
  84. if [ -n "${http_proxy-}" ]; then
  85. export GLOBAL_AGENT_HTTP_PROXY="${http_proxy}"
  86. export GLOBAL_AGENT_HTTPS_PROXY="${http_proxy}"
  87. fi
  88. yarn install
  89. yarn run build \
  90. && mkdir -p $SNAPCRAFT_PART_INSTALL/lib/node_modules \
  91. && cp --archive --link --no-dereference $SNAPCRAFT_PART_BUILD \
  92. $SNAPCRAFT_PART_INSTALL/lib/node_modules/zwavejs2mqtt \
  93. organize:
  94. # Not needed anymore as of ZWAVEJS_EXTERNAL_CONFIG?
  95. # lib/node_modules/zwavejs2mqtt/node_modules/@zwave-js/config: snap/zwave-js/config
  96. lib/node_modules/zwavejs2mqtt/dist: lib/node_modules/zwavejs2mqtt/server/dist
  97. lib/node_modules/zwavejs2mqtt/views: lib/node_modules/zwavejs2mqtt/server/views
  98. filesets:
  99. zwavejs2mqtt-include:
  100. - lib/node_modules/zwavejs2mqtt/.git
  101. - lib/node_modules/zwavejs2mqtt/LICENSE
  102. - lib/node_modules/zwavejs2mqtt/*.md
  103. - lib/node_modules/zwavejs2mqtt/node_modules
  104. - lib/node_modules/zwavejs2mqtt/server
  105. - lib/node_modules/zwavejs2mqtt/package.json
  106. - lib/node_modules/zwavejs2mqtt/yarn.lock
  107. stage:
  108. # - snap
  109. - $zwavejs2mqtt-include
  110. dependencies:
  111. plugin: nil
  112. stage-snaps:
  113. - jq
  114. - yq
  115. stage-packages:
  116. - git
  117. - udev
  118. - rsync
  119. nodejs:
  120. plugin: dump
  121. source:
  122. - on amd64: https://nodejs.org/dist/v15.14.0/node-v15.14.0-linux-x64.tar.gz
  123. - on arm64: https://nodejs.org/dist/v15.14.0/node-v15.14.0-linux-arm64.tar.gz
  124. - on armhf: https://nodejs.org/dist/v15.14.0/node-v15.14.0-linux-armv7l.tar.gz
  125. stage-packages:
  126. - on armhf:
  127. - libatomic1
  128. override-stage: |
  129. npm install --global yarn
  130. snapcraftctl stage
  131. organize:
  132. '*.md' : nodejs/
  133. LICENSE : nodejs/
  134. prime:
  135. - -include
  136. - -share
  137. local:
  138. plugin: dump
  139. source: src/
  140. stage-packages:
  141. - uuid
  142. organize:
  143. hooks: snap/hooks