From unknown Mon Jun 23 00:34:16 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#61087 <61087@debbugs.gnu.org> To: bug#61087 <61087@debbugs.gnu.org> Subject: Status: [PATCH] gnu: Add x11-ssh-askpass. Reply-To: bug#61087 <61087@debbugs.gnu.org> Date: Mon, 23 Jun 2025 07:34:16 +0000 retitle 61087 [PATCH] gnu: Add x11-ssh-askpass. reassign 61087 guix-patches submitter 61087 Simon Streit severity 61087 normal tag 61087 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 26 17:24:59 2023 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 From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 23 09:40:19 2023 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 From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 23 15:51:58 2023 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 To: Nicolas Goaziou Subject: Re: [bug#61087] [PATCH] gnu: Add x11-ssh-askpass. 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-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.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/ From unknown Mon Jun 23 00:34:16 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 24 Mar 2023 11:24:12 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator