summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2015-12-13 17:18:07 +0000
committertaca <taca@pkgsrc.org>2015-12-13 17:18:07 +0000
commit2240e95d37c521e364000a6e9466125ca116cc55 (patch)
treec36cbdd37c7ce027e54b82ac234dd5dff9714506
parent4f1d3ae149743f600d60137840226740dae7313c (diff)
downloadpkgsrc-2240e95d37c521e364000a6e9466125ca116cc55.tar.gz
Update ruby-sshkit to 1.8.1.
## 1.8.1 * Change license to MIT, thanks to all the patient contributors who gave their permissions. ## 1.8.0 * add SSHKit::Backend::ConnectionPool#close_connections [PR #285](https://github.com/capistrano/sshkit/pull/285) @akm * Clean up rubocop lint warnings [PR #275](https://github.com/capistrano/sshkit/pull/275) @cshaffer * Prepend unused parameter names with an underscore * Prefer “safe assignment in condition” * Disambiguate regexp literals with parens * Prefer `sprintf` over `String#%` * No longer shadow `caller_line` variable in `DeprecationLogger` * Rescue `StandardError` instead of `Exception` * Remove useless `private` access modifier in `TestAbstract` * Disambiguate block operator with parens * Disambiguate between grouped expression and method params * Remove assertion in `TestHost#test_assert_hosts_compare_equal` that compares something with itself * Export environment variables and execute command in a subshell. [PR #273](https://github.com/capistrano/sshkit/pull/273) @kuon * Introduce `log_command_start`, `log_command_data`, `log_command_exit` methods on `Formatter` [PR #257](https://github.com/capistrano/sshkit/pull/257) @robd * Deprecate `@stdout` and `@stderr` accessors on `Command` * Add support for deprecation logging options. [README](README.md#deprecation-warnings), [PR #258](https://github.com/capistrano/sshkit/pull/258) @robd * Quote environment variable values. [PR #250](https://github.com/capistrano/sshkit/pull/250) @Sinjo - Chris Sinjakli * Simplified formatter hierarchy. [PR #248](https://github.com/capistrano/sshkit/pull/248) @robd * `SimpleText` formatter now extends `Pretty`, rather than duplicating. * Hide ANSI color escape sequences when outputting to a file. [README](README.md#output-colors), [Issue #245](https://github.com/capistrano/sshkit/issues/245), [PR #246](https://github.com/capistrano/sshkit/pull/246) @robd * Now only color the output if it is associated with a tty, or the `SSHKIT_COLOR` environment variable is set. * Removed broken support for assigning an `IO` to the `output` config option. [Issue #243](https://github.com/capistrano/sshkit/issues/243), [PR #244](https://github.com/capistrano/sshkit/pull/244) @robd * Use `SSHKit.config.output = SSHKit::Formatter::SimpleText.new($stdin)` instead * Added support for `:interaction_handler` option on commands. [PR #234](https://github.com/capistrano/sshkit/pull/234), [PR #242](https://github.com/capistrano/sshkit/pull/242) @robd * Removed partially supported `TRACE` log level. [2aa7890](https://github.com/capistrano/sshkit/commit/2aa78905f0c521ad9f697e7a4ed04ba438d5ee78) @robd * Add support for the `:strip` option to the `capture` method and strip by default on the `Local` backend. [PR #239](https://github.com/capistrano/sshkit/pull/239), [PR #249](https://github.com/capistrano/sshkit/pull/249) @robd * The `Local` backend now strips by default to be consistent with the `Netssh` one. * This reverses change [7d15a9a](https://github.com/capistrano/sshkit/commit/7d15a9aebfcc43807c8151bf6f3a4bc038ce6218) to the `Local` capture API to remove stripping by default. * If you require the raw, unstripped output, pass the `strip: false` option: `capture(:ls, strip: false)` * Simplified backend hierarchy. [PR #235](https://github.com/capistrano/sshkit/pull/235), [PR #237](https://github.com/capistrano/sshkit/pull/237) @robd * Moved duplicate implementations of `make`, `rake`, `test`, `capture`, `background` on to `Abstract` backend. * Backend implementations now only need to implement `execute_command`, `upload!` and `download!` * Removed `Printer` from backend hierarchy for `Local` and `Netssh` backends (they now just extend `Abstract`) * Removed unused `Net::SSH:LogLevelShim` * Removed dependency on the `colorize` gem. SSHKit now implements its own ANSI color logic, with no external dependencies. Note that SSHKit now only supports the `:bold` or plain modes. Other modes will be gracefully ignored. [#263](https://github.com/capistrano/sshkit/issues/263) * New API for setting the formatter: `use_format`. This differs from `format=` in that it accepts options or arguments that will be passed to the formatter's constructor. The `format=` syntax will be deprecated in a future release. [#295](https://github.com/capistrano/sshkit/issues/295) * SSHKit now immediately raises a `NameError` if you try to set a formatter that does not exist. [#295](https://github.com/capistrano/sshkit/issues/295)
-rw-r--r--security/ruby-sshkit/Makefile5
-rw-r--r--security/ruby-sshkit/PLIST13
-rw-r--r--security/ruby-sshkit/distinfo10
3 files changed, 16 insertions, 12 deletions
diff --git a/security/ruby-sshkit/Makefile b/security/ruby-sshkit/Makefile
index 1ae5764bbd6..98c402f97f1 100644
--- a/security/ruby-sshkit/Makefile
+++ b/security/ruby-sshkit/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2015/03/13 15:49:17 taca Exp $
+# $NetBSD: Makefile,v 1.4 2015/12/13 17:18:07 taca Exp $
-DISTNAME= sshkit-1.7.1
+DISTNAME= sshkit-1.8.1
CATEGORIES= security
MAINTAINER= pkgsrc-users@NetBSD.org
@@ -10,7 +10,6 @@ LICENSE= mit
DEPENDS+= ${RUBY_PKGPREFIX}-net-ssh>=2.8.0:../../security/ruby-net-ssh
DEPENDS+= ${RUBY_PKGPREFIX}-net-scp>=1.1.2:../../security/ruby-net-scp
-DEPENDS+= ${RUBY_PKGPREFIX}-colorize>=0.7.0:../../misc/ruby-colorize
.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/security/ruby-sshkit/PLIST b/security/ruby-sshkit/PLIST
index 5445150092a..da250e6ae9e 100644
--- a/security/ruby-sshkit/PLIST
+++ b/security/ruby-sshkit/PLIST
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.3 2015/03/13 15:49:17 taca Exp $
+@comment $NetBSD: PLIST,v 1.4 2015/12/13 17:18:07 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.gitignore
${GEM_LIBDIR}/.travis.yml
${GEM_LIBDIR}/.yardopts
+${GEM_LIBDIR}/BREAKING_API_WISHLIST.md
${GEM_LIBDIR}/CHANGELOG.md
${GEM_LIBDIR}/CONTRIBUTING.md
${GEM_LIBDIR}/EXAMPLES.md
@@ -30,6 +31,7 @@ ${GEM_LIBDIR}/lib/sshkit/command.rb
${GEM_LIBDIR}/lib/sshkit/command_map.rb
${GEM_LIBDIR}/lib/sshkit/configuration.rb
${GEM_LIBDIR}/lib/sshkit/coordinator.rb
+${GEM_LIBDIR}/lib/sshkit/deprecation_logger.rb
${GEM_LIBDIR}/lib/sshkit/dsl.rb
${GEM_LIBDIR}/lib/sshkit/exception.rb
${GEM_LIBDIR}/lib/sshkit/formatters/abstract.rb
@@ -40,34 +42,37 @@ ${GEM_LIBDIR}/lib/sshkit/formatters/simple_text.rb
${GEM_LIBDIR}/lib/sshkit/host.rb
${GEM_LIBDIR}/lib/sshkit/log_message.rb
${GEM_LIBDIR}/lib/sshkit/logger.rb
+${GEM_LIBDIR}/lib/sshkit/mapping_interaction_handler.rb
${GEM_LIBDIR}/lib/sshkit/runners/abstract.rb
${GEM_LIBDIR}/lib/sshkit/runners/group.rb
${GEM_LIBDIR}/lib/sshkit/runners/null.rb
${GEM_LIBDIR}/lib/sshkit/runners/parallel.rb
${GEM_LIBDIR}/lib/sshkit/runners/sequential.rb
-${GEM_LIBDIR}/lib/sshkit/utils/capture_output_methods.rb
${GEM_LIBDIR}/lib/sshkit/version.rb
${GEM_LIBDIR}/sshkit.gemspec
${GEM_LIBDIR}/test/boxes.json
${GEM_LIBDIR}/test/functional/backends/test_local.rb
${GEM_LIBDIR}/test/functional/backends/test_netssh.rb
-${GEM_LIBDIR}/test/functional/test_coordinator.rb
${GEM_LIBDIR}/test/functional/test_ssh_server_comes_up_for_functional_tests.rb
${GEM_LIBDIR}/test/helper.rb
${GEM_LIBDIR}/test/support/vagrant_wrapper.rb
+${GEM_LIBDIR}/test/unit/backends/test_abstract.rb
${GEM_LIBDIR}/test/unit/backends/test_connection_pool.rb
${GEM_LIBDIR}/test/unit/backends/test_local.rb
${GEM_LIBDIR}/test/unit/backends/test_netssh.rb
${GEM_LIBDIR}/test/unit/backends/test_printer.rb
${GEM_LIBDIR}/test/unit/core_ext/test_string.rb
+${GEM_LIBDIR}/test/unit/formatters/test_custom.rb
${GEM_LIBDIR}/test/unit/formatters/test_dot.rb
${GEM_LIBDIR}/test/unit/formatters/test_pretty.rb
+${GEM_LIBDIR}/test/unit/formatters/test_simple_text.rb
${GEM_LIBDIR}/test/unit/test_color.rb
${GEM_LIBDIR}/test/unit/test_command.rb
${GEM_LIBDIR}/test/unit/test_command_map.rb
${GEM_LIBDIR}/test/unit/test_configuration.rb
${GEM_LIBDIR}/test/unit/test_coordinator.rb
+${GEM_LIBDIR}/test/unit/test_deprecation_logger.rb
${GEM_LIBDIR}/test/unit/test_host.rb
${GEM_LIBDIR}/test/unit/test_logger.rb
+${GEM_LIBDIR}/test/unit/test_mapping_interaction_handler.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
-@pkgdir lib/ruby/gems/2.0.0/build_info
diff --git a/security/ruby-sshkit/distinfo b/security/ruby-sshkit/distinfo
index 561ad3ef509..19b549a4c02 100644
--- a/security/ruby-sshkit/distinfo
+++ b/security/ruby-sshkit/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2015/11/04 01:18:08 agc Exp $
+$NetBSD: distinfo,v 1.5 2015/12/13 17:18:07 taca Exp $
-SHA1 (sshkit-1.7.1.gem) = d7c22efe9f297f8caccd08ac1c6d479dce3b087c
-RMD160 (sshkit-1.7.1.gem) = a94f8e5addd005c38fdb6630ee1e8f981cea0865
-SHA512 (sshkit-1.7.1.gem) = 55d1ac6d4f76112b9159ae2a6bc425fa54738943ffa28b94300012c8af2d69c7b060dd00adb3789940cd29f52a384edc1cfdf9a26189e0307f2662c1b7a7e1f4
-Size (sshkit-1.7.1.gem) = 136192 bytes
+SHA1 (sshkit-1.8.1.gem) = 7df8c9f0340257beb2b24ba04a8dbb5f281dae42
+RMD160 (sshkit-1.8.1.gem) = b7fc4cebb4370d36d7b6c233db1dcd68bf72c12a
+SHA512 (sshkit-1.8.1.gem) = 59fcc3f24d6ca6c7acf8f753959aee993dbbcd452477f3124d5444f7e19a9885efde9d5ea5803ffc366b9f6638a4d93472cc51b343a6d7a39a708528def6e9e9
+Size (sshkit-1.8.1.gem) = 139264 bytes