View | Details | Raw Unified | Return to bug 207558 | Differences between
and this patch

Collapse All | Expand All

(-)b/net-p2p/deluge/Makefile (-1 / +4 lines)
Lines 2-10 Link Here
2
2
3
PORTNAME=	deluge
3
PORTNAME=	deluge
4
PORTVERSION=	1.3.12
4
PORTVERSION=	1.3.12
5
PORTREVISION=	1
5
PORTEPOCH=	1
6
PORTEPOCH=	1
6
CATEGORIES=	net-p2p python
7
CATEGORIES=	net-p2p python
7
MASTER_SITES=	http://download.deluge-torrent.org/source/
8
8
9
MAINTAINER=	rm@FreeBSD.org
9
MAINTAINER=	rm@FreeBSD.org
10
COMMENT=	Bittorrent client using Python, GTK2, and libtorrent-rasterbar
10
COMMENT=	Bittorrent client using Python, GTK2, and libtorrent-rasterbar
Lines 21-28 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xdg>=0.18:${PORTSDIR}/devel/py-xdg \ Link Here
21
USE_RC_SUBR=	deluged deluge_web
21
USE_RC_SUBR=	deluged deluge_web
22
SUB_LIST+=	PYTHON_CMD=${PYTHON_CMD}
22
SUB_LIST+=	PYTHON_CMD=${PYTHON_CMD}
23
23
24
GH_ACCOUNT=	${PORTNAME}-torrent
25
GH_TAGNAME=	7315255
24
NO_ARCH=	yes
26
NO_ARCH=	yes
25
USES=		gettext python:2 tar:lzma twisted:run,web
27
USES=		gettext python:2 tar:lzma twisted:run,web
28
USE_GITHUB=	yes
26
USE_PYTHON=	autoplist distutils
29
USE_PYTHON=	autoplist distutils
27
USE_OPENSSL=	yes
30
USE_OPENSSL=	yes
28
31
(-)b/net-p2p/deluge/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (deluge-1.3.12.tar.lzma) = eb875724a8f52ac36c3890bdcee9f77c648ef03b6375387af5c26d5229fdc65e
1
SHA256 (deluge-torrent-deluge-1.3.12-7315255_GH0.tar.lzma) = b629fd2930b6b85a2d7d50fd21b8fed9fe436cace5a5cb2036f4e730716f2693
2
SIZE (deluge-1.3.12.tar.lzma) = 1449148
2
SIZE (deluge-torrent-deluge-1.3.12-7315255_GH0.tar.lzma) = 3010093
(-)b/net-p2p/deluge/files/patch-deluge_core_core.py (-2 / +2 lines)
Lines 1-9 Link Here
1
This patch fixes upload rate speed problem discussed here:
1
This patch fixes upload rate speed problem discussed here:
2
http://forum.deluge-torrent.org/viewtopic.php?f=7&t=33839
2
http://forum.deluge-torrent.org/viewtopic.php?f=7&t=33839
3
3
4
--- deluge/core/core.py.orig	2014-07-09 19:08:22 UTC
4
--- deluge/core/core.py.orig	2015-09-28 10:53:27 UTC
5
+++ deluge/core/core.py
5
+++ deluge/core/core.py
6
@@ -93,7 +93,7 @@
6
@@ -96,7 +96,7 @@ class Core(component.Component):
7
         self.__load_session_state()
7
         self.__load_session_state()
8
 
8
 
9
         # Set the user agent
9
         # Set the user agent
(-)b/net-p2p/deluge/files/patch-setup.py (-4 / +4 lines)
Lines 1-4 Link Here
1
--- setup.py.orig	2015-09-13 20:32:11 UTC
1
--- setup.py.orig	2015-09-28 10:53:27 UTC
2
+++ setup.py
2
+++ setup.py
3
@@ -216,6 +216,8 @@ except ImportError:
3
@@ -216,6 +216,8 @@ except ImportError:
4
 else:
4
 else:
Lines 9-18 Link Here
9
 if build_libtorrent:
9
 if build_libtorrent:
10
     got_libtorrent = False
10
     got_libtorrent = False
11
     if not os.path.exists("libtorrent"):
11
     if not os.path.exists("libtorrent"):
12
@@ -490,31 +492,7 @@ cmdclass = {
12
@@ -489,32 +491,6 @@ cmdclass = {
13
 
13
 # Data files to be installed to the system.
14
 # Data files to be installed to the system.
14
 _data_files = []
15
 _data_files = []
15
 if not windows_check():
16
-if not windows_check() and not osx_check():
16
-    _data_files = [
17
-    _data_files = [
17
-        ('share/icons/hicolor/scalable/apps', ['deluge/data/icons/scalable/apps/deluge.svg']),
18
-        ('share/icons/hicolor/scalable/apps', ['deluge/data/icons/scalable/apps/deluge.svg']),
18
-        ('share/icons/hicolor/128x128/apps', ['deluge/data/icons/hicolor/128x128/apps/deluge.png']),
19
-        ('share/icons/hicolor/128x128/apps', ['deluge/data/icons/hicolor/128x128/apps/deluge.png']),
Lines 38-44 Link Here
38
-
39
-
39
-    if os.path.exists(desktop_data):
40
-    if os.path.exists(desktop_data):
40
-        _data_files.append(('share/applications', [desktop_data]))
41
-        _data_files.append(('share/applications', [desktop_data]))
41
+    _data_files = []
42
 
42
 
43
 entry_points = {
43
 entry_points = {
44
     "console_scripts": [
44
     "console_scripts": [

Return to bug 207558