guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: QSyncthingTray: Deprecate in favor of Debian


From: guix-commits
Subject: branch master updated: gnu: QSyncthingTray: Deprecate in favor of Debian's syncthing-gtk fork.
Date: Wed, 09 Feb 2022 11:57:43 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4578ad78be gnu: QSyncthingTray: Deprecate in favor of Debian's 
syncthing-gtk fork.
4578ad78be is described below

commit 4578ad78bee1dfd450962627ae66d3e15ebadad2
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Tue Jan 25 14:20:53 2022 -0500

    gnu: QSyncthingTray: Deprecate in favor of Debian's syncthing-gtk fork.
    
    This package is abandoned upstream and depends on the insecure and
    abandoned QtWebKit.
    
    Upstream abandonment:
    
    https://github.com/sieren/QSyncthingTray/issues/247
    
    See <https://issues.guix.gnu.org/53289> for more information about this 
change
    
    * gnu/packages/sync.scm (qsyncthingtray): Move this variable ...
    * gnu/packages/syncthing.scm (qsyncthingtray): ... to here. And make it 
into a
    deprecated-package that points to syncthing-gtk.
---
 gnu/packages/sync.scm      | 52 ----------------------------------------------
 gnu/packages/syncthing.scm |  3 +++
 2 files changed, 3 insertions(+), 52 deletions(-)

diff --git a/gnu/packages/sync.scm b/gnu/packages/sync.scm
index f897c1ec4a..801aef3f44 100644
--- a/gnu/packages/sync.scm
+++ b/gnu/packages/sync.scm
@@ -359,58 +359,6 @@ 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 qsyncthingtray
-  (package
-    (name "qsyncthingtray")
-    (version "0.5.8")
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/sieren/QSyncthingTray";)
-               (commit version)))
-        (file-name (git-file-name name version))
-        (sha256
-         (base32
-          "1n9g4j7qznvg9zl6x163pi9f7wsc3x6q76i33psnm7x2v1i22x5w"))))
-    (build-system cmake-build-system)
-    (arguments
-     `(#:configure-flags '("-DQST_BUILD_WEBKIT=1")
-       #:phases
-       (modify-phases %standard-phases
-         ;; The program is meant to be run from the git repo or source tarball.
-         (replace 'install
-           (lambda* (#:key outputs #:allow-other-keys)
-             (let* ((out (assoc-ref outputs "out"))
-                    (bin (string-append out "/bin")))
-               (install-file "QSyncthingTray" bin)
-               (mkdir-p (string-append out "/share/pixmaps"))
-               (copy-file "../source/resources/images/Icon1024.png"
-                          (string-append
-                            out "/share/pixmaps/QSyncthingTray.png"))
-               #t))))
-       #:tests? #f)) ; no test target
-    (inputs
-     (list qtbase-5 qtwebkit))
-    (home-page "https://github.com/sieren/QSyncthingTray";)
-    (synopsis "Traybar Application for Syncthing")
-    (description
-     "A traybar application for syncthing.
-@enumerate
-@item Shows number of connections at a glance.
-@item Traffic statistics about incoming, outgoing and total throughput.
-@item Launches Syncthing and Syncthing-iNotifier if specified.
-@item Quickly pause Syncthing with one click.
-@item Last Synced Files - Quickly see the recently synchronised files and open
-their folder.
-@item Quick Access to all shared folders.
-@item Presents Syncthing UI in a separate view instead of using the browser.
-@item Supports authenticated HTTPS connections.
-@item Uses System Notifications about current connection status.
-@item Toggle for monochrome icon.
-@end enumerate\n")
-    (license license:lgpl3+)))
-
 (define-public lsyncd
   (package
     (name "lsyncd")
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index 71636e76a3..ebf7c2322e 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -218,6 +218,9 @@ notification area icon for Syncthing.  Supported Syncthing 
features:
 @end itemize\n")
       (license gpl2))))
 
+(define-public qsyncthingtray
+  (deprecated-package "qsyncthingtray" syncthing-gtk))
+
 (define-public go-github-com-jackpal-go-nat-pmp
   (package
     (name "go-github-com-jackpal-go-nat-pmp")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]