[Pkg-owncloud-commits] [owncloud-client] 01/01: Added utility-platform.patch

Sandro Knauß hefee-guest at alioth.debian.org
Tue Oct 22 23:05:38 UTC 2013


This is an automated email from the git hooks/post-receive script.

hefee-guest pushed a commit to branch master
in repository owncloud-client.

commit 3eeda631665268577ec999ba08556a8aa372ef0c
Author: Sandro Knauß <bugs at sandroknauss.de>
Date:   Wed Oct 23 01:05:25 2013 +0200

    Added utility-platform.patch
---
 debian/changelog                      |    1 +
 debian/patches/series                 |    2 ++
 debian/patches/utility-platform.patch |   31 +++++++++++++++++++++++++++++++
 3 files changed, 34 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 5f6fa0f..12d667d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ owncloud-client (1.4.2+dfsg-1) unstable; urgency=low
     - create-manpage.patch
     - freebsd-libinotify.patch
     - freebsd-statvfs64.patch
+    - utility-platform.patch
   * Added freebsd support
   * Updated version dependency for ocsync
   * Updated debian/libowncloudsync0.symbols
diff --git a/debian/patches/series b/debian/patches/series
index 5383900..e2f4341 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,5 @@ disable-updatecheck.patch
 create-manpage.patch
 freebsd-statvfs64.patch
 freebsd-libinotify.patch
+utility-platform.patch
+util-platform.patch
diff --git a/debian/patches/utility-platform.patch b/debian/patches/utility-platform.patch
new file mode 100644
index 0000000..85620be
--- /dev/null
+++ b/debian/patches/utility-platform.patch
@@ -0,0 +1,31 @@
+Description: Fixing Utility::platform for all platforms
+Author: Sandro Knauß <bugs at sandroknauss.de>
+Forwarded: https://github.com/owncloud/mirall/commit/a927caf2b08320f08778eeccd8f5fb71abfae6ca
+Last-Update: 2013-10-23
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+Index: owncloud-client/src/mirall/utility.cpp
+===================================================================
+--- owncloud-client.orig/src/mirall/utility.cpp	2013-10-23 00:51:13.363997865 +0200
++++ owncloud-client/src/mirall/utility.cpp	2013-10-23 00:54:17.495427438 +0200
+@@ -141,7 +141,7 @@
+ #elif defined(Q_OS_LINUX)
+     return QLatin1String("Linux");
+ #elif defined(__DragonFly__) // Q_OS_FREEBSD also defined
+-    return "DragonFlyBSD";
++    return QLatin1String("DragonFlyBSD");
+ #elif defined(Q_OS_FREEBSD)
+     return QLatin1String("FreeBSD");
+ #elif defined(Q_OS_NETBSD)
+@@ -149,9 +149,9 @@
+ #elif defined(Q_OS_OPENBSD)
+     return QLatin1String("OpenBSD");
+ #elif defined(Q_OS_SOLARIS)
+-    return "Solaris";
++    return QLatin1String("Solaris");
+ #else
+-    return "Unknown OS"
++    return QLatin1String("Unknown OS");
+ #endif
+ }
+ 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git



More information about the Pkg-owncloud-commits mailing list