From unknown Fri Aug 15 12:54:24 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#48679 <48679@debbugs.gnu.org> To: bug#48679 <48679@debbugs.gnu.org> Subject: Status: add seafile-client package providing seafile-applet Reply-To: bug#48679 <48679@debbugs.gnu.org> Date: Fri, 15 Aug 2025 19:54:24 +0000 retitle 48679 add seafile-client package providing seafile-applet reassign 48679 guix-patches submitter 48679 Gabriel Wicki severity 48679 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Wed May 26 13:48:24 2021 Received: (at submit) by debbugs.gnu.org; 26 May 2021 17:48:24 +0000 Received: from localhost ([127.0.0.1]:49854 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1llxdn-000572-Os for submit@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 ) id 1llxdl-00056v-Ug for submit@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 ) id 1llxdl-0005BB-Jr for guix-patches@gnu.org; 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 ) id 1llxdj-0000qn-0S for guix-patches@gnu.org; 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 ; Wed, 26 May 2021 19:47:57 +0200 (CEST) Date: Wed, 26 May 2021 19:47:51 +0200 From: Gabriel Wicki To: guix-patches@gnu.org 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@erlikon.ch; 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@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) >From 7665f6edf757ef385ef4f67aa106c38a8448c670 Mon Sep 17 00:00:00 2001 From: Gabriel Wicki 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 From debbugs-submit-bounces@debbugs.gnu.org Thu May 27 15:20:05 2021 Received: (at 48679) by debbugs.gnu.org; 27 May 2021 19:20:05 +0000 Received: from localhost ([127.0.0.1]:52819 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmLY5-0000RA-BY for submit@debbugs.gnu.org; Thu, 27 May 2021 15:20:05 -0400 Received: from chimborazo.ee.ethz.ch ([129.132.2.15]:34023) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmLY2-0000QU-ST for 48679@debbugs.gnu.org; Thu, 27 May 2021 15:20:03 -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 D408E40315 for <48679@debbugs.gnu.org>; Thu, 27 May 2021 21:19:47 +0200 (CEST) Date: Thu, 27 May 2021 21:19:44 +0200 From: Gabriel Wicki To: 48679@debbugs.gnu.org Subject: Re: bug#48679: Acknowledgement (add seafile-client package providing seafile-applet) Message-ID: <20210527191944.zzzv34ruxfky65ll@silver> References: <20210526174751.ynfblmx64ppdl2is@silver> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48679 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) updated commit message to conform to ChangeLog Format >From 60b4f30f4d75505dc3c2cd86c986fda582147b2d Mon Sep 17 00:00:00 2001 From: Gabriel Wicki Date: Wed, 26 May 2021 19:39:39 +0200 Subject: [PATCH] add package seafile-client * gnu/packages/seafile.scm (seafile-client): New file. --- 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 From debbugs-submit-bounces@debbugs.gnu.org Fri May 28 16:35:32 2021 Received: (at 48679) by debbugs.gnu.org; 28 May 2021 20:35:32 +0000 Received: from localhost ([127.0.0.1]:55453 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmjCd-00034X-Lh for submit@debbugs.gnu.org; Fri, 28 May 2021 16:35:32 -0400 Received: from h87-96-130-155.cust.a3fiber.se ([87.96.130.155]:37660 helo=mail.yoctocell.xyz) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmjCb-00034I-5i for 48679@debbugs.gnu.org; Fri, 28 May 2021 16:35:30 -0400 From: Xinglu Chen DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yoctocell.xyz; s=mail; t=1622234121; bh=1OW12JuQFVfbdyJy0Wxa8i7pKb4PjbwUwYibnngOOeo=; h=From:To:Subject:In-Reply-To:References:Date; b=d8UtKNirbPSvCvLZgkpQcZAnASSKxfv2KJIK1D1GqiCtxOK/y/KuU2CdtiPjQBf1A +ek+A05EnzG2q248GLs7rmPEh0BhQJoAApNOAw6Ih+L22/nCoyEdyTHQ678LoNWG+e MqRpVR8oinAhq70zYSSwv34zac3lHUor0kIIaztE= To: Gabriel Wicki , 48679@debbugs.gnu.org Subject: Re: [bug#48679] Acknowledgement (add seafile-client package providing seafile-applet) In-Reply-To: <20210527191944.zzzv34ruxfky65ll@silver> References: <20210526174751.ynfblmx64ppdl2is@silver> <20210527191944.zzzv34ruxfky65ll@silver> Date: Fri, 28 May 2021 22:35:20 +0200 Message-ID: <87sg26ppfb.fsf@yoctocell.xyz> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 2.9 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: On Thu, May 27 2021, Gabriel Wicki wrote: > From 60b4f30f4d75505dc3c2cd86c986fda582147b2d Mon Sep 17 00:00:00 2001 > From: Gabriel Wicki > Date: Wed, 26 May 2021 19:39:39 +0200 > Subject: [PATCH] add package seafile-clien [...] Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD X-Debbugs-Envelope-To: 48679 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 2.9 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: On Thu, May 27 2021, Gabriel Wicki wrote: > From 60b4f30f4d75505dc3c2cd86c986fda582147b2d Mon Sep 17 00:00:00 2001 > From: Gabriel Wicki > Date: Wed, 26 May 2021 19:39:39 +0200 > Subject: [PATCH] add package seafile-clien [...] Content analysis details: (2.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.0 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: yoctocell.xyz (xyz)] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.4 RDNS_DYNAMIC Delivered to internal network by host with dynamic-looking rDNS 1.0 BULK_RE_SUSP_NTLD Precedence bulk and RE: from a suspicious TLD 0.5 FROM_SUSPICIOUS_NTLD From abused NTLD -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On Thu, May 27 2021, Gabriel Wicki wrote: > From 60b4f30f4d75505dc3c2cd86c986fda582147b2d Mon Sep 17 00:00:00 2001 > From: Gabriel Wicki > Date: Wed, 26 May 2021 19:39:39 +0200 > Subject: [PATCH] add package seafile-client > > * gnu/packages/seafile.scm (seafile-client): New file. > --- > gnu/packages/seafile.scm | 103 +++++++++++++++++++++++++++++++++++++++ > 1 file changed, 103 insertions(+) > create mode 100644 gnu/packages/seafile.scm This patch should be split into three separate patches, each containing one new package. Since Seafile is related to cloud storage I think it might make sense to put the packages in (gnu packages sync), anyone else who wants to comment on this? > +(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 "19z6lz34j62gazi9pd1y570jlp181cmb31rld4lfxznhkh9y2j= fc")))) > + (build-system cmake-build-system) > + (arguments `(#:tests? #f)) ; there are no tests > + (native-inputs `(("pkg-config" ,pkg-config) > + ("qtlinguist" ,qttools))) Why is the label not the same as the package name? The inputs list should preferrably be on a new line, this applied to =E2=80=98native-inputs=E2=80=99, =E2=80=98inputs=E2=80=99, and =E2=80=98pro= pagated-inputs=E2=80=99. > + (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 ser= ver.") > + (home-page "https://www.seafile.com") > + (license license:gpl2))) The LICENSE says Apache 2.0[1]. > +(define seafile=20 > + (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 "1kizf9ifcwb3scyvimv76p0lqd69hw7l48as1xk6i3m5mv2d7j= 4p")))) > + (build-system gnu-build-system) > + (native-inputs `(("autoconf" ,autoconf) > + ("automake" ,automake) > + ("libtool" ,libtool) > + ("pkg-config" ,pkg-config))) > + (propagated-inputs `(("libsearpc" ,libsearpc) > + ("libevent" ,libevent) Libraries are usually =E2=80=98inputs=E2=80=99 or =E2=80=98native-inputs=E2= =80=99, what=E2=80=99s the reason for propagating them? > + ("openssl" ,openssl) > + ("sqlite" ,sqlite))) These two packages are also usually =E2=80=98inputs=E2=80=99, would it be p= ossible to move them to =E2=80=98inputs=E2=80=99? > + (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))) LICENSE.txt says[2] This program is released under GPLv2, with the following addition permission to link with OpenSSL library. This should probably be mentioned as a comment. > +(define libsearpc > + (package > + (name "libsearpc") > + (version "8.0") I am not seeing version 8.0 on their repo[3]. > + (source (origin > + (method git-fetch) > + (uri > + (git-reference > + (url "https://github.com/haiwen/libsearpc/") This repo is a fork of another repo, we usually use the upstream one if possible. > + (commit version))) Again, I don=E2=80=99t see a tag named =E2=80=988.0=E2=80=99. > + (file-name (git-file-name name version)) > + (sha256 > + (base32 "0wbx0c64xyn22rzqpl1jmdps53zjb1a0760435znsg6j88h4k7= yp")))) > + (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\") h= andles the > +serialization/deserialization part of RPC, the transport part is left to= users.") > + (home-page "https://www.seafile.com") > + (license license:gpl2))) LICENSE.txt says Apache 2.0[4]. Could you send a v2 patchset? [1]: https://github.com/haiwen/seafile-client/blob/master/LICENSE [2]: https://github.com/haiwen/seafile/blob/master/LICENSE.txt [3]: https://github.com/haiwen/libsearpc/tags [4]: https://github.com/haiwen/libsearpc/blob/master/LICENSE.txt =20=20=20=20 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJJBAEBCAAzFiEEAVhh4yyK5+SEykIzrPUJmaL7XHkFAmCxVAgVHHB1YmxpY0B5 b2N0b2NlbGwueHl6AAoJEKz1CZmi+1x5OJUQAJkpICj6enHuZ8FvB/EjtJvSDqqa jxZzmalwnuh1kyiZml45tZ2usI+w2w/tr+nd1dfva8uR7VdwZ/egDMpCX+R0UYsZ Mwz77SzNRZhwviDHxzhe7TUHSl7pLJF3JDGl0nSR6jjuiFbOR8Pljx0IQempCdBB ASarlRi7ZKu9DmJjKpGnFWhL+vgMGQ5mHOr9OUqQrKzIWtJPDW7S352JTiz/JW36 9pto2Jq2u2UKICbt1Z5Wjdcjd2uGVnNaa65PS/mn+qoZowlgBSaIvcWJxUSmGQvx yPsSHkMQftDzcaPxGmFxxOg1koS+U4QqXdxWxmKP0x8WBN2RhPGqSl5Xm9jkhF7F yhBSNLliKeWi9aIpDZONEGKnhmgaCUb6gleEly++rthAmr70stNkXtMdbp20Ch75 svopXlC1CG5YZiNcVMn9XsqEr4Ut2rP7/QylUZKzyTDmVwMsvaEp6vWnpsnPtNqF /EWGipS3Wn4cFRNX2TJs4SI3rVr7FLx4Cw4coSzaYGWA8Mly01n32Wj7cONX06OU pOWcn2H255BzeUsg3gnqCgQgLYh+MsmK5dhpnSmb4AO10/d38gGmQdW6TAjzwPNR FG3CsjouK3BKkDxRA+j50YqrqTD8sICx9f/5L/IukCeGoWhxeZy4iu6vJyh7Wmbx A64g/NKWR9SmOUQk =E5PY -----END PGP SIGNATURE----- --=-=-=--