From 94bbc4e410dc96b188ffefe620312a0cd35fe4fb Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 10 Oct 2021 19:14:23 +0200 Subject: gnu: owncloud-client: Update to 2.9.0.5150. * gnu/packages/sync.scm (owncloud-client): Update to 2.9.0.5150. --- gnu/packages/sync.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/sync.scm') diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm index c85b4f801c9..c1c1e7d57c2 100644 --- a/gnu/packages/sync.scm +++ b/gnu/packages/sync.scm @@ -312,14 +312,14 @@ See also: megacmd, the official tool set by MEGA.") (define-public owncloud-client (package (name "owncloud-client") - (version "2.7.6.3261") + (version "2.9.0.5150") (source (origin (method url-fetch) (uri (string-append "https://download.owncloud.com/desktop/ownCloud/stable/" version "/source/ownCloud-" version ".tar.xz")) (sha256 - (base32 "19jjlhbzhy4v5h1wj5a87ismxq2p7avb2bb4lfbh2rvl01r432vy")) + (base32 "0nf68x840p30yng4fh1nlyiqg40z0rkcv0lskpz8dd4pj1iw5jjs")) (patches (search-patches "owncloud-disable-updatecheck.patch")))) ;; TODO: unbundle qprogessindicator, qlockedfile, qtokenizer and ;; qtsingleapplication which have not yet been packaged, but all are -- cgit v1.3 From 011db530aa329ac9160441322a6d55e27fe77df2 Mon Sep 17 00:00:00 2001 From: Daniel Meißner Date: Wed, 16 Jun 2021 14:16:10 +0200 Subject: gnu: owncloud-client: Fix sysconfdir path Somehow sysconfdir was not set correctly so that owncloud searched for sync-exclude.lst in the relative path etc/ownCloud/sync-exclude.lst instead of the /gnu/store/...-owncloud-client/etc/ownCloud/sync-exclude.lst. * gnu/packages/sync.scm(owncloud-client): Add -DSYSCONF_INSTALL_DIR flag to configure flags. Signed-off-by: Liliana Marie Prikler --- gnu/packages/sync.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'gnu/packages/sync.scm') diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm index c1c1e7d57c2..e9fc913ad5b 100644 --- a/gnu/packages/sync.scm +++ b/gnu/packages/sync.scm @@ -341,10 +341,16 @@ See also: megacmd, the official tool set by MEGA.") (("QCoreApplication::applicationFilePath\\()") "\"owncloud\"")) #t)) (delete 'patch-dot-desktop-files)) - #:configure-flags '("-DUNIT_TESTING=ON" + #:configure-flags `("-DUNIT_TESTING=ON" ;; build without qtwebkit, which causes the ;; package to FTBFS while looking for QWebView. - "-DNO_SHIBBOLETH=1"))) + "-DNO_SHIBBOLETH=1" + ;; Fix sync-exclude.list problem, see + ;; + ;; + ,(string-append "-DSYSCONF_INSTALL_DIR=" + (assoc-ref %outputs "out") + "/etc")))) (native-inputs `(("cmocka" ,cmocka) ("extra-cmake-modules" ,extra-cmake-modules) -- cgit v1.3