unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0.
@ 2020-12-29 10:35 Vincent Legoll
  2020-12-30  8:04 ` bug#45524: " Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: Vincent Legoll @ 2020-12-29 10:35 UTC (permalink / raw)
  To: 45524; +Cc: Vincent Legoll

* gnu/packages/vnc.scm (tigervnc-client): Update to 1.11.0.
[inputs]: Add pixman.
---
 gnu/packages/vnc.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/vnc.scm b/gnu/packages/vnc.scm
index ab89bad7aa..9aac5dfea8 100644
--- a/gnu/packages/vnc.scm
+++ b/gnu/packages/vnc.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
 ;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
 ;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
+;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -41,13 +42,14 @@
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages sdl)
   #:use-module (gnu packages tls)
+  #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages xorg))
 
 (define-public tigervnc-client
-  (let ((commit "920d9c4d6562ecabf79497bc901d50522d4bc661"))
+  (let ((commit "540bfc3278e396321124d4b18a798ac2bc18b6ca"))
     (package
       (name "tigervnc-client")
-      (version (git-version "1.10.1" "1" commit))
+      (version (git-version "1.11.0" "0" commit))
       (source (origin
                 (method git-fetch)
                 (uri
@@ -56,7 +58,7 @@
                   (commit commit)))
                 (sha256
                  (base32
-                  "1lp6mxl5dqlkrzx0q145jzgpbwvhsni3fj6x9ngf8v5s63x82q1p"))
+                  "1bg79ahr4mzy48ak0caxy3ckdsxmhpchypggaz6lxjjk92hgsz91"))
                 (file-name (git-file-name name version))))
       (build-system cmake-build-system)
       (arguments
@@ -80,7 +82,8 @@
          ("libxext" ,libxext)
          ("libxtst" ,libxtst)
          ("libxrandr" ,libxrandr)
-         ("libxdamage" ,libxdamage)))
+         ("libxdamage" ,libxdamage)
+         ("pixman" ,pixman)))
       (home-page "https://tigervnc.org/")
       (synopsis "High-performance, platform-neutral
 implementation of VNC (client)")
-- 
2.29.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* bug#45524: [PATCH] gnu: tigervnc-client: Update to 1.11.0.
  2020-12-29 10:35 [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0 Vincent Legoll
@ 2020-12-30  8:04 ` Leo Famulari
  2020-12-30 15:55   ` [bug#45524] " Vincent Legoll
  0 siblings, 1 reply; 7+ messages in thread
From: Leo Famulari @ 2020-12-30  8:04 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 45524-done

On Tue, Dec 29, 2020 at 11:35:57AM +0100, Vincent Legoll wrote:
> * gnu/packages/vnc.scm (tigervnc-client): Update to 1.11.0.
> [inputs]: Add pixman.

Thanks!

> -  (let ((commit "920d9c4d6562ecabf79497bc901d50522d4bc661"))
> +  (let ((commit "540bfc3278e396321124d4b18a798ac2bc18b6ca"))

> +      (version (git-version "1.11.0" "0" commit))

I noticed that this commit was the 1.11.0 release tag, so I changed it
to use (version "1.11.0")

Pushed as 776c700aafb380ffc72f10cc463c6dfeb35dd7c1




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0.
  2020-12-30  8:04 ` bug#45524: " Leo Famulari
@ 2020-12-30 15:55   ` Vincent Legoll
  2020-12-30 20:17     ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: Vincent Legoll @ 2020-12-30 15:55 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 45524-done

On Wed, Dec 30, 2020 at 9:04 AM Leo Famulari <leo@famulari.name> wrote:
> I noticed that this commit was the 1.11.0 release tag, so I changed it
> to use (version "1.11.0")

Yes, I hesitated just doing so myself...

> Pushed as 776c700aafb380ffc72f10cc463c6dfeb35dd7c1

Thanks

-- 
Vincent Legoll




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0.
  2020-12-30 15:55   ` [bug#45524] " Vincent Legoll
@ 2020-12-30 20:17     ` Leo Famulari
  2021-01-01  9:09       ` Oleg Pykhalov
  2021-01-01  9:47       ` Oleg Pykhalov
  0 siblings, 2 replies; 7+ messages in thread
From: Leo Famulari @ 2020-12-30 20:17 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 45524-done

On Wed, Dec 30, 2020 at 04:55:36PM +0100, Vincent Legoll wrote:
> On Wed, Dec 30, 2020 at 9:04 AM Leo Famulari <leo@famulari.name> wrote:
> > I noticed that this commit was the 1.11.0 release tag, so I changed it
> > to use (version "1.11.0")
> 
> Yes, I hesitated just doing so myself...

Feel free in the future :)

In general, it's always welcome to simplify the packages.




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0.
  2020-12-30 20:17     ` Leo Famulari
@ 2021-01-01  9:09       ` Oleg Pykhalov
  2021-01-01  9:47       ` Oleg Pykhalov
  1 sibling, 0 replies; 7+ messages in thread
From: Oleg Pykhalov @ 2021-01-01  9:09 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 45524-done

[-- Attachment #1: Type: text/plain, Size: 158 bytes --]

Hello,

I reverted the update to 1.11.0, because it breaks tigervnc-server
(missing /gnu/store/...-tigervnc-server-1.11.0/bin/tigervnc-server
binary).

Oleg.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0.
  2020-12-30 20:17     ` Leo Famulari
  2021-01-01  9:09       ` Oleg Pykhalov
@ 2021-01-01  9:47       ` Oleg Pykhalov
  2021-01-01 18:46         ` Leo Famulari
  1 sibling, 1 reply; 7+ messages in thread
From: Oleg Pykhalov @ 2021-01-01  9:47 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: 45524-done

[-- Attachment #1: Type: text/plain, Size: 468 bytes --]

Unfortunately, upstream breaks users scripts by intention without
warnings in the previos stable release 1.10.1 about deprecating ‘bin’
directory for ‘vncserver’ in next release, and mention this in release
news [1]:

  vncserver has gotten a major redesign to be compatible with modern
  distributions

[1] https://github.com/TigerVNC/tigervnc/releases/tag/v1.11.0

Apologies for missing that.  I reverted the package downgrade to 1.10.1.

Oleg.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0.
  2021-01-01  9:47       ` Oleg Pykhalov
@ 2021-01-01 18:46         ` Leo Famulari
  0 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2021-01-01 18:46 UTC (permalink / raw)
  To: Oleg Pykhalov; +Cc: Vincent Legoll, 45524-done

On Fri, Jan 01, 2021 at 12:47:26PM +0300, Oleg Pykhalov wrote:
> Unfortunately, upstream breaks users scripts by intention without
> warnings in the previos stable release 1.10.1 about deprecating ‘bin’
> directory for ‘vncserver’ in next release, and mention this in release
> news [1]:
> 
>   vncserver has gotten a major redesign to be compatible with modern
>   distributions
> 
> [1] https://github.com/TigerVNC/tigervnc/releases/tag/v1.11.0
> 
> Apologies for missing that.  I reverted the package downgrade to 1.10.1.

Thanks for paying attention and taking care of it!




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-01-01 18:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-29 10:35 [bug#45524] [PATCH] gnu: tigervnc-client: Update to 1.11.0 Vincent Legoll
2020-12-30  8:04 ` bug#45524: " Leo Famulari
2020-12-30 15:55   ` [bug#45524] " Vincent Legoll
2020-12-30 20:17     ` Leo Famulari
2021-01-01  9:09       ` Oleg Pykhalov
2021-01-01  9:47       ` Oleg Pykhalov
2021-01-01 18:46         ` Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).