Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deluge: Fix Tracker Status Error certificate verify failed #5422

Merged
merged 1 commit into from
Sep 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spk/deluge/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SPK_NAME = deluge
SPK_VERS = 2.1.1
SPK_REV = 15
SPK_REV = 16
SPK_ICON = src/deluge.png

BUILD_DEPENDS = cross/python310
Expand All @@ -13,7 +13,7 @@ MAINTAINER = SynoCommunity
DESCRIPTION = Deluge is a cross platform BitTorrent client, based on libtorrent rasterbar. This package integrates both the deluge deamon \(deluged\), as well as its web counterpart \(deluge-web\), which serves the deluge web UI.
DESCRIPTION_FRE = Deluge est un client BitTorrent multi-plateforme, basé sur libtorrent rasterbar. Ce paquet intègre à la fois le démon deluge \(deluged\) ainsi que son penchant web \(deluge-web\), desservant l\'interface utilisateur web deluge.
STARTABLE = yes
CHANGELOG = "1. Update to v2.1.1<br/>2. Update to libtorrent DSM7-2.0.7 and DSM6-1.2.17<br/>3. Update to Python 3.10<br/>4. Update to OpenSSL 1.1.1q"
CHANGELOG = "1. Update to v2.1.1<br/>2. Update to libtorrent DSM7-2.0.7 and DSM6-1.2.17<br/>3. Update to Python 3.10<br/>4. Update to OpenSSL 1.1.1q<br/>5. Fix Tracker Status Error certificate verify failed"
DISPLAY_NAME = Deluge

HOMEPAGE = https://deluge-torrent.org
Expand Down
3 changes: 3 additions & 0 deletions spk/deluge/src/service-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ DELUGEWEB="${SYNOPKG_PKGDEST}/env/bin/deluge-web"
DELUGEWEB_LOG="${DELUGE_LOGS}/deluge-web.log"
DELUGEWEB_PID="${DELUGE_LOGS}/deluge-web.pid"
#
# Fixes 'Tracker Status: Error: certificate verify failed'
export SSL_CERT_FILE=$(${PYTHON_DIR}/python3 -c "import certifi; print(certifi.where())")
#
# deluded & deluge-web options:
# -c --config
# -l --logfile
Expand Down