GNU bug report logs - #45908
[PATCH] gnu: xpra: Update to 4.0.6.

Previous Next

Package: guix-patches;

Reported by: Michael Rohleder <mike <at> rohleder.de>

Date: Fri, 15 Jan 2021 23:22:01 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 45908 in the body.
You can then email your comments to 45908 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#45908; Package guix-patches. (Fri, 15 Jan 2021 23:22:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Michael Rohleder <mike <at> rohleder.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 15 Jan 2021 23:22:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Michael Rohleder <mike <at> rohleder.de>
To: guix-patches <at> gnu.org
Cc: Michael Rohleder <mike <at> rohleder.de>
Subject: [PATCH] gnu: xpra: Update to 4.0.6.
Date: Sat, 16 Jan 2021 00:20:58 +0100
* gnu/packages/xorg.scm (xpra): Update to 4.0.6.
[inputs]: Add libx264, x265, libvpx to have more encoding options.
---
 gnu/packages/xorg.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 8f84b894f6..900f6c925d 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -23,7 +23,7 @@
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe <at> gmail.com>
 ;;; Copyright © 2020 Leo Prikler <leo.prikler <at> student.tugraz.at>
 ;;; Copyright © 2020 Florian Pelz <pelzflorian <at> pelzflorian.de>
-;;; Copyright © 2020 Michael Rohleder <mike <at> rohleder.de>
+;;; Copyright © 2020, 2021 Michael Rohleder <mike <at> rohleder.de>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2020 Jean-Baptiste Note <jean-baptiste.note <at> m4x.org>
 ;;;
@@ -6279,14 +6279,14 @@ basic eye-candy effects.")
 (define-public xpra
   (package
     (name "xpra")
-    (version "4.0.5")
+    (version "4.0.6")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://www.xpra.org/src/xpra-"
                            version ".tar.xz"))
        (sha256
-        (base32 "11ml66z8vbc0fa567kkmp2j20l5l60aflnkrz5ay8arw3w92nmnz"))
+        (base32 "1s49y2s75a8a70vj0micnmpic5zv1n32yjxy8fkxsqa6j5njyrww"))
        (patches (search-patches "xpra-4.0.1-systemd-run.patch"))))
     (build-system python-build-system)
     ;; see also http://xpra.org/trac/wiki/Dependencies
@@ -6313,6 +6313,9 @@ basic eye-candy effects.")
               ("xf86-input-keyboard" ,xf86-input-keyboard)
               ("python-pillow" ,python-pillow)
               ;; Optional dependencies.
+              ("libx264" ,libx264)
+              ("x265" ,x265)
+              ("libvpx" ,libvpx)
               ("python-rencode" ,python-rencode) ; For speed.
               ("python-numpy" ,python-numpy)
               ("python-pyopengl" ,python-pyopengl) ; Drawing acceleration.
-- 
2.30.0





Information forwarded to guix-patches <at> gnu.org:
bug#45908; Package guix-patches. (Mon, 18 Jan 2021 09:55:01 GMT) Full text and rfc822 format available.

Message #8 received at 45908 <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Michael Rohleder <mike <at> rohleder.de>
Cc: 45908 <at> debbugs.gnu.org
Subject: Re: [bug#45908] [PATCH] gnu: xpra: Update to 4.0.6.
Date: Mon, 18 Jan 2021 11:54:06 +0200
[Message part 1 (text/plain, inline)]
Does this build without the extra inputs? If so, can you split this into
two patches, one for the upgrade and one to add the extra inputs?
Thanks!

On Sat, Jan 16, 2021 at 12:20:58AM +0100, Michael Rohleder wrote:
> * gnu/packages/xorg.scm (xpra): Update to 4.0.6.
> [inputs]: Add libx264, x265, libvpx to have more encoding options.
> ---
>  gnu/packages/xorg.scm | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
> index 8f84b894f6..900f6c925d 100644
> --- a/gnu/packages/xorg.scm
> +++ b/gnu/packages/xorg.scm
> @@ -23,7 +23,7 @@
>  ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe <at> gmail.com>
>  ;;; Copyright © 2020 Leo Prikler <leo.prikler <at> student.tugraz.at>
>  ;;; Copyright © 2020 Florian Pelz <pelzflorian <at> pelzflorian.de>
> -;;; Copyright © 2020 Michael Rohleder <mike <at> rohleder.de>
> +;;; Copyright © 2020, 2021 Michael Rohleder <mike <at> rohleder.de>
>  ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
>  ;;; Copyright © 2020 Jean-Baptiste Note <jean-baptiste.note <at> m4x.org>
>  ;;;
> @@ -6279,14 +6279,14 @@ basic eye-candy effects.")
>  (define-public xpra
>    (package
>      (name "xpra")
> -    (version "4.0.5")
> +    (version "4.0.6")
>      (source
>       (origin
>         (method url-fetch)
>         (uri (string-append "https://www.xpra.org/src/xpra-"
>                             version ".tar.xz"))
>         (sha256
> -        (base32 "11ml66z8vbc0fa567kkmp2j20l5l60aflnkrz5ay8arw3w92nmnz"))
> +        (base32 "1s49y2s75a8a70vj0micnmpic5zv1n32yjxy8fkxsqa6j5njyrww"))
>         (patches (search-patches "xpra-4.0.1-systemd-run.patch"))))
>      (build-system python-build-system)
>      ;; see also http://xpra.org/trac/wiki/Dependencies
> @@ -6313,6 +6313,9 @@ basic eye-candy effects.")
>                ("xf86-input-keyboard" ,xf86-input-keyboard)
>                ("python-pillow" ,python-pillow)
>                ;; Optional dependencies.
> +              ("libx264" ,libx264)
> +              ("x265" ,x265)
> +              ("libvpx" ,libvpx)
>                ("python-rencode" ,python-rencode) ; For speed.
>                ("python-numpy" ,python-numpy)
>                ("python-pyopengl" ,python-pyopengl) ; Drawing acceleration.
> -- 
> 2.30.0
> 
> 
> 
> 

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#45908; Package guix-patches. (Mon, 18 Jan 2021 16:05:02 GMT) Full text and rfc822 format available.

Message #11 received at 45908 <at> debbugs.gnu.org (full text, mbox):

From: Michael Rohleder <mike <at> rohleder.de>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: 45908 <at> debbugs.gnu.org
Subject: Re: [bug#45908] [PATCH] gnu: xpra: Update to 4.0.6.
Date: Mon, 18 Jan 2021 17:03:50 +0100
[Message part 1 (text/plain, inline)]
Hi Efraim,

Thank you for reviewing!

Efraim Flashner <efraim <at> flashner.co.il> writes:
> Does this build without the extra inputs? If so, can you split this into
> two patches, one for the upgrade and one to add the extra inputs?

Yes, they are independent.

[0001-gnu-xpra-Update-to-4.0.6.patch (text/x-patch, inline)]
>From 974edd786f172acdb374111468d37cd6ec8d51aa Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike <at> rohleder.de>
Date: Mon, 18 Jan 2021 16:45:29 +0100
Subject: [PATCH] gnu: xpra: Update to 4.0.6.

* gnu/packages/xorg.scm (xpra): Update to 4.0.6.
---
 gnu/packages/xorg.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 8f84b894f6..ef80b10e3a 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -23,7 +23,7 @@
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe <at> gmail.com>
 ;;; Copyright © 2020 Leo Prikler <leo.prikler <at> student.tugraz.at>
 ;;; Copyright © 2020 Florian Pelz <pelzflorian <at> pelzflorian.de>
-;;; Copyright © 2020 Michael Rohleder <mike <at> rohleder.de>
+;;; Copyright © 2020, 2021 Michael Rohleder <mike <at> rohleder.de>
 ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2020 Jean-Baptiste Note <jean-baptiste.note <at> m4x.org>
 ;;;
@@ -6279,14 +6279,14 @@ basic eye-candy effects.")
 (define-public xpra
   (package
     (name "xpra")
-    (version "4.0.5")
+    (version "4.0.6")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://www.xpra.org/src/xpra-"
                            version ".tar.xz"))
        (sha256
-        (base32 "11ml66z8vbc0fa567kkmp2j20l5l60aflnkrz5ay8arw3w92nmnz"))
+        (base32 "1s49y2s75a8a70vj0micnmpic5zv1n32yjxy8fkxsqa6j5njyrww"))
        (patches (search-patches "xpra-4.0.1-systemd-run.patch"))))
     (build-system python-build-system)
     ;; see also http://xpra.org/trac/wiki/Dependencies
-- 
2.30.0

[0001-gnu-xpra-Add-more-encoding-options.patch (text/x-patch, inline)]
>From 985e711a6d5b7c6306841bdc7a90686556228366 Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike <at> rohleder.de>
Date: Mon, 18 Jan 2021 16:53:26 +0100
Subject: [PATCH] gnu: xpra: Add more encoding options.

* gnu/packages/xorg.scm (xpra)[inputs]: Add libx264, x265, libvpx.
---
 gnu/packages/xorg.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index 8f84b894f6..c2fbba7e67 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -6313,6 +6313,9 @@ basic eye-candy effects.")
               ("xf86-input-keyboard" ,xf86-input-keyboard)
               ("python-pillow" ,python-pillow)
               ;; Optional dependencies.
+              ("libx264" ,libx264)
+              ("x265" ,x265)
+              ("libvpx" ,libvpx)
               ("python-rencode" ,python-rencode) ; For speed.
               ("python-numpy" ,python-numpy)
               ("python-pyopengl" ,python-pyopengl) ; Drawing acceleration.
-- 
2.30.0

[Message part 4 (text/plain, inline)]
-- 
APL is a mistake, carried through to perfection.  It is the language of the
future for the programming techniques of the past: it creates a new generation
of coding bums.
		-- Edsger W. Dijkstra, SIGPLAN Notices, Volume 17, Number 5
[signature.asc (application/pgp-signature, inline)]

Reply sent to Efraim Flashner <efraim <at> flashner.co.il>:
You have taken responsibility. (Tue, 19 Jan 2021 07:56:02 GMT) Full text and rfc822 format available.

Notification sent to Michael Rohleder <mike <at> rohleder.de>:
bug acknowledged by developer. (Tue, 19 Jan 2021 07:56:02 GMT) Full text and rfc822 format available.

Message #16 received at 45908-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Michael Rohleder <mike <at> rohleder.de>
Cc: 45908-done <at> debbugs.gnu.org
Subject: Re: [bug#45908] [PATCH] gnu: xpra: Update to 4.0.6.
Date: Tue, 19 Jan 2021 09:54:51 +0200
[Message part 1 (text/plain, inline)]
Thanks. Patches pushed!

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 16 Feb 2021 12:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 64 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.