aboutsummaryrefslogtreecommitdiff
path: root/devel/kf5-kio
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2019-11-17 11:06:13 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2019-11-17 11:06:13 +0000
commitcfd13efc3f4d968921559edb8f9084d70b5abacd (patch)
tree22362b922b6d148b2a04446203a5de8a54470101 /devel/kf5-kio
parent5b57c1da65f0e9f430365958b02b65b42021ceac (diff)
downloadports-cfd13efc3f4d968921559edb8f9084d70b5abacd.tar.gz
ports-cfd13efc3f4d968921559edb8f9084d70b5abacd.zip
Update KDE Frameworks to 5.64.0
November 10, 2019. KDE today announces the release of KDE Frameworks 5.64.0. [1] KDE Frameworks are over 70 addon libraries to Qt which provide a wide variety of commonly needed functionality in mature, peer reviewed and well tested libraries with friendly licensing terms. For an introduction see the KDE Frameworks web page. This release is part of a series of planned monthly releases making improvements available to developers in a quick and predictable manner. Noteably, there is one FreeBSD specific change: * KCoreAddons - KProcessInfoList -- add proclist backend for FreeBSD [1] https://kde.org/announcements/kde-frameworks-5.64.0.php PR: 241852 Exp-run by: antoine
Notes
Notes: svn path=/head/; revision=517817
Diffstat (limited to 'devel/kf5-kio')
-rw-r--r--devel/kf5-kio/Makefile1
-rw-r--r--devel/kf5-kio/distinfo6
-rw-r--r--devel/kf5-kio/files/patch-git_02a8d3d46
3 files changed, 3 insertions, 50 deletions
diff --git a/devel/kf5-kio/Makefile b/devel/kf5-kio/Makefile
index 670d4ace9327..7ebee2475878 100644
--- a/devel/kf5-kio/Makefile
+++ b/devel/kf5-kio/Makefile
@@ -2,7 +2,6 @@
PORTNAME= kio
DISTVERSION= ${KDE_FRAMEWORKS_VERSION}
-PORTREVISION= 1
CATEGORIES= devel kde kde-frameworks
MAINTAINER= kde@FreeBSD.org
diff --git a/devel/kf5-kio/distinfo b/devel/kf5-kio/distinfo
index 80531fb5d1ca..09860782be07 100644
--- a/devel/kf5-kio/distinfo
+++ b/devel/kf5-kio/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1570455744
-SHA256 (KDE/frameworks/5.63.0/kio-5.63.0.tar.xz) = 9478aa457b6059cba00a2263fefe01a678c3272012e5cb94fed6c486a4c10f11
-SIZE (KDE/frameworks/5.63.0/kio-5.63.0.tar.xz) = 3169832
+TIMESTAMP = 1572788793
+SHA256 (KDE/frameworks/5.64.0/kio-5.64.0.tar.xz) = e38c8dcf634989f0f7ec95b68bdd936b9e05f7d242e4050b01f79b7021108f59
+SIZE (KDE/frameworks/5.64.0/kio-5.64.0.tar.xz) = 3176912
diff --git a/devel/kf5-kio/files/patch-git_02a8d3d b/devel/kf5-kio/files/patch-git_02a8d3d
deleted file mode 100644
index 415bc73a2706..000000000000
--- a/devel/kf5-kio/files/patch-git_02a8d3d
+++ /dev/null
@@ -1,46 +0,0 @@
-From 02a8d3deb4f97046da4a0bb79abf9510d2d1c0a2 Mon Sep 17 00:00:00 2001
-From: David Faure <faure@kde.org>
-Date: Wed, 23 Oct 2019 09:29:55 +0200
-Subject: kio_http: avoid double Content-Type and Depth when used by KDAV
-
-Summary: This makes libkdav 19.08 work again after commit 9713ea02e49eda.
-
-Test Plan: syncing a CALDAV calendar in korganizer no longer fails
-
-Reviewers: vkrause
-
-Subscribers: kde-frameworks-devel
-
-Tags: #frameworks
-
-Differential Revision: https://phabricator.kde.org/D24880
----
- src/ioslaves/http/http.cpp | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/src/ioslaves/http/http.cpp b/src/ioslaves/http/http.cpp
-index e3bad6c..11dd7af 100644
---- src/ioslaves/http/http.cpp
-+++ src/ioslaves/http/http.cpp
-@@ -172,7 +172,8 @@ static QString sanitizeCustomHTTPHeader(const QString &_header)
- if (!header.contains(QLatin1Char(':')) ||
- header.startsWith(QLatin1String("host"), Qt::CaseInsensitive) ||
- header.startsWith(QLatin1String("proxy-authorization"), Qt::CaseInsensitive) ||
-- header.startsWith(QLatin1String("via"), Qt::CaseInsensitive)) {
-+ header.startsWith(QLatin1String("via"), Qt::CaseInsensitive) ||
-+ header.startsWith(QLatin1String("depth"), Qt::CaseInsensitive)) {
- continue;
- }
-
-@@ -2599,7 +2600,7 @@ bool HTTPProtocol::sendQuery()
- davHeader += metaData(QStringLiteral("davHeader"));
-
- // Set content type of webdav data
-- if (hasDavData) {
-+ if (hasDavData && !header.contains(QLatin1String("Content-Type: "))) {
- davHeader += QStringLiteral("Content-Type: text/xml; charset=utf-8\r\n");
- }
-
---
-cgit v1.1
-