all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#71418] [PATCH] gnu: pinentry-tty: Update to 1.3.0.
@ 2024-06-07 18:34 ashish.is--- via Guix-patches via
  2024-06-24  2:28 ` Maxim Cournoyer
  2024-06-24  3:55 ` [bug#71418] [PATCH v2] " ashish.is--- via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: ashish.is--- via Guix-patches via @ 2024-06-07 18:34 UTC (permalink / raw)
  To: 71418; +Cc: Ashish SHUKLA

From: Ashish SHUKLA <ashish.is@lostca.se>

* gnu/packages/gnupg.scm (pinentry-tty): Update to 1.3.0

* gnu/packages/gnupg.scm (pinentry-qt): Update to 1.3.0
  [inputs] also prepend qtbase for Qt6 support

Change-Id: I866bef0538fd5068e9e82d10a9e87aa1515826a5
---
 gnu/packages/gnupg.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index e7c583a266..390a8dbb1e 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -839,14 +839,14 @@ (define-public signing-party
 (define-public pinentry-tty
   (package
     (name "pinentry-tty")
-    (version "1.2.1")
+    (version "1.3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnupg/pinentry/pinentry-"
                                   version ".tar.bz2"))
               (sha256
                (base32
-                "0rs019acfj7sr4pvc847nk42v5mba9ixqmd98nwqy8w5b9g1hyj5"))))
+                "1pllchqwl6wq4q4dpsarcm9m2cwjb733p6irxpyz55vmdqidag4v"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags '("--enable-pinentry-tty")))
@@ -911,7 +911,7 @@ (define-public pinentry-qt
      `(#:configure-flags '("--enable-fallback-curses")))
     (inputs
      (modify-inputs (package-inputs pinentry-tty)
-       (prepend qtbase-5)))
+       (prepend qtbase qtbase-5)))
   (description
    "Pinentry provides a console and a Qt GUI that allows users to enter a
 passphrase when @code{gpg} is run and needs it.")))

base-commit: 580d77d0fb12448ef1621699cc0c56e787e2aadb
-- 
2.45.2





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

* [bug#71418] [PATCH] gnu: pinentry-tty: Update to 1.3.0.
  2024-06-07 18:34 [bug#71418] [PATCH] gnu: pinentry-tty: Update to 1.3.0 ashish.is--- via Guix-patches via
@ 2024-06-24  2:28 ` Maxim Cournoyer
  2024-06-24  3:38   ` Ashish SHUKLA via Guix-patches via
  2024-06-24  3:55 ` [bug#71418] [PATCH v2] " ashish.is--- via Guix-patches via
  1 sibling, 1 reply; 4+ messages in thread
From: Maxim Cournoyer @ 2024-06-24  2:28 UTC (permalink / raw)
  To: ashish.is; +Cc: 71418

Hello,

ashish.is@lostca.se writes:

> From: Ashish SHUKLA <ashish.is@lostca.se>
>
> * gnu/packages/gnupg.scm (pinentry-tty): Update to 1.3.0
>
> * gnu/packages/gnupg.scm (pinentry-qt): Update to 1.3.0
>   [inputs] also prepend qtbase for Qt6 support

Perhaps we can target only Qt6?  It seems overly big in terms of closure
size to target two versions of Qt at the same time.

What do you think?

-- 
Thanks,
Maxim




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

* [bug#71418] [PATCH] gnu: pinentry-tty: Update to 1.3.0.
  2024-06-24  2:28 ` Maxim Cournoyer
@ 2024-06-24  3:38   ` Ashish SHUKLA via Guix-patches via
  0 siblings, 0 replies; 4+ messages in thread
From: Ashish SHUKLA via Guix-patches via @ 2024-06-24  3:38 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: 71418

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

On Mon Jun 24, 2024 at 4:28 AM CEST, Maxim Cournoyer wrote:
> Hello,
>
> ashish.is@lostca.se writes:
>
> > From: Ashish SHUKLA <ashish.is@lostca.se>
> >
> > * gnu/packages/gnupg.scm (pinentry-tty): Update to 1.3.0
> >
> > * gnu/packages/gnupg.scm (pinentry-qt): Update to 1.3.0
> >   [inputs] also prepend qtbase for Qt6 support
>
> Perhaps we can target only Qt6?  It seems overly big in terms of closure
> size to target two versions of Qt at the same time.

Sure, that sounds fair. I will submit a commit shortly.

Thanks!
-- 
Ashish SHUKLA | GPG: F682 CDCC 39DC 0FEA E116  20B6 C746 CFA9 E74F A4B0

"If I destroy you, what business is it of yours ?" (Dark Forest, Liu Cixin)

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

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

* [bug#71418] [PATCH v2] gnu: pinentry-tty: Update to 1.3.0.
  2024-06-07 18:34 [bug#71418] [PATCH] gnu: pinentry-tty: Update to 1.3.0 ashish.is--- via Guix-patches via
  2024-06-24  2:28 ` Maxim Cournoyer
@ 2024-06-24  3:55 ` ashish.is--- via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: ashish.is--- via Guix-patches via @ 2024-06-24  3:55 UTC (permalink / raw)
  To: 71418; +Cc: Ashish SHUKLA

From: Ashish SHUKLA <ashish.is@lostca.se>

* gnu/packages/gnupg.scm (pinentry-tty): Update to 1.3.0

* gnu/packages/gnupg.scm (pinentry-qt): Update to 1.3.0
  [inputs] also replace qtbase-5 with qtbase for Qt6 support

Change-Id: Ibe7fde7d2675e709e4dc36610e6f54c6cefe14d8
---
 gnu/packages/gnupg.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index e7c583a266..e02bc20dfa 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -839,14 +839,14 @@ (define-public signing-party
 (define-public pinentry-tty
   (package
     (name "pinentry-tty")
-    (version "1.2.1")
+    (version "1.3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://gnupg/pinentry/pinentry-"
                                   version ".tar.bz2"))
               (sha256
                (base32
-                "0rs019acfj7sr4pvc847nk42v5mba9ixqmd98nwqy8w5b9g1hyj5"))))
+                "1pllchqwl6wq4q4dpsarcm9m2cwjb733p6irxpyz55vmdqidag4v"))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags '("--enable-pinentry-tty")))
@@ -911,7 +911,7 @@ (define-public pinentry-qt
      `(#:configure-flags '("--enable-fallback-curses")))
     (inputs
      (modify-inputs (package-inputs pinentry-tty)
-       (prepend qtbase-5)))
+       (prepend qtbase)))
   (description
    "Pinentry provides a console and a Qt GUI that allows users to enter a
 passphrase when @code{gpg} is run and needs it.")))

base-commit: deac7dd04156b9358ea33200593fd260760f9d91
-- 
2.45.2





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

end of thread, other threads:[~2024-06-24  3:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-07 18:34 [bug#71418] [PATCH] gnu: pinentry-tty: Update to 1.3.0 ashish.is--- via Guix-patches via
2024-06-24  2:28 ` Maxim Cournoyer
2024-06-24  3:38   ` Ashish SHUKLA via Guix-patches via
2024-06-24  3:55 ` [bug#71418] [PATCH v2] " ashish.is--- via Guix-patches via

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.