snapcraft.yaml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. name: zwavejs2mqtt
  2. base: core20
  3. version: 'v7.1.0-SELCC'
  4. summary: Fully configurable Zwave to MQTT Gateway and Control Panel.
  5. description: "** Fully configurable Zwave to MQTT Gateway and Control Panel**\n\n- Zwave to Mqtt Gateway: Configure how nodes and nodes values are \n mapped between the two protocols\n- Secured: Supports HTTPS and users authentication\n- Control Panel UI: Directly control all your nodes and their \n values from the UI, some of control panel features:\n - Nodes management: check all nodes discovered in the z-wave \n network and manage their values\n - Firmware updates: update devices firmware, just select the \n controller action _Begin Firmware Update_ and upload the \n firmware file\n - Groups associations: add/edit nodes associations\n - Full zwave-js APIs support\n- Custom scenes management: create scenes and trigger them by using\n MQTT apis (also supports timeouts)\n- Log debug in UI: See debug logs directly from the UI\n- Store directory management: all files are stored in store folder, \n you can download/edit files inside this folder directly from the UI\n- Network graph: see how nodes are communicating with the controller,\n useful for diagnostics purposes\n- Home Assistant integration: you can use official Zwavejs integration \n by enabling zwavejs server or use integrated MQTT discovery integration\n\n**Channels in `latest`**\n\nThis is how we use the different of channels in the `latest` track, \nto give the user a chance to choose how often they want updates.\n\n- `latest/stable`: Latest version of the last *major* release. Will\n only update once per major release and most likely by the end of\n that release cycle. E.g when there is a new version `b.a.a` then\n version `a.b.c` will be will be available.\n\n- `latest/candidate`: Latest minor or patch release of latest major\n release. E.g when version `a.b.c` changes to `a.b.d` or `a.c.a`, then\n version `a.b.d` or `a.c.a` will be available. Consider this rolling\n releases.\n\n- `latest/edge` and `latest/edge/dev`: Every build (including tests) \\n might be pushed to these channels.\n"
  6. grade: stable
  7. confinement: strict
  8. license: MIT
  9. assumes:
  10. - command-chain
  11. architectures:
  12. - build-on: amd64
  13. - build-on: arm64
  14. - build-on: armhf
  15. apps:
  16. zwavejs2mqtt:
  17. daemon: simple
  18. restart-condition: always
  19. environment:
  20. STORE_DIR: $SNAP_DATA
  21. ZWAVEJS_EXTERNAL_CONFIG: $SNAP_DATA/.ext-config
  22. DAEMONIZED: 1
  23. command: bin/yarn start
  24. command-chain:
  25. - helper/env-wrapper
  26. plugs:
  27. - network
  28. - network-bind
  29. - raw-usb
  30. - serial-port
  31. - hardware-observe
  32. exec:
  33. environment:
  34. STORE_DIR: $SNAP_DATA
  35. ZWAVEJS_EXTERNAL_CONFIG: $SNAP_DATA/.ext-config
  36. command: bin/yarn --cwd $SNAP/lib/node_modules/zwavejs2mqtt start
  37. command-chain:
  38. - helper/env-wrapper
  39. plugs:
  40. - network
  41. - network-bind
  42. - raw-usb
  43. - serial-port
  44. - hardware-observe
  45. help:
  46. command: helper/env-wrapper --help
  47. enable:
  48. command: bin/daemonize
  49. disable:
  50. command: bin/de-daemonize
  51. restart:
  52. command: bin/restart
  53. layout:
  54. /usr/local/share/.cache/yarn:
  55. bind: $SNAP/.cache/yarn
  56. /usr/local/share/.yarn:
  57. symlink: $SNAP/lib/node_modules
  58. parts:
  59. zwavejs2mqtt:
  60. after: [yarn]
  61. plugin: dump
  62. source: https://github.com/zwave-js/zwavejs2mqtt.git
  63. #source-branch: "master"
  64. source-tag: "7.1.0"
  65. #source-tag: $SNAPCRAFT_PROJECT_VERSION
  66. build-packages:
  67. - gcc
  68. - build-essential
  69. - jq
  70. override-build: |
  71. # Used when testing an unreleased version of Z-wavejs
  72. sed -i 's/"zwave-js".*$/"zwave-js"\: "10.0.5-0-pr-4836-ed10b36"/g' ${SNAPCRAFT_PART_BUILD}/package.json
  73. if [ -n "${http_proxy-}" ]; then
  74. yarn config set httpProxy "${http_proxy}"
  75. fi
  76. if [ -n "${https_proxy-}" ]; then
  77. yarn config set httpsProxy "${https_proxy}"
  78. fi
  79. yarn set version berry
  80. yarn install \
  81. && yarn run build \
  82. && yarn remove $(cat "${SNAPCRAFT_PART_BUILD}/package.json" | jq -r '.devDependencies | keys | join(" ")') \
  83. && mkdir -p "${SNAPCRAFT_PART_INSTALL}/lib/node_modules" \
  84. && cp --archive --link --no-dereference "${SNAPCRAFT_PART_BUILD}" \
  85. "${SNAPCRAFT_PART_INSTALL}/lib/node_modules/zwavejs2mqtt" \
  86. organize:
  87. lib/node_modules/zwavejs2mqtt/dist: lib/node_modules/zwavejs2mqtt/server/dist
  88. lib/node_modules/zwavejs2mqtt/views: lib/node_modules/zwavejs2mqtt/server/views
  89. filesets:
  90. zwavejs2mqtt-include:
  91. - lib/node_modules/zwavejs2mqtt/.git
  92. - lib/node_modules/zwavejs2mqtt/*.md
  93. - lib/node_modules/zwavejs2mqtt/LICENSE
  94. - lib/node_modules/zwavejs2mqtt/node_modules
  95. - lib/node_modules/zwavejs2mqtt/server
  96. - lib/node_modules/zwavejs2mqtt/package.json
  97. - lib/node_modules/zwavejs2mqtt/.yarn
  98. - lib/node_modules/zwavejs2mqtt/yarn.lock
  99. - lib/node_modules/zwavejs2mqtt/.yarnrc.yml
  100. stage:
  101. - $zwavejs2mqtt-include
  102. dependencies:
  103. plugin: nil
  104. stage-snaps:
  105. - jq
  106. - yq
  107. stage-packages:
  108. - git
  109. - udev
  110. - iproute2
  111. # stage-snaps:
  112. # - duplicity
  113. nodejs:
  114. plugin: dump
  115. source:
  116. - on amd64: https://nodejs.org/dist/v16.13.0/node-v16.13.0-linux-x64.tar.gz
  117. - on arm64: https://nodejs.org/dist/v16.13.0/node-v16.13.0-linux-arm64.tar.gz
  118. - on armhf: https://nodejs.org/dist/v16.13.0/node-v16.13.0-linux-armv7l.tar.gz
  119. stage-packages:
  120. - on armhf:
  121. - libatomic1
  122. organize:
  123. '*.md': nodejs/
  124. LICENSE: nodejs/
  125. prime:
  126. - -include
  127. - -share
  128. yarn:
  129. after: [nodejs]
  130. plugin: nil
  131. override-build: |
  132. npm install yarn
  133. snapcraftctl build
  134. cp -r $SNAPCRAFT_PART_BUILD/* $SNAPCRAFT_PART_INSTALL
  135. organize:
  136. node_modules/yarn: lib/node_modules/yarn
  137. stage:
  138. - lib/node_modules/yarn
  139. override-stage: |
  140. snapcraftctl stage
  141. PWD=$(pwd)
  142. cd $SNAPCRAFT_STAGE/bin
  143. ln -sf ../lib/node_modules/yarn/bin/yarn yarn
  144. cd "${PWD}"
  145. prime:
  146. - lib/node_modules/yarn
  147. - bin/yarn
  148. local:
  149. plugin: dump
  150. source: src/
  151. stage-packages:
  152. - uuid
  153. organize:
  154. hooks: snap/hooks