From unknown Mon Jun 23 00:37:22 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61087] [PATCH] gnu: Add x11-ssh-askpass. Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 26 Jan 2023 22:25:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 61087 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61087@debbugs.gnu.org Cc: Simon Streit X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.167477190030559 (code B ref -1); Thu, 26 Jan 2023 22:25:01 +0000 Received: (at submit) by debbugs.gnu.org; 26 Jan 2023 22:25:00 +0000 Received: from localhost ([127.0.0.1]:36380 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pLAfw-0007wl-2l for submit@debbugs.gnu.org; Thu, 26 Jan 2023 17:24:59 -0500 Received: from lists.gnu.org ([209.51.188.17]:42212) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pLAfq-0007wX-F7 for submit@debbugs.gnu.org; Thu, 26 Jan 2023 17:24:54 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pLAfq-0003Cx-6Z for guix-patches@gnu.org; Thu, 26 Jan 2023 17:24:50 -0500 Received: from smtprelay01.ispgateway.de ([80.67.31.28]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pLAfi-0005cR-7w for guix-patches@gnu.org; Thu, 26 Jan 2023 17:24:47 -0500 Received: from [79.252.146.201] (helo=motorball.tsis.home.arpa) by smtprelay01.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1pLAiA-0001mi-8O; Thu, 26 Jan 2023 23:27:14 +0100 From: Simon Streit Date: Thu, 26 Jan 2023 23:24:32 +0100 Message-Id: <20230126222432.10812-1-simon@netpanic.org> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn Received-SPF: none client-ip=80.67.31.28; envelope-from=simon@netpanic.org; helo=smtprelay01.ispgateway.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/ssh.scm (x11-ssh-askpass): New variable. --- gnu/packages/ssh.scm | 59 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 2f6874f811..bd2f024689 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2020 Oleg Pykhalov ;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer ;;; Copyright © 2021 Brice Waegeneire +;;; Copyright © 2023 Simon Streit ;;; ;;; This file is part of GNU Guix. ;;; @@ -940,3 +941,61 @@ (define-public webssh @item Modern browsers are supported. @end itemize") (license license:expat))) + +(define-public x11-ssh-askpass + (package + (name "x11-ssh-askpass") + (version "1.2.4.1") + (source + (origin + (method url-fetch) + ;; The project home page seams to be offline. + (uri (string-append "https://pkgs.fedoraproject.org/repo/pkgs/openssh/" + name "-" version ".tar.gz" + "/8f2e41f3f7eaa8543a2440454637f3c3/" + name "-" version ".tar.gz")) + (sha256 + (base32 "124c1frwvdmg4nv8xqv435ibjhj2y8xc1bmfr6i8a8g75b1y63b2")))) + (build-system gnu-build-system) + (native-inputs (list imake)) + (inputs (list libxt)) + (arguments + `(#:make-flags + (let ((out (assoc-ref %outputs "out"))) + (list (string-append "BINDIR=" out "/libexec") + (string-append "MANDIR=" out "/share/man"))) + #:tests? #f + #:configure-flags (list (string-append "--mandir=" + "/usr/share/man/test") + (string-append "--libexecdir=" + "/usr/lib/ssh/test") + (string-append "--with-app-defaults-dir=" + "/usr/share/X11/app-defaults/test")) + #:phases + (modify-phases %standard-phases + (add-after 'configure 'xmkmf + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((imake (assoc-ref inputs "imake")) + (out (assoc-ref outputs "out"))) + (invoke "xmkmf") + (substitute* "Makefile" + ;; These imake variables somehow remain undefined + (("DefaultGcc2[[:graph:]]*Opt") "-O2") + ;; Reset a few variable defaults that are set in imake templates + ((imake) out) + (("(MANPATH = )[[:graph:]]*" _ front) + (string-append front out "/share/man")))))) + (add-after 'xmkmf 'make-includes + (lambda _ + (invoke "make" "includes"))) + (add-after 'install 'install/doc + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (lambda _ + (invoke "make" + (string-append "MANDIR=" out "/share/man") + "install.man")))))))) + (home-page "http://www.jmknoble.net/software/x11-ssh-askpass/") + (synopsis "Lightweight passphrase dialog for SSH") + (description "An X11-based pass-phrase dialog for use with OpenSSH.") + (license license:gpl2+))) -- 2.39.1 From unknown Mon Jun 23 00:37:22 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Simon Streit Subject: bug#61087: closed (Re: [bug#61087] [PATCH] gnu: Add x11-ssh-askpass.) Message-ID: References: <87lekoo37e.fsf@nicolasgoaziou.fr> <20230126222432.10812-1-simon@netpanic.org> X-Gnu-PR-Message: they-closed 61087 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 61087@debbugs.gnu.org Date: Thu, 23 Feb 2023 14:41:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1677163262-26749-1" This is a multi-part message in MIME format... ------------=_1677163262-26749-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #61087: [PATCH] gnu: Add x11-ssh-askpass. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 61087@debbugs.gnu.org. --=20 61087: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D61087 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1677163262-26749-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 61087-done) by debbugs.gnu.org; 23 Feb 2023 14:40:19 +0000 Received: from localhost ([127.0.0.1]:33540 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVClf-0006w2-F8 for submit@debbugs.gnu.org; Thu, 23 Feb 2023 09:40:19 -0500 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:51957) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVCld-0006vo-FY for 61087-done@debbugs.gnu.org; Thu, 23 Feb 2023 09:40:17 -0500 Received: (Authenticated sender: admin@nicolasgoaziou.fr) by mail.gandi.net (Postfix) with ESMTPSA id DD845C000D; Thu, 23 Feb 2023 14:40:08 +0000 (UTC) From: Nicolas Goaziou To: Simon Streit Subject: Re: [bug#61087] [PATCH] gnu: Add x11-ssh-askpass. References: <20230126222432.10812-1-simon@netpanic.org> Date: Thu, 23 Feb 2023 15:40:05 +0100 In-Reply-To: <20230126222432.10812-1-simon@netpanic.org> (Simon Streit's message of "Thu, 26 Jan 2023 23:24:32 +0100") Message-ID: <87lekoo37e.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 61087-done Cc: 61087-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello, Simon Streit writes: > * gnu/packages/ssh.scm (x11-ssh-askpass): New variable. Applied (with G-exps, and a description with full sentences). Thank you. Note that home page does not exist. Do you have an idea about a replacement for it? Regards, -- Nicolas Goaziou ------------=_1677163262-26749-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 26 Jan 2023 22:25:00 +0000 Received: from localhost ([127.0.0.1]:36380 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pLAfw-0007wl-2l for submit@debbugs.gnu.org; Thu, 26 Jan 2023 17:24:59 -0500 Received: from lists.gnu.org ([209.51.188.17]:42212) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pLAfq-0007wX-F7 for submit@debbugs.gnu.org; Thu, 26 Jan 2023 17:24:54 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pLAfq-0003Cx-6Z for guix-patches@gnu.org; Thu, 26 Jan 2023 17:24:50 -0500 Received: from smtprelay01.ispgateway.de ([80.67.31.28]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pLAfi-0005cR-7w for guix-patches@gnu.org; Thu, 26 Jan 2023 17:24:47 -0500 Received: from [79.252.146.201] (helo=motorball.tsis.home.arpa) by smtprelay01.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.94.2) (envelope-from ) id 1pLAiA-0001mi-8O; Thu, 26 Jan 2023 23:27:14 +0100 From: Simon Streit To: guix-patches@gnu.org Subject: [PATCH] gnu: Add x11-ssh-askpass. Date: Thu, 26 Jan 2023 23:24:32 +0100 Message-Id: <20230126222432.10812-1-simon@netpanic.org> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn Received-SPF: none client-ip=80.67.31.28; envelope-from=simon@netpanic.org; helo=smtprelay01.ispgateway.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: Simon Streit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * gnu/packages/ssh.scm (x11-ssh-askpass): New variable. --- gnu/packages/ssh.scm | 59 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 2f6874f811..bd2f024689 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2020 Oleg Pykhalov ;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer ;;; Copyright © 2021 Brice Waegeneire +;;; Copyright © 2023 Simon Streit ;;; ;;; This file is part of GNU Guix. ;;; @@ -940,3 +941,61 @@ (define-public webssh @item Modern browsers are supported. @end itemize") (license license:expat))) + +(define-public x11-ssh-askpass + (package + (name "x11-ssh-askpass") + (version "1.2.4.1") + (source + (origin + (method url-fetch) + ;; The project home page seams to be offline. + (uri (string-append "https://pkgs.fedoraproject.org/repo/pkgs/openssh/" + name "-" version ".tar.gz" + "/8f2e41f3f7eaa8543a2440454637f3c3/" + name "-" version ".tar.gz")) + (sha256 + (base32 "124c1frwvdmg4nv8xqv435ibjhj2y8xc1bmfr6i8a8g75b1y63b2")))) + (build-system gnu-build-system) + (native-inputs (list imake)) + (inputs (list libxt)) + (arguments + `(#:make-flags + (let ((out (assoc-ref %outputs "out"))) + (list (string-append "BINDIR=" out "/libexec") + (string-append "MANDIR=" out "/share/man"))) + #:tests? #f + #:configure-flags (list (string-append "--mandir=" + "/usr/share/man/test") + (string-append "--libexecdir=" + "/usr/lib/ssh/test") + (string-append "--with-app-defaults-dir=" + "/usr/share/X11/app-defaults/test")) + #:phases + (modify-phases %standard-phases + (add-after 'configure 'xmkmf + (lambda* (#:key inputs outputs #:allow-other-keys) + (let ((imake (assoc-ref inputs "imake")) + (out (assoc-ref outputs "out"))) + (invoke "xmkmf") + (substitute* "Makefile" + ;; These imake variables somehow remain undefined + (("DefaultGcc2[[:graph:]]*Opt") "-O2") + ;; Reset a few variable defaults that are set in imake templates + ((imake) out) + (("(MANPATH = )[[:graph:]]*" _ front) + (string-append front out "/share/man")))))) + (add-after 'xmkmf 'make-includes + (lambda _ + (invoke "make" "includes"))) + (add-after 'install 'install/doc + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (lambda _ + (invoke "make" + (string-append "MANDIR=" out "/share/man") + "install.man")))))))) + (home-page "http://www.jmknoble.net/software/x11-ssh-askpass/") + (synopsis "Lightweight passphrase dialog for SSH") + (description "An X11-based pass-phrase dialog for use with OpenSSH.") + (license license:gpl2+))) -- 2.39.1 ------------=_1677163262-26749-1-- From unknown Mon Jun 23 00:37:22 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#61087] [PATCH] gnu: Add x11-ssh-askpass. Resent-From: Simon Streit Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 23 Feb 2023 20:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61087 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Nicolas Goaziou Cc: 61087-done@debbugs.gnu.org Received: via spool by 61087-done@debbugs.gnu.org id=D61087.167718551911612 (code D ref 61087); Thu, 23 Feb 2023 20:52:01 +0000 Received: (at 61087-done) by debbugs.gnu.org; 23 Feb 2023 20:51:59 +0000 Received: from localhost ([127.0.0.1]:35459 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVIZJ-00031C-43 for submit@debbugs.gnu.org; Thu, 23 Feb 2023 15:51:58 -0500 Received: from smtprelay06.ispgateway.de ([80.67.31.102]:37025) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVIZE-000310-EZ for 61087-done@debbugs.gnu.org; Thu, 23 Feb 2023 15:51:56 -0500 Received: from [79.252.146.178] (helo=milk) by smtprelay06.ispgateway.de with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pVIZA-0000jG-TY; Thu, 23 Feb 2023 21:51:48 +0100 From: Simon Streit References: <20230126222432.10812-1-simon@netpanic.org> <87lekoo37e.fsf@nicolasgoaziou.fr> Gcc: nnimap+df:INBOX Date: Thu, 23 Feb 2023 21:51:48 +0100 In-Reply-To: <87lekoo37e.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Thu, 23 Feb 2023 15:40:05 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Df-Sender: c2ltb25AbmV0cGFuaWMub3Jn X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello Nicolas, Nicolas Goaziou writes: > Applied (with G-exps, and a description with full sentences). Thank > you. Thank you! > Note that home page does not exist. Do you have an idea about a > replacement for it? There hasn't been a release since at least Debian Sarge [1, 2]. Sadly no. I presume the project has been abandoned as it has not received an update in a long time. Maybe since at least Debian Sarge [1, 2]. I looked at some packages from other distributions and they still have a reference to the original home-page and source the package from, as Arch has done, from fedoraproject.org. Which is why I also sourced the package from too. I don't know of a fork that is currently extending the code either. Kind regards Simon [1] https://sources.debian.org/copyright/license/ssh-askpass/1:1.2.4.1-3/ [2] https://sources.debian.org/copyright/license/ssh-askpass/