Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2021-02-26 21:58:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.2378 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-ycp-ui-bindings"

Fri Feb 26 21:58:05 2021 rev:85 rq:871490 version:4.3.9

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
    2020-11-23 16:28:22.632736824 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.2378/yast2-ycp-ui-bindings.changes
    2021-02-26 21:58:07.595751008 +0100
@@ -1,0 +2,12 @@
+Fri Feb 12 10:35:54 UTC 2021 - Ladislav Slez??k <[email protected]>
+
+- Handle special keyboard shortcuts (jsc#PM-1895, jsc#SLE-16263)
+- 4.3.9
+
+-------------------------------------------------------------------
+Wed Feb 10 12:09:10 UTC 2021 - Stefan Hundhammer <[email protected]>
+
+- Adapted to libyui SO bump 14 -> 15 (bsc#1181653)
+- 4.3.8
+
+-------------------------------------------------------------------

Old:
----
  yast2-ycp-ui-bindings-4.3.7.tar.bz2

New:
----
  yast2-ycp-ui-bindings-4.3.9.tar.bz2

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

Other differences:
------------------
++++++ yast2-ycp-ui-bindings.spec ++++++
--- /var/tmp/diff_new_pack.GILVyo/_old  2021-02-26 21:58:08.819752083 +0100
+++ /var/tmp/diff_new_pack.GILVyo/_new  2021-02-26 21:58:08.823752086 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# 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,12 +16,11 @@
 #
 
 
-# YUIWidget_MenuBar
-%define min_yui_version        3.11.0
-%define yui_so         14
+%define min_yui_version        4.0.1
+%define yui_so         15
 
 Name:           yast2-ycp-ui-bindings
-Version:        4.3.7
+Version:        4.3.9
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-ycp-ui-bindings-4.3.7.tar.bz2 -> 
yast2-ycp-ui-bindings-4.3.9.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.7/.github/workflows/ci.yml 
new/yast2-ycp-ui-bindings-4.3.9/.github/workflows/ci.yml
--- old/yast2-ycp-ui-bindings-4.3.7/.github/workflows/ci.yml    1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-ycp-ui-bindings-4.3.9/.github/workflows/ci.yml    2021-02-12 
16:47:31.000000000 +0100
@@ -0,0 +1,19 @@
+
+# See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
+
+name: CI
+
+on: [push, pull_request]
+
+jobs:
+  Package:
+    runs-on: ubuntu-latest
+    container: registry.opensuse.org/yast/head/containers/yast-cpp:latest
+
+    steps:
+
+    - name: Git Checkout
+      uses: actions/checkout@v1
+
+    - name: Package Build
+      run:  yast-ci-cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.3.7/.github/workflows/surge.yml 
new/yast2-ycp-ui-bindings-4.3.9/.github/workflows/surge.yml
--- old/yast2-ycp-ui-bindings-4.3.7/.github/workflows/surge.yml 1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-ycp-ui-bindings-4.3.9/.github/workflows/surge.yml 2021-02-12 
16:47:31.000000000 +0100
@@ -0,0 +1,36 @@
+
+# See 
https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
+
+name: Surge
+
+on:
+  push:
+    branches:
+      # publish only the latest changes to master
+      - master
+
+
+jobs:
+  publish:
+    runs-on: ubuntu-latest
+    container: registry.opensuse.org/yast/head/containers/yast-cpp:latest
+
+    steps:
+
+    - name: Git Checkout
+      uses: actions/checkout@v1
+
+    - name: Prepare
+      run: |
+        zypper  in -y npm doxygen
+        npm install --global surge
+
+    - name: Generate Doc
+      run: rake doc
+
+    - name: Surge
+      run:  surge --project ./autodocs/html --domain yast-ui-bindings.surge.sh
+      env:
+       SURGE_LOGIN: ${{ secrets.SURGE_LOGIN }}
+       SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }}
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.7/.surge.sh 
new/yast2-ycp-ui-bindings-4.3.9/.surge.sh
--- old/yast2-ycp-ui-bindings-4.3.7/.surge.sh   2020-11-17 13:07:21.000000000 
+0100
+++ new/yast2-ycp-ui-bindings-4.3.9/.surge.sh   1970-01-01 01:00:00.000000000 
+0100
@@ -1,18 +0,0 @@
-#! /bin/bash
-
-# helper script for publishing generated documentation to surge.sh
-# Manual uploading require credentials, so only travis can do this.
-# ENV SURGE_LOGIN and SURGE_TOKEN si set on travis only.
-# For more info see https://surge.sh/ and especially integration of travis
-# and surge https://surge.sh/help/integrating-with-travis-ci
-
-if [ "$TRAVIS_EVENT_TYPE" = "push" -a "$TRAVIS_BRANCH" = "master" ]; then
-  docker run -it -e TRAVIS=1 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" \
-    -e SURGE_LOGIN="$SURGE_LOGIN" -e SURGE_TOKEN="$SURGE_TOKEN" \
-    yast-ycp-ui-bindings-image \
-    /bin/bash -c \
-    "zypper  in -y npm doxygen; npm install --global surge; rake doc;
-    surge --project ./autodocs/html --domain yast-ui-bindings.surge.sh"
-else
-  echo "not published"
-fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.7/.travis.yml 
new/yast2-ycp-ui-bindings-4.3.9/.travis.yml
--- old/yast2-ycp-ui-bindings-4.3.7/.travis.yml 2020-11-17 13:07:21.000000000 
+0100
+++ new/yast2-ycp-ui-bindings-4.3.9/.travis.yml 1970-01-01 01:00:00.000000000 
+0100
@@ -1,14 +0,0 @@
-sudo: required
-language: bash
-services:
-  - docker
-
-before_install:
-  - docker build -t yast-ycp-ui-bindings-image .
-script:
-  # the "yast-travis-cpp" script is included in the base yastdevel/cpp image
-  # see https://github.com/yast/docker-yast-cpp/blob/master/yast-travis-cpp
-  - docker run -it -e TRAVIS=1 --privileged -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" 
yast-ycp-ui-bindings-image yast-travis-cpp
-
-after_success:
-  - ./.surge.sh
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.7/Dockerfile 
new/yast2-ycp-ui-bindings-4.3.9/Dockerfile
--- old/yast2-ycp-ui-bindings-4.3.7/Dockerfile  2020-11-17 13:07:21.000000000 
+0100
+++ new/yast2-ycp-ui-bindings-4.3.9/Dockerfile  1970-01-01 01:00:00.000000000 
+0100
@@ -1,2 +0,0 @@
-FROM registry.opensuse.org/yast/head/containers/yast-cpp:latest
-COPY . /usr/src/app
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.7/README.md 
new/yast2-ycp-ui-bindings-4.3.9/README.md
--- old/yast2-ycp-ui-bindings-4.3.7/README.md   2020-11-17 13:07:21.000000000 
+0100
+++ new/yast2-ycp-ui-bindings-4.3.9/README.md   2021-02-12 16:47:31.000000000 
+0100
@@ -1,7 +1,9 @@
 ## Yast UI Bindings
 
-Travis:  [![Build 
Status](https://travis-ci.org/yast/yast-ycp-ui-bindings.svg?branch=master)](https://travis-ci.org/yast/yast-ycp-ui-bindings)
-Jenkins: [![Jenkins 
Build](http://img.shields.io/jenkins/s/https/ci.opensuse.org/yast-ycp-ui-bindings-master.svg)](https://ci.opensuse.org/view/Yast/job/yast-ycp-ui-bindings-master/)
+[![Workflow 
Status](https://github.com/yast/yast-ycp-ui-bindings/workflows/CI/badge.svg?branch=master)](
+https://github.com/yast/yast-ycp-ui-bindings/actions?query=branch%3Amaster)
+[![Jenkins 
Status](https://ci.opensuse.org/buildStatus/icon?job=yast-yast-ycp-ui-bindings-master)](
+https://ci.opensuse.org/view/Yast/job/yast-yast-ycp-ui-bindings-master/)
 
 ### Online Documentation
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.3.7/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-4.3.9/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-4.3.7/package/yast2-ycp-ui-bindings.changes       
2020-11-17 13:07:21.000000000 +0100
+++ new/yast2-ycp-ui-bindings-4.3.9/package/yast2-ycp-ui-bindings.changes       
2021-02-12 16:47:31.000000000 +0100
@@ -1,4 +1,16 @@
 -------------------------------------------------------------------
+Fri Feb 12 10:35:54 UTC 2021 - Ladislav Slez??k <[email protected]>
+
+- Handle special keyboard shortcuts (jsc#PM-1895, jsc#SLE-16263)
+- 4.3.9
+
+-------------------------------------------------------------------
+Wed Feb 10 12:09:10 UTC 2021 - Stefan Hundhammer <[email protected]>
+
+- Adapted to libyui SO bump 14 -> 15 (bsc#1181653)
+- 4.3.8
+
+-------------------------------------------------------------------
 Mon Nov 16 16:19:49 UTC 2020 - Stefan Hundhammer <[email protected]>
 
 - Extended MenuBar-shortcut-test example to test shortcut priority
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.3.7/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-4.3.9/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-4.3.7/package/yast2-ycp-ui-bindings.spec  
2020-11-17 13:07:21.000000000 +0100
+++ new/yast2-ycp-ui-bindings-4.3.9/package/yast2-ycp-ui-bindings.spec  
2021-02-12 16:47:31.000000000 +0100
@@ -15,12 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# YUIWidget_MenuBar
-%define min_yui_version        3.11.0
-%define yui_so         14
+%define min_yui_version        4.0.1
+%define yui_so         15
 
 Name:           yast2-ycp-ui-bindings
-Version:        4.3.7
+Version:        4.3.9
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.7/src/YCPEvent.cc 
new/yast2-ycp-ui-bindings-4.3.9/src/YCPEvent.cc
--- old/yast2-ycp-ui-bindings-4.3.7/src/YCPEvent.cc     2020-11-17 
13:07:21.000000000 +0100
+++ new/yast2-ycp-ui-bindings-4.3.9/src/YCPEvent.cc     2021-02-12 
16:47:31.000000000 +0100
@@ -123,6 +123,8 @@
     if ( dynamic_cast<const YCancelEvent  *> (_event ) )  return YCPSymbol( 
"cancel"  );
     if ( dynamic_cast<const YTimeoutEvent *> (_event ) )  return YCPSymbol( 
"timeout" );
     if ( dynamic_cast<const YDebugEvent   *> (_event ) )  return YCPSymbol( 
"debugHotkey" );
+    if ( auto special_event = dynamic_cast<const YSpecialKeyEvent *> (_event ) 
)
+                 return YCPSymbol( "special_key:" + special_event->id() );
 
     return YCPVoid();
 }

Reply via email to