[arch-commits] CVS update of extra/kde/kdepim (PKGBUILD post-kde-3.5.6.patch)

Tobias Powalowski tpowa at archlinux.org
Sun Apr 22 21:32:16 UTC 2007


    Date: Sunday, April 22, 2007 @ 17:32:16
  Author: tpowa
    Path: /home/cvs-extra/extra/kde/kdepim

Modified: PKGBUILD (1.50 -> 1.51) post-kde-3.5.6.patch (1.3 -> 1.4)

'upgpkg: update to fixed kmail ! handling'


----------------------+
 PKGBUILD             |    6 +++---
 post-kde-3.5.6.patch |   15 +++++++++++++++
 2 files changed, 18 insertions(+), 3 deletions(-)


Index: extra/kde/kdepim/PKGBUILD
diff -u extra/kde/kdepim/PKGBUILD:1.50 extra/kde/kdepim/PKGBUILD:1.51
--- extra/kde/kdepim/PKGBUILD:1.50	Fri Apr  6 10:51:47 2007
+++ extra/kde/kdepim/PKGBUILD	Sun Apr 22 17:32:16 2007
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD,v 1.50 2007/04/06 14:51:47 tpowa Exp $
+# $Id: PKGBUILD,v 1.51 2007/04/22 21:32:16 tpowa Exp $
 # Maintainer: Tobias Powalowski <tpowa at archlinux.org>
 
 pkgname=kdepim
 pkgver=3.5.6
 kdever=3.5.6
-pkgrel=4
+pkgrel=5
 pkgdesc="KDE PIM Utilities."
 arch=(i686 x86_64)
 url="http://www.kde.org"
@@ -35,5 +35,5 @@
   make || return 1
   make DESTDIR=$startdir/pkg install || return 1
 }
-md5sums=('e37e6173fe9fd7f242c9502a4ae1d7de' 'c862113c9e16be646a2b59c776220646'\
+md5sums=('e37e6173fe9fd7f242c9502a4ae1d7de' '24b2890f541c56e051722c788575028b'\
          '263a717b397df1acd01a8b2c08546bcd')
Index: extra/kde/kdepim/post-kde-3.5.6.patch
diff -u extra/kde/kdepim/post-kde-3.5.6.patch:1.3 extra/kde/kdepim/post-kde-3.5.6.patch:1.4
--- extra/kde/kdepim/post-kde-3.5.6.patch:1.3	Fri Apr  6 10:51:47 2007
+++ extra/kde/kdepim/post-kde-3.5.6.patch	Sun Apr 22 17:32:16 2007
@@ -126,3 +126,18 @@
          aDict->insert (shortLabel, new QString (shortValue));
          i++;
        }
+Index: kmaccount.cpp
+===================================================================
+--- branches/KDE/3.5/kdepim/kmail/kmaccount.cpp	(revision 656120)
++++ branches/KDE/3.5/kdepim/kmail/kmaccount.cpp	(working copy)
+@@ -399,7 +399,9 @@ QString KMAccount::encryptStr(const QStr
+ {
+   QString result;
+   for (uint i = 0; i < aStr.length(); i++)
+-    result += (aStr[i].unicode() < 0x20) ? aStr[i] :
++    /* yes, no typo. can't encode ' ' or '!' because
++       they're the unicode BOM. stupid scrambling. stupid. */
++    result += (aStr[i].unicode() <= 0x21 ) ? aStr[i] :
+       QChar(0x1001F - aStr[i].unicode());
+   return result;
+ }




More information about the arch-commits mailing list