[DRE-commits] [ruby-net-ssh] branch master updated (fdddad3 -> b93db38)

Unit 193 unit193-guest at moszumanska.debian.org
Wed Jul 19 07:15:08 UTC 2017


This is an automated email from the git hooks/post-receive script.

unit193-guest pushed a change to branch master
in repository ruby-net-ssh.

      from  fdddad3   Prepare changelog for upload.
       new  c3ffb5f   d/watch: Update to track releases from GH as they have tests.
      adds  b446c88   New upstream version 4.1.0
       new  eb479b6   Merge tag 'upstream/4.1.0'
       new  12c0746   Drop patches.
       new  9060948   d/control: (Build-)Depend on ruby-rbnacl and ruby-bcrypt-pbkdf.
       new  8b04968   d/p/newer_rbnacl.patch: Allow use of newer rbnacl versions.
       new  b93db38   Update standards-version to 4.0.0.

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    6 +
 .rubocop.yml                                       |    5 +
 .rubocop_todo.yml                                  | 1129 ++++++++++++++
 .travis.yml                                        |   57 +-
 CHANGES.txt                                        |   85 +-
 Gemfile                                            |   17 +
 Gemfile.norbnacl                                   |   10 +
 Gemfile.norbnacl.lock                              |   41 +
 ISSUE_TEMPLATE.md                                  |   30 +
 README.rdoc                                        |   53 +-
 Rakefile                                           |   83 +-
 appveyor.yml                                       |   52 +
 checksums.yaml.gz.sig                              |  Bin 256 -> 0 bytes
 data.tar.gz.sig                                    |  Bin 256 -> 0 bytes
 debian/control                                     |    6 +-
 .../dont-test-cyphers-that-dont-have-fixtures      |   16 -
 debian/patches/drop-require-test-unit.patch        |   14 -
 debian/patches/newer_rbnacl.patch                  |   37 +
 debian/patches/series                              |    3 +-
 debian/watch                                       |    4 +-
 lib/net/ssh.rb                                     |   59 +-
 lib/net/ssh/authentication/agent.rb                |  261 +++-
 lib/net/ssh/authentication/agent/java_pageant.rb   |   85 --
 lib/net/ssh/authentication/agent/socket.rb         |  178 ---
 lib/net/ssh/authentication/certificate.rb          |  169 +++
 lib/net/ssh/authentication/ed25519.rb              |  160 ++
 lib/net/ssh/authentication/ed25519_loader.rb       |   31 +
 lib/net/ssh/authentication/key_manager.rb          |   28 +-
 lib/net/ssh/authentication/methods/abstract.rb     |    4 +
 .../authentication/methods/keyboard_interactive.rb |   20 +-
 lib/net/ssh/authentication/methods/password.rb     |   17 +-
 lib/net/ssh/authentication/pageant.rb              |  153 +-
 lib/net/ssh/authentication/session.rb              |    3 +-
 lib/net/ssh/buffer.rb                              |   72 +-
 lib/net/ssh/buffered_io.rb                         |   29 +-
 lib/net/ssh/config.rb                              |  228 +--
 lib/net/ssh/connection/channel.rb                  |   16 +-
 lib/net/ssh/connection/event_loop.rb               |  114 ++
 lib/net/ssh/connection/keepalive.rb                |    4 +-
 lib/net/ssh/connection/session.rb                  |  145 +-
 lib/net/ssh/errors.rb                              |   12 +-
 lib/net/ssh/key_factory.rb                         |   92 +-
 lib/net/ssh/known_hosts.rb                         |   15 +-
 lib/net/ssh/prompt.rb                              |  125 +-
 lib/net/ssh/proxy/http.rb                          |   25 +-
 lib/net/ssh/proxy/https.rb                         |   49 +
 lib/net/ssh/proxy/jump.rb                          |   53 +
 lib/net/ssh/ruby_compat.rb                         |   26 +-
 lib/net/ssh/test.rb                                |   10 +-
 lib/net/ssh/test/channel.rb                        |    7 +
 lib/net/ssh/test/extensions.rb                     |   17 +
 lib/net/ssh/test/kex.rb                            |    8 +-
 lib/net/ssh/test/packet.rb                         |   20 +-
 lib/net/ssh/test/script.rb                         |   18 +-
 lib/net/ssh/transport/algorithms.rb                |  162 +-
 lib/net/ssh/transport/cipher_factory.rb            |   44 +-
 lib/net/ssh/transport/ctr.rb                       |   16 +-
 .../transport/kex/diffie_hellman_group1_sha1.rb    |   29 +-
 .../kex/diffie_hellman_group_exchange_sha1.rb      |    8 +-
 lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb    |    2 +-
 lib/net/ssh/transport/key_expander.rb              |    1 +
 lib/net/ssh/transport/openssl.rb                   |   14 +-
 lib/net/ssh/transport/packet_stream.rb             |   14 +-
 lib/net/ssh/transport/session.rb                   |    4 +-
 lib/net/ssh/transport/state.rb                     |    2 +-
 lib/net/ssh/version.rb                             |    6 +-
 metadata.gz.sig                                    |  Bin 256 -> 0 bytes
 net-ssh-public_cert.pem                            |   37 +-
 net-ssh.gemspec                                    |  238 +--
 setup.rb                                           | 1585 --------------------
 support/arcfour_check.rb                           |    2 +-
 support/ssh_tunnel_bug.rb                          |    2 +-
 test/authentication/methods/common.rb              |   12 +-
 test/authentication/methods/test_abstract.rb       |    6 +-
 test/authentication/methods/test_hostbased.rb      |   12 +-
 .../methods/test_keyboard_interactive.rb           |   29 +-
 test/authentication/methods/test_none.rb           |    2 +-
 test/authentication/methods/test_password.rb       |   12 +-
 test/authentication/methods/test_publickey.rb      |    6 +-
 test/authentication/test_agent.rb                  |  261 +++-
 test/authentication/test_certificate.rb            |  104 ++
 test/authentication/test_ed25519.rb                |   85 ++
 test/authentication/test_key_manager.rb            |   89 +-
 test/authentication/test_session.rb                |    2 +-
 test/common.rb                                     |   46 +-
 test/configs/conf.d/subset2                        |    2 +
 test/configs/conf.d/subset3                        |    1 +
 test/configs/include                               |    4 +
 test/configs/proxy_jump                            |    5 +
 test/configs/subset1                               |    2 +
 test/connection/test_channel.rb                    |   22 +-
 test/connection/test_session.rb                    |   56 +-
 test/integration/README.md                         |   26 +
 test/integration/README.txt                        |   17 -
 test/integration/common.rb                         |   43 +-
 test/integration/playbook.yml                      |   56 +-
 test/integration/test_agent.rb                     |   60 +
 test/integration/test_cert_user_auth.rb            |   30 +
 test/integration/test_channel.rb                   |  108 ++
 test/integration/test_ed25519_pkeys.rb             |   91 ++
 test/integration/test_encoding.rb                  |   23 +
 test/integration/test_exec.rb                      |   22 +
 test/integration/test_forward.rb                   |  132 +-
 test/integration/test_http_proxy.rb                |   83 +
 test/integration/test_id_rsa_keys.rb               |   33 +-
 test/integration/test_password.rb                  |   50 +
 test/integration/test_proxy.rb                     |   51 +-
 test/manual/test_pageant.rb                        |   14 +-
 test/start/test_connection.rb                      |    4 +-
 test/start/test_options.rb                         |   59 +-
 test/start/test_transport.rb                       |    8 +-
 test/start/test_user_nil.rb                        |    2 +-
 test/test/test_test.rb                             |   76 +
 test/test_all.rb                                   |    4 +-
 test/test_buffer.rb                                |   55 +-
 test/test_buffered_io.rb                           |    2 +-
 test/test_config.rb                                |   63 +-
 test/test_key_factory.rb                           |   50 +-
 test/test_known_hosts.rb                           |   10 +-
 test/test_proxy_jump.rb                            |   51 +
 test/transport/hmac/test_md5.rb                    |    2 +-
 test/transport/hmac/test_none.rb                   |    8 +-
 test/transport/hmac/test_ripemd160.rb              |    2 +-
 test/transport/hmac/test_sha1.rb                   |    2 +-
 test/transport/hmac/test_sha2_256.rb               |    2 +-
 test/transport/hmac/test_sha2_512.rb               |    2 +-
 .../kex/test_diffie_hellman_group1_sha1.rb         |   20 +-
 .../kex/test_diffie_hellman_group_exchange_sha1.rb |   23 +-
 test/transport/kex/test_ecdh_sha2_nistp256.rb      |   18 +-
 test/transport/kex/test_ecdh_sha2_nistp384.rb      |    2 +-
 test/transport/test_algorithms.rb                  |  155 +-
 test/transport/test_cipher_factory.rb              |  136 +-
 test/transport/test_hmac.rb                        |    4 +-
 test/transport/test_identity_cipher.rb             |    2 +-
 test/transport/test_packet_stream.rb               |  608 +-------
 test/transport/test_server_version.rb              |    2 +-
 test/transport/test_session.rb                     |   52 +-
 test/transport/test_state.rb                       |   34 +-
 test/verifiers/test_secure.rb                      |    2 +-
 test/win_integration/FreeSSHDService.ini           |   62 +
 test/win_integration/FreeSSHDService32.ini         |   62 +
 test/win_integration/common.rb                     |    7 +
 test/win_integration/test_freesshd.rb              |   11 +
 test/win_integration/test_pageant.rb               |   44 +
 144 files changed, 5382 insertions(+), 3928 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 .rubocop.yml
 create mode 100644 .rubocop_todo.yml
 create mode 100644 Gemfile
 create mode 100644 Gemfile.norbnacl
 create mode 100644 Gemfile.norbnacl.lock
 create mode 100644 ISSUE_TEMPLATE.md
 create mode 100644 appveyor.yml
 delete mode 100644 checksums.yaml.gz.sig
 delete mode 100644 data.tar.gz.sig
 delete mode 100644 debian/patches/dont-test-cyphers-that-dont-have-fixtures
 delete mode 100644 debian/patches/drop-require-test-unit.patch
 create mode 100644 debian/patches/newer_rbnacl.patch
 delete mode 100644 lib/net/ssh/authentication/agent/java_pageant.rb
 delete mode 100644 lib/net/ssh/authentication/agent/socket.rb
 create mode 100644 lib/net/ssh/authentication/certificate.rb
 create mode 100644 lib/net/ssh/authentication/ed25519.rb
 create mode 100644 lib/net/ssh/authentication/ed25519_loader.rb
 create mode 100644 lib/net/ssh/connection/event_loop.rb
 create mode 100644 lib/net/ssh/proxy/https.rb
 create mode 100644 lib/net/ssh/proxy/jump.rb
 delete mode 100644 metadata.gz.sig
 delete mode 100644 setup.rb
 create mode 100644 test/authentication/test_certificate.rb
 create mode 100644 test/authentication/test_ed25519.rb
 create mode 100644 test/configs/conf.d/subset2
 create mode 100644 test/configs/conf.d/subset3
 create mode 100644 test/configs/include
 create mode 100644 test/configs/proxy_jump
 create mode 100644 test/configs/subset1
 create mode 100644 test/integration/README.md
 delete mode 100644 test/integration/README.txt
 create mode 100644 test/integration/test_agent.rb
 create mode 100644 test/integration/test_cert_user_auth.rb
 create mode 100644 test/integration/test_channel.rb
 create mode 100644 test/integration/test_ed25519_pkeys.rb
 create mode 100644 test/integration/test_encoding.rb
 create mode 100644 test/integration/test_exec.rb
 create mode 100644 test/integration/test_http_proxy.rb
 create mode 100644 test/integration/test_password.rb
 create mode 100644 test/test/test_test.rb
 create mode 100644 test/test_proxy_jump.rb
 create mode 100644 test/win_integration/FreeSSHDService.ini
 create mode 100644 test/win_integration/FreeSSHDService32.ini
 create mode 100644 test/win_integration/common.rb
 create mode 100644 test/win_integration/test_freesshd.rb
 create mode 100644 test/win_integration/test_pageant.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-net-ssh.git



More information about the Pkg-ruby-extras-commits mailing list