View | Details | Raw Unified | Return to bug 139020
Collapse All | Expand All

(-)qbittorrent/Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	qbittorrent
8
PORTNAME=	qbittorrent
9
PORTVERSION=	1.3.4
9
PORTVERSION=	1.3.5
10
PORTREVISION=	1
11
CATEGORIES=	net-p2p
10
CATEGORIES=	net-p2p
12
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
13
12
(-)qbittorrent/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (qbittorrent-1.3.4.tar.gz) = 867c7a23406a87176ec55efcc3407ddb
1
MD5 (qbittorrent-1.3.5.tar.gz) = c4f1b208f9c0a3f55aa0237bf6348d8d
2
SHA256 (qbittorrent-1.3.4.tar.gz) = 685f4b22a4451a1925325e2c6c1e7fb1710ffe96f082a1a57d1d8be752cd2928
2
SHA256 (qbittorrent-1.3.5.tar.gz) = 4456ea2fda5dd79e68e495808947c868090c2e84a565e3d8250648c8736206d9
3
SIZE (qbittorrent-1.3.4.tar.gz) = 1668050
3
SIZE (qbittorrent-1.3.5.tar.gz) = 1668776
(-)qbittorrent/files/patch-src__createtorrent_imp.cpp (-5 / +5 lines)
Lines 1-13 Link Here
1
--- src/createtorrent_imp.cpp.orig	2009-03-07 07:22:19.000000000 +0900
1
--- src/createtorrent_imp.cpp.orig	2009-09-21 10:02:50.000000000 +0000
2
+++ src/createtorrent_imp.cpp	2009-03-23 02:00:49.000000000 +0900
2
+++ src/createtorrent_imp.cpp	2009-09-21 10:05:18.000000000 +0000
3
@@ -245,7 +245,11 @@
3
@@ -257,7 +257,11 @@
4
     }
4
     }
5
     if(abort) return;
5
     if(abort) return;
6
     // calculate the hash for all pieces
6
     // calculate the hash for all pieces
7
+#if defined(__GNUC__) && __GNUC__ <= 3
7
+#if defined(__GNUC__) && __GNUC__ <= 3
8
+    set_piece_hashes(t, full_path.branch_path(), boost::bind(&sendProgressUpdateSignal, _1, t.num_pieces(), parent));
8
+    set_piece_hashes(t, full_path.branch_path(), boost::bind(&sendProgressUpdateSignal, _1, t.num_pieces(), this));
9
+#else
9
+#else
10
     set_piece_hashes(t, full_path.branch_path(), boost::bind<void>(&sendProgressUpdateSignal, _1, t.num_pieces(), parent));
10
     set_piece_hashes(t, full_path.branch_path(), boost::bind<void>(&sendProgressUpdateSignal, _1, t.num_pieces(), this));
11
+#endif
11
+#endif
12
     // Set qBittorrent as creator and add user comment to
12
     // Set qBittorrent as creator and add user comment to
13
     // torrent_info structure
13
     // torrent_info structure

Return to bug 139020