FreeBSD Bugzilla – Attachment 182004 Details for
Bug 218817
net-p2p/qbittorrent: update to 3.3.12
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
update net-p2p/qbittorrent to 3.3.12
patch (text/plain), 4.48 KB, created by
Matthew Rezny
on 2017-04-22 21:43:45 UTC
(
hide
)
Description:
update net-p2p/qbittorrent to 3.3.12
Filename:
MIME Type:
Creator:
Matthew Rezny
Created:
2017-04-22 21:43:45 UTC
Size:
4.48 KB
patch
obsolete
>Index: net-p2p/qbittorrent/Makefile >=================================================================== >--- net-p2p/qbittorrent/Makefile (revision 439162) >+++ net-p2p/qbittorrent/Makefile (working copy) >@@ -2,8 +2,7 @@ > # $FreeBSD$ > > PORTNAME= qbittorrent >-PORTVERSION= 3.3.11 >-PORTREVISION= 1 >+PORTVERSION= 3.3.12 > CATEGORIES= net-p2p ipv6 > MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} > >Index: net-p2p/qbittorrent/distinfo >=================================================================== >--- net-p2p/qbittorrent/distinfo (revision 439162) >+++ net-p2p/qbittorrent/distinfo (working copy) >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1488638509 >-SHA256 (qbittorrent-3.3.11.tar.xz) = 4892ac5ed4bde2ed325fb67456698e703bb933b9eb1d146598259f4e2154a760 >-SIZE (qbittorrent-3.3.11.tar.xz) = 2986312 >+TIMESTAMP = 1492894034 >+SHA256 (qbittorrent-3.3.12.tar.xz) = 56528c47f09b316ecf682e3896157c76c18898ef996728b0c5186e05a711466f >+SIZE (qbittorrent-3.3.12.tar.xz) = 2989604 >Index: net-p2p/qbittorrent/files/patch-src_base_http_server.cpp >=================================================================== >--- net-p2p/qbittorrent/files/patch-src_base_http_server.cpp (revision 439162) >+++ net-p2p/qbittorrent/files/patch-src_base_http_server.cpp (nonexistent) >@@ -1,25 +0,0 @@ >-# Missing header; upstream patch shuffles them a bit >-# >---- src/base/http/server.cpp.orig 2017-03-03 23:20:21 UTC >-+++ src/base/http/server.cpp >-@@ -28,14 +28,18 @@ >- * exception statement from your version. >- */ >- >-+#include "server.h" >-+ >-+#include <QNetworkProxy> >-+#include <QStringList> >-+ >- #ifndef QT_NO_OPENSSL >- #include <QSslSocket> >- #else >- #include <QTcpSocket> >- #endif >--#include <QNetworkProxy> >-+ >- #include "connection.h" >--#include "server.h" >- >- using namespace Http; >- > >Property changes on: net-p2p/qbittorrent/files/patch-src_base_http_server.cpp >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: net-p2p/qbittorrent/files/patch-src_base_utils_string.cpp >=================================================================== >--- net-p2p/qbittorrent/files/patch-src_base_utils_string.cpp (revision 439162) >+++ net-p2p/qbittorrent/files/patch-src_base_utils_string.cpp (working copy) >@@ -1,10 +1,8 @@ > # Avoid use of thread local storage on versions prior to which it was supported. > # >-# Qt::escape is part of QtGui, upstream patch replaces it for webui >-# >---- src/base/utils/string.cpp.orig 2017-03-03 23:20:21 UTC >+--- src/base/utils/string.cpp.orig 2017-04-06 16:53:25 UTC > +++ src/base/utils/string.cpp >-@@ -37,7 +37,7 @@ >+@@ -38,7 +38,7 @@ > #ifdef QBT_USES_QT5 > #include <QCollator> > #endif >@@ -13,7 +11,7 @@ > #include <QThreadStorage> > #endif > >-@@ -146,7 +146,8 @@ bool Utils::String::naturalCompareCaseSe >+@@ -147,7 +147,8 @@ bool Utils::String::naturalCompareCaseSe > { > // provide a single `NaturalCompare` instance for easy use > // https://doc.qt.io/qt-5/threads-reentrancy.html >@@ -23,7 +21,7 @@ > static QThreadStorage<NaturalCompare> nCmp; > if (!nCmp.hasLocalData()) nCmp.setLocalData(NaturalCompare(true)); > return (nCmp.localData())(left, right); >-@@ -160,7 +161,8 @@ bool Utils::String::naturalCompareCaseIn >+@@ -161,7 +162,8 @@ bool Utils::String::naturalCompareCaseIn > { > // provide a single `NaturalCompare` instance for easy use > // https://doc.qt.io/qt-5/threads-reentrancy.html >@@ -33,28 +31,3 @@ > static QThreadStorage<NaturalCompare> nCmp; > if (!nCmp.hasLocalData()) nCmp.setLocalData(NaturalCompare(false)); > return (nCmp.localData())(left, right); >-@@ -217,6 +219,23 @@ QString Utils::String::toHtmlEscaped(con >- #ifdef QBT_USES_QT5 >- return str.toHtmlEscaped(); >- #else >-- return Qt::escape(str); >-+ // code from Qt >-+ QString rich; >-+ const int len = str.length(); >-+ rich.reserve(int(len * 1.1)); >-+ for (int i = 0; i < len; ++i) { >-+ if (str.at(i) == QLatin1Char('<')) >-+ rich += QLatin1String("<"); >-+ else if (str.at(i) == QLatin1Char('>')) >-+ rich += QLatin1String(">"); >-+ else if (str.at(i) == QLatin1Char('&')) >-+ rich += QLatin1String("&"); >-+ else if (str.at(i) == QLatin1Char('"')) >-+ rich += QLatin1String("""); >-+ else >-+ rich += str.at(i); >-+ } >-+ rich.squeeze(); >-+ return rich; >- #endif >- }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
yuri
:
maintainer-approval+
Actions:
View
|
Diff
Attachments on
bug 218817
: 182004
Working