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.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 72886 in the body.
You can then email your comments to 72886 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#72886; Package guix-patches. (Fri, 30 Aug 2024 08:29:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 30 Aug 2024 08:29:02 GMT) Full text and rfc822 format available.

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

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





Reply sent to Zheng Junjie <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Thu, 05 Sep 2024 16:56:01 GMT) Full text and rfc822 format available.

Notification sent to "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>:
bug acknowledged by developer. (Thu, 05 Sep 2024 16:56:01 GMT) Full text and rfc822 format available.

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

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 1 (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)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 04 Oct 2024 11:24:13 GMT) Full text and rfc822 format available.

This bug report was last modified 316 days ago.

Previous Next


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