-
-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update tradfri installation instructions #3558
Conversation
Should this be against the current branch? |
I wasn't sure if we usually cherry pick or back merge? I can switch if necessary. |
source/_components/tradfri.markdown
Outdated
$ make install | ||
python3 -m pip install cython | ||
|
||
cd /usr/src/app/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not everybody has /usr/src/app
. This script will fail for them. I'd either mkdir
it or use /tmp
. The source is not needed after the installation, anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good spot.
source/_components/tradfri.markdown
Outdated
$ ./configure --disable-documentation --disable-shared --without-debug CFLAGS="-D COAP_DEBUG_FD=stderr" | ||
$ make | ||
$ make install | ||
python3 -m pip install cython |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be done inside the venv if there is any.
source/_components/tradfri.markdown
Outdated
|
||
git clone --depth 1 https://git.fslab.de/jkonra2m/tinydtls | ||
cd tinydtls | ||
autoreconf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This requires that autoconf
is available which as it was in the old instructions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On Fedora, and I guess on CentOS as well, is automake
required too.
…tant.github.io into update_tradfri
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐦
Description:
Update instructions for aiocoap installation.
Pull request in home-assistant (if applicable): home-assistant/core#7815