Debian and Raspbian packages now available
Moderator: leecollings
Debian and Raspbian packages now available
I've made packages available for Domoticz on Debian (amd64 and i386) and Raspbian (armhf). They are compiled for stretch, buster and sid. My blog gives full instructions.
https://danielpocock.com/domoticz-packa ... an-fedora/
The same repository includes packages for the domoticz-zigate-plugin, the JennicModuleProgrammer and zigate-flasher
Please share any feedback or observations. Pull requests through Gitlab are welcome.
https://danielpocock.com/domoticz-packa ... an-fedora/
The same repository includes packages for the domoticz-zigate-plugin, the JennicModuleProgrammer and zigate-flasher
Please share any feedback or observations. Pull requests through Gitlab are welcome.
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
-
- Posts: 2016
- Joined: Monday 02 April 2018 20:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: France
- Contact:
Re: Debian and Raspbian packages now available
Well done !
- Dnpwwo
- Posts: 820
- Joined: Sunday 23 March 2014 9:00
- Target OS: Raspberry Pi / ODroid
- Domoticz version: Beta
- Location: Melbourne, Australia
- Contact:
Re: Debian and Raspbian packages now available
@pocock,
Wow, this is a bit next level !
We need to cut stable versions a little more often to support this.
Wow, this is a bit next level !
We need to cut stable versions a little more often to support this.
The reasonable man adapts himself to the world; the unreasonable one persists to adapt the world to himself. Therefore all progress depends on the unreasonable man. George Bernard Shaw
Re: Debian and Raspbian packages now available
There were a few issues that I've worked around in the packaging but before we spread the packages more widely it would be nice to fix them in the main project repositories
- compile errors
https://gitlab.com/dpocock/domoticz-deb ... ning.patch
- cmake version: many distributions don't have the latest cmake. I changed it back to an older version and it seems to work:
https://gitlab.com/dpocock/domoticz-deb ... sion.patch
- specific to Domoticz-Zigate and any other plugin that wants to write into the plugins/foo directory, the systemd unit file needs to include something like this:
https://gitlab.com/dpocock/domoticz-deb ... ervice#L49
ReadWriteDirectories=/usr/lib/domoticz/plugins/Domoticz-Zigate
ReadWriteDirectories=/etc/domoticz/plugins/Domoticz-Zigate
but that is just a hack, it is better if every plugin uses /var/lib/domoticz/plugins automatically
Domoticz-Zigate also wants to write to the config files in etc, those files probably need to live in var as well if they are managed by the process
- compile errors
https://gitlab.com/dpocock/domoticz-deb ... ning.patch
- cmake version: many distributions don't have the latest cmake. I changed it back to an older version and it seems to work:
https://gitlab.com/dpocock/domoticz-deb ... sion.patch
- specific to Domoticz-Zigate and any other plugin that wants to write into the plugins/foo directory, the systemd unit file needs to include something like this:
https://gitlab.com/dpocock/domoticz-deb ... ervice#L49
ReadWriteDirectories=/usr/lib/domoticz/plugins/Domoticz-Zigate
ReadWriteDirectories=/etc/domoticz/plugins/Domoticz-Zigate
but that is just a hack, it is better if every plugin uses /var/lib/domoticz/plugins automatically
Domoticz-Zigate also wants to write to the config files in etc, those files probably need to live in var as well if they are managed by the process
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
-
- Posts: 500
- Joined: Friday 22 May 2015 12:21
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 4.11083
- Location: Asten NB Nederland
- Contact:
Re: Debian and Raspbian packages now available
Good Work!
Your mind is like a parachute,
It only works when it is opened!
RPI4 several Fibaro, KaKu, Neocoolcam switches, Z-Wave, Zigbee2Mqtt, Ikea bulbs and remote, Zigbee temp nodes
It only works when it is opened!
RPI4 several Fibaro, KaKu, Neocoolcam switches, Z-Wave, Zigbee2Mqtt, Ikea bulbs and remote, Zigbee temp nodes
-
- Posts: 2016
- Joined: Monday 02 April 2018 20:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: France
- Contact:
Re: Debian and Raspbian packages now available
Happy to work on those matters. Please let me know what you would expect.pocock wrote: ↑Tuesday 06 August 2019 20:08
- specific to Domoticz-Zigate and any other plugin that wants to write into the plugins/foo directory, the systemd unit file needs to include something like this:
https://gitlab.com/dpocock/domoticz-deb ... ervice#L49
ReadWriteDirectories=/usr/lib/domoticz/plugins/Domoticz-Zigate
ReadWriteDirectories=/etc/domoticz/plugins/Domoticz-Zigate
but that is just a hack, it is better if every plugin uses /var/lib/domoticz/plugins automatically
Domoticz-Zigate also wants to write to the config files in etc, those files probably need to live in var as well if they are managed by the process
Zigbee for Domoticz plugin / RPI3B+ / Electrolama ZZH-P / 45 devices
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
Re: Debian and Raspbian packages now available
Some observations about firmware and packaging:
It would be really nice if we could build the Zigate firmware as a package so that
a) people don't have to download it, they will just have it in /usr/share/zigate-firmware/whatever.bin
b) we have the consistency of building 100% of the stack from sources
The Domoticz-Zigate plugin also includes some firmware for specific devices (Ikea Tradfri):
https://github.com/pipiche38/Domoticz-Z ... TAFirmware
If we don't have source code for those then it may be better to keep them in a separate repository and a separate package that is installed to /usr/share/ikea/tradfri or something like that. Git users can still link it into their tree using Git submodules and package users can have a symlink to it.
If you are happy with this in principle, are there any other firmware modules that need to be distributed? Maybe it is a good idea to discuss them and the best directory locations collectively before doing any work on moving the files.
It would be really nice if we could build the Zigate firmware as a package so that
a) people don't have to download it, they will just have it in /usr/share/zigate-firmware/whatever.bin
b) we have the consistency of building 100% of the stack from sources
The Domoticz-Zigate plugin also includes some firmware for specific devices (Ikea Tradfri):
https://github.com/pipiche38/Domoticz-Z ... TAFirmware
If we don't have source code for those then it may be better to keep them in a separate repository and a separate package that is installed to /usr/share/ikea/tradfri or something like that. Git users can still link it into their tree using Git submodules and package users can have a symlink to it.
If you are happy with this in principle, are there any other firmware modules that need to be distributed? Maybe it is a good idea to discuss them and the best directory locations collectively before doing any work on moving the files.
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
-
- Posts: 2016
- Joined: Monday 02 April 2018 20:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: France
- Contact:
Re: Debian and Raspbian packages now available
For the Ikea firmware, I might in the feature do the download directly on the target system. So OTAFirmware might need to be writeable. For now, I have to download and do a manual process to make it in a format the plugin can use it.pocock wrote: ↑Thursday 08 August 2019 14:06 Some observations about firmware and packaging:
It would be really nice if we could build the Zigate firmware as a package so that
a) people don't have to download it, they will just have it in /usr/share/zigate-firmware/whatever.bin
b) we have the consistency of building 100% of the stack from sources
The Domoticz-Zigate plugin also includes some firmware for specific devices (Ikea Tradfri):
https://github.com/pipiche38/Domoticz-Z ... TAFirmware
If we don't have source code for those then it may be better to keep them in a separate repository and a separate package that is installed to /usr/share/ikea/tradfri or something like that. Git users can still link it into their tree using Git submodules and package users can have a symlink to it.
If you are happy with this in principle, are there any other firmware modules that need to be distributed? Maybe it is a good idea to discuss them and the best directory locations collectively before doing any work on moving the files.
For the Zigate firmware, you might have a look to that https://github.com/fairecasoimeme/ZiGate/issues/105. I don't know ho we can automate it.
Zigbee for Domoticz plugin / RPI3B+ / Electrolama ZZH-P / 45 devices
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
Re: Debian and Raspbian packages now available
An automated download like that could go to /var/cache/something, e.g. /var/cache/domoticz/plugins/zigate/OTAFirmware
However, I also feel that we need to be cautious about automatic downloads for various reasons:
- from a privacy perspective, some people don't like any software installed from Debian to make automatic connections to external servers
- some people like to control the exact versions of everything in their network or ensure that versions only change during planned maintenance windows and putting the firmware in a package gives them the ability to control when that package is upgraded
- some people don't have any network access (sometimes by choice) and they simply download the packages onto a portable hard disk and then copy them to their isolated network
- from a practical perspective, Zigate is not the only project that will use this firmware, keeping it in a separate repository with a separate update tool may allow people from other projects to collaborate on it and share the workload
Has anybody had any personal interaction with NXP about their tools? It looks like they support Eclipse but has anybody asked them if they will support a plugin for Maven or Gradle or some other command line builds? Being able to do continuous integration (e.g. travis-ci or Jenkins builds) is a very popular requirement these days.pipiche wrote: ↑Thursday 08 August 2019 14:45 For the Zigate firmware, you might have a look to that https://github.com/fairecasoimeme/ZiGate/issues/105. I don't know ho we can automate it.
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
-
- Posts: 2016
- Joined: Monday 02 April 2018 20:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: France
- Contact:
Re: Debian and Raspbian packages now available
You might ask on the Zigate Github https://github.com/fairecasoimeme/ZiGatepocock wrote: ↑Monday 12 August 2019 11:01Has anybody had any personal interaction with NXP about their tools? It looks like they support Eclipse but has anybody asked them if they will support a plugin for Maven or Gradle or some other command line builds? Being able to do continuous integration (e.g. travis-ci or Jenkins builds) is a very popular requirement these days.pipiche wrote: ↑Thursday 08 August 2019 14:45 For the Zigate firmware, you might have a look to that https://github.com/fairecasoimeme/ZiGate/issues/105. I don't know ho we can automate it.
Zigbee for Domoticz plugin / RPI3B+ / Electrolama ZZH-P / 45 devices
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
-
- Posts: 2016
- Joined: Monday 02 April 2018 20:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: France
- Contact:
Re: Debian and Raspbian packages now available
@pocock, Daniel I have a number of users whom are having trouble when installing your package. I believe this is due to installing the package on an existing Domoticz environment.
They reach a point where everything is lost from a Domoticz standpoint (most-likely not using the same folders)
They reach a point where everything is lost from a Domoticz standpoint (most-likely not using the same folders)
Zigbee for Domoticz plugin / RPI3B+ / Electrolama ZZH-P / 45 devices
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
-
- Posts: 543
- Joined: Saturday 02 July 2016 5:17
- Target OS: Linux
- Domoticz version: Beta
- Contact:
Re: Debian and Raspbian packages now available
I'd really like to see an AppImage release that can run on any distro and includes all the dependencies.
https://appimage.org/
https://appimage.org/
Unless otherwise stated, all my code is released under GPL 3 license: https://www.gnu.org/licenses/gpl-3.0.en.html
Re: Debian and Raspbian packages now available
Hi everybody,
Back with Domoticz, I just installed Domoticz on an Orange Pi 3 with Debian Buster, but I have a problem installing the Zigate plugin.
I followed the procedure here:
https://danielpocock.com/domoticz-packa ... an-fedora/
But when I run the command: $ sudo apt install domoticz-zigate-plugin
I have this message in return:
domoticz-zigate-plugin: depends: domoticz but it is not installable: unable to correct problems, you have held broken packages.
Do you have any solutions ?
Have a good time.
Back with Domoticz, I just installed Domoticz on an Orange Pi 3 with Debian Buster, but I have a problem installing the Zigate plugin.
I followed the procedure here:
https://danielpocock.com/domoticz-packa ... an-fedora/
But when I run the command: $ sudo apt install domoticz-zigate-plugin
I have this message in return:
domoticz-zigate-plugin: depends: domoticz but it is not installable: unable to correct problems, you have held broken packages.
Do you have any solutions ?
Have a good time.
Re: Debian and Raspbian packages now available
pipiche wrote: ↑Monday 19 August 2019 14:47 @pocock, Daniel I have a number of users whom are having trouble when installing your package. I believe this is due to installing the package on an existing Domoticz environment.
They reach a point where everything is lost from a Domoticz standpoint (most-likely not using the same folders)
Can you suggest any additional logic that the packages should include to avoid this or migrate data?
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
Re: Debian and Raspbian packages now available
Can you provide all the output from that command?djdem1664 wrote: ↑Tuesday 20 August 2019 11:47 Hi everybody,
Back with Domoticz, I just installed Domoticz on an Orange Pi 3 with Debian Buster, but I have a problem installing the Zigate plugin.
I followed the procedure here:
https://danielpocock.com/domoticz-packa ... an-fedora/
But when I run the command: $ sudo apt install domoticz-zigate-plugin
I have this message in return:
domoticz-zigate-plugin: depends: domoticz but it is not installable: unable to correct problems, you have held broken packages.
Do you have any solutions ?
Have a good time.
Did you try
Code: Select all
sudo apt update
Code: Select all
dpkg --list | egrep -i 'domoticz|zwave'
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
-
- Posts: 2016
- Joined: Monday 02 April 2018 20:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: France
- Contact:
Re: Debian and Raspbian packages now available
For me, after installing the Domoticz and Zigate packages, we must have to migrate Databases and Config file. This has to go through a manual steps as it will be hard to detect if there is already a pre-existing installation.pocock wrote: ↑Tuesday 20 August 2019 14:33pipiche wrote: ↑Monday 19 August 2019 14:47 @pocock, Daniel I have a number of users whom are having trouble when installing your package. I believe this is due to installing the package on an existing Domoticz environment.
They reach a point where everything is lost from a Domoticz standpoint (most-likely not using the same folders)
Can you suggest any additional logic that the packages should include to avoid this or migrate data?
This might be an additional txt file or something like that, which document what the user will have to do to recover its Db and environment
From Domoticz side, I suspect this is about
- domoticz.db
- some OZW files which are usally on the domoticz home directory
From Zigate plugin, this is about
- Data folder
- Conf folder
- Reports folder
Zigbee for Domoticz plugin / RPI3B+ / Electrolama ZZH-P / 45 devices
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
If the plugin provides you value, you can support me with a donation Paypal.
Wiki is available here.
Zigbee for Domoticz FAQ
Re: Debian and Raspbian packages now available
root@orangepi3:~# sudo apt updatepocock wrote: ↑Tuesday 20 August 2019 14:35 Can you provide all the output from that command?
Did you tryCode: Select all
sudo apt update
Hit:2 http://security.debian.org buster/updates InRelease
Hit:6 http://apt.debify.org/debify debify-buster-backports InRelease
Hit:1 http://cdn-fastly.deb.debian.org/debian buster InRelease
Hit:3 http://cdn-fastly.deb.debian.org/debian buster-updates InRelease
Hit:5 http://cdn-fastly.deb.debian.org/debian buster-backports InRelease
Hit:4 https://beta.armbian.com buster InRelease
Reading package lists... Done
Building dependency tree
Reading state information... Done
All packages are up to date.
N: Skipping acquire of configured file 'main/binary-arm64/Packages' as repository 'http://apt.debify.org/debify debify-buster-backports InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'contrib/binary-arm64/Packages' as repository 'http://apt.debify.org/debify debify-buster-backports InRelease' doesn't support architecture 'arm64'
N: Skipping acquire of configured file 'non-free/binary-arm64/Packages' as repository 'http://apt.debify.org/debify debify-buster-backports InRelease' doesn't support architecture 'arm64'
root@orangepi3:~# dpkg --list | egrep -i 'domoticz|zwave'pocock wrote: ↑Tuesday 20 August 2019 14:35 It says something is held, can you try
and share the output?Code: Select all
dpkg --list | egrep -i 'domoticz|zwave'
root@orangepi3:~#
Thanks and have a good time.
Re: Debian and Raspbian packages now available
Thanks for the detailed log, this line shows us the problem:
I'd be happy to build for arm64 as well but it might be a few days before I do another build, is that OK for you?
Is this your device?
http://www.orangepi.org/Orange%20Pi%203/
You have an arm64 architecture and I only built for amd64, i386 and armhf so far.djdem1664 wrote: ↑Tuesday 20 August 2019 18:55
N: Skipping acquire of configured file 'main/binary-arm64/Packages' as repository 'http://apt.debify.org/debify debify-buster-backports InRelease' doesn't support architecture 'arm64'
I'd be happy to build for arm64 as well but it might be a few days before I do another build, is that OK for you?
Is this your device?
http://www.orangepi.org/Orange%20Pi%203/
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
Re: Debian and Raspbian packages now available
We can use a domoticz.preinst script or domoticz-zigate-plugin.preinst script to detect which files and directories already exist. If the preinst scripts detect the wrong version or wrong file locations they can stop the package install process before any changes are made to the system.
Example for domoticz-zigate-plugin.preinst
Code: Select all
if [ -d /usr/lib/domoticz/plugins/Domoticz-Zigate/.git ];
then
echo "You already installed the plugin from Git, please manually move the existing plugin directory aside"
echo "and backup your configuration before installing this package"
exit 1
fi
https://www.debian.org/doc/manuals/debi ... intscripts
https://wiki.debian.org/MaintainerScripts
If anybody has time to help develop either script and submit a merge request in gitlab it would be very welcome.
On my own systems, I was able to simply delete all the old data and start fresh but I understand other users won't like to do that.
The same scripting can eventually be replicated into scriptlets in the spec file for RPM users:
https://docs.fedoraproject.org/en-US/pa ... criptlets/
The logic for RPM users will probably be very similar but the script syntax and environment is slightly different.
Daniel Pocock, Debian Developer
https://danielpocock.com
https://danielpocock.com
Re: Debian and Raspbian packages now available
Yes, it's this one.pocock wrote: ↑Tuesday 20 August 2019 23:56
Is this your device?
http://www.orangepi.org/Orange%20Pi%203/
Thanks a lot for your help!
No problem, I'll wait a few days!
Have a good day.
Who is online
Users browsing this forum: No registered users and 1 guest