GNU bug report logs - #72886
[PATCH] gnu: remmina: Update to 1.4.35.

Previous Next

Package: guix-patches;

Reported by: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>

Date: Fri, 30 Aug 2024 08:29:01 UTC

Severity: normal

Tags: patch

Done: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
Subject: bug#72886: closed (Re: [bug#72886] [PATCH] gnu: remmina: Update
 to 1.4.35.)
Date: Thu, 05 Sep 2024 16:56:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#72886: [PATCH] gnu: remmina: Update to 1.4.35.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 72886 <at> debbugs.gnu.org.

-- 
72886: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=72886
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
Cc: 72886-done <at> debbugs.gnu.org
Subject: Re: [bug#72886] [PATCH] gnu: remmina: Update to 1.4.35.
Date: Fri, 06 Sep 2024 00:45:52 +0800
[Message part 3 (text/plain, inline)]
"Artyom V. Poptsov" <poptsov.artyom <at> gmail.com> writes:

> * gnu/packages/vnc.scm (remmina): Update to 1.4.35.
> [inputs]: Add "bash-minimal" (for "wrap-program" to work properly as advised
> by "guix lint") and "curl".
>
> Change-Id: If81a133beb15187f717f082b68eff23d24dc8dba
> ---
>  gnu/packages/vnc.scm | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/vnc.scm b/gnu/packages/vnc.scm
> index c912916cfb..9d75bc0c7c 100644
> --- a/gnu/packages/vnc.scm
> +++ b/gnu/packages/vnc.scm
> @@ -8,6 +8,7 @@
>  ;;; Copyright © 2022, 2024 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
>  ;;; Copyright © 2022 Mehmet Tekman <mtekman89 <at> gmail.com>
>  ;;; Copyright @ 2022, Kitzman <kitzman <at> disroot.org>
> +;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -40,11 +41,13 @@ (define-module (gnu packages vnc)
>    #:use-module (gnu packages autotools)
>    #:use-module (gnu packages avahi)
>    #:use-module (gnu packages base)
> +  #:use-module (gnu packages bash)
>    #:use-module (gnu packages c)
>    #:use-module (gnu packages cmake)
>    #:use-module (gnu packages compression)
>    #:use-module (gnu packages crypto)
>    #:use-module (gnu packages cups)
> +  #:use-module (gnu packages curl)
>    #:use-module (gnu packages fltk)
>    #:use-module (gnu packages fontutils)
>    #:use-module (gnu packages freedesktop)
> @@ -78,7 +81,7 @@ (define-module (gnu packages vnc)
>  (define-public remmina
>    (package
>      (name "remmina")
> -    (version "1.4.32")
> +    (version "1.4.35")
>      (source
>       (origin
>         (method git-fetch)
> @@ -88,7 +91,7 @@ (define-public remmina
>           (commit (string-append "v" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "1gfmbcgvwakhy539hh2fpws3j7ljrfkckar5fx8sifig9n7wsm49"))))
> +        (base32 "0wsjhmazmv888a6xs0q6llfj6v81d7y9p18w7xc2116235q9ygfk"))))
>      (build-system cmake-build-system)
>      (arguments
>       `(#:tests? #f                      ; No target
> @@ -128,11 +131,13 @@ (define-public remmina
>             intltool
>             pkg-config))
>      (inputs
> -     (list libappindicator
> +     (list bash-minimal
> +           libappindicator
>             at-spi2-core
>             avahi
>             cairo
>             cups
> +           curl
>             ffmpeg
>             freerdp                      ; for rdp plugin
>             libgcrypt
>
> base-commit: d5312370b46ace47e138d84e1bb28e5651cee94b

adjust and push.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
Subject: [PATCH] gnu: remmina: Update to 1.4.35.
Date: Fri, 30 Aug 2024 11:27:05 +0300
* gnu/packages/vnc.scm (remmina): Update to 1.4.35.
[inputs]: Add "bash-minimal" (for "wrap-program" to work properly as advised
by "guix lint") and "curl".

Change-Id: If81a133beb15187f717f082b68eff23d24dc8dba
---
 gnu/packages/vnc.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/vnc.scm b/gnu/packages/vnc.scm
index c912916cfb..9d75bc0c7c 100644
--- a/gnu/packages/vnc.scm
+++ b/gnu/packages/vnc.scm
@@ -8,6 +8,7 @@
 ;;; Copyright © 2022, 2024 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
 ;;; Copyright © 2022 Mehmet Tekman <mtekman89 <at> gmail.com>
 ;;; Copyright @ 2022, Kitzman <kitzman <at> disroot.org>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -40,11 +41,13 @@ (define-module (gnu packages vnc)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages avahi)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages c)
   #:use-module (gnu packages cmake)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages crypto)
   #:use-module (gnu packages cups)
+  #:use-module (gnu packages curl)
   #:use-module (gnu packages fltk)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages freedesktop)
@@ -78,7 +81,7 @@ (define-module (gnu packages vnc)
 (define-public remmina
   (package
     (name "remmina")
-    (version "1.4.32")
+    (version "1.4.35")
     (source
      (origin
        (method git-fetch)
@@ -88,7 +91,7 @@ (define-public remmina
          (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1gfmbcgvwakhy539hh2fpws3j7ljrfkckar5fx8sifig9n7wsm49"))))
+        (base32 "0wsjhmazmv888a6xs0q6llfj6v81d7y9p18w7xc2116235q9ygfk"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f                      ; No target
@@ -128,11 +131,13 @@ (define-public remmina
            intltool
            pkg-config))
     (inputs
-     (list libappindicator
+     (list bash-minimal
+           libappindicator
            at-spi2-core
            avahi
            cairo
            cups
+           curl
            ffmpeg
            freerdp                      ; for rdp plugin
            libgcrypt

base-commit: d5312370b46ace47e138d84e1bb28e5651cee94b
-- 
2.45.2




This bug report was last modified 317 days ago.

Previous Next


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