Merge pull request #160 from linuxserver/python

Add python for search plugin support
This commit is contained in:
aptalca
2022-03-01 08:38:09 -05:00
committed by GitHub
4 changed files with 7 additions and 3 deletions

View File

@@ -17,7 +17,8 @@ XDG_DATA_HOME="/config"
RUN \
apk add -U --update --no-cache \
bash \
curl && \
curl \
python3 && \
if [ -z ${QBITTORRENT_VERSION+x} ]; then \
QBITTORRENT_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
&& awk '/^P:qbittorrent-nox$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \

View File

@@ -17,7 +17,8 @@ XDG_DATA_HOME="/config"
RUN \
apk add -U --update --no-cache \
bash \
curl && \
curl \
python3 && \
if [ -z ${QBITTORRENT_VERSION+x} ]; then \
QBITTORRENT_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/edge/community/aarch64/APKINDEX.tar.gz" | tar -xz -C /tmp \
&& awk '/^P:qbittorrent-nox$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \

View File

@@ -17,7 +17,8 @@ XDG_DATA_HOME="/config"
RUN \
apk add -U --update --no-cache \
bash \
curl && \
curl \
python3 && \
if [ -z ${QBITTORRENT_VERSION+x} ]; then \
QBITTORRENT_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/edge/community/armhf/APKINDEX.tar.gz" | tar -xz -C /tmp \
&& awk '/^P:qbittorrent-nox$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \

View File

@@ -69,6 +69,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "01.03.22:", desc: "Add python for search plugin support." }
- { date: "23.02.22:", desc: "Rebase to Alpine Edge, install from Alpine repos." }
- { date: "19.02.22:", desc: "Add jq to build-stage" }
- { date: "07.01.22:", desc: "Rebase to Alpine, build from source." }