emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#72886: closed ([PATCH] gnu: remmina: Update to 1.4.35.)


From: GNU bug Tracking System
Subject: bug#72886: closed ([PATCH] gnu: remmina: Update to 1.4.35.)
Date: Thu, 05 Sep 2024 16:56:01 +0000

Your message dated Fri, 06 Sep 2024 00:45:52 +0800
with message-id <87tteu122n.fsf@iscas.ac.cn>
and subject line Re: [bug#72886] [PATCH] gnu: remmina: Update to 1.4.35.
has caused the debbugs.gnu.org bug report #72886,
regarding [PATCH] gnu: remmina: Update to 1.4.35.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
72886: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=72886
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- 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@gmail.com>
 ;;; Copyright © 2022 Mehmet Tekman <mtekman89@gmail.com>
 ;;; Copyright @ 2022, Kitzman <kitzman@disroot.org>
+;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@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




--- End Message ---
--- Begin Message --- Subject: Re: [bug#72886] [PATCH] gnu: remmina: Update to 1.4.35. Date: Fri, 06 Sep 2024 00:45:52 +0800
"Artyom V. Poptsov" <poptsov.artyom@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@gmail.com>
>  ;;; Copyright © 2022 Mehmet Tekman <mtekman89@gmail.com>
>  ;;; Copyright @ 2022, Kitzman <kitzman@disroot.org>
> +;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@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.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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