summaryrefslogtreecommitdiff
path: root/misc/kdepimlibs4
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2010-01-27 10:38:38 +0000
committermarkd <markd@pkgsrc.org>2010-01-27 10:38:38 +0000
commit1f93e13f19311e200fc39424894c8718350be513 (patch)
tree2c6f1a803e93a8b15cd84928edeb66b930bad917 /misc/kdepimlibs4
parentfbfca16631c42b04f9242fabb85d96ed19930e3e (diff)
downloadpkgsrc-1f93e13f19311e200fc39424894c8718350be513.tar.gz
Update to kde4 4.3.5
* A number of bugs in KIO have been squashed, making updating of shown directories work again and solving some other stability issues * A crash when creating an avatar from the webcam in Kopete has been fixed * kded taking 100% CPU time in certain situations has been cured
Diffstat (limited to 'misc/kdepimlibs4')
-rw-r--r--misc/kdepimlibs4/Makefile3
-rw-r--r--misc/kdepimlibs4/distinfo9
-rw-r--r--misc/kdepimlibs4/patches/patch-aa26
3 files changed, 5 insertions, 33 deletions
diff --git a/misc/kdepimlibs4/Makefile b/misc/kdepimlibs4/Makefile
index 051a6a77663..106bda11b55 100644
--- a/misc/kdepimlibs4/Makefile
+++ b/misc/kdepimlibs4/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2010/01/18 09:59:14 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2010/01/27 10:38:40 markd Exp $
DISTNAME= kdepimlibs-${_KDE_VERSION}
-PKGREVISION= 3
CATEGORIES= misc
COMMENT= Support libraries for PIM for the KDE integrated X11 desktop
diff --git a/misc/kdepimlibs4/distinfo b/misc/kdepimlibs4/distinfo
index fc201030eb2..2c462b43612 100644
--- a/misc/kdepimlibs4/distinfo
+++ b/misc/kdepimlibs4/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.5 2010/01/17 11:27:54 markd Exp $
+$NetBSD: distinfo,v 1.6 2010/01/27 10:38:40 markd Exp $
-SHA1 (kdepimlibs-4.3.4.tar.bz2) = 4f7cd55999e82f504e3766b6f360ae58b984d5cb
-RMD160 (kdepimlibs-4.3.4.tar.bz2) = 4c1d1ed223acb849645f43dc2545d5c451d98f1b
-Size (kdepimlibs-4.3.4.tar.bz2) = 1781468 bytes
-SHA1 (patch-aa) = 187d6dcfec65ceb00bb2573e3b77e413790de0c0
+SHA1 (kdepimlibs-4.3.5.tar.bz2) = 441b10fc0c89a91c447d73a68e3dc877156c5f67
+RMD160 (kdepimlibs-4.3.5.tar.bz2) = fec7cdec8b753356227fc192401a43fdd91a2bfe
+Size (kdepimlibs-4.3.5.tar.bz2) = 1781714 bytes
diff --git a/misc/kdepimlibs4/patches/patch-aa b/misc/kdepimlibs4/patches/patch-aa
deleted file mode 100644
index c8c3b7507e0..00000000000
--- a/misc/kdepimlibs4/patches/patch-aa
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2010/01/17 11:27:55 markd Exp $
-
-KDE SVN commit r1074158 by ttrnka:
-
-Properly check errors during authentication to avoid falling into an
-infinite loop.
-
---- kioslave/imap4/imapparser.cpp.orig 2009-05-14 17:26:01.000000000 +0000
-+++ kioslave/imap4/imapparser.cpp
-@@ -262,13 +262,12 @@ imapParser::clientAuthenticate ( KIO::Sl
- }
- cmd = sendCommand (CommandPtr(new imapCommand ("AUTHENTICATE", firstCommand.toLatin1())));
-
-- while ( true )
-- {
-+ int pl = 0;
-+ while ( pl != -1 && !cmd->isComplete () ) {
- //read the next line
-- while (parseLoop() == 0) {
-+ while ( ( pl = parseLoop() ) == 0) {
- ;
- }
-- if ( cmd->isComplete() ) break;
-
- if (!continuation.isEmpty())
- {