* [bug#75245] [PATCH 0/3] gnu: pinentry: Update to 1.3.1.
@ 2025-01-01 17:05 Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 1/3] gnu: pinentry-tty: " Sughosha via Guix-patches via
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2025-01-01 17:05 UTC (permalink / raw)
To: 75245; +Cc: Sughosha
This patch series updates pinentry-tty, pinentry-emacs, pinentry-gtk2,
pinentry-gnome3, pinentry-qt and pinentry-efl to 1.3.1 and adds pinentry-qt5.
Sughosha (3):
gnu: pinentry-tty: Update to 1.3.1.
gnu: pinentry-qt: Switch to Qt6.
gnu: Add pinentry-qt5.
gnu/packages/gnupg.scm | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
base-commit: 3ea95d7736be1f807d578d17c174b0976543b333
--
2.47.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#75245] [PATCH 1/3] gnu: pinentry-tty: Update to 1.3.1.
2025-01-01 17:05 [bug#75245] [PATCH 0/3] gnu: pinentry: Update to 1.3.1 Sughosha via Guix-patches via
@ 2025-01-01 17:11 ` Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 2/3] gnu: pinentry-qt: Switch to Qt6 Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 3/3] gnu: Add pinentry-qt5 Sughosha via Guix-patches via
2 siblings, 0 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2025-01-01 17:11 UTC (permalink / raw)
To: 75245; +Cc: Sughosha
* gnu/packages/gnupg.scm (pinentry-tty): Update to 1.3.1.
Change-Id: Ia93ffb36c8f99233f16866a7f3fddf7d73d7750f
---
gnu/packages/gnupg.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index fbf1e5ed54..d713358900 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -867,14 +867,14 @@ (define-public signing-party
(define-public pinentry-tty
(package
(name "pinentry-tty")
- (version "1.2.1")
+ (version "1.3.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnupg/pinentry/pinentry-"
version ".tar.bz2"))
(sha256
(base32
- "0rs019acfj7sr4pvc847nk42v5mba9ixqmd98nwqy8w5b9g1hyj5"))))
+ "014crqmr05lsfv13sj6jkcn6w1rvwpxc5hwn32mhg413qwkywwmw"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags '("--enable-pinentry-tty")))
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#75245] [PATCH 2/3] gnu: pinentry-qt: Switch to Qt6.
2025-01-01 17:05 [bug#75245] [PATCH 0/3] gnu: pinentry: Update to 1.3.1 Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 1/3] gnu: pinentry-tty: " Sughosha via Guix-patches via
@ 2025-01-01 17:11 ` Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 3/3] gnu: Add pinentry-qt5 Sughosha via Guix-patches via
2 siblings, 0 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2025-01-01 17:11 UTC (permalink / raw)
To: 75245; +Cc: Sughosha
* gnu/packages/gnupg.scm (pinentry-qt)[inputs]: Replace qtbase-5 with qtbase;
add qtwayland.
Change-Id: Id4cd445e84ae2f15384cf840bf8232d64f2a3f60
---
gnu/packages/gnupg.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index d713358900..4f1914d99d 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -939,7 +939,7 @@ (define-public pinentry-qt
`(#:configure-flags '("--enable-fallback-curses")))
(inputs
(modify-inputs (package-inputs pinentry-tty)
- (prepend qtbase-5)))
+ (prepend qtbase qtwayland)))
(description
"Pinentry provides a console and a Qt GUI that allows users to enter a
passphrase when @code{gpg} is run and needs it.")))
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#75245] [PATCH 3/3] gnu: Add pinentry-qt5.
2025-01-01 17:05 [bug#75245] [PATCH 0/3] gnu: pinentry: Update to 1.3.1 Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 1/3] gnu: pinentry-tty: " Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 2/3] gnu: pinentry-qt: Switch to Qt6 Sughosha via Guix-patches via
@ 2025-01-01 17:11 ` Sughosha via Guix-patches via
2 siblings, 0 replies; 4+ messages in thread
From: Sughosha via Guix-patches via @ 2025-01-01 17:11 UTC (permalink / raw)
To: 75245; +Cc: Sughosha
* gnu/packages/gnupg.scm (pinentry-qt5): New variable.
Change-Id: Ia70f00002305ab8e1bd6b0edb0ee6ee84007bf8c
---
gnu/packages/gnupg.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 4f1914d99d..ad7b1e2e9e 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -944,6 +944,15 @@ (define-public pinentry-qt
"Pinentry provides a console and a Qt GUI that allows users to enter a
passphrase when @code{gpg} is run and needs it.")))
+(define-public pinentry-qt5
+ (package
+ (inherit pinentry-qt)
+ (name "pinentry-qt5")
+ (inputs
+ (modify-inputs (package-inputs pinentry-qt)
+ (replace "qtbase" qtbase-5)
+ (replace "qtwayland" qtwayland-5)))))
+
(define-public pinentry-efl
(package
(inherit pinentry-tty)
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-01-01 17:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-01 17:05 [bug#75245] [PATCH 0/3] gnu: pinentry: Update to 1.3.1 Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 1/3] gnu: pinentry-tty: " Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 2/3] gnu: pinentry-qt: Switch to Qt6 Sughosha via Guix-patches via
2025-01-01 17:11 ` [bug#75245] [PATCH 3/3] gnu: Add pinentry-qt5 Sughosha 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.