-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from LaggAt/bug/pin_library_version
Bug/pin library version
- Loading branch information
Showing
7 changed files
with
48 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/bash | ||
|
||
/bin/echo ------------ postCreateCommand apt-get ------------ | ||
apt-get update | ||
apt-get -y install bash bluetooth bluez bluez-tools build-essential ca-certificates cython gcc git iputils-ping libatomic1 libavcodec-dev libc-dev libffi-dev libjpeg-dev libpcap-dev libssl-dev make nano openssh-client procps python3 python3-dev python3-dev python3-pip python3-setuptools rfkill unzip wget wget zlib1g-dev | ||
|
||
/bin/echo ------------ postCreateCommand python/pip ------------ | ||
/usr/local/bin/python3 -m pip install --upgrade pip | ||
/usr/local/bin/pip3 install black colorlog debugpy pexpect pygatt pylint PyNaCl==1.3.0 | ||
/usr/local/bin/pip3 install -r /workspaces/hacs-govee/requirements_test.txt | ||
|
||
/bin/echo ------------ postCreateCommand container install ------------ | ||
mkdir -p /src/ludeeus | ||
cd /src/ludeeus | ||
git clone https://github.com/ludeeus/container | ||
cp -r ./container/rootfs/common/* / | ||
chmod +x /usr/bin/container | ||
/usr/bin/container install | ||
|
||
/bin/echo ------------ postCreateCommand symlink our component ------------ | ||
/bin/mkdir -p /config/custom_components | ||
/bin/ln -s /workspaces/hacs-govee/custom_components/govee /config/custom_components/govee | ||
|
||
/bin/echo ------------ postCreateCommand install hacs ------------ | ||
mkdir -p /src/hacs | ||
cd /src/hacs | ||
/bin/mkdir -p /config/custom_components/hacs | ||
/usr/bin/wget https://github.com/hacs/integration/releases/latest/download/hacs.zip | ||
/usr/bin/unzip hacs.zip -d /config/custom_components/hacs | ||
/bin/rm hacs.zip | ||
|
||
/bin/echo ------------ postCreateCommand finished ------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "govee", | ||
"hacs": "0.1.7", | ||
"hacs": "0.1.8", | ||
"domains": [ | ||
"light" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters