Compare commits

...

2 Commits

Author SHA1 Message Date
Gautham Varma K bf6bd43f48 Improve build scripts (#16)
* Better handle installation requirements

* Install TVHeadend from edge repos

* Refactor Build Script

* Try installing a different git version

* Pin to Specific Versions of musl and gcc

To fix build CI

* Bump base images properly

* Prettified Code!

* Remove git and mono pinned to a specific version

Co-authored-by: GauthamVarmaK <GauthamVarmaK@users.noreply.github.com>
2021-06-19 11:40:04 +05:30
Gautham Varma K ade2f59ae1 Bump Base Image from 9.2.0 to 9.2.2 (#15)
* Bump Base Image from 9.2.0 to 9.2.2

* Bump git from 2.31.1-r1 to 2.32.0-r0

* Upgrade Dependencies before installing Streamlink

To try fix cyclic dependency version issues when installing musl and gcc

* Revert "Upgrade Dependencies before installing Streamlink"

This reverts commit e4f8604931.
2021-06-19 10:02:44 +05:30
3 changed files with 72 additions and 57 deletions
+1 -5
View File
@@ -1,11 +1,7 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.2.0 ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.2.2
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM ${BUILD_FROM} FROM ${BUILD_FROM}
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories
COPY run.sh /run.sh COPY run.sh /run.sh
RUN chmod +x /run.sh RUN chmod +x /run.sh
RUN /run.sh RUN /run.sh
+5 -5
View File
@@ -1,9 +1,9 @@
{ {
"build_from": { "build_from": {
"aarch64": "ghcr.io/hassio-addons/base/aarch64:9.2.0", "aarch64": "ghcr.io/hassio-addons/base/aarch64:9.2.2",
"amd64": "ghcr.io/hassio-addons/base/amd64:9.2.0", "amd64": "ghcr.io/hassio-addons/base/amd64:9.2.2",
"armhf": "ghcr.io/hassio-addons/base/armhf:9.2.0", "armhf": "ghcr.io/hassio-addons/base/armhf:9.2.2",
"armv7": "ghcr.io/hassio-addons/base/armv7:9.2.0", "armv7": "ghcr.io/hassio-addons/base/armv7:9.2.2",
"i386": "ghcr.io/hassio-addons/base/i386:9.2.0" "i386": "ghcr.io/hassio-addons/base/i386:9.2.2"
} }
} }
+33 -14
View File
@@ -1,39 +1,58 @@
#!/usr/bin/env bashio #!/usr/bin/env bashio
bashio::log.info "[TVHeadend] Installing TVHeadend" bashio::log.info "[TVHeadend] Installing TVHeadend"
apk update && apk add --no-cache tvheadend=4.2.8-r3 git=2.31.1-r1 mono=6.12.0.122-r1 apk update && apk add --no-cache tvheadend=4.2.8-r3
mkdir -p /config/tvheadend/recordings mkdir -p /config/tvheadend/recordings
bashio::log.info '[TVHeadend] Setup completed without errors!!' bashio::log.info '[TVHeadend] Setup completed without errors!!'
check_webgrabplus(){
if [ -z "$(ls -A /config/tvheadend/wg++)" ]; then return 1; else return 0; fi
}
webgrabplus_install(){
if apk update; then
bashio::log.info '[Webgrab+] APK: Installing required packages.'
if apk add --no-cache --virtual .build-deps git mono --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing; then
bashio::log.info '[Webgrab+] Installing Webgrab+.'
mkdir -p ~/.wg++ mkdir -p ~/.wg++
ln -sf /config/tvheadend/wg++/guide.xml ~/.wg++/guide.xml ln -sf /config/tvheadend/wg++/guide.xml ~/.wg++/guide.xml
if [ "$(ls -A /config/tvheadend/wg++)" ]; then
bashio::log.info "[Webgrab+] Webgrab+ already installed"
else
bashio::log.info "[Webgrab+] No webgrab+ installation found - Installing webgrab+"
cd /tmp && \ cd /tmp && \
wget http://webgrabplus.com/sites/default/files/download/SW/V3.1.0/WebGrabPlus_V3.1_install.tar.gz && \ wget http://webgrabplus.com/sites/default/files/download/SW/V3.1.0/WebGrabPlus_V3.1_install.tar.gz && \
tar -xvf WebGrabPlus_V3.1_install.tar.gz && rm WebGrabPlus_V3.1_install.tar.gz && \ tar -xvf WebGrabPlus_V3.1_install.tar.gz && rm WebGrabPlus_V3.1_install.tar.gz && \
mv .wg++/ /config/tvheadend/wg++ && \ mv .wg++/ /config/tvheadend/wg++ && cd /config/tvheadend/wg++ && ./install.sh
cd /config/tvheadend/wg++ && \
./install.sh
rm -rf siteini.pack/ && \ rm -rf siteini.pack/ && \
git clone https://github.com/DeBaschdi/webgrabplus-siteinipack.git && \ git clone https://github.com/DeBaschdi/webgrabplus-siteinipack.git && \
cp -R webgrabplus-siteinipack/siteini.pack/ siteini.pack && \ cp -R webgrabplus-siteinipack/siteini.pack/ siteini.pack && \
cp siteini.pack/International/horizon.tv.* siteini.user/ cp siteini.pack/International/horizon.tv.* siteini.user/
fi
wget -O /usr/bin/tv_grab_wg++ http://www.webgrabplus.com/sites/default/files/tv_grab_wg.txt && \ wget -O /usr/bin/tv_grab_wg++ http://www.webgrabplus.com/sites/default/files/tv_grab_wg.txt && \
chmod a+x /usr/bin/tv_grab_wg++ chmod a+x /usr/bin/tv_grab_wg++
bashio::log.info '[Webgrab+] Setup completed without errors!!'
echo "0 0 * * * /config/tvheadend/wg++/run.sh" >> /var/spool/cron/root echo "0 0 * * * /config/tvheadend/wg++/run.sh" >> /var/spool/cron/root
crond crond
else
bashio::log.info '[Webgrab+] APK: Critical error. Unable install required packages.'
exit 1
fi
bashio::log.info '[Webgrab+] APK: Removing packages no longer required.'
apk del .build-deps git mono
else
bashio::log.error '[Webgrab+] APK: Critical error. Unable to update pkg list. Check connectivity.'
exit 1
fi
bashio::log.info '[Webgrab+] Finsihed all APK and PIP3 updates and installs.'
}
if check_webgrabplus; then
bashio::log.info "[Webgrab+] Webgrab+ already installed"
else
bashio::log.info "[Webgrab+] No webgrab+ installation found - Installing webgrab+"
webgrabplus_install
fi
bashio::log.info '[Webgrab+] Setup completed without errors!!'
check_streamlink () { check_streamlink () {
if [ -z "$(command -v streamlink)" ]; then return 1; else return 0; fi if [ -z "$(command -v streamlink)" ]; then return 1; else return 0; fi
@@ -51,7 +70,7 @@ streamlink_install () {
bashio::log.info '[StreamLink] APK: Updating pkg list.' bashio::log.info '[StreamLink] APK: Updating pkg list.'
if apk update; then if apk update; then
bashio::log.info '[StreamLink] APK: Installing required packages.' bashio::log.info '[StreamLink] APK: Installing required packages.'
if apk add --no-cache py3-pip && apk add --no-cache --virtual .build-deps gcc musl-dev; then if apk add --no-cache py3-pip && apk add --no-cache --virtual .build-deps musl-dev gcc; then
bashio::log.info '[StreamLink] PIP3: Updating and installing required packages.' bashio::log.info '[StreamLink] PIP3: Updating and installing required packages.'
if ! pip3 install --no-cache --upgrade setuptools; then bashio::log.error '[StreamLink] PIP3: Error while upgrading setuptools.'; fi if ! pip3 install --no-cache --upgrade setuptools; then bashio::log.error '[StreamLink] PIP3: Error while upgrading setuptools.'; fi
if ! pip3 install --no-cache streamlink; then bashio::log.error '[StreamLink] PIP3: Error while installing Streamlink.'; fi if ! pip3 install --no-cache streamlink; then bashio::log.error '[StreamLink] PIP3: Error while installing Streamlink.'; fi