From 9b779e8ca8363eface0eeb6e9888c02b731625a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Tue, 28 Apr 2020 03:31:41 +0000 Subject: [PATCH] New port: security/rubygem-net-ssh-krb Add Kerberos (password-less) authentication capabilities to Net::SSH, without the need for modifying Net::SSH source code. This is a great way to help get Capistrano to be accepted in mid-to-large size enterprises with strict security rules. No more getting locked out of the network because you mis-typed your password - even if your company prohibits public key or host-based authentication. If your organization uses Kerberos (many mid-to-large size corporations do), you can use this package to get password-less authentication without breaking your company's security guidelines. WWW: http://rubygems.org/gems/net-ssh-krb --- security/Makefile | 1 + security/rubygem-net-ssh-krb/Makefile | 20 ++++++++++++++++++++ security/rubygem-net-ssh-krb/distinfo | 3 +++ security/rubygem-net-ssh-krb/pkg-descr | 13 +++++++++++++ 4 files changed, 37 insertions(+) create mode 100644 security/rubygem-net-ssh-krb/Makefile create mode 100644 security/rubygem-net-ssh-krb/distinfo create mode 100644 security/rubygem-net-ssh-krb/pkg-descr diff --git a/security/Makefile b/security/Makefile index 001aa40f77e2..d6cb413318b9 100644 --- a/security/Makefile +++ b/security/Makefile @@ -1085,6 +1085,7 @@ SUBDIR += rubygem-net-ssh SUBDIR += rubygem-net-ssh-gateway SUBDIR += rubygem-net-ssh-gateway1 + SUBDIR += rubygem-net-ssh-krb SUBDIR += rubygem-net-ssh-multi SUBDIR += rubygem-net-ssh4 SUBDIR += rubygem-net-telnet diff --git a/security/rubygem-net-ssh-krb/Makefile b/security/rubygem-net-ssh-krb/Makefile new file mode 100644 index 000000000000..4b6c87d5ed77 --- /dev/null +++ b/security/rubygem-net-ssh-krb/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= net-ssh-krb +DISTVERSION= 0.5.1 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= romain@FreeBSD.org +COMMENT= Add Kerberos authentication capabilities to Net::SSH + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= rubygem-gssapi>=1.3:security/rubygem-gssapi \ + rubygem-net-ssh>=2.0:security/rubygem-net-ssh + +USES= gem +USE_RUBY= yes + +.include diff --git a/security/rubygem-net-ssh-krb/distinfo b/security/rubygem-net-ssh-krb/distinfo new file mode 100644 index 000000000000..a892dfc9fbf2 --- /dev/null +++ b/security/rubygem-net-ssh-krb/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1587438539 +SHA256 (rubygem/net-ssh-krb-0.5.1.gem) = 0c1448f32d7b1dc4decc5e2bb329f38c502c9fed6fb16122b257e5dc8cb61588 +SIZE (rubygem/net-ssh-krb-0.5.1.gem) = 13312 diff --git a/security/rubygem-net-ssh-krb/pkg-descr b/security/rubygem-net-ssh-krb/pkg-descr new file mode 100644 index 000000000000..3e6ac414a71e --- /dev/null +++ b/security/rubygem-net-ssh-krb/pkg-descr @@ -0,0 +1,13 @@ +Add Kerberos (password-less) authentication capabilities to Net::SSH, without +the need for modifying Net::SSH source code. + +This is a great way to help get Capistrano to be accepted in mid-to-large size +enterprises with strict security rules. + +No more getting locked out of the network because you mis-typed your password - +even if your company prohibits public key or host-based authentication. If your +organization uses Kerberos (many mid-to-large size corporations do), you can +use this package to get password-less authentication without breaking your +company's security guidelines. + +WWW: http://rubygems.org/gems/net-ssh-krb