From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41458) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iI0sZ-0002NG-Pb for guix-patches@gnu.org; Tue, 08 Oct 2019 21:35:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iI0sY-0004o8-Gr for guix-patches@gnu.org; Tue, 08 Oct 2019 21:35:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42887) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iI0sY-0004o3-DJ for guix-patches@gnu.org; Tue, 08 Oct 2019 21:35:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iI0sY-0003VJ-AJ for guix-patches@gnu.org; Tue, 08 Oct 2019 21:35:02 -0400 Subject: [bug#37670] [PATCH] gnu: Add emacs-ssh-agency. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41421) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iI0rt-0002Jc-4B for guix-patches@gnu.org; Tue, 08 Oct 2019 21:34:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iI0rr-0004Ol-G4 for guix-patches@gnu.org; Tue, 08 Oct 2019 21:34:20 -0400 Received: from mx.kolabnow.com ([95.128.36.41]:18138) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iI0rr-0004OU-2Z for guix-patches@gnu.org; Tue, 08 Oct 2019 21:34:19 -0400 Received: from localhost (unknown [127.0.0.1]) by ext-mx-out002.mykolab.com (Postfix) with ESMTP id BAA4040C for ; Wed, 9 Oct 2019 03:34:14 +0200 (CEST) Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out002.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YXbfMJEZU1r5 for ; Wed, 9 Oct 2019 03:34:13 +0200 (CEST) Received: from int-mx003.mykolab.com (unknown [10.9.13.3]) by ext-mx-out002.mykolab.com (Postfix) with ESMTPS id 7D341339 for ; Wed, 9 Oct 2019 03:34:13 +0200 (CEST) Received: from ext-subm002.mykolab.com (unknown [10.9.6.2]) by int-mx003.mykolab.com (Postfix) with ESMTPS id 3E5F51F9C for ; Wed, 9 Oct 2019 03:34:13 +0200 (CEST) From: "LaFreniere\, Joseph" Date: Tue, 08 Oct 2019 20:34:06 -0500 Message-ID: <87y2xuya5t.fsf@lafreniere.xyz> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37670@debbugs.gnu.org --=-=-= Content-Type: text/plain; format=flowed Please find the patch attached. -- Joseph LaFreniere --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-ssh-agency.patch >From 9060255351353a2933d236992654c9dea52b026a Mon Sep 17 00:00:00 2001 From: Joseph LaFreniere Date: Sun, 25 Aug 2019 15:38:42 -0500 Subject: [PATCH] gnu: Add emacs-ssh-agency. * gnu/packages/emacs-xyz.scm (emacs-ssh-agency): New variable. --- gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 1b8ae47fc2..5a68f6417c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18741,6 +18741,34 @@ JIRA issue servers.") keybindings for skipping from host section to host section.") (license license:gpl3+)))) +(define-public emacs-ssh-agency + (package + (name "emacs-ssh-agency") + (version "0.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/magit/ssh-agency.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0895n7bss4wdydic1gflr03f2cwdyqywl16gvb599lpn288jhwvz")))) + (build-system emacs-build-system) + (propagated-inputs + `(("dash" ,emacs-dash))) + (home-page "https://github.com/magit/ssh-agency") + (synopsis "Manage @code{ssh-agent} from Emacs") + (description + "This package provides functions to startup @code{ssh-agent}, set the +needed environment variables in Emacs, prompt for passphrases from within +Emacs, and so that pushes and pulls from @code{magit} will not require +entering any passphrase. + +It can also be useful on Unix-like platforms to delay having to enter your +passphrase until the first time you push to a remote.") + (license license:gpl3+))) + (define-public emacs-tao-theme (let ((commit "c5107fbe7e752f4e58c2d2147ff18a1ebb12937c") (revision "0")) -- 2.22.0 --=-=-=--