snapcraft.yaml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. name: zwavejs2mqtt
  2. base: core20
  3. version: 'v5.0.4'
  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. #- build-on: ppc64el
  24. apps:
  25. zwavejs2mqtt:
  26. daemon: simple
  27. restart-condition: always
  28. environment:
  29. STORE_DIR: $SNAP_DATA
  30. ZWAVEJS_EXTERNAL_CONFIG: $SNAP_DATA/.ext-config
  31. DAEMONIZED: 1
  32. command: lib/node_modules/yarn/bin/yarn --cwd $SNAP/lib/node_modules/zwavejs2mqtt --global-folder $SNAP/lib/node_modules/npm/node_modules start
  33. command-chain:
  34. - helper/env-wrapper
  35. plugs:
  36. - network
  37. - network-bind
  38. - raw-usb
  39. - serial-port
  40. - hardware-observe
  41. exec:
  42. environment:
  43. STORE_DIR: $SNAP_DATA
  44. ZWAVEJS_EXTERNAL_CONFIG: $SNAP_DATA/.ext-config
  45. #command: lib/node_modules/zwavejs2mqtt/bin/www.ts
  46. command: lib/node_modules/yarn/bin/yarn --cwd $SNAP/lib/node_modules/zwavejs2mqtt --global-folder $SNAP/lib/node_modules/npm/node_modules start
  47. command-chain:
  48. - helper/env-wrapper
  49. plugs:
  50. - network
  51. - network-bind
  52. - raw-usb
  53. - serial-port
  54. - hardware-observe
  55. help:
  56. command: helper/env-wrapper --help
  57. enable:
  58. command: bin/daemonize
  59. disable:
  60. command: bin/de-daemonize
  61. restart:
  62. command: bin/restart
  63. layout:
  64. $SNAP/lib/node_modules/zwavejs2mqtt/node_modules/@zwave-js/config/config:
  65. bind: $SNAP/lib/node_modules/zwavejs2mqtt/node_modules/@zwave-js/config/config
  66. parts:
  67. zwavejs2mqtt:
  68. after: [nodejs]
  69. plugin: dump
  70. source: https://github.com/zwave-js/zwavejs2mqtt.git
  71. #source-branch: "fix#1274"
  72. source-tag: $SNAPCRAFT_PROJECT_VERSION
  73. build-packages:
  74. - gcc
  75. - build-essential
  76. override-build: |
  77. set -x
  78. if [ -n "${http_proxy-}" ]; then
  79. export GLOBAL_AGENT_HTTP_PROXY="${http_proxy}"
  80. export GLOBAL_AGENT_HTTPS_PROXY="${http_proxy}"
  81. fi
  82. yarn install
  83. yarn run build \
  84. && mkdir -p $SNAPCRAFT_PART_INSTALL/lib/node_modules \
  85. && cp --archive --link --no-dereference $SNAPCRAFT_PART_BUILD \
  86. $SNAPCRAFT_PART_INSTALL/lib/node_modules/zwavejs2mqtt \
  87. organize:
  88. lib/node_modules/zwavejs2mqtt/node_modules/@zwave-js/config/config: snap/zwave-js/config
  89. lib/node_modules/zwavejs2mqtt/dist: lib/node_modules/zwavejs2mqtt/server/dist
  90. lib/node_modules/zwavejs2mqtt/views: lib/node_modules/zwavejs2mqtt/server/views
  91. filesets:
  92. zwavejs2mqtt-include:
  93. - lib/node_modules/zwavejs2mqtt/.git
  94. - lib/node_modules/zwavejs2mqtt/LICENSE
  95. - lib/node_modules/zwavejs2mqtt/*.md
  96. - lib/node_modules/zwavejs2mqtt/node_modules
  97. - lib/node_modules/zwavejs2mqtt/server
  98. - lib/node_modules/zwavejs2mqtt/package.json
  99. - lib/node_modules/zwavejs2mqtt/yarn.lock
  100. stage:
  101. - snap
  102. - $zwavejs2mqtt-include
  103. dependencies:
  104. plugin: nil
  105. stage-snaps:
  106. - jq
  107. - yq
  108. stage-packages:
  109. - git
  110. - udev
  111. - rsync
  112. nodejs:
  113. plugin: dump
  114. source:
  115. - on amd64: https://nodejs.org/dist/v15.14.0/node-v15.14.0-linux-x64.tar.gz
  116. - on arm64: https://nodejs.org/dist/v15.14.0/node-v15.14.0-linux-arm64.tar.gz
  117. - on armhf: https://nodejs.org/dist/v15.14.0/node-v15.14.0-linux-armv7l.tar.gz
  118. stage-packages:
  119. - on armhf:
  120. - libatomic1
  121. override-stage: |
  122. npm install --global yarn
  123. snapcraftctl stage
  124. organize:
  125. '*.md' : nodejs/
  126. LICENSE : nodejs/
  127. prime:
  128. - -include
  129. - -share
  130. local:
  131. plugin: dump
  132. source: src/
  133. stage-packages:
  134. - uuid
  135. organize:
  136. hooks: snap/hooks