Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-net-ssh for openSUSE:Factory checked in at 2021-07-04 22:10:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-net-ssh (Old) and /work/SRC/openSUSE:Factory/.rubygem-net-ssh.new.2625 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-net-ssh" Sun Jul 4 22:10:20 2021 rev:33 rq:903463 version:6.2.0.rc2 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-net-ssh/rubygem-net-ssh.changes 2020-12-09 22:21:48.575699004 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-net-ssh.new.2625/rubygem-net-ssh.changes 2021-07-04 22:10:22.293401384 +0200 @@ -1,0 +2,5 @@ +Fri Apr 30 06:28:45 UTC 2021 - Dan ??erm??k <dcer...@suse.com> + +- New upstream release 6.2.0.rc2 + +------------------------------------------------------------------- Old: ---- net-ssh-6.2.0.rc1.gem New: ---- net-ssh-6.2.0.rc2.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-net-ssh.spec ++++++ --- /var/tmp/diff_new_pack.TLO0nx/_old 2021-07-04 22:10:22.693398290 +0200 +++ /var/tmp/diff_new_pack.TLO0nx/_new 2021-07-04 22:10:22.697398259 +0200 @@ -1,7 +1,7 @@ # # spec file for package rubygem-net-ssh # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,28 +16,26 @@ # +%define mod_name net-ssh +%define mod_full_name %{mod_name}-%{version} # # This file was generated with a gem2rpm.yml and not just plain gem2rpm. # All sections marked as MANUAL, license headers, summaries and descriptions # can be maintained in that file. Please consult this file before editing any # of those fields # - Name: rubygem-net-ssh -Version: 6.2.0.rc1 +Version: 6.2.0.rc2 Release: 0 -%define mod_name net-ssh -%define mod_full_name %{mod_name}-%{version} -BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: %{ruby >= 2.3} -BuildRequires: %{rubygem gem2rpm} -BuildRequires: ruby-macros >= 5 -URL: https://github.com/net-ssh/net-ssh -Source: https://rubygems.org/gems/%{mod_full_name}.gem -Source1: gem2rpm.yml Summary: Net::SSH: a pure-Ruby implementation of the SSH2 client protocol License: MIT Group: Development/Languages/Ruby +URL: https://github.com/net-ssh/net-ssh +Source: https://rubygems.org/gems/%{mod_full_name}.gem +Source1: gem2rpm.yml +BuildRequires: %{ruby >= 2.3} +BuildRequires: %{rubygem gem2rpm} +BuildRequires: ruby-macros >= 5 %description Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows ++++++ net-ssh-6.2.0.rc1.gem -> net-ssh-6.2.0.rc2.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.github/workflows/ci.yml new/.github/workflows/ci.yml --- old/.github/workflows/ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/.github/workflows/ci.yml 2021-03-12 20:21:25.000000000 +0100 @@ -0,0 +1,76 @@ +name: CI +on: [pull_request] +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: [2.7.2, 2.6.6, 2.5.8, 2.4.10, 3.0.0] + steps: + - uses: actions/checkout@v1 + + - name: Set up Ruby ${{ matrix.ruby-version }} + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby-version }} + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: 2.7 + + - name: Cache bundler + uses: actions/cache@v1 + id: bundler-cache + with: + path: vendor/bundle + key: ${{ runner.os }}-${{ matrix.ruby-version }}-gem-v3-${{ hashFiles('**/Gemfile') }}-${{ hashFiles('**/net-ssh.gemspec') }} + restore-keys: | + ${{ runner.os }}-${{ matrix.ruby-version }}-gem-v3- + + - name: Cache pip + uses: actions/cache@v1 + id: pip-cache + with: + path: ~/.cache/pip + key: ${{ runner.os }}-pip-v1 + restore-keys: | + ${{ runner.os }}-pip-v1 + - name: Bundle install + run: | + gem install bundler + bundle config set path 'vendor/bundle' + bundle config set --local path 'vendor/bundle' + bundle install --jobs 4 --retry 3 --path vendor/bundle + BUNDLE_GEMFILE=./Gemfile.noed25519 bundle install --jobs 4 --retry 3 --path vendor/bundle + env: + BUNDLE_PATH: vendor/bundle + + - name: Add to etc/hosts + run: | + sudo echo "127.0.0.1 gateway.netssh" | sudo tee -a /etc/hosts + - name: Ansible install + run: | + python -m pip install --upgrade pip + pip install ansible urllib3 pyOpenSSL ndg-httpsclient pyasn1 + ansible-galaxy install rvm.ruby + pwd + uname -a + export + who am i + ansible-playbook ./test/integration/playbook.yml -i "localhost," --become -c local -e 'no_rvm=true' -e 'myuser=runner' -e 'mygroup=runner' -e 'homedir=/home/runner' + - name: Run Tests + run: bundle exec rake test + env: + NET_SSH_RUN_INTEGRATION_TESTS_DISABLED: 1 + - name: Run Tests (without ed25519) + run: bundle exec rake test + env: + BUNDLE_GEMFILE: ./Gemfile.noed25519 + NET_SSH_RUN_INTEGRATION_TESTS_DISABLED: 1 + - name: Run test helper test + run: bundle exec rake test_test + - name: Rubocop + if: matrix.ruby-version != '3.0.0' + run: bundle exec rubocop + + \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGES.txt new/CHANGES.txt --- old/CHANGES.txt 2020-06-30 18:33:28.000000000 +0200 +++ new/CHANGES.txt 2021-03-12 20:21:25.000000000 +0100 @@ -43,7 +43,7 @@ === 5.2.0.rc3 * Fix check_host_ip read from config - * Support ssh-ed25519 in kown hosts + * Support ssh-ed25519 in known hosts === 5.2.0.rc2 Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ Binary files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ Binary files old/data.tar.gz.sig and new/data.tar.gz.sig differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/net/ssh/connection/channel.rb new/lib/net/ssh/connection/channel.rb --- old/lib/net/ssh/connection/channel.rb 2020-06-30 18:33:28.000000000 +0200 +++ new/lib/net/ssh/connection/channel.rb 2021-03-12 20:21:25.000000000 +0100 @@ -683,6 +683,7 @@ # # channel.set_remote_env foo: 'bar', baz: 'whale' def set_remote_env(env) + env.each { |key, value| puts "E:#{key} V:#{value}" } env.each { |key, value| self.env(key, value) } end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/net/ssh/version.rb new/lib/net/ssh/version.rb --- old/lib/net/ssh/version.rb 2020-06-30 18:33:28.000000000 +0200 +++ new/lib/net/ssh/version.rb 2021-03-12 20:21:25.000000000 +0100 @@ -56,7 +56,7 @@ # The prerelease component of this version of the Net::SSH library # nil allowed - PRE = "rc1" + PRE = "rc2" # The current version of the Net::SSH library as a Version instance CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2020-06-30 18:33:28.000000000 +0200 +++ new/metadata 2021-03-12 20:21:25.000000000 +0100 @@ -1,13 +1,13 @@ --- !ruby/object:Gem::Specification name: net-ssh version: !ruby/object:Gem::Version - version: 6.2.0.rc1 + version: 6.2.0.rc2 platform: ruby authors: - Jamis Buck - Delano Mandelbaum - Mikl??s Fazekas -autorequire: +autorequire: bindir: exe cert_chain: - | @@ -31,7 +31,7 @@ voajiJNS75Pw/2j13WnPB4Q6w7dHSb57E/VluBpVKmcQZN0dGdAkEIVty3v7kw9g y++VpCpWM/PstIFv4ApZMf501UY= -----END CERTIFICATE----- -date: 2020-06-30 00:00:00.000000000 Z +date: 2021-03-12 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: bcrypt_pbkdf @@ -156,6 +156,7 @@ - LICENSE.txt - README.md files: +- ".github/workflows/ci.yml" - ".gitignore" - ".rubocop.yml" - ".rubocop_todo.yml" @@ -268,7 +269,7 @@ - MIT metadata: changelog_uri: https://github.com/net-ssh/net-ssh/blob/master/CHANGES.txt -post_install_message: +post_install_message: rdoc_options: [] require_paths: - lib @@ -284,7 +285,7 @@ version: 1.3.1 requirements: [] rubygems_version: 3.0.3 -signing_key: +signing_key: specification_version: 4 summary: 'Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.' test_files: [] Binary files old/metadata.gz.sig and new/metadata.gz.sig differ