summaryrefslogtreecommitdiff
path: root/gnu/packages/sync.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-28 13:29:44 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-28 13:29:57 +0000
commitc0539dcf937b9708d712444493b00151484348f2 (patch)
tree8cefa8fb96b2a68497fd681772e505f328eb8bb7 /gnu/packages/sync.scm
parent2d0e42a7950fb4aed14b49a59bfa284874b75a07 (diff)
gnu: Remove owncloud-client.
* gnu/packages/sync.scm (owncloud-client): Delete variable. Fixes: guix/guix#4373 Change-Id: I5bb5973ccfd4dff03e685b23850f392c706680fa
Diffstat (limited to 'gnu/packages/sync.scm')
-rw-r--r--gnu/packages/sync.scm59
1 files changed, 0 insertions, 59 deletions
diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm
index c4cb6f7ae9d..df0dbaa21cc 100644
--- a/gnu/packages/sync.scm
+++ b/gnu/packages/sync.scm
@@ -339,65 +339,6 @@ Memory requirements and CPU utilization are kept at minimum.
See also: megacmd, the official tool set by MEGA.")
(license license:gpl2)))
-(define-public owncloud-client
- (package
- (name "owncloud-client")
- (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 "0nf68x840p30yng4fh1nlyiqg40z0rkcv0lskpz8dd4pj1iw5jjs"))
- (patches (search-patches "owncloud-disable-updatecheck.patch"))))
- ;; TODO: unbundle qprogessindicator, qlockedfile, qtokenizer and
- ;; qtsingleapplication which have not yet been packaged, but all are
- ;; explicitly used from the 3rdparty folder during build.
- (build-system cmake-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'delete-failing-tests
- ;; "Could not create autostart folder"
- (lambda _
- (substitute* "test/CMakeLists.txt"
- (("owncloud_add_test\\(Utility\\)" test)
- (string-append "#" test)))
- #t))
- (add-after 'unpack 'dont-embed-store-path
- (lambda _
- (substitute* "src/common/utility_unix.cpp"
- (("QCoreApplication::applicationFilePath\\()") "\"owncloud\""))
- #t))
- (delete 'patch-dot-desktop-files))
- #:configure-flags `("-DUNIT_TESTING=ON"
- ;; build without qtwebkit, which causes the
- ;; package to FTBFS while looking for QWebView.
- "-DNO_SHIBBOLETH=1"
- ;; Fix sync-exclude.list problem, see
- ;; <https://github.com/owncloud/client/issues/8373>
- ;; <https://issues.guix.gnu.org/47672>
- ,(string-append "-DSYSCONF_INSTALL_DIR="
- (assoc-ref %outputs "out")
- "/etc"))))
- (native-inputs
- `(("cmocka" ,cmocka)
- ("extra-cmake-modules" ,extra-cmake-modules)
- ("perl" ,perl)
- ("pkg-config" ,pkg-config)
- ("qtlinguist" ,qttools-5)))
- (inputs
- (list qtbase-5 qtkeychain sqlite zlib))
- (home-page "https://owncloud.org")
- (synopsis "Folder synchronization with an ownCloud server")
- (description "The ownCloudSync system lets you always have your latest
-files wherever you are. Just specify one or more folders on the local machine
-to and a server to synchronize to. You can configure more computers to
-synchronize to the same server and any change to the files on one computer will
-silently and reliably flow across to every other.")
- (license license:gpl2+)))
-
(define-public onedrive
(package
(name "onedrive")