Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ca396a2cda | |||
| 0cef0e84da | |||
| 18b8e3a3eb | |||
| 0746681000 | |||
| 1afe905387 | |||
| 8a0d2dbfdc | |||
| 1759409468 | |||
| 7a31451c90 | |||
| 3b5abde681 | |||
| e9adc7135d | |||
| 04a80b4138 | |||
| 65d970de45 | |||
| afc785ba22 | |||
| c204f8b737 | |||
| e25a063e5d | |||
| af4d8971df | |||
| 8e156d8b5c | |||
| cb12a29980 | |||
| 6176220846 | |||
| 2a23ac0f40 | |||
| 9847cb9328 | |||
| 219e5675d9 | |||
| dc1ff6e390 | |||
| 4454d54ed0 |
@@ -6,3 +6,8 @@ updates:
|
|||||||
schedule:
|
schedule:
|
||||||
interval: daily
|
interval: daily
|
||||||
time: "06:00"
|
time: "06:00"
|
||||||
|
- package-ecosystem: "pip"
|
||||||
|
directory: "/tvheadend/"
|
||||||
|
schedule:
|
||||||
|
interval: daily
|
||||||
|
time: "06:00"
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ jobs:
|
|||||||
- name: ⤵️ Check out code from GitHub
|
- name: ⤵️ Check out code from GitHub
|
||||||
uses: actions/checkout@v2.3.4
|
uses: actions/checkout@v2.3.4
|
||||||
- name: 🚀 Run Add-on Lint
|
- name: 🚀 Run Add-on Lint
|
||||||
uses: frenck/action-addon-linter@v2.1
|
uses: frenck/action-addon-linter@v2.3
|
||||||
with:
|
with:
|
||||||
community: true
|
community: true
|
||||||
path: "./${{ needs.information.outputs.target }}"
|
path: "./${{ needs.information.outputs.target }}"
|
||||||
@@ -103,7 +103,7 @@ jobs:
|
|||||||
- name: ⤵️ Check out code from GitHub
|
- name: ⤵️ Check out code from GitHub
|
||||||
uses: actions/checkout@v2.3.4
|
uses: actions/checkout@v2.3.4
|
||||||
- name: 🚀 Run Prettier
|
- name: 🚀 Run Prettier
|
||||||
uses: creyD/prettier_action@v3.3
|
uses: creyD/prettier_action@v4.0
|
||||||
with:
|
with:
|
||||||
prettier_options: --write **/*.{json,js,md,yaml}
|
prettier_options: --write **/*.{json,js,md,yaml}
|
||||||
env:
|
env:
|
||||||
@@ -132,15 +132,13 @@ jobs:
|
|||||||
uses: actions/cache@v2.1.6
|
uses: actions/cache@v2.1.6
|
||||||
with:
|
with:
|
||||||
path: /tmp/.docker-cache
|
path: /tmp/.docker-cache
|
||||||
key:
|
key: docker-${{ matrix.architecture }}-${{ github.sha }}
|
||||||
docker-${{ github.ref }}-${{ matrix.architecture }}-${{ github.sha
|
|
||||||
}}
|
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
docker-${{ github.ref }}-${{ matrix.architecture }}
|
docker-${{ matrix.architecture }}
|
||||||
- name: 🏗 Set up QEMU
|
- name: 🏗 Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1.2.0
|
uses: docker/setup-qemu-action@v1.2.0
|
||||||
- name: 🏗 Set up Docker Buildx
|
- name: 🏗 Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1.3.0
|
uses: docker/setup-buildx-action@v1.6.0
|
||||||
- name: 🏗 Set up CodeNotary
|
- name: 🏗 Set up CodeNotary
|
||||||
run: bash <(curl https://getvcn.codenotary.com -L)
|
run: bash <(curl https://getvcn.codenotary.com -L)
|
||||||
- name: ℹ️ Compose build flags
|
- name: ℹ️ Compose build flags
|
||||||
@@ -178,7 +176,7 @@ jobs:
|
|||||||
--exit-status \
|
--exit-status \
|
||||||
'.verification.status == 0'
|
'.verification.status == 0'
|
||||||
- name: 🚀 Build
|
- name: 🚀 Build
|
||||||
uses: docker/build-push-action@v2.5.0
|
uses: docker/build-push-action@v2.7.0
|
||||||
with:
|
with:
|
||||||
push: false
|
push: false
|
||||||
context: ${{ needs.information.outputs.target }}
|
context: ${{ needs.information.outputs.target }}
|
||||||
@@ -186,7 +184,7 @@ jobs:
|
|||||||
cache-from: |
|
cache-from: |
|
||||||
type=local,src=/tmp/.docker-cache
|
type=local,src=/tmp/.docker-cache
|
||||||
ghcr.io/gauthamvarmak/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:edge
|
ghcr.io/gauthamvarmak/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:edge
|
||||||
cache-to: type=local,mode=max,dest=/tmp/.docker-cache
|
cache-to: type=local,mode=max,dest=/tmp/.docker-cache-new
|
||||||
platforms: ${{ steps.flags.outputs.platform }}
|
platforms: ${{ steps.flags.outputs.platform }}
|
||||||
build-args: |
|
build-args: |
|
||||||
BUILD_ARCH=${{ matrix.architecture }}
|
BUILD_ARCH=${{ matrix.architecture }}
|
||||||
@@ -197,3 +195,11 @@ jobs:
|
|||||||
BUILD_REF=${{ github.sha }}
|
BUILD_REF=${{ github.sha }}
|
||||||
BUILD_REPOSITORY=${{ github.repository }}
|
BUILD_REPOSITORY=${{ github.repository }}
|
||||||
BUILD_VERSION=edge
|
BUILD_VERSION=edge
|
||||||
|
# This ugly bit is necessary, or our cache will grow forever...
|
||||||
|
# Well until we hit GitHub's limit of 5GB :)
|
||||||
|
# https://github.com/docker/build-push-action/issues/252
|
||||||
|
# https://github.com/moby/buildkit/issues/1896
|
||||||
|
- name: 🚚 Swap build cache
|
||||||
|
run: |
|
||||||
|
rm -rf /tmp/.docker-cache
|
||||||
|
mv /tmp/.docker-cache-new /tmp/.docker-cache
|
||||||
|
|||||||
@@ -75,15 +75,13 @@ jobs:
|
|||||||
uses: actions/cache@v2.1.6
|
uses: actions/cache@v2.1.6
|
||||||
with:
|
with:
|
||||||
path: /tmp/.docker-cache
|
path: /tmp/.docker-cache
|
||||||
key:
|
key: docker-${{ matrix.architecture }}-${{ github.sha }}
|
||||||
docker-${{ github.ref }}-${{ matrix.architecture }}-${{ github.sha
|
|
||||||
}}
|
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
docker-${{ github.ref }}-${{ matrix.architecture }}
|
docker-${{ matrix.architecture }}
|
||||||
- name: 🏗 Set up QEMU
|
- name: 🏗 Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1.2.0
|
uses: docker/setup-qemu-action@v1.2.0
|
||||||
- name: 🏗 Set up Docker Buildx
|
- name: 🏗 Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v1.3.0
|
uses: docker/setup-buildx-action@v1.6.0
|
||||||
- name: 🏗 Set up CodeNotary
|
- name: 🏗 Set up CodeNotary
|
||||||
run: bash <(curl https://getvcn.codenotary.com -L)
|
run: bash <(curl https://getvcn.codenotary.com -L)
|
||||||
- name: ℹ️ Compose build flags
|
- name: ℹ️ Compose build flags
|
||||||
@@ -108,7 +106,7 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
- name: 🏗 Login to GitHub Container Registry
|
- name: 🏗 Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v1.9.0
|
uses: docker/login-action@v1.10.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
@@ -127,7 +125,7 @@ jobs:
|
|||||||
--exit-status \
|
--exit-status \
|
||||||
'.verification.status == 0'
|
'.verification.status == 0'
|
||||||
- name: 🚀 Build
|
- name: 🚀 Build
|
||||||
uses: docker/build-push-action@v2.5.0
|
uses: docker/build-push-action@v2.7.0
|
||||||
with:
|
with:
|
||||||
load: true
|
load: true
|
||||||
# yamllint disable rule:line-length
|
# yamllint disable rule:line-length
|
||||||
@@ -140,7 +138,7 @@ jobs:
|
|||||||
cache-from: |
|
cache-from: |
|
||||||
type=local,src=/tmp/.docker-cache
|
type=local,src=/tmp/.docker-cache
|
||||||
ghcr.io/gauthamvarmak/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:edge
|
ghcr.io/gauthamvarmak/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:edge
|
||||||
cache-to: type=local,mode=max,dest=/tmp/.docker-cache
|
cache-to: type=local,mode=max,dest=/tmp/.docker-cache-new
|
||||||
platforms: ${{ steps.flags.outputs.platform }}
|
platforms: ${{ steps.flags.outputs.platform }}
|
||||||
build-args: |
|
build-args: |
|
||||||
BUILD_ARCH=${{ matrix.architecture }}
|
BUILD_ARCH=${{ matrix.architecture }}
|
||||||
@@ -151,6 +149,14 @@ jobs:
|
|||||||
BUILD_REF=${{ github.sha }}
|
BUILD_REF=${{ github.sha }}
|
||||||
BUILD_REPOSITORY=${{ github.repository }}
|
BUILD_REPOSITORY=${{ github.repository }}
|
||||||
BUILD_VERSION=${{ needs.information.outputs.version }}
|
BUILD_VERSION=${{ needs.information.outputs.version }}
|
||||||
|
# This ugly bit is necessary, or our cache will grow forever...
|
||||||
|
# Well until we hit GitHub's limit of 5GB :)
|
||||||
|
# https://github.com/docker/build-push-action/issues/252
|
||||||
|
# https://github.com/moby/buildkit/issues/1896
|
||||||
|
- name: 🚚 Swap build cache
|
||||||
|
run: |
|
||||||
|
rm -rf /tmp/.docker-cache
|
||||||
|
mv /tmp/.docker-cache-new /tmp/.docker-cache
|
||||||
- name: 🔏 Notarize
|
- name: 🔏 Notarize
|
||||||
# yamllint disable rule:line-length
|
# yamllint disable rule:line-length
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ jobs:
|
|||||||
name: 🔒 Lock closed issues and PRs
|
name: 🔒 Lock closed issues and PRs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: dessant/lock-threads@v2.0.3
|
- uses: dessant/lock-threads@v2.1.2
|
||||||
with:
|
with:
|
||||||
github-token: ${{ github.token }}
|
github-token: ${{ github.token }}
|
||||||
issue-lock-inactive-days: "30"
|
issue-lock-inactive-days: "30"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ name: PR Labels
|
|||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
# yamllint disable-line rule:truthy
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request_target:
|
||||||
types: [opened, labeled, unlabeled, synchronize]
|
types: [opened, labeled, unlabeled, synchronize]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@@ -14,6 +14,7 @@ jobs:
|
|||||||
- name: 🏷 Verify PR has a valid label
|
- name: 🏷 Verify PR has a valid label
|
||||||
uses: jesusvasquez333/verify-pr-label-action@v1.4.0
|
uses: jesusvasquez333/verify-pr-label-action@v1.4.0
|
||||||
with:
|
with:
|
||||||
|
pull-request-number: "${{ github.event.pull_request.number }}"
|
||||||
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
valid-labels: >-
|
valid-labels: >-
|
||||||
breaking-change, bugfix, documentation, enhancement, refactor,
|
breaking-change, bugfix, documentation, enhancement, refactor,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 🚀 Run stale
|
- name: 🚀 Run stale
|
||||||
uses: actions/stale@v3.0.19
|
uses: actions/stale@v4
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
days-before-stale: 30
|
days-before-stale: 30
|
||||||
|
|||||||
+46
-19
@@ -1,29 +1,56 @@
|
|||||||
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:9.2.2
|
ARG BUILD_FROM
|
||||||
# hadolint ignore=DL3006
|
# hadolint ignore=DL3006
|
||||||
FROM ${BUILD_FROM}
|
FROM ${BUILD_FROM}
|
||||||
|
|
||||||
COPY run.sh /run.sh
|
COPY requirements.txt /tmp/
|
||||||
RUN chmod +x /run.sh
|
|
||||||
RUN /run.sh
|
|
||||||
|
|
||||||
RUN echo "Starting TVHeadend"
|
RUN \
|
||||||
ENTRYPOINT ["/usr/bin/tvheadend", "--firstrun", "-u", "root", "-g", "root", "-c", "/config/tvheadend"]
|
apk update \
|
||||||
|
&& apk add --no-cache --virtual .build-deps \
|
||||||
|
musl-dev=1.2.2-r3 \
|
||||||
|
gcc=10.3.1_git20210424-r2 \
|
||||||
|
g++=10.3.1_git20210424-r2 \
|
||||||
|
libxml2-dev=2.9.12-r1 \
|
||||||
|
libxslt-dev=1.1.34-r1 \
|
||||||
|
python3-dev=3.9.5-r1 \
|
||||||
|
&& apk add --no-cache \
|
||||||
|
tvheadend=4.2.8-r3 \
|
||||||
|
py3-pip=20.3.4-r1 \
|
||||||
|
libxslt=1.1.34-r1 \
|
||||||
|
&& pip3 install \
|
||||||
|
--no-cache-dir \
|
||||||
|
--prefer-binary \
|
||||||
|
-r /tmp/requirements.txt \
|
||||||
|
&& apk del --no-cache --purge .build-deps
|
||||||
|
|
||||||
|
# Copy root filesystem
|
||||||
|
COPY rootfs /
|
||||||
|
|
||||||
|
# Build arguments
|
||||||
|
ARG BUILD_ARCH
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG BUILD_DESCRIPTION
|
||||||
|
ARG BUILD_NAME
|
||||||
|
ARG BUILD_REF
|
||||||
|
ARG BUILD_REPOSITORY
|
||||||
|
ARG BUILD_VERSION
|
||||||
|
|
||||||
# Labels
|
# Labels
|
||||||
LABEL \
|
LABEL \
|
||||||
io.hass.name="TVHeadend" \
|
io.hass.name="${BUILD_NAME}" \
|
||||||
io.hass.description="TVHeadend Add-On" \
|
io.hass.description="${BUILD_DESCRIPTION}" \
|
||||||
io.hass.arch="${BUILD_ARCH}" \
|
io.hass.arch="${BUILD_ARCH}" \
|
||||||
io.hass.type="addon" \
|
io.hass.type="addon" \
|
||||||
io.hass.version=${BUILD_VERSION} \
|
io.hass.version=${BUILD_VERSION} \
|
||||||
maintainer="https://github.com/GauthamVarmaK" \
|
maintainer="Gautham Varma K <43441192+GauthamVarmaK@users.noreply.github.com>" \
|
||||||
org.label-schema.description="TVHeadend Home Assistant Add-On" \
|
org.opencontainers.image.title="${BUILD_NAME}" \
|
||||||
org.label-schema.build-date=${BUILD_DATE} \
|
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
|
||||||
org.label-schema.name="TVHeadend" \
|
org.opencontainers.image.vendor="GauthamVarmaK" \
|
||||||
org.label-schema.name="Home Assistant Addon: TVHeadend ${BUILD_ARCH}" \
|
org.opencontainers.image.authors="Gautham Varma K <43441192+GauthamVarmaK@users.noreply.github.com>" \
|
||||||
org.label-schema.schema-version="1.0" \
|
org.opencontainers.image.licenses="MIT" \
|
||||||
org.label-schema.url="https://github.com/GauthamVarmaK/addon-tvheadend" \
|
org.opencontainers.image.url="https://github.com/GauthamVarmaK/addon-tvheadend" \
|
||||||
org.label-schema.usage="https://github.com/GauthamVarmaK/addon-tvheadend" \
|
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
||||||
org.label-schema.vcs-ref=${BUILD_REF} \
|
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
|
||||||
org.label-schema.vcs-url="https://github.com/GauthamVarmaK/addon-tvheadend" \
|
org.opencontainers.image.created=${BUILD_DATE} \
|
||||||
org.label-schema.vendor="https://github.com/GauthamVarmaK"
|
org.opencontainers.image.revision=${BUILD_REF} \
|
||||||
|
org.opencontainers.image.version=${BUILD_VERSION}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"build_from": {
|
"build_from": {
|
||||||
"aarch64": "ghcr.io/hassio-addons/base/aarch64:9.2.2",
|
"aarch64": "ghcr.io/hassio-addons/base/aarch64:10.0.2",
|
||||||
"amd64": "ghcr.io/hassio-addons/base/amd64:9.2.2",
|
"amd64": "ghcr.io/hassio-addons/base/amd64:10.0.2",
|
||||||
"armhf": "ghcr.io/hassio-addons/base/armhf:9.2.2",
|
"armhf": "ghcr.io/hassio-addons/base/armhf:10.0.2",
|
||||||
"armv7": "ghcr.io/hassio-addons/base/armv7:9.2.2",
|
"armv7": "ghcr.io/hassio-addons/base/armv7:10.0.2",
|
||||||
"i386": "ghcr.io/hassio-addons/base/i386:9.2.2"
|
"i386": "ghcr.io/hassio-addons/base/i386:10.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+11
-3
@@ -2,12 +2,12 @@
|
|||||||
"name": "TVHeadend",
|
"name": "TVHeadend",
|
||||||
"version": "dev",
|
"version": "dev",
|
||||||
"stage": "experimental",
|
"stage": "experimental",
|
||||||
"slug": "addon-tvheadend",
|
"slug": "tvheadend",
|
||||||
"description": "TV streaming server and recorder.",
|
"description": "TV streaming server and recorder.",
|
||||||
"url": "https://github.com/GauthamVarmaK/addon-tvheadend",
|
"url": "https://github.com/GauthamVarmaK/addon-tvheadend",
|
||||||
"startup": "services",
|
|
||||||
"arch": ["aarch64", "amd64", "armhf", "armv7", "i386"],
|
"arch": ["aarch64", "amd64", "armhf", "armv7", "i386"],
|
||||||
"webui": "http://[HOST]:[PORT:9981]/",
|
"webui": "http://[HOST]:[PORT:9981]/",
|
||||||
|
"usb": true,
|
||||||
"ports": {
|
"ports": {
|
||||||
"9981/tcp": 9981,
|
"9981/tcp": 9981,
|
||||||
"9982/tcp": 9982
|
"9982/tcp": 9982
|
||||||
@@ -16,5 +16,13 @@
|
|||||||
"9981/tcp": "TVH Web Interface",
|
"9981/tcp": "TVH Web Interface",
|
||||||
"9982/tcp": "TVH HTSP"
|
"9982/tcp": "TVH HTSP"
|
||||||
},
|
},
|
||||||
"map": ["config:rw"]
|
"map": ["config:rw"],
|
||||||
|
"options": {
|
||||||
|
"system_packages": [],
|
||||||
|
"init_commands": []
|
||||||
|
},
|
||||||
|
"schema": {
|
||||||
|
"system_packages": ["str"],
|
||||||
|
"init_commands": ["str"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
setuptools==58.0.4
|
||||||
|
streamlink==2.4.0
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# ==============================================================================
|
||||||
|
# Home Assistant Community Add-on: TVHeadend
|
||||||
|
# Executes user customizations on startup
|
||||||
|
# ==============================================================================
|
||||||
|
|
||||||
|
# Install user configured/requested packages
|
||||||
|
if bashio::config.has_value 'system_packages'; then
|
||||||
|
apk update \
|
||||||
|
|| bashio::exit.nok 'Failed updating Alpine packages repository indexes'
|
||||||
|
|
||||||
|
for package in $(bashio::config 'system_packages'); do
|
||||||
|
apk add "$package" \
|
||||||
|
|| bashio::exit.nok "Failed installing system package ${package}"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Executes user commands on startup
|
||||||
|
if bashio::config.has_value 'init_commands'; then
|
||||||
|
while read -r cmd; do
|
||||||
|
eval "${cmd}" \
|
||||||
|
|| bashio::exit.nok "Failed executing init command: ${cmd}"
|
||||||
|
done <<< "$(bashio::config 'init_commands')"
|
||||||
|
fi
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# ==============================================================================
|
||||||
|
# Home Assistant Community Add-on: TVHeadend
|
||||||
|
# Executes user customizations on startup
|
||||||
|
# ==============================================================================
|
||||||
|
|
||||||
|
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+.'
|
||||||
|
cd /tmp \
|
||||||
|
&& wget http://webgrabplus.com/sites/default/files/download/SW/V3.2.0/WebGrabPlus_V3.2_install.tar.gz \
|
||||||
|
&& tar -zxvf WebGrabPlus_V3.2_install.tar.gz \
|
||||||
|
&& rm WebGrabPlus_V3.2_install.tar.gz \
|
||||||
|
&& mv .wg++/ /config/tvheadend/wg++ \
|
||||||
|
&& cd /config/tvheadend/wg++ \
|
||||||
|
&& ./install.sh \
|
||||||
|
&& rm -rf siteini.pack/ \
|
||||||
|
&& wget http://webgrabplus.com/sites/default/files/download/ini/SiteIniPack_current.zip \
|
||||||
|
&& unzip SiteIniPack_current.zip \
|
||||||
|
&& rm SiteIniPack_current.zip \
|
||||||
|
&& cp siteini.pack/India/* siteini.user/ \
|
||||||
|
&& wget -O /usr/bin/tv_grab_wg++ http://www.webgrabplus.com/sites/default/files/tv_grab_wg.txt \
|
||||||
|
&& sed -i 's|~/.wg++/guide.xml|/config/tvheadend/wg++/guide.xml|g' /usr/bin/tv_grab_wg++ \
|
||||||
|
&& chmod a+x /usr/bin/tv_grab_wg++
|
||||||
|
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 --no-cache --purge .build-deps
|
||||||
|
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.'
|
||||||
|
}
|
||||||
|
|
||||||
|
# Ensure directory exists
|
||||||
|
if ! bashio::fs.directory_exists '/config/tvheadend/'; then
|
||||||
|
bashio::log.info "Creating default configuration directory at /config/tvheadend/"
|
||||||
|
mkdir -p /config/tvheadend/recordings
|
||||||
|
timeout 20s /usr/bin/tvheadend --firstrun -u root -g root -c /config/tvheadend
|
||||||
|
fi
|
||||||
|
|
||||||
|
if check_webgrabplus; then
|
||||||
|
bashio::log.info "[Webgrab+] Webgrab+ already installed"
|
||||||
|
else
|
||||||
|
bashio::log.info "[Webgrab+] No webgrab+ installation found - Installing webgrab+"
|
||||||
|
webgrabplus_install
|
||||||
|
chmod +x /usr/bin/restart_addon
|
||||||
|
exec /usr/bin/restart_addon
|
||||||
|
fi
|
||||||
|
|
||||||
|
bashio::log.info '[Webgrab+] Setup completed without errors!!'
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
0 0 * * * /config/tvheadend/wg++/run.sh
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/execlineb -S0
|
||||||
|
# ==============================================================================
|
||||||
|
# Home Assistant Community Add-on: TVHeadend
|
||||||
|
# Take down the S6 supervision tree when crond fails
|
||||||
|
# ==============================================================================
|
||||||
|
if -n { s6-test $# -ne 0 }
|
||||||
|
if -n { s6-test ${1} -eq 256 }
|
||||||
|
|
||||||
|
s6-svscanctl -t /var/run/s6/services
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# ==============================================================================
|
||||||
|
# Home Assistant Community Add-on: TVHeadend
|
||||||
|
# Runs the cron daemon
|
||||||
|
# ==============================================================================
|
||||||
|
exec fdmove -c 2 1 /usr/sbin/crond -f -L /var/log/cron -l 0 -c /etc/crontabs
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/execlineb -S0
|
||||||
|
# ==============================================================================
|
||||||
|
# Home Assistant Community Add-on: TVHeadend
|
||||||
|
# Take down the S6 supervision tree when TVHeadend fails
|
||||||
|
# ==============================================================================
|
||||||
|
if -n { s6-test $# -ne 0 }
|
||||||
|
if -n { s6-test ${1} -eq 256 }
|
||||||
|
|
||||||
|
s6-svscanctl -t /var/run/s6/services
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/with-contenv bashio
|
||||||
|
# ==============================================================================
|
||||||
|
# Home Assistant Community Add-on: TVHeadend
|
||||||
|
# Starts TVHeadend
|
||||||
|
# ==============================================================================
|
||||||
|
|
||||||
|
bashio::log.info "Starting TVHeadend..."
|
||||||
|
|
||||||
|
exec /usr/bin/tvheadend -u root -g root -c /config/tvheadend
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env bashio
|
||||||
|
# ==============================================================================
|
||||||
|
# Home Assistant Community Add-on: TVHeadend
|
||||||
|
# Restarts the add-on
|
||||||
|
# ==============================================================================
|
||||||
|
|
||||||
|
echo "Restarting add-on"
|
||||||
|
|
||||||
|
bashio::addon.restart
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
#!/usr/bin/env bashio
|
|
||||||
|
|
||||||
bashio::log.info "[TVHeadend] Installing TVHeadend"
|
|
||||||
apk update && apk add --no-cache tvheadend=4.2.8-r3
|
|
||||||
|
|
||||||
mkdir -p /config/tvheadend/recordings
|
|
||||||
|
|
||||||
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++
|
|
||||||
ln -sf /config/tvheadend/wg++/guide.xml ~/.wg++/guide.xml
|
|
||||||
cd /tmp && \
|
|
||||||
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 && \
|
|
||||||
mv .wg++/ /config/tvheadend/wg++ && cd /config/tvheadend/wg++ && ./install.sh
|
|
||||||
rm -rf siteini.pack/ && \
|
|
||||||
git clone https://github.com/DeBaschdi/webgrabplus-siteinipack.git && \
|
|
||||||
cp -R webgrabplus-siteinipack/siteini.pack/ siteini.pack && \
|
|
||||||
cp siteini.pack/International/horizon.tv.* siteini.user/
|
|
||||||
|
|
||||||
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++
|
|
||||||
|
|
||||||
echo "0 0 * * * /config/tvheadend/wg++/run.sh" >> /var/spool/cron/root
|
|
||||||
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 () {
|
|
||||||
if [ -z "$(command -v streamlink)" ]; then return 1; else return 0; fi
|
|
||||||
}
|
|
||||||
|
|
||||||
streamlink_update () {
|
|
||||||
if pip3 install --no-cache --upgrade streamlink; then
|
|
||||||
bashio::log.info "[StreamLink] Streamlink version: $(streamlink --version)."
|
|
||||||
else
|
|
||||||
bashio::log.error '[StreamLink] Streamlink update failed!'
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
streamlink_install () {
|
|
||||||
bashio::log.info '[StreamLink] APK: Updating pkg list.'
|
|
||||||
if apk update; then
|
|
||||||
bashio::log.info '[StreamLink] APK: Installing required packages.'
|
|
||||||
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.'
|
|
||||||
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
|
|
||||||
else
|
|
||||||
bashio::log.info '[StreamLink] APK: Critical error. Unable install required packages.'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
bashio::log.info '[StreamLink] APK: Removing packages no longer required.'
|
|
||||||
apk del .build-deps gcc musl-dev
|
|
||||||
else
|
|
||||||
bashio::log.error '[StreamLink] APK: Critical error. Unable to update pkg list. Check connectivity.'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
bashio::log.info '[StreamLink] Finsihed all APK and PIP3 updates and installs.'
|
|
||||||
}
|
|
||||||
|
|
||||||
if check_streamlink; then
|
|
||||||
bashio::log.info '[StreamLink] Updating Streamlink...' ; streamlink_update
|
|
||||||
else
|
|
||||||
bashio::log.info '[StreamLink] Installing Streamlink...'; streamlink_install
|
|
||||||
fi
|
|
||||||
|
|
||||||
bashio::log.info '[StreamLink] Setup completed without errors!!'
|
|
||||||
Reference in New Issue
Block a user