rev 10456 - in kde-extras/kasablanca/trunk/debian: . patches

Michael Meskes meskes at alioth.debian.org
Sat May 3 16:55:38 UTC 2008


Author: meskes
Date: 2008-05-03 16:55:37 +0000 (Sat, 03 May 2008)
New Revision: 10456

Added:
   kde-extras/kasablanca/trunk/debian/patches/07_empty_dir.dpatch
Modified:
   kde-extras/kasablanca/trunk/debian/changelog
   kde-extras/kasablanca/trunk/debian/control
   kde-extras/kasablanca/trunk/debian/menu
Log:
 * Added myself as uploader.
 * debian/control: Build-Depend on automake instead of automake1.8.
 * Applied patch by Stephan Beyer <s-beyer at gmx.net> to fix empty directory list.
 * Bumped Standards-Version to 3.7.3, no changes needed.
 * Updated menu file to new section naming.
 * Added Homepage filed to control file.
 * Fixed spelling error lintian complained about.



Modified: kde-extras/kasablanca/trunk/debian/changelog
===================================================================
--- kde-extras/kasablanca/trunk/debian/changelog	2008-05-03 15:51:49 UTC (rev 10455)
+++ kde-extras/kasablanca/trunk/debian/changelog	2008-05-03 16:55:37 UTC (rev 10456)
@@ -1,3 +1,17 @@
+kasablanca (0.4.0.2-3) unstable; urgency=low
+
+  * Added myself as uploader.
+  * debian/control: Build-Depend on automake instead of
+    automake1.8. (Closes: #473312)
+  * Applied patch by Stephan Beyer <s-beyer at gmx.net> to fix empty directory
+    list. (Closes: #474273).
+  * Bumped Standards-Version to 3.7.3, no changes needed.
+  * Updated menu file to new section naming.
+  * Added Homepage filed to control file.
+  * Fixed spelling error lintian complained about.
+
+ -- Michael Meskes <meskes at debian.org>  Sat, 03 May 2008 18:27:50 +0200
+
 kasablanca (0.4.0.2-2) unstable; urgency=low
 
   * Add menu file (Closes: #387328)

Modified: kde-extras/kasablanca/trunk/debian/control
===================================================================
--- kde-extras/kasablanca/trunk/debian/control	2008-05-03 15:51:49 UTC (rev 10455)
+++ kde-extras/kasablanca/trunk/debian/control	2008-05-03 16:55:37 UTC (rev 10456)
@@ -2,15 +2,16 @@
 Section: kde
 Priority: optional
 Maintainer: Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>
-Uploaders: Fathi Boudra <fabo at debian.org>, Mark Purcell <msp at debian.org>
-Build-Depends: cdbs, debhelper (>= 5), automake1.8, kdelibs4-dev, docbook2x
-Standards-Version: 3.7.2
+Uploaders: Fathi Boudra <fabo at debian.org>, Mark Purcell <msp at debian.org>, Michael Meskes <meskes at debian.org>
+Build-Depends: cdbs, debhelper (>= 5), automake, kdelibs4-dev, docbook2x
+Standards-Version: 3.7.3
+Homepage: http://kasablanca.berlios.de
 
 Package: kasablanca
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: fast and free ftp client for KDE
- Kasablanca is an ftp client, written in c++, using the kde libraries.
+ Kasablanca is an ftp client, written in c++, using the KDE libraries.
  .
  Features:
   * ftps encryption via AUTH TLS
@@ -20,5 +21,3 @@
   * concurrent connections to multiple hosts
   * interactive transfer queue, movable by drag and drop
   * small nifty features, like a skiplist
- .
-  Homepage: http://kasablanca.berlios.de

Modified: kde-extras/kasablanca/trunk/debian/menu
===================================================================
--- kde-extras/kasablanca/trunk/debian/menu	2008-05-03 15:51:49 UTC (rev 10455)
+++ kde-extras/kasablanca/trunk/debian/menu	2008-05-03 16:55:37 UTC (rev 10456)
@@ -1,7 +1,7 @@
 ?package(kasablanca):\
 	needs="X11" \
 	hints="KDE" \
-	section="Apps/Net"\
+	section="Applications/Network/File Transfer"\
 	title="kasablanca" \
 	longtitle="kasablanca - ftp client" \
 	command="/usr/bin/kasablanca"

Added: kde-extras/kasablanca/trunk/debian/patches/07_empty_dir.dpatch
===================================================================
--- kde-extras/kasablanca/trunk/debian/patches/07_empty_dir.dpatch	                        (rev 0)
+++ kde-extras/kasablanca/trunk/debian/patches/07_empty_dir.dpatch	2008-05-03 16:55:37 UTC (rev 10456)
@@ -0,0 +1,27 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 07_empty_dir.dpatch by Michael Meskes <meskes at debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Fix empty directory listing
+
+ at DPATCH@
+
+diff -ruN kasablanca-0.4.0.2.old/src/ftpthread.cpp kasablanca-0.4.0.2.new/src/ftpthread.cpp
+--- kasablanca-0.4.0.2.old/src/ftpthread.cpp	2008-04-03 20:21:36.000000000 +0200
++++ kasablanca-0.4.0.2.new/src/ftpthread.cpp	2005-01-31 14:24:47.000000000 +0100
+@@ -1122,13 +1122,13 @@
+ 		for (i = 1; i < 13; i++)
+ 		{
+ 			loc = buffer.find(month[i], 0);
++			if (loc != -1)
+-			if (loc != string::npos)
+ 			{
+ 				month_int = i;
+ 				break;
+ 			}
+ 		}
++		if (loc == -1)
+-		if( loc == string::npos )
+ 		{
+ 			qWarning("INFO: no month entry found");
+ 			loc = buffer.length();




More information about the pkg-kde-commits mailing list