commit yast2-registration for openSUSE:Factory

Hello community, here is the log from the commit of package yast2-registration for openSUSE:Factory checked in at 2020-12-01 14:21:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-registration (Old) and /work/SRC/openSUSE:Factory/.yast2-registration.new.5913 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-registration" Tue Dec 1 14:21:28 2020 rev:64 rq:851365 version:4.3.14 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-registration/yast2-registration.changes 2020-11-13 18:56:35.777945338 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-registration.new.5913/yast2-registration.changes 2020-12-01 14:21:31.401511321 +0100 @@ -1,0 +2,6 @@ +Thu Nov 26 16:54:21 UTC 2020 - Josef Reidinger <jreidinger@suse.com> + +- correct add-on spelling (jsc#SLE-14772) +- 4.3.14 + +------------------------------------------------------------------- Old: ---- yast2-registration-4.3.13.tar.bz2 New: ---- yast2-registration-4.3.14.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-registration.spec ++++++ --- /var/tmp/diff_new_pack.i7TNvS/_old 2020-12-01 14:21:31.949511914 +0100 +++ /var/tmp/diff_new_pack.i7TNvS/_new 2020-12-01 14:21:31.953511918 +0100 @@ -17,7 +17,7 @@ Name: yast2-registration -Version: 4.3.13 +Version: 4.3.14 Release: 0 Summary: YaST2 - Registration Module License: GPL-2.0-only ++++++ yast2-registration-4.3.13.tar.bz2 -> yast2-registration-4.3.14.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/.coveralls.yml new/yast2-registration-4.3.14/.coveralls.yml --- old/yast2-registration-4.3.13/.coveralls.yml 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/.coveralls.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -service_name: travis-ci diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/.github/workflows/ci.yml new/yast2-registration-4.3.14/.github/workflows/ci.yml --- old/yast2-registration-4.3.13/.github/workflows/ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/yast2-registration-4.3.14/.github/workflows/ci.yml 2020-11-27 16:35:11.000000000 +0100 @@ -0,0 +1,85 @@ + +# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-acti... + +name: CI + +on: [push, pull_request] + +jobs: + Tests: + runs-on: ubuntu-latest + container: registry.opensuse.org/yast/head/containers/yast-ruby:latest + + steps: + + - name: Git Checkout + uses: actions/checkout@v1 + + # just for easier debugging... + - name: Inspect Installed Packages + run: rpm -qa | sort + + - name: Unit Tests + run: rake test:unit + # enable code coverage reporting + env: + COVERAGE: 1 + + # send the coverage report to coveralls.io + - name: Coveralls Report + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + + Rubocop: + runs-on: ubuntu-latest + container: registry.opensuse.org/yast/head/containers/yast-ruby:latest + + steps: + + - name: Git Checkout + uses: actions/checkout@v1 + + - name: Rubocop + run: rake check:rubocop + + Package: + runs-on: ubuntu-latest + container: registry.opensuse.org/yast/head/containers/yast-ruby:latest + + steps: + + - name: Git Checkout + uses: actions/checkout@v1 + + - name: Package Build + run: yast-ci-ruby -o package + + Yardoc: + runs-on: ubuntu-latest + container: registry.opensuse.org/yast/head/containers/yast-ruby:latest + + steps: + + - name: Git Checkout + uses: actions/checkout@v1 + + - name: Yardoc + run: rake check:doc + + # downloading the Docker image takes some time so bundling several fast + # checks into one job avoids that overhead + Checks: + runs-on: ubuntu-latest + container: registry.opensuse.org/yast/head/containers/yast-ruby:latest + + steps: + + - name: Git Checkout + uses: actions/checkout@v1 + + - name: Perl Syntax + run: yast-ci-ruby -o perl_syntax + + - name: POT Check + run: rake check:pot diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/.travis.yml new/yast2-registration-4.3.14/.travis.yml --- old/yast2-registration-4.3.13/.travis.yml 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/.travis.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1,15 +0,0 @@ -sudo: required -language: bash -services: - - docker - -before_install: - - docker build -t yast-registration-image . - # list the installed packages (just for easier debugging) - - docker run --rm -it yast-registration-image rpm -qa | sort - -script: - # the "yast-travis-ruby" script is included in the base yastdevel/ruby image - # see https://github.com/yast/docker-yast-ruby/blob/master/yast-travis-ruby - - docker run -it -e TRAVIS=1 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" yast-registration-image yast-travis-ruby - - docker run -it yast-registration-image rake check:doc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/Dockerfile new/yast2-registration-4.3.14/Dockerfile --- old/yast2-registration-4.3.13/Dockerfile 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/Dockerfile 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -FROM registry.opensuse.org/yast/head/containers/yast-ruby:latest -COPY . /usr/src/app - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/README.md new/yast2-registration-4.3.14/README.md --- old/yast2-registration-4.3.13/README.md 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/README.md 2020-11-27 16:35:11.000000000 +0100 @@ -1,8 +1,10 @@ YaST - Registration Module ======================== -[](https://travis-ci.org/yast/yast-registration) -[](http://ci.opensuse.org/view/Yast/job/yast-registration-master/) +[]( +https://github.com/yast/yast-registration/actions?query=branch%3Amaster) +[]( +https://ci.opensuse.org/view/Yast/job/yast-yast-registration-master/) [](https://coveralls.io/r/yast/yast-registration?branch=master) [](https://codeclimate.com/github/yast/yast-registration) [](http://inch-ci.org/github/yast/yast-registration) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/package/yast2-registration.changes new/yast2-registration-4.3.14/package/yast2-registration.changes --- old/yast2-registration-4.3.13/package/yast2-registration.changes 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/package/yast2-registration.changes 2020-11-27 16:35:11.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Nov 26 16:54:21 UTC 2020 - Josef Reidinger <jreidinger@suse.com> + +- correct add-on spelling (jsc#SLE-14772) +- 4.3.14 + +------------------------------------------------------------------- Tue Oct 27 15:50:31 UTC 2020 - Josef Reidinger <jreidinger@suse.com> - Fix the latest change to work in firstboot when system is diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/package/yast2-registration.spec new/yast2-registration-4.3.14/package/yast2-registration.spec --- old/yast2-registration-4.3.13/package/yast2-registration.spec 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/package/yast2-registration.spec 2020-11-27 16:35:11.000000000 +0100 @@ -17,7 +17,7 @@ Name: yast2-registration -Version: 4.3.13 +Version: 4.3.14 Release: 0 Summary: YaST2 - Registration Module License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/src/lib/registration/autoyast_addons.rb new/yast2-registration-4.3.14/src/lib/registration/autoyast_addons.rb --- old/yast2-registration-4.3.13/src/lib/registration/autoyast_addons.rb 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/src/lib/registration/autoyast_addons.rb 2020-11-27 16:35:11.000000000 +0100 @@ -100,9 +100,9 @@ def report_missing_addon(addon) log.error("Unavailable addon: #{addon.inspect}") Yast::Report.Error( - # TRANSLATORS: %s is an addon name (including version and arch) + # TRANSLATORS: %s is an add-on name (including version and arch) # from the AutoYast XML installation profile - _("Addon '%s'\nis not available for registration.") % \ + _("Add-on '%s'\nis not available for registration.") % \ "#{addon["name"]}-#{addon["version"]}-#{addon["arch"]}" ) end @@ -115,7 +115,7 @@ # include also the automatically selected dependent modules/extensions ret = Addon.registration_order(Addon.selected + Addon.auto_selected) - log.info("Addons to register: #{ret.map(&:label).inspect}") + log.info("Add-ons to register: #{ret.map(&:label).inspect}") ret end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/src/lib/registration/registration_ui.rb new/yast2-registration-4.3.14/src/lib/registration/registration_ui.rb --- old/yast2-registration-4.3.13/src/lib/registration/registration_ui.rb 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/src/lib/registration/registration_ui.rb 2020-11-27 16:35:11.000000000 +0100 @@ -291,11 +291,11 @@ addon_names = addons.map { |a| a["display_name"] } - # TRANSLATORS: Popup question, add registered but not installed addons to + # TRANSLATORS: Popup question, add registered but not installed add-ons to # the list of products that will be downgraded. # %s are all the product names splited by '\n' e.g # "SUSE Linux Enterprise Server 12\nSUSE Enterprise Storage 1 x86_64" - msg = _("The addons listed below are registered but not installed: \n\n%s\n\n" \ + msg = _("The add-ons listed below are registered but not installed: \n\n%s\n\n" \ "Would you like to downgrade also them in the registration server? \n" \ "If not they will be deactivated. ") % addon_names.join("\n") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/src/lib/registration/ui/not_installed_products_dialog.rb new/yast2-registration-4.3.14/src/lib/registration/ui/not_installed_products_dialog.rb --- old/yast2-registration-4.3.13/src/lib/registration/ui/not_installed_products_dialog.rb 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/src/lib/registration/ui/not_installed_products_dialog.rb 2020-11-27 16:35:11.000000000 +0100 @@ -101,9 +101,9 @@ case ui when :install not_installed = install_products - # TRANSLATORS: Popup error showing all the addons that weren't - # installed, %s is the addons identifiers. - Yast::Popup.Error(_("These addons were not installed:\n\n%s") % + # TRANSLATORS: Popup error showing all the add-ons that weren't + # installed, %s is the add-ons identifiers. + Yast::Popup.Error(_("These add-ons were not installed:\n\n%s") % not_installed.join("\n")) unless not_installed.empty? update_summary when :sync @@ -154,7 +154,7 @@ def not_installed_addons_summary # TRANSLATORS: A RichText warning about all the products registered but # not installed. (1/2) - summary = _("<p>The addons listed below are registered but not installed: </p>") + summary = _("<p>The add-ons listed below are registered but not installed: </p>") summary += "<ul>#{not_installed_addon_names.map { |a| "<li>#{a}</li>" }.join("")}</ul>" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-registration-4.3.13/test/spec_helper.rb new/yast2-registration-4.3.14/test/spec_helper.rb --- old/yast2-registration-4.3.13/test/spec_helper.rb 2020-11-02 14:06:00.000000000 +0100 +++ new/yast2-registration-4.3.14/test/spec_helper.rb 2020-11-27 16:35:11.000000000 +0100 @@ -9,13 +9,20 @@ if ENV["COVERAGE"] require "simplecov" - # use coveralls for on-line code coverage reporting at Travis CI - if ENV["TRAVIS"] - require "coveralls" + # additionally use the LCOV format for on-line code coverage reporting at CI + if ENV["CI"] || ENV["COVERAGE_LCOV"] + require "simplecov-lcov" + + SimpleCov::Formatter::LcovFormatter.config do |c| + c.report_with_single_file = true + # this is the default Coveralls GitHub Action location + # https://github.com/marketplace/actions/coveralls-github-action + c.single_report_path = "coverage/lcov.info" + end SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, - Coveralls::SimpleCov::Formatter + SimpleCov::Formatter::LcovFormatter ] end
participants (1)
-
User for buildservice source handling