[PATCH 0/3] gnu: pinentry: Update to 1.3.1.

  • Open
  • quality assurance status badge
Details
One participant
  • Sughosha
Owner
unassigned
Submitted by
Sughosha
Severity
normal
S
S
Sughosha wrote on 1 Jan 18:05 +0100
(address . guix-patches@gnu.org)(name . Sughosha)(address . sughosha@disroot.org)
cover.1735750724.git.sughosha@disroot.org
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
S
S
Sughosha wrote on 1 Jan 18:11 +0100
[PATCH 1/3] gnu: pinentry-tty: Update to 1.3.1.
(address . 75245@debbugs.gnu.org)(name . Sughosha)(address . sughosha@disroot.org)
75a2e55ad85de4055c9f7925b01b6d999aa5caf8.1735750724.git.sughosha@disroot.org
* 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(-)

Toggle diff (23 lines)
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
S
S
Sughosha wrote on 1 Jan 18:11 +0100
[PATCH 2/3] gnu: pinentry-qt: Switch to Qt6.
(address . 75245@debbugs.gnu.org)(name . Sughosha)(address . sughosha@disroot.org)
a98e8f67f0a5b5564ee6bb7d7edd7fe3772dc857.1735750724.git.sughosha@disroot.org
* 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(-)

Toggle diff (15 lines)
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
S
S
Sughosha wrote on 1 Jan 18:11 +0100
[PATCH 3/3] gnu: Add pinentry-qt5.
(address . 75245@debbugs.gnu.org)(name . Sughosha)(address . sughosha@disroot.org)
8501dd6366a3f04be75880128a18f0ef8fe4b186.1735750724.git.sughosha@disroot.org
* gnu/packages/gnupg.scm (pinentry-qt5): New variable.

Change-Id: Ia70f00002305ab8e1bd6b0edb0ee6ee84007bf8c
---
gnu/packages/gnupg.scm | 9 +++++++++
1 file changed, 9 insertions(+)

Toggle diff (22 lines)
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
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 75245@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 75245
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch