Hello community,

here is the log from the commit of package yast2-packager for openSUSE:Factory 
checked in at 2020-12-01 14:21:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-packager (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-packager.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-packager"

Tue Dec  1 14:21:27 2020 rev:405 rq:851349 version:4.3.11

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes    
2020-10-30 11:46:03.377621708 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-packager.new.5913/yast2-packager.changes  
2020-12-01 14:21:29.569509339 +0100
@@ -1,0 +2,6 @@
+Thu Nov 26 22:29:43 UTC 2020 - Josef Reidinger <jreidin...@suse.com>
+
+- correct add-on spelling (jsc#SLE-14772)
+- 4.3.11
+
+-------------------------------------------------------------------

Old:
----
  yast2-packager-4.3.10.tar.bz2

New:
----
  yast2-packager-4.3.11.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-packager.spec ++++++
--- /var/tmp/diff_new_pack.X9k88z/_old  2020-12-01 14:21:30.161509980 +0100
+++ /var/tmp/diff_new_pack.X9k88z/_new  2020-12-01 14:21:30.165509984 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        4.3.10
+Version:        4.3.11
 Release:        0
 Summary:        YaST2 - Package Library
 License:        GPL-2.0-or-later

++++++ yast2-packager-4.3.10.tar.bz2 -> yast2-packager-4.3.11.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/.cirrus.yml 
new/yast2-packager-4.3.11/.cirrus.yml
--- old/yast2-packager-4.3.10/.cirrus.yml       2020-10-27 10:17:50.000000000 
+0100
+++ new/yast2-packager-4.3.11/.cirrus.yml       1970-01-01 01:00:00.000000000 
+0100
@@ -1,29 +0,0 @@
-container:
-  image: registry.opensuse.org/yast/head/containers/yast-ruby:latest
-
-Rubocop_task:
-  container:
-    cpu: 8
-  test_script: rake check:rubocop
-  only_if: "changesInclude('.cirrus.yml', '.rubocop.yml', 'Rakefile', 
'**/*.rake', '*.rb', '**/*.rb')"
-
-Unit Tests_task:
-  environment:
-    COVERAGE: 1
-    COVERALLS_REPO_TOKEN: 
ENCRYPTED[07f77b1412f23d9201d0255c60b61781b308a2db9af24f07e48f1331ee80460c2e3b858f39f737294de04f94e55cc52d]
-    # Fake a Travis build to send the code coverage to coveralls.io
-    TRAVIS: 1
-  test_script: rake test:unit && shellcheck src/bin/sw_single_wrapper
-
-yardoc_task:
-  yardoc_cache_cache:
-    folder: .yardoc
-  test_script: rake check:doc
-  only_if: "changesInclude('.cirrus.yml', 'Rakefile', '**/*.rake', '*.rb', 
'**/*.rb')"
-
-Package Build_task:
-  # run the other steps
-  test_script: yast-travis-ruby -x tests -x rubocop -x yardoc
-
-Debug_task:
-  test_script: "uname -a; echo '---------'; rpm -qa | sort; echo '---------'; 
df -h; echo '---------'; free -h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/.github/workflows/ci.yml 
new/yast2-packager-4.3.11/.github/workflows/ci.yml
--- old/yast2-packager-4.3.10/.github/workflows/ci.yml  1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-packager-4.3.11/.github/workflows/ci.yml  2020-11-27 
15:25:20.000000000 +0100
@@ -0,0 +1,88 @@
+
+# See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
+
+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
+
+    - name: Shell Check
+      run: shellcheck src/bin/sw_single_wrapper
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/.travis.yml 
new/yast2-packager-4.3.11/.travis.yml
--- old/yast2-packager-4.3.10/.travis.yml       2020-10-27 10:17:50.000000000 
+0100
+++ new/yast2-packager-4.3.11/.travis.yml       1970-01-01 01:00:00.000000000 
+0100
@@ -1,17 +0,0 @@
-sudo: required
-language: bash
-services:
-  - docker
-
-before_install:
-  - docker build -t yast-packager-image .
-  # list the installed packages (just for easier debugging)
-  - docker run --rm -it yast-packager-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
-  # exclude the yardoc step, we run the more strict check:doc later
-  - docker run --rm -it yast-packager-image yast-travis-ruby -x yardoc
-  - docker run --rm -it yast-packager-image rake check:doc
-  - docker run --rm -it yast-packager-image shellcheck 
src/bin/sw_single_wrapper
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/Dockerfile 
new/yast2-packager-4.3.11/Dockerfile
--- old/yast2-packager-4.3.10/Dockerfile        2020-10-27 10:17:50.000000000 
+0100
+++ new/yast2-packager-4.3.11/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-packager-4.3.10/README.md 
new/yast2-packager-4.3.11/README.md
--- old/yast2-packager-4.3.10/README.md 2020-10-27 10:17:50.000000000 +0100
+++ new/yast2-packager-4.3.11/README.md 2020-11-27 15:25:20.000000000 +0100
@@ -1,6 +1,7 @@
 # YaST - The Package Management Libraries #
 
-[![Travis 
Build](https://travis-ci.org/yast/yast-packager.svg?branch=master)](https://travis-ci.org/yast/yast-packager)
-[![Build 
Status](https://api.cirrus-ci.com/github/yast/yast-packager.svg?branch=master)](https://cirrus-ci.com/github/yast/yast-packager?branch=master)
-[![Jenkins 
Build](http://img.shields.io/jenkins/s/https/ci.opensuse.org/yast-yast-packager-master.svg)](https://ci.opensuse.org/view/Yast/job/yast-yast-packager-master/)
+[![Workflow 
Status](https://github.com/yast/yast-packager/workflows/CI/badge.svg?branch=master)](
+https://github.com/yast/yast-packager/actions?query=branch%3Amaster)
+[![Jenkins 
Status](https://ci.opensuse.org/buildStatus/icon?job=yast-yast-packager-master)](
+https://ci.opensuse.org/view/Yast/job/yast-yast-packager-master/)
 [![Coverage 
Status](https://coveralls.io/repos/github/yast/yast-packager/badge.svg?branch=master)](https://coveralls.io/github/yast/yast-packager?branch=master)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/package/yast2-packager.changes 
new/yast2-packager-4.3.11/package/yast2-packager.changes
--- old/yast2-packager-4.3.10/package/yast2-packager.changes    2020-10-27 
10:17:50.000000000 +0100
+++ new/yast2-packager-4.3.11/package/yast2-packager.changes    2020-11-27 
15:25:20.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Thu Nov 26 22:29:43 UTC 2020 - Josef Reidinger <jreidin...@suse.com>
+
+- correct add-on spelling (jsc#SLE-14772)
+- 4.3.11
+
+-------------------------------------------------------------------
 Mon Oct 26 21:01:37 UTC 2020 - Josef Reidinger <jreidin...@suse.com>
 
 - Confirm abort in product license dialog (bsc#1178005)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/package/yast2-packager.spec 
new/yast2-packager-4.3.11/package/yast2-packager.spec
--- old/yast2-packager-4.3.10/package/yast2-packager.spec       2020-10-27 
10:17:50.000000000 +0100
+++ new/yast2-packager-4.3.11/package/yast2-packager.spec       2020-11-27 
15:25:20.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-packager
-Version:        4.3.10
+Version:        4.3.11
 Release:        0
 Summary:        YaST2 - Package Library
 License:        GPL-2.0-or-later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/src/modules/AddOnProduct.rb 
new/yast2-packager-4.3.11/src/modules/AddOnProduct.rb
--- old/yast2-packager-4.3.10/src/modules/AddOnProduct.rb       2020-10-27 
10:17:50.000000000 +0100
+++ new/yast2-packager-4.3.11/src/modules/AddOnProduct.rb       2020-11-27 
15:25:20.000000000 +0100
@@ -1291,7 +1291,7 @@
       msg = if product_name.nil? || product_name == ""
         # %1 is either "CD" or "DVD"
         Builtins.sformat(
-          _("Insert the addon %1 medium"),
+          _("Insert the add-on %1 medium"),
           Builtins.toupper(scheme)
         )
       else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-packager-4.3.10/test/test_helper.rb 
new/yast2-packager-4.3.11/test/test_helper.rb
--- old/yast2-packager-4.3.10/test/test_helper.rb       2020-10-27 
10:17:50.000000000 +0100
+++ new/yast2-packager-4.3.11/test/test_helper.rb       2020-11-27 
15:25:20.000000000 +0100
@@ -50,12 +50,20 @@
   # track all ruby files under src
   SimpleCov.track_files("#{srcdir}/**/*.rb")
 
-  # use coveralls for on-line code coverage reporting at Travis CI
-  if ENV["TRAVIS"]
-    require "coveralls"
-    SimpleCov.formatters = [
+  # 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
 end
_______________________________________________
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org

Reply via email to