From owner-svn-ports-head@FreeBSD.ORG Thu Nov 13 15:41:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9661052F; Thu, 13 Nov 2014 15:41:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68E15CCD; Thu, 13 Nov 2014 15:41:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sADFfT30023948; Thu, 13 Nov 2014 15:41:29 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sADFfTC8023879; Thu, 13 Nov 2014 15:41:29 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201411131541.sADFfTC8023879@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 13 Nov 2014 15:41:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372525 - in head/deskutils/kdepim4: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Nov 2014 15:41:29 -0000 Author: rakuco Date: Thu Nov 13 15:41:28 2014 New Revision: 372525 URL: https://svnweb.freebsd.org/changeset/ports/372525 QAT: https://qat.redports.org/buildarchive/r372525/ Log: Add upstream patch to fix a filtering bug in KMail. Despite what the patch's commit message says, this is actually a fix for https://bugs.kde.org/show_bug.cgi?id=340015, which is part of 4.14.3. It allows filtering based on the "List-Id" header to work again. Added: head/deskutils/kdepim4/files/patch-mailcommon__search__searchpattern.cpp (contents, props changed) Modified: head/deskutils/kdepim4/Makefile Modified: head/deskutils/kdepim4/Makefile ============================================================================== --- head/deskutils/kdepim4/Makefile Thu Nov 13 14:42:30 2014 (r372524) +++ head/deskutils/kdepim4/Makefile Thu Nov 13 15:41:28 2014 (r372525) @@ -3,6 +3,7 @@ PORTNAME= kdepim PORTVERSION= ${KDE4_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} Added: head/deskutils/kdepim4/files/patch-mailcommon__search__searchpattern.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/kdepim4/files/patch-mailcommon__search__searchpattern.cpp Thu Nov 13 15:41:28 2014 (r372525) @@ -0,0 +1,27 @@ +commit 01764b0eb3c7b7407f3119ef711d5b07d7b9a313 +Author: Jean-Baptiste Mardelle +Date: Fri Oct 24 13:22:36 2014 +0200 + + Fix filtering of mailing-list based on "List-id". + BUG:339090 + FIXED-IN: 4.14.3 + CCBUG:339090 + +--- mailcommon/search/searchpattern.cpp ++++ mailcommon/search/searchpattern.cpp +@@ -672,7 +672,6 @@ SearchRule::RequiredPart SearchRuleString::requiredPart() const + kasciistricmp( f, "" ) == 0 || + kasciistricmp( f, "" ) == 0 || + kasciistricmp( f, "Subject" ) == 0 || +- kasciistricmp( f, "list-id" ) == 0 || + kasciistricmp( f, "from" ) == 0 || + kasciistricmp( f, "" )== 0) { + part = Envelope; +@@ -683,6 +682,7 @@ SearchRule::RequiredPart SearchRuleString::requiredPart() const + kasciistricmp( f, "cc" ) == 0 || + kasciistricmp( f, "bcc" ) == 0 || + kasciistricmp( f, "resent-from" ) == 0 || ++ kasciistricmp( f, "list-id" ) == 0 || + kasciistricmp( f, "x-loop" ) == 0 || + kasciistricmp( f, "x-mailing-list" ) == 0 || + kasciistricmp( f, "x-spam-flag" ) == 0 ||