diff --git a/net/owncloudclient/Makefile b/net/owncloudclient/Makefile index ed56770ecca..b5d55c4773a 100644 --- a/net/owncloudclient/Makefile +++ b/net/owncloudclient/Makefile @@ -1,6 +1,6 @@ COMMENT = owncloud sync client -V = 3.0.0.9215 +V = 3.1.0.9872 GRAPHAPI_V = 0.13.2 DISTNAME = ownCloud-${V} PKGNAME = owncloudclient-${V} diff --git a/net/owncloudclient/distinfo b/net/owncloudclient/distinfo index adb4ca7fabd..755b55212eb 100644 --- a/net/owncloudclient/distinfo +++ b/net/owncloudclient/distinfo @@ -1,4 +1,4 @@ SHA256 (libre-graph-api-cpp-qt-client-v0.13.2.tar.gz) = ON0gpGaNz9honvyqppmj3C1jiHh99MciB5kgEwGXIAU= -SHA256 (ownCloud-3.0.0.9215.tar.xz) = cORFiyMEEX1jKQJIW4eqFAkwIFoXcP18PZTn6Zi1y+U= +SHA256 (ownCloud-3.1.0.9872.tar.xz) = 0oCvKPhNhID3Vfz9DU1Oe5xAqR4YClDzQqm3SfbZqos= SIZE (libre-graph-api-cpp-qt-client-v0.13.2.tar.gz) = 79738 -SIZE (ownCloud-3.0.0.9215.tar.xz) = 5676836 +SIZE (ownCloud-3.1.0.9872.tar.xz) = 5682584 diff --git a/net/owncloudclient/patches/patch-src_common_utility_h b/net/owncloudclient/patches/patch-src_common_utility_h deleted file mode 100644 index 32f6966555e..00000000000 --- a/net/owncloudclient/patches/patch-src_common_utility_h +++ /dev/null @@ -1,16 +0,0 @@ -Upstream commit 2d6b2d3c036f44a5c2a9e58321364c210401ff12 - -Index: src/common/utility.h ---- src/common/utility.h.orig -+++ src/common/utility.h -@@ -381,10 +381,8 @@ OCSYNC_EXPORT Q_DECLARE_LOGGING_CATEGORY(lcUtility) - } - - --#ifdef Q_OS_LINUX - OCSYNC_EXPORT QString appImageLocation(); - OCSYNC_EXPORT bool runningInAppImage(); --#endif - } // Utility namespace - /** @} */ // \addtogroup - diff --git a/net/owncloudclient/patches/patch-src_common_utility_unix_cpp b/net/owncloudclient/patches/patch-src_common_utility_unix_cpp deleted file mode 100644 index 44c76184764..00000000000 --- a/net/owncloudclient/patches/patch-src_common_utility_unix_cpp +++ /dev/null @@ -1,28 +0,0 @@ -Upstream commit 2d6b2d3c036f44a5c2a9e58321364c210401ff12 - -Index: src/common/utility_unix.cpp ---- src/common/utility_unix.cpp.orig -+++ src/common/utility_unix.cpp -@@ -111,18 +111,20 @@ void Utility::setLaunchOnStartup(const QString &appNam - } - } - --#ifdef Q_OS_LINUX - QString Utility::appImageLocation() - { -+#ifdef Q_OS_LINUX - static const auto value = qEnvironmentVariable("APPIMAGE"); - return value; -+#else -+ return QString(); -+#endif - } - - bool Utility::runningInAppImage() - { - return !Utility::appImageLocation().isEmpty(); - } --#endif - - bool Utility::hasDarkSystray() - {