From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47035) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f8seb-0000u3-HS for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f8seZ-0004Sd-4A for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51739) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f8seY-0004SZ-WA for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f8seY-0001Go-Px for guix-patches@gnu.org; Wed, 18 Apr 2018 15:22:02 -0400 Subject: [bug#31212] [PATCH 3/9] gnu: Add java-jsch-agentproxy-sshagent. Resent-Message-ID: From: Julien Lepiller Date: Wed, 18 Apr 2018 21:21:14 +0200 Message-Id: <20180418192120.11603-3-julien@lepiller.eu> In-Reply-To: <20180418192120.11603-1-julien@lepiller.eu> References: <20180418210458.306490ed@lepiller.eu> <20180418192120.11603-1-julien@lepiller.eu> 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: 31212@debbugs.gnu.org * gnu/packages/java.scm (java-jsch-agentproxy-sshagent): New variable. --- gnu/packages/java.scm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index b32134daf..1ed965d3d 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -9603,8 +9603,23 @@ simplify native access."))) #:source-dir "jsch-agent-proxy-core/src/main/java" #:tests? #f)); no tests (home-page "https://github.com/ymnk/jsch-agent-proxy") - (synopsis "Proxy to ssh-agent and Pageant in Java") + (synopsis "Core component of the proxy to ssh-agent and Pageant in Java") (description "jsch-agent-proxy is a proxy program to OpenSSH's ssh-agent and Pageant included Putty. It will be easily integrated into JSch, and users will be allowed to use these programs for authentication.") (license license:bsd-3))) + +(define-public java-jsch-agentproxy-sshagent + (package + (inherit java-jsch-agentproxy-core) + (name "java-jsch-agentproxy-sshagent") + (arguments + `(#:jar-name "jsch-agentproxy-sshagent.jar" + #:source-dir "jsch-agent-proxy-sshagent/src/main/java" + #:tests? #f)); no tests + (inputs + `(("java-jsch-agentproxy-core" ,java-jsch-agentproxy-core))) + (synopsis "Proxy to ssh-agent") + (description "jsch-agent-proxy is a proxy program to OpenSSH's ssh-agent +and Pageant included in Putty. This component contains the code for a proxy to +ssh-agent."))) -- 2.17.0