Received: (at submit) by debbugs.gnu.org; 26 May 2021 17:48:24 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed May 26 13:48:24 2021 Received: from localhost ([127.0.0.1]:49854 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1llxdn-000572-Os for submit <at> debbugs.gnu.org; Wed, 26 May 2021 13:48:24 -0400 Received: from lists.gnu.org ([209.51.188.17]:54596) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <gabriel@HIDDEN>) id 1llxdl-00056v-Ug for submit <at> debbugs.gnu.org; Wed, 26 May 2021 13:48:22 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52920) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <gabriel@HIDDEN>) id 1llxdl-0005BB-Jr for guix-patches@HIDDEN; Wed, 26 May 2021 13:48:21 -0400 Received: from chimborazo.ee.ethz.ch ([129.132.2.15]:39667) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <gabriel@HIDDEN>) id 1llxdj-0000qn-0S for guix-patches@HIDDEN; Wed, 26 May 2021 13:48:21 -0400 Received: from silver (212-51-128-14.fiber7.init7.net [212.51.128.14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: gabriel) by chimborazo.ee.ethz.ch (Postfix) with ESMTPSA id 1B1CB40315 for <guix-patches@HIDDEN>; Wed, 26 May 2021 19:47:57 +0200 (CEST) Date: Wed, 26 May 2021 19:47:51 +0200 From: Gabriel Wicki <gabriel@HIDDEN> To: guix-patches@HIDDEN Subject: add seafile-client package providing seafile-applet Message-ID: <20210526174751.ynfblmx64ppdl2is@silver> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Received-SPF: none client-ip=129.132.2.15; envelope-from=gabriel@HIDDEN; helo=chimborazo.ee.ethz.ch X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) From 7665f6edf757ef385ef4f67aa106c38a8448c670 Mon Sep 17 00:00:00 2001 From: Gabriel Wicki <gabriel@HIDDEN> Date: Wed, 26 May 2021 19:39:39 +0200 Subject: [PATCH] add package seafile-client and it's dependencies libsearpc and seafile. the resulting binary is called seafile-applet. new file: gnu/packages/seafile.scm --- gnu/packages/seafile.scm | 103 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 gnu/packages/seafile.scm diff --git a/gnu/packages/seafile.scm b/gnu/packages/seafile.scm new file mode 100644 index 0000000000..f95238b1a7 --- /dev/null +++ b/gnu/packages/seafile.scm @@ -0,0 +1,103 @@ +(define-module (seafile) + #:use-module (gnu packages autotools) + #:use-module (gnu packages base) + #:use-module (gnu packages curl) + #:use-module (gnu packages glib) + #:use-module (gnu packages gnome) + #:use-module (gnu packages libevent) + #:use-module (gnu packages linux) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages python) + #:use-module (gnu packages qt) + #:use-module (gnu packages sqlite) + #:use-module (gnu packages tls) + #:use-module (gnu packages web) + #:use-module (guix packages) + #:use-module (guix git-download) + #:use-module (guix build-system cmake) + #:use-module (guix build-system gnu) + #:use-module ((guix licenses) #:prefix license:)) + +(define-public seafile-client + (package + (name "seafile-client") + (version "8.0.2") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/haiwen/seafile-client") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19z6lz34j62gazi9pd1y570jlp181cmb31rld4lfxznhkh9y2jfc")))) + (build-system cmake-build-system) + (arguments `(#:tests? #f)) ; there are no tests + (native-inputs `(("pkg-config" ,pkg-config) + ("qtlinguist" ,qttools))) + (inputs `(("glib" ,glib) + ("qtbase" ,qtbase) + ("seafile" ,seafile))) + (synopsis "Desktop client for cloud file storage system Seafile") + (description "seafile-client is a desktop client for your seafile server.") + (home-page "https://www.seafile.com") + (license license:gpl2))) + +(define seafile + (package + (name "seafile") + (version "8.0.2") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/haiwen/seafile") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1kizf9ifcwb3scyvimv76p0lqd69hw7l48as1xk6i3m5mv2d7j4p")))) + (build-system gnu-build-system) + (native-inputs `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (propagated-inputs `(("libsearpc" ,libsearpc) + ("libevent" ,libevent) + ("openssl" ,openssl) + ("sqlite" ,sqlite))) + (inputs `(("curl" ,curl) + ("python" ,python) + ("vala" ,vala))) + (synopsis "Cloud storage system with privacy protection and teamwork features") + (description "Seafile is a high performance file syncing and sharing, with +Markdown WYSIWYG editing, Wiki, file label and other knowledge management +features.") + (home-page "https://www.seafile.com") + (license license:gpl2))) + +(define libsearpc + (package + (name "libsearpc") + (version "8.0") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/haiwen/libsearpc/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wbx0c64xyn22rzqpl1jmdps53zjb1a0760435znsg6j88h4k7yp")))) + (build-system gnu-build-system) + (propagated-inputs `(("jansson" ,jansson))) + (native-inputs `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool) + ("pkg-config" ,pkg-config))) + (inputs `(("glib" ,glib) + ("python" ,python-wrapper))) + (synopsis "Simple C language RPC framework based on GObject system") + (description "libsearpc (from \"library\", \"Seafile\" and \"RPC\") handles the +serialization/deserialization part of RPC, the transport part is left to users.") + (home-page "https://www.seafile.com") + (license license:gpl2))) -- 2.30.2
Gabriel Wicki <gabriel@HIDDEN>
:guix-patches@HIDDEN
.
Full text available.guix-patches@HIDDEN
:bug#48679
; Package guix-patches
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.