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: Migrate to python 3.12 #6423

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions spk/deluge/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ SPK_VERS = 2.1.1.127
SPK_REV = 24
SPK_ICON = src/deluge.png

PYTHON_PACKAGE = python311
PYTHON_PACKAGE = python312

WHEELS = src/requirements-crossenv.txt
WHEELS += src/requirements-pure.txt
WHEELS += src/requirements-abi3.txt

SPK_DEPENDS = "python311>=3.11.5-8"
SPK_DEPENDS = "python312"

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 latest github development commit<br/>2. Update to libtorrent 2.0.10<br/>3. Update all other wheels"
CHANGELOG = "1. Update to latest github development commit<br/>2. Update to libtorrent 2.0.10<br/>3. Update all other wheels<br/>Migrate to python 3.12"
DISPLAY_NAME = Deluge

HOMEPAGE = https://deluge-torrent.org
Expand Down
4 changes: 2 additions & 2 deletions spk/deluge/src/requirements-pure.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#deluge==2.1.1 ==> Using crossenv when building dev version

# Other requirements
attrs==24.3.0
attrs==25.1.0
Automat==24.8.1
chardet==5.2.0
constantly==23.10.4
Expand All @@ -18,7 +18,7 @@ Mako==1.3.8
pyasn1==0.6.1
pyasn1-modules==0.4.1
pycparser==2.22
pyOpenSSL==24.3.0
pyOpenSSL==25.0.0
pyxdg==0.28
service-identity==24.2.0
#six ==> python311
Expand Down
2 changes: 1 addition & 1 deletion spk/deluge/src/service-setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PYTHON_DIR="/var/packages/python311/target/bin"
PYTHON_DIR="/var/packages/python312/target/bin"
PATH="${SYNOPKG_PKGDEST}/env/bin:${SYNOPKG_PKGDEST}/bin:${PYTHON_DIR}:${PATH}"
#
# Set default language
Expand Down
Loading