diff options
| author | Amy Fong <amy.fong@windriver.com> | 2014-05-20 15:23:28 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-05-24 00:27:57 -0400 |
| commit | 0d658f5accb7faab1d95daa41502a26b84fac354 (patch) | |
| tree | 45f332b861289fd3dd8bcb5087adc2bfda2884e5 /meta-openstack/recipes-devtools/ruby/net-ssh-multi_git.bb | |
| parent | 094080e08d9629f7b7045aa128d18e0aaebe3247 (diff) | |
| download | meta-cloud-services-0d658f5accb7faab1d95daa41502a26b84fac354.tar.gz | |
Ruby/chef solo: Add recipes-devtools/ruby/net-ssh-multi_git.bb
A library for controlling multiple Net::SSH connections
via a single interface. It exposes an API similar to that of
Net::SSH::Connection::Session and Net::SSH::Connection::Channel,
making it simpler to adapt programs designed for single connections to
be used with multiple connections.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Amy Fong <amy.fong@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/ruby/net-ssh-multi_git.bb')
| -rw-r--r-- | meta-openstack/recipes-devtools/ruby/net-ssh-multi_git.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/ruby/net-ssh-multi_git.bb b/meta-openstack/recipes-devtools/ruby/net-ssh-multi_git.bb new file mode 100644 index 0000000..11527be --- /dev/null +++ b/meta-openstack/recipes-devtools/ruby/net-ssh-multi_git.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | # | ||
| 2 | # Copyright (C) 2014 Wind River Systems, Inc. | ||
| 3 | # | ||
| 4 | SUMMARY = "A library for controlling multiple ssh connections via a single interface" | ||
| 5 | DESCRIPTION = "A library for controlling multiple Net::SSH connections \ | ||
| 6 | via a single interface. It exposes an API similar to that of \ | ||
| 7 | Net::SSH::Connection::Session and Net::SSH::Connection::Channel, \ | ||
| 8 | making it simpler to adapt programs designed for single connections to \ | ||
| 9 | be used with multiple connections." | ||
| 10 | |||
| 11 | LICENSE = "MIT" | ||
| 12 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=6c99c0cc0901fbc3607fe997f9898d69" | ||
| 13 | |||
| 14 | PR = "r0" | ||
| 15 | |||
| 16 | BPV = "1.2.0" | ||
| 17 | PV = "${BPV}" | ||
| 18 | SRCREV = "b659f2884b2c9abdbe3bbf3c844937a0799ed5ac" | ||
| 19 | |||
| 20 | S = "${WORKDIR}/git" | ||
| 21 | |||
| 22 | SRC_URI = " \ | ||
| 23 | git://github.com/net-ssh/net-ssh-multi.git \ | ||
| 24 | file://gemspec-don-t-force-the-use-of-gem-private_key.pem.patch \ | ||
| 25 | " | ||
| 26 | |||
| 27 | inherit ruby | ||
| 28 | |||
| 29 | RDEPENDS += " \ | ||
| 30 | net-ssh \ | ||
| 31 | net-ssh-gateway \ | ||
| 32 | " | ||
| 33 | |||
| 34 | BBCLASSEXTEND = "native" | ||
