[SCM] jovie packaging branch, master, updated. debian/4.13.3-1-3-g10e612e

Maximiliano Curia maxy at moszumanska.debian.org
Fri Aug 22 03:10:33 UTC 2014


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-sc/jovie.git;a=commitdiff;h=e6e6d1b

The following commit has been merged in the master branch:
commit e6e6d1b3c5a17d4030a814fbee2edcdc2927698e
Author: Maximiliano Curia <maxy at debian.org>
Date:   Wed Aug 20 20:41:24 2014 +0200

    Remove upstream applied patch: no_MAXPATHLEN_in_hurd.patch
---
 debian/changelog                           |  1 +
 debian/patches/no_MAXPATHLEN_in_hurd.patch | 28 ----------------------------
 debian/patches/series                      |  1 -
 3 files changed, 1 insertion(+), 29 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 051dd50..f2cb4ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 jovie (4:4.14.0-1) UNRELEASED; urgency=medium
 
   * New upstream release.
+  * Remove upstream applied patch: no_MAXPATHLEN_in_hurd.patch
 
  -- Maximiliano Curia <maxy at debian.org>  Mon, 18 Aug 2014 18:29:52 +0200
 
diff --git a/debian/patches/no_MAXPATHLEN_in_hurd.patch b/debian/patches/no_MAXPATHLEN_in_hurd.patch
deleted file mode 100644
index 3c57dea..0000000
--- a/debian/patches/no_MAXPATHLEN_in_hurd.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Description: Remove MAXPATHLEN dependency
- This patch uses the POSIX.1-2008 definition of realpath
-Author: Maximiliano Curia <maxy at debian.org>
-Forwarded: no
-Last-Update: 2013-07-15
-Index: jovie/libkttsd/filterconf.cpp
-===================================================================
---- jovie.orig/libkttsd/filterconf.cpp	2013-07-15 12:02:25.991241599 +0200
-+++ jovie/libkttsd/filterconf.cpp	2013-07-15 12:04:12.274929925 +0200
-@@ -153,13 +153,14 @@
- 
- /*static*/ QString KttsFilterConf::realFilePath(const QString &filename)
- {
--    char realpath_buffer[MAXPATHLEN + 1];
--    memset(realpath_buffer, 0, MAXPATHLEN + 1);
-+    char *realpath_buffer;
- 
-     /* If the path contains symlinks, get the real name */
--    if (realpath( QFile::encodeName(filename).data(), realpath_buffer) != 0) {
-+    if ((realpath_buffer = realpath( QFile::encodeName(filename).data(), NULL)) != NULL) {
-         //succes, use result from realpath
--        return QFile::decodeName(realpath_buffer);
-+        QString result = QFile::decodeName(realpath_buffer);
-+        free(realpath_buffer);
-+        return result;
-     }
-     return filename;
- }
diff --git a/debian/patches/series b/debian/patches/series
index f8edbc4..e69de29 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +0,0 @@
-no_MAXPATHLEN_in_hurd.patch

-- 
jovie packaging



More information about the pkg-kde-commits mailing list