Merge pull request #22 from mogeko:dev

update qbittorrent version to 4.4.0beta2
This commit is contained in:
Mogeko 2021-11-20 01:36:56 +01:00 committed by GitHub
commit ec310a7e14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -8,9 +8,10 @@ ARG LIBTORRENT_VERSION
ARG LIBTORRENT_GIT=https://github.com/arvidn/libtorrent.git ARG LIBTORRENT_GIT=https://github.com/arvidn/libtorrent.git
RUN git clone --depth 1 --recurse-submodules -b v${LIBTORRENT_VERSION} ${LIBTORRENT_GIT} . RUN git clone --depth 1 --recurse-submodules -b v${LIBTORRENT_VERSION} ${LIBTORRENT_GIT} .
RUN cmake . -DCMAKE_BUILD_TYPE=Release \ RUN cmake . -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_INSTALL_PREFIX=/workspace/pkg \ -DCMAKE_INSTALL_PREFIX=/workspace/pkg \
-DCMAKE_CXX_STANDARD=17 \ -DCMAKE_CXX_STANDARD=17 \
&& CC=clang make -j$(nproc) \ && make -j$(nproc) \
&& make install && make install
FROM alpine:3.14 as qbittorrent_builder FROM alpine:3.14 as qbittorrent_builder
@ -25,11 +26,12 @@ ARG QBITTORRENT_VERSION
ARG QBITTORRENT_GIT=https://github.com/qbittorrent/qBittorrent.git ARG QBITTORRENT_GIT=https://github.com/qbittorrent/qBittorrent.git
RUN git clone --depth 1 --recurse-submodules -b release-${QBITTORRENT_VERSION} ${QBITTORRENT_GIT} . RUN git clone --depth 1 --recurse-submodules -b release-${QBITTORRENT_VERSION} ${QBITTORRENT_GIT} .
RUN cmake . -DCMAKE_BUILD_TYPE=Release \ RUN cmake . -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_INSTALL_PREFIX=/workspace/pkg \ -DCMAKE_INSTALL_PREFIX=/workspace/pkg \
-DCMAKE_CXX_STANDARD=17 \ -DCMAKE_CXX_STANDARD=17 \
-DSTACKTRACE=OFF \ -DSTACKTRACE=OFF \
-DGUI=OFF \ -DGUI=OFF \
&& CC=clang make -j$(nproc) \ && make -j$(nproc) \
&& make install && make install
FROM alpine:3.14 FROM alpine:3.14

View file

@ -1,5 +1,5 @@
{ {
"qbittorrent": "4.4.0beta1", "qbittorrent": "4.4.0beta2",
"libtorrent": "2.0.4", "libtorrent": "2.0.4",
"pkgrel": 0 "pkgrel": 0
} }