commit yast2-ycp-ui-bindings for openSUSE:Factory

2020-10-29 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2020-10-29 09:22:21

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3463 (New)


Package is "yast2-ycp-ui-bindings"

Thu Oct 29 09:22:21 2020 rev:82 rq:844668 version:4.3.5

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2020-10-18 16:21:11.716484788 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3463/yast2-ycp-ui-bindings.changes
2020-10-29 09:22:23.770692927 +0100
@@ -1,0 +2,12 @@
+Wed Oct 28 16:52:12 UTC 2020 - Stefan Hundhammer 
+
+- Added example for more in-depth MultiSelectionBox testing
+- 4.3.5
+
+---
+Thu Oct 15 13:45:24 UTC 2020 - Stefan Hundhammer 
+
+- Added support for OpenItems property for (nested) tables (bsc#1176402)
+- 4.3.4
+
+---

Old:

  yast2-ycp-ui-bindings-4.3.3.tar.bz2

New:

  yast2-ycp-ui-bindings-4.3.5.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.oaWLCO/_old  2020-10-29 09:22:24.838693951 +0100
+++ /var/tmp/diff_new_pack.oaWLCO/_new  2020-10-29 09:22:24.842693955 +0100
@@ -21,7 +21,7 @@
 %define yui_so 14
 
 Name:   yast2-ycp-ui-bindings
-Version:4.3.3
+Version:4.3.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.3.3.tar.bz2 -> 
yast2-ycp-ui-bindings-4.3.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.3/.travis.yml 
new/yast2-ycp-ui-bindings-4.3.5/.travis.yml
--- old/yast2-ycp-ui-bindings-4.3.3/.travis.yml 2020-10-09 16:50:33.0 
+0200
+++ new/yast2-ycp-ui-bindings-4.3.5/.travis.yml 2020-10-28 20:43:24.0 
+0100
@@ -8,7 +8,7 @@
 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 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" 
yast-ycp-ui-bindings-image 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.3/examples/Image1.rb 
new/yast2-ycp-ui-bindings-4.3.5/examples/Image1.rb
--- old/yast2-ycp-ui-bindings-4.3.3/examples/Image1.rb  2020-10-09 
16:50:33.0 +0200
+++ new/yast2-ycp-ui-bindings-4.3.5/examples/Image1.rb  2020-10-28 
20:43:24.0 +0100
@@ -10,21 +10,13 @@
 VBox(
   Image(
 Id("image"),
-"/usr/share/YaST2/theme/current/wallpapers/welcome.jpg",
+"/usr/share/grub2/themes/openSUSE/logo.png",
 "fallback text"
   ),
   PushButton(Opt(:default), "")
 )
   )
   UI.UserInput
-  if UI.WidgetExists(Id("image"))
-UI.ChangeWidget(Id("image"), :Enabled, false)
-UI.UserInput
-UI.ChangeWidget(Id("image"), :Enabled, true)
-UI.UserInput
-  else
-Builtins.y2error("No such widget id")
-  end
   UI.CloseDialog
 
   nil
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.3.3/examples/MultiSelectionBox-test.rb 
new/yast2-ycp-ui-bindings-4.3.5/examples/MultiSelectionBox-test.rb
--- old/yast2-ycp-ui-bindings-4.3.3/examples/MultiSelectionBox-test.rb  
1970-01-01 01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-4.3.5/examples/MultiSelectionBox-test.rb  
2020-10-28 20:43:24.0 +0100
@@ -0,0 +1,146 @@
+# encoding: utf-8
+
+# Example for table with single-selection and nested items
+#
+# This is also used in the NCurses UI test suite.
+# When changing this example, make sure that test suite does not fail!
+
+module Yast
+  class MultiSelectionBoxTest < Client
+Yast.import "UI"
+include Yast::Logger
+
+def main
+  UI.OpenDialog(main_dialog)
+  update_output_fields
+  handle_events
+  UI.CloseDialog
+end
+
+def main_dialog
+  MinSize(
+75, 16,
+MarginBox(
+  1, 0.4,
+  VBox(
+Left(
+  Heading("Pizza Selector")
+),
+VSpacing(0.2),
+multi_selection_box,
+VSpacing(0.2),
+Left(
+  CheckBox(Id(:veggie), Opt(:notify), "", false)
+),

commit yast2-ycp-ui-bindings for openSUSE:Factory

2020-10-18 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2020-10-18 16:20:53

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3486 (New)


Package is "yast2-ycp-ui-bindings"

Sun Oct 18 16:20:53 2020 rev:81 rq:840449 version:4.3.3

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2020-08-14 13:10:17.953232372 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3486/yast2-ycp-ui-bindings.changes
2020-10-18 16:21:11.716484788 +0200
@@ -1,0 +2,7 @@
+Fri Oct  9 12:04:21 UTC 2020 - José Iván López González 
+
+- Added Nested Tables (bsc#1176402)
+- Require libyui.so.14
+- 4.3.3
+
+---

Old:

  yast2-ycp-ui-bindings-4.3.2.tar.bz2

New:

  yast2-ycp-ui-bindings-4.3.3.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.Ovbujp/_old  2020-10-18 16:21:12.736485242 +0200
+++ /var/tmp/diff_new_pack.Ovbujp/_new  2020-10-18 16:21:12.740485244 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,16 +12,16 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 # YUIWidget_MenuBar
 %define min_yui_version3.11.0
-%define yui_so 13
+%define yui_so 14
 
 Name:   yast2-ycp-ui-bindings
-Version:4.3.2
+Version:4.3.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.3.2.tar.bz2 -> 
yast2-ycp-ui-bindings-4.3.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.2/examples/Events.rb 
new/yast2-ycp-ui-bindings-4.3.3/examples/Events.rb
--- old/yast2-ycp-ui-bindings-4.3.2/examples/Events.rb  2020-08-12 
16:43:34.0 +0200
+++ new/yast2-ycp-ui-bindings-4.3.3/examples/Events.rb  2020-10-09 
16:50:33.0 +0200
@@ -1,6 +1,6 @@
 # encoding: utf-8
 
-# (Advanced) YCP example for various UI events:
+# (Advanced) example for various UI events:
 #
 # Create a dialog with all kinds of widgets that can generate events and
 # display any event nicely formatted in a RichText widget.
@@ -32,7 +32,7 @@
 
   @delivery = Tree(
 Id(:delivery_service),
-Opt(:notify, :notifyContextMenu),
+Opt(:notify, :immediate, :notifyContextMenu),
 " Service",
 [
   Item(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.3.2/examples/Table-flat-items.rb 
new/yast2-ycp-ui-bindings-4.3.3/examples/Table-flat-items.rb
--- old/yast2-ycp-ui-bindings-4.3.2/examples/Table-flat-items.rb
1970-01-01 01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-4.3.3/examples/Table-flat-items.rb
2020-10-09 16:50:33.0 +0200
@@ -0,0 +1,91 @@
+# encoding: utf-8
+
+# Example for table with single-selection and with flat items (no nesting)
+
+module Yast
+  class TableFlatItems < Client
+Yast.import "UI"
+
+def main
+  UI.OpenDialog(main_dialog)
+  update_selected(current_table_item)
+  handle_events
+  UI.CloseDialog
+end
+
+def main_dialog
+  MinSize(
+74, 17,
+MarginBox(
+  1, 0.4,
+  VBox(
+Left(
+  Heading("Storage Overview")
+),
+VSpacing(0.2),
+table,
+VSpacing(0.2),
+Left(Label("Selected:")),
+Label(Id(:selected), Opt(:outputField, :hstretch), "..."),
+VSpacing(0.3),
+Right(
+  PushButton(Id(:close), "")
+)
+  )
+)
+  )
+end
+
+def table
+  Table(
+Id(:table),
+Opt(:notify, :immediate),
+Header("Device", "Size", "Type", "Mount Point"),
+items
+  )
+end
+
+def items
+  [
+Item(Id(:sda), "/dev/sda", "931.5G"),
+Item(Id(:sda1), "/dev/sda1",  "97.7G", "ntfs", "/win/boot" ),
+Item(Id(:sda2), "/dev/sda2", "833.9G", "ntfs", "/win/app"  ),
+Item(Id(:sdb), "/dev/sdb", "931.5G"),
+Item(Id(:sdb1), 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2020-08-14 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2020-08-14 13:10:13

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3399 (New)


Package is "yast2-ycp-ui-bindings"

Fri Aug 14 13:10:13 2020 rev:80 rq:826060 version:4.3.2

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2020-06-10 00:38:59.685490899 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3399/yast2-ycp-ui-bindings.changes
2020-08-14 13:10:17.953232372 +0200
@@ -1,0 +2,13 @@
+Wed Aug 12 12:12:01 UTC 2020 - Stefan Hundhammer 
+
+- Use new syntax (MenuBar(), Menu()) in MenuBar example (bsc#1175115)
+- 4.3.2
+
+---
+Tue Aug 11 15:10:00 UTC 2020 - Stefan Hundhammer 
+
+- Added MenuBar widget (bsc#1175115)
+- Require libyui.so.13
+- 4.3.1
+
+---
@@ -6 +19 @@
-- 4.3.10
+- 4.3.0

Old:

  yast2-ycp-ui-bindings-4.3.0.tar.bz2

New:

  yast2-ycp-ui-bindings-4.3.2.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.Ir5Gq4/_old  2020-08-14 13:10:18.493232577 +0200
+++ /var/tmp/diff_new_pack.Ir5Gq4/_new  2020-08-14 13:10:18.497232579 +0200
@@ -16,12 +16,12 @@
 #
 
 
-# YUIWidget_CustomStatusItemSelector
-%define min_yui_version3.10.0
-%define yui_so 12
+# YUIWidget_MenuBar
+%define min_yui_version3.11.0
+%define yui_so 13
 
 Name:   yast2-ycp-ui-bindings
-Version:4.3.0
+Version:4.3.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.3.0.tar.bz2 -> 
yast2-ycp-ui-bindings-4.3.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.3.0/examples/MenuBar1.rb 
new/yast2-ycp-ui-bindings-4.3.2/examples/MenuBar1.rb
--- old/yast2-ycp-ui-bindings-4.3.0/examples/MenuBar1.rb1970-01-01 
01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-4.3.2/examples/MenuBar1.rb2020-08-12 
16:43:34.0 +0200
@@ -0,0 +1,156 @@
+# encoding: utf-8
+
+module Yast
+  class MenuBar1Client < Client
+Yast.import "UI"
+include Yast::Logger
+
+def main
+  UI.OpenDialog(dialog_widgets)
+  update_actions
+  handle_events
+  UI.CloseDialog
+  nil
+end
+
+def dialog_widgets
+  MinSize( 50, 20,
+VBox(
+  MenuBar(Id(:menu_bar), main_menus),
+  HVCenter(
+HVSquash(
+  VBox(
+Left(Label("Last Event:")),
+VSpacing( 0.2 ),
+MinWidth( 20,
+  Label(Id(:last_event), Opt(:outputField), "")
+),
+VSpacing( 2 ),
+CheckBox(Id(:read_only), Opt(:notify), "Read ", true)
+  )
+)
+  ),
+  Right(PushButton(Id(:cancel), ""))
+)
+  )
+end
+
+def main_menus
+  [
+Menu("", file_menu),
+Menu("", edit_menu),
+Menu("", view_menu),
+Menu("", options_menu),
+Menu("", debug_menu)
+  ].freeze
+end
+
+def file_menu
+  [
+Item(Id(:open), ""),
+Item(Id(:save), ""),
+Item(Id(:save_as), "Save "),
+Item("---"),
+Item(Id(:quit), ""),
+  ].freeze
+end
+
+def edit_menu
+  [
+Item(Id(:cut), "C"),
+Item(Id(:copy), ""),
+Item(Id(:paste), ""),
+  ].freeze
+end
+
+def view_menu
+  [
+Item(Id(:view_normal), ""),
+Item(Id(:view_compact), ""),
+Item(Id(:view_detailed), ""),
+Item("---"),
+term(:menu, "", zoom_menu),
+  ].freeze
+end
+
+def zoom_menu
+  [
+Item(Id(:zoom_in), "Zoom " ),
+Item(Id(:zoom_out), "Zoom " ),
+Item(Id(:zoom_default), "Zoom " ),
+  ].freeze
+end
+
+def options_menu
+  [
+Item(Id(:settings), ""),
+  ].freeze
+end
+
+def debug_menu
+  [
+Item(Id(:dump_status), "Dump enabled / disabled "),
+Item(Id(:dump_disabled), "Dump  items")
+  ].freeze
+end
+
+def handle_events
+  while true
+id = UI.UserInput
+
+case id
+when :quit, :cancel # :cancel is WM_CLOSE
+  break # leave event loop
+when :read_only
+  update_actions
+when :dump_status
+  dump_item_status
+when :dump_disabled
+  dump_disabled_ids
+end
+
+show_event(id)
+  

commit yast2-ycp-ui-bindings for openSUSE:Factory

2020-06-09 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2020-06-10 00:38:36

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3606 (New)


Package is "yast2-ycp-ui-bindings"

Wed Jun 10 00:38:36 2020 rev:79 rq:812539 version:4.3.0

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2020-01-24 14:11:05.854408131 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.3606/yast2-ycp-ui-bindings.changes
2020-06-10 00:38:59.685490899 +0200
@@ -1,0 +2,7 @@
+Thu Jun  4 11:52:17 UTC 2020 - Stefan Hundhammer 
+
+- Added widget option autoWrap for label widget (bsc#1172513) 
+- Require libyui.so.12
+- 4.3.10
+
+---

Old:

  yast2-ycp-ui-bindings-4.2.9.tar.bz2

New:

  yast2-ycp-ui-bindings-4.3.0.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.MN4J0L/_old  2020-06-10 00:39:02.001496973 +0200
+++ /var/tmp/diff_new_pack.MN4J0L/_new  2020-06-10 00:39:02.005496983 +0200
@@ -17,11 +17,11 @@
 
 
 # YUIWidget_CustomStatusItemSelector
-%define min_yui_version3.9.1
-%define yui_so 11
+%define min_yui_version3.10.0
+%define yui_so 12
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.9
+Version:4.3.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.2.9.tar.bz2 -> 
yast2-ycp-ui-bindings-4.3.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.9/examples/Label-AutoWrap1.rb 
new/yast2-ycp-ui-bindings-4.3.0/examples/Label-AutoWrap1.rb
--- old/yast2-ycp-ui-bindings-4.2.9/examples/Label-AutoWrap1.rb 1970-01-01 
01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-4.3.0/examples/Label-AutoWrap1.rb 2020-06-08 
12:26:06.0 +0200
@@ -0,0 +1,28 @@
+# encoding: utf-8
+
+module Yast
+  class LabelAutoWrap1Client < Client
+def main
+  Yast.import "UI"
+
+  width = 40
+  text  = "This is an example of a lengthy text that needs to be 
auto-wrapped to make it fit. "
+  text += "And it goes on and on and on; it does not have any newline. "
+  text += "It's just one single very long line. "
+  text += "The widget has to find appropriate places to break that long 
text into lines."
+
+  UI.OpenDialog(
+VBox(
+  MinWidth( width, Label(Opt(:autoWrap), text) ),
+  PushButton("")
+)
+  )
+  UI.UserInput
+  UI.CloseDialog
+
+  nil
+end
+  end
+end
+
+Yast::LabelAutoWrap1Client.new.main
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-4.3.0/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.changes   
2020-01-23 17:53:14.0 +0100
+++ new/yast2-ycp-ui-bindings-4.3.0/package/yast2-ycp-ui-bindings.changes   
2020-06-08 12:26:06.0 +0200
@@ -1,4 +1,11 @@
 ---
+Thu Jun  4 11:52:17 UTC 2020 - Stefan Hundhammer 
+
+- Added widget option autoWrap for label widget (bsc#1172513) 
+- Require libyui.so.12
+- 4.3.10
+
+---
 Thu Jan 23 16:47:02 UTC 2020 - Imobach Gonzalez Sosa 
 
 - Add support for the option to enable the online search
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-4.3.0/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.spec  
2020-01-23 17:53:14.0 +0100
+++ new/yast2-ycp-ui-bindings-4.3.0/package/yast2-ycp-ui-bindings.spec  
2020-06-08 12:26:06.0 +0200
@@ -16,11 +16,11 @@
 #
 
 # YUIWidget_CustomStatusItemSelector
-%define min_yui_version3.9.1
-%define yui_so 11
+%define min_yui_version3.10.0
+%define yui_so 12
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.9
+Version:4.3.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.2.9/src/YCPDialogParser.cc 
new/yast2-ycp-ui-bindings-4.3.0/src/YCPDialogParser.cc
--- old/yast2-ycp-ui-bindings-4.2.9/src/YCPDialogParser.cc  

commit yast2-ycp-ui-bindings for openSUSE:Factory

2020-01-24 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2020-01-24 14:11:02

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.26092 (New)


Package is "yast2-ycp-ui-bindings"

Fri Jan 24 14:11:02 2020 rev:78 rq:79 version:4.2.9

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2020-01-04 19:20:39.449119059 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.26092/yast2-ycp-ui-bindings.changes
   2020-01-24 14:11:05.854408131 +0100
@@ -1,0 +2,13 @@
+Thu Jan 23 16:47:02 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Add support for the option to enable the online search
+  feature in the package selector (jsc#SLE-9109).
+- 4.2.9
+
+---
+Thu Jan 23 12:03:31 UTC 2020 - Stefan Hundhammer 
+
+- Allow integer as initial item status (part of bsc#1084674)
+- 4.2.8
+
+---

Old:

  yast2-ycp-ui-bindings-4.2.7.tar.bz2

New:

  yast2-ycp-ui-bindings-4.2.9.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.Kfml8B/_old  2020-01-24 14:11:06.818408457 +0100
+++ /var/tmp/diff_new_pack.Kfml8B/_new  2020-01-24 14:11:06.818408457 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 %define yui_so 11
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.7
+Version:4.2.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.2.7.tar.bz2 -> 
yast2-ycp-ui-bindings-4.2.9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.7/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-4.2.7/package/yast2-ycp-ui-bindings.changes   
2019-12-18 17:41:45.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.changes   
2020-01-23 17:53:14.0 +0100
@@ -1,4 +1,17 @@
 ---
+Thu Jan 23 16:47:02 UTC 2020 - Imobach Gonzalez Sosa 
+
+- Add support for the option to enable the online search
+  feature in the package selector (jsc#SLE-9109).
+- 4.2.9
+
+---
+Thu Jan 23 12:03:31 UTC 2020 - Stefan Hundhammer 
+
+- Allow integer as initial item status (part of bsc#1084674)
+- 4.2.8
+
+---
 Wed Dec 18 14:56:39 CET 2019 - aschn...@suse.com
 
 - handle sort key in parser for table item (bsc#1140018)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.7/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-4.2.7/package/yast2-ycp-ui-bindings.spec  
2019-12-18 17:41:45.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.9/package/yast2-ycp-ui-bindings.spec  
2020-01-23 17:53:14.0 +0100
@@ -20,7 +20,7 @@
 %define yui_so 11
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.7
+Version:4.2.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.2.7/src/YCPDialogParser.cc 
new/yast2-ycp-ui-bindings-4.2.9/src/YCPDialogParser.cc
--- old/yast2-ycp-ui-bindings-4.2.7/src/YCPDialogParser.cc  2019-12-18 
17:41:45.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.9/src/YCPDialogParser.cc  2020-01-23 
17:53:14.0 +0100
@@ -2422,8 +2422,8 @@
  * columns) from that list (In that case, use the :SelectedItems property, not
  * :Value).
  *
- * Each cell (each column within each row) has a label text and an optional
- * icon.
+ * Each cell (each column within each row) has a label text, an optional icon 
and
+ * an also optional a sort-key (used instead of the label text during sort).
  *
  * (Note: Not all UIs (in particular not text-based UIs) support displaying
  * icons, so an icon should never be an exclusive means to display any kind of
@@ -2447,9 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2020-01-04 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2020-01-04 19:20:35

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.6675 (New)


Package is "yast2-ycp-ui-bindings"

Sat Jan  4 19:20:35 2020 rev:77 rq:757902 version:4.2.7

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2019-12-14 12:04:32.447391922 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.6675/yast2-ycp-ui-bindings.changes
2020-01-04 19:20:39.449119059 +0100
@@ -1,0 +2,6 @@
+Wed Dec 18 14:56:39 CET 2019 - aschn...@suse.com
+
+- handle sort key in parser for table item (bsc#1140018)
+- 4.2.7
+
+---

Old:

  yast2-ycp-ui-bindings-4.2.6.tar.bz2

New:

  yast2-ycp-ui-bindings-4.2.7.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.2vDjII/_old  2020-01-04 19:20:40.389119476 +0100
+++ /var/tmp/diff_new_pack.2vDjII/_new  2020-01-04 19:20:40.389119476 +0100
@@ -17,11 +17,11 @@
 
 
 # YUIWidget_CustomStatusItemSelector
-%define min_yui_version3.8.4
+%define min_yui_version3.9.1
 %define yui_so 11
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.6
+Version:4.2.7
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.2.6.tar.bz2 -> 
yast2-ycp-ui-bindings-4.2.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.6/examples/Table-sort-key.rb 
new/yast2-ycp-ui-bindings-4.2.7/examples/Table-sort-key.rb
--- old/yast2-ycp-ui-bindings-4.2.6/examples/Table-sort-key.rb  1970-01-01 
01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.7/examples/Table-sort-key.rb  2019-12-18 
17:41:45.0 +0100
@@ -0,0 +1,46 @@
+# encoding: utf-8
+
+module Yast
+  class TableSortingClient < Client
+def main
+  Yast.import "UI"
+  UI.OpenDialog(
+VBox(
+  Label("Disk"),
+  MinSize(
+30,
+10,
+Table(
+  Header("Device", Right("Size")),
+  [
+Item(Id(1),
+ term(:cell, term(:sortKey, "sd0a001"), "sda1"),
+ term(:cell, term(:sortKey, "10240"), "10.00 MiB")),
+Item(Id(2),
+ term(:cell, term(:sortKey, "sd0a010"), "sda10"),
+ term(:cell, term(:sortKey, "2"), "2.00 KiB")),
+Item(Id(3),
+ term(:cell, term(:sortKey, "sd0a002"), "sda2"),
+ term(:cell, term(:sortKey, "256"), "0.25 MiB")),
+Item(Id(4),
+ term(:cell, term(:sortKey, "sd0b"), "sdb"),
+ term(:cell, term(:sortKey, "32"), "32.00 KiB")),
+Item(Id(5),
+ term(:cell, term(:sortKey, "sd0b2"), "sdb2"),
+ term(:cell, term(:sortKey, "4"), "4.00 KiB")),
+Item(Id(6),
+ term(:cell, term(:sortKey, "sdaa"), "sdaa"),
+ term(:cell, term(:sortKey, "512"), "0.50 MiB"))
+  ]
+)
+  ),
+  PushButton("")
+)
+  )
+  UI.UserInput
+  UI.CloseDialog
+end
+  end
+end
+
+Yast::TableSortingClient.new.main
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.2.6/examples/Table3.rb 
new/yast2-ycp-ui-bindings-4.2.7/examples/Table3.rb
--- old/yast2-ycp-ui-bindings-4.2.6/examples/Table3.rb  2019-12-12 
09:54:57.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.7/examples/Table3.rb  2019-12-18 
17:41:45.0 +0100
@@ -5,6 +5,9 @@
   class Table3Client < Client
 def main
   Yast.import "UI"
+
+  # items are on purpose not sorted
+
   @foodItems = [
 Item(Id(3), "Spaghetti", 8),
 Item(Id(4), "Steak Sandwich", 12),
@@ -17,7 +20,10 @@
 Item(Id(1), "Audi", 5),
 Item(Id(2), "VW", 4),
 Item(Id(3), "BMW", 6),
-Item(Id(3), "Porsche", 8)
+Item(Id(3), "Porsche", 8),
+Item(Id(4), "Bentley", 20),
+Item(Id(5), "Bugatti", 2300),
+Item(Id(6), "Lada", 8000)
   ]
 
   @itemLists = [@foodItems, @carItems]
@@ -30,7 +36,7 @@
   MinSize(
 30,
 10,
-Table(Id(:table), Header("Name", "Price"), @foodItems)
+Table(Id(:table), Header("Name", Right("Price")), @foodItems)
   ),
  

commit yast2-ycp-ui-bindings for openSUSE:Factory

2019-12-14 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2019-12-14 12:03:54

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.4691 (New)


Package is "yast2-ycp-ui-bindings"

Sat Dec 14 12:03:54 2019 rev:76 rq:756010 version:4.2.6

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2019-11-20 10:26:04.262548339 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.4691/yast2-ycp-ui-bindings.changes
2019-12-14 12:04:32.447391922 +0100
@@ -1,0 +2,6 @@
+Thu Dec 12 09:45:27 CET 2019 - aschn...@suse.com
+
+- require correct libyui so version 11 (bsc#1132247)
+- 4.2.6
+
+---

Old:

  yast2-ycp-ui-bindings-4.2.4.tar.bz2

New:

  yast2-ycp-ui-bindings-4.2.6.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.SqHOOW/_old  2019-12-14 12:04:32.831391856 +0100
+++ /var/tmp/diff_new_pack.SqHOOW/_new  2019-12-14 12:04:32.835391855 +0100
@@ -18,10 +18,10 @@
 
 # YUIWidget_CustomStatusItemSelector
 %define min_yui_version3.8.4
-%define yui_so 10
+%define yui_so 11
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.4
+Version:4.2.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.2.4.tar.bz2 -> 
yast2-ycp-ui-bindings-4.2.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.4/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-4.2.6/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-4.2.4/package/yast2-ycp-ui-bindings.changes   
2019-11-12 11:18:46.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.6/package/yast2-ycp-ui-bindings.changes   
2019-12-12 09:54:57.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Dec 12 09:45:27 CET 2019 - aschn...@suse.com
+
+- require correct libyui so version 11 (bsc#1132247)
+- 4.2.6
+
+---
 Tue Nov 12 09:27:46 UTC 2019 - Steffen Winterfeldt 
 
 - require correct libyui version (bsc#1153103)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.4/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-4.2.6/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-4.2.4/package/yast2-ycp-ui-bindings.spec  
2019-11-12 11:18:46.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.6/package/yast2-ycp-ui-bindings.spec  
2019-12-12 09:54:57.0 +0100
@@ -17,10 +17,10 @@
 
 # YUIWidget_CustomStatusItemSelector
 %define min_yui_version3.8.4
-%define yui_so 10
+%define yui_so 11
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.4
+Version:4.2.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit yast2-ycp-ui-bindings for openSUSE:Factory

2019-11-20 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2019-11-20 10:26:02

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.26869 (New)


Package is "yast2-ycp-ui-bindings"

Wed Nov 20 10:26:02 2019 rev:75 rq:747538 version:4.2.4

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2019-09-30 15:52:09.794371999 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.26869/yast2-ycp-ui-bindings.changes
   2019-11-20 10:26:04.262548339 +0100
@@ -1,0 +2,12 @@
+Tue Nov 12 09:27:46 UTC 2019 - Steffen Winterfeldt 
+
+- require correct libyui version (bsc#1153103)
+- 4.2.5
+
+---
+Thu Nov  7 13:26:47 UTC 2019 - Stefan Hundhammer 
+
+- Support for CustomStatusItemSelector (bsc#1084674)
+- 4.2.4
+
+---

Old:

  yast2-ycp-ui-bindings-4.2.3.tar.bz2

New:

  yast2-ycp-ui-bindings-4.2.4.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.E3KUDs/_old  2019-11-20 10:26:04.822548450 +0100
+++ /var/tmp/diff_new_pack.E3KUDs/_new  2019-11-20 10:26:04.822548450 +0100
@@ -16,8 +16,12 @@
 #
 
 
+# YUIWidget_CustomStatusItemSelector
+%define min_yui_version3.8.4
+%define yui_so 10
+
 Name:   yast2-ycp-ui-bindings
-Version:4.2.3
+Version:4.2.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -36,8 +40,8 @@
 Requires:   yast2-core
 BuildRequires:  yast2-core-devel
 
-# YWidgetFactory::createSingleItemSelector()
-BuildRequires:  libyui-devel >= 3.8.0
+BuildRequires:  libyui-devel >= %min_yui_version
+Requires:   libyui%yui_so >= %min_yui_version
 
 # libyui ImplPtr
 BuildRequires:  boost-devel
@@ -60,7 +64,7 @@
 Requires:   boost-devel
 Requires:   glibc-devel
 Requires:   libstdc++-devel
-Requires:   libyui-devel
+Requires:   libyui-devel >= %min_yui_version
 Requires:   yast2-core-devel
 Requires:   yast2-devtools
 

++ yast2-ycp-ui-bindings-4.2.3.tar.bz2 -> 
yast2-ycp-ui-bindings-4.2.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.2.3/examples/CustomStatusItemSelector1.rb 
new/yast2-ycp-ui-bindings-4.2.4/examples/CustomStatusItemSelector1.rb
--- old/yast2-ycp-ui-bindings-4.2.3/examples/CustomStatusItemSelector1.rb   
1970-01-01 01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.4/examples/CustomStatusItemSelector1.rb   
2019-11-12 11:18:46.0 +0100
@@ -0,0 +1,156 @@
+# encoding: utf-8
+
+module Yast
+  class ExampleClient < Client
+Yast.import "UI"
+include Yast::Logger
+
+def main
+  UI.OpenDialog(main_dialog)
+  set_visible_items
+  handle_events
+  UI.CloseDialog
+end
+
+protected
+
+VISIBLE_ITEMS= 6
+
+# Some constants to make handling the numeric status values better 
readable.
+# Those constants correspond to the index of the status in the status
+# definition (see custom_states).
+
+MOD_DONT_INSTALL = 0
+MOD_INSTALL  = 1
+MOD_AUTOINSTALL  = 2
+
+# The custom status values. Each one has an icon name, a text equivalent to
+# indicate that status in the NCurses UI, and an optional next status.
+#
+# If a next status is specified, a click on that item will automatically
+# cycle to that next status. If not specified (or -1), the application
+# needs to handle status transitions from that status to another one.
+def custom_states
+  [
+# icon,  NCurses indicator, next status (optional)
+["checkbox-off","[  ]", MOD_INSTALL ],
+["checkbox-on", "[ +]", MOD_DONT_INSTALL],
+["checkbox-auto-selected",  "[a+]", MOD_DONT_INSTALL]
+  ]
+end
+
+def items
+  [
+#   item ID,  heading label , description text (optional)
+Item(Id(:mod_kde   ), "KDE Plasma",  "Full-fledged desktop"
 ),
+Item(Id(:mod_xfce  ), "Xfce","Lightweight desktop" 
 ),
+Item(Id(:mod_x11   ), "X Window System", "X11, simple window manager, 
xterm"),
+Item(Id(:mod_office), "LibreOffice", "Office suite"
 ),
+Item(Id(:mod_server), "Server Tools","Web server, database, file 
server"),
+Item(Id(:mod_sdk   ), "SDK", "Development tools"   
 )
+  ]
+end
+
+def main_dialog
+  MarginBox(2, 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2019-09-30 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2019-09-30 15:52:07

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.2352 (New)


Package is "yast2-ycp-ui-bindings"

Mon Sep 30 15:52:07 2019 rev:74 rq:732953 version:4.2.3

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2019-09-23 13:16:04.509119411 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.2352/yast2-ycp-ui-bindings.changes
2019-09-30 15:52:09.794371999 +0200
@@ -1,0 +2,12 @@
+Tue Sep 24 13:15:45 UTC 2019 - Stefan Hundhammer 
+
+- Added example for icons in ItemSelector widget (bsc#1084674)
+- 4.2.3
+
+---
+Mon Sep 23 12:39:31 UTC 2019 - Stefan Hundhammer 
+
+- Added ItemSelector widget (bsc#1084674)
+- 4.2.2
+
+---

Old:

  yast2-ycp-ui-bindings-4.2.1.tar.bz2

New:

  yast2-ycp-ui-bindings-4.2.3.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.R1bEqZ/_old  2019-09-30 15:52:10.538370018 +0200
+++ /var/tmp/diff_new_pack.R1bEqZ/_new  2019-09-30 15:52:10.538370018 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:4.2.1
+Version:4.2.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -36,8 +36,8 @@
 Requires:   yast2-core
 BuildRequires:  yast2-core-devel
 
-# YApplication::openUI/closeUI
-BuildRequires:  libyui-devel >= 3.2.0
+# YWidgetFactory::createSingleItemSelector()
+BuildRequires:  libyui-devel >= 3.8.0
 
 # libyui ImplPtr
 BuildRequires:  boost-devel

++ yast2-ycp-ui-bindings-4.2.1.tar.bz2 -> 
yast2-ycp-ui-bindings-4.2.3.tar.bz2 ++
 2920 lines of diff (skipped)




commit yast2-ycp-ui-bindings for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2019-09-23 13:16:03

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.7948 (New)


Package is "yast2-ycp-ui-bindings"

Mon Sep 23 13:16:03 2019 rev:73 rq:730756 version:4.2.1

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2018-11-01 18:58:29.913985751 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new.7948/yast2-ycp-ui-bindings.changes
2019-09-23 13:16:04.509119411 +0200
@@ -1,0 +2,14 @@
+Fri Sep 13 15:05:16 CEST 2019 - aschn...@suse.com
+
+- added example using scrollbar positions of RichText widget with
+  hyperlinks (bsc#1150498)
+- 4.2.1
+
+---
+Thu Sep 12 12:46:46 CEST 2019 - aschn...@suse.com
+
+- added example using scrollbar positions of RichText widget
+  (bsc#1150498)
+- 4.2.0
+
+---

Old:

  yast2-ycp-ui-bindings-4.1.0.tar.bz2

New:

  yast2-ycp-ui-bindings-4.2.1.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.YhlkHP/_old  2019-09-23 13:16:04.937119334 +0200
+++ /var/tmp/diff_new_pack.YhlkHP/_new  2019-09-23 13:16:04.941119333 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:4.1.0
+Version:4.2.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-4.1.0.tar.bz2 -> 
yast2-ycp-ui-bindings-4.2.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-4.1.0/Dockerfile 
new/yast2-ycp-ui-bindings-4.2.1/Dockerfile
--- old/yast2-ycp-ui-bindings-4.1.0/Dockerfile  2018-10-16 17:43:55.0 
+0200
+++ new/yast2-ycp-ui-bindings-4.2.1/Dockerfile  2019-09-13 16:13:52.0 
+0200
@@ -1,2 +1,2 @@
-FROM yastdevel/cpp
+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.1.0/examples/RichText7.rb 
new/yast2-ycp-ui-bindings-4.2.1/examples/RichText7.rb
--- old/yast2-ycp-ui-bindings-4.1.0/examples/RichText7.rb   1970-01-01 
01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-4.2.1/examples/RichText7.rb   2019-09-13 
16:13:52.0 +0200
@@ -0,0 +1,82 @@
+# encoding: utf-8
+
+# Example for controlling scrollbars of a RichText widget
+module Yast
+  class RichText7Client < Client
+def main
+  Yast.import 'UI'
+
+  text = ''
+  for n in 1..50 do
+text += "n = #{n}, 2^n = #{2**n}\n"
+  end
+
+  UI.OpenDialog(
+Opt(:defaultsize),
+VBox(
+  RichText(Id(:text), text),
+  HBox(
+PushButton(Id(:reset), 'Reset'),
+PushButton(Id(:append), 'Append')
+  ),
+  HBox(
+PushButton(Id(:vertical_minimum), 'Vertical Minimum'),
+PushButton(Id(:vertical_maximum), 'Vertical Maximum')
+  ),
+  HBox(
+PushButton(Id(:horizontal_minimum), 'Horizontal Minimum'),
+PushButton(Id(:horizontal_maximum), 'Horizontal Maximum')
+  ),
+  PushButton(Id(:close), Opt(:default), 'Close')
+)
+  )
+
+  input = nil
+  begin
+input = UI.UserInput
+
+case input
+
+when :reset
+  text = ''
+  for n in 1..50 do
+text += "n = #{n}, 2^n = #{2**n}\n"
+  end
+
+  vertical_scroll_value = UI.QueryWidget(Id(:text), :VScrollValue)
+  horizontal_scroll_value = UI.QueryWidget(Id(:text), :HScrollValue)
+  UI.ChangeWidget(Id(:text), :Value, text)
+  UI.ChangeWidget(Id(:text), :VScrollValue, vertical_scroll_value)
+  UI.ChangeWidget(Id(:text), :HScrollValue, horizontal_scroll_value)
+
+when :append
+  n += 1
+  text += "n = #{n}, 2^n = #{2**n}\n"
+
+  vertical_scroll_value = UI.QueryWidget(Id(:text), :VScrollValue)
+  horizontal_scroll_value = UI.QueryWidget(Id(:text), :HScrollValue)
+  UI.ChangeWidget(Id(:text), :Value, text)
+  UI.ChangeWidget(Id(:text), 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2018-11-02 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2018-11-01 18:58:26

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is "yast2-ycp-ui-bindings"

Thu Nov  1 18:58:26 2018 rev:72 rq:642415 version:4.1.0

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2017-11-19 11:07:00.844963399 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2018-11-01 18:58:29.913985751 +0100
@@ -1,0 +2,17 @@
+Tue Oct 16 16:35:35 CEST 2018 - sch...@suse.de
+
+- Added license file to spec.
+
+---
+Tue Oct  9 09:41:09 UTC 2018 - snw...@suse.com
+
+- increase version to correspond to the libyui version increase
+  (related to bsc#991090)
+- 4.1.0
+
+---
+Mon Aug 20 14:11:53 CEST 2018 - sch...@suse.de
+
+- Switched license in spec file from SPDX2 to SPDX3 format.
+
+---

Old:

  yast2-ycp-ui-bindings-4.0.0.tar.bz2

New:

  yast2-ycp-ui-bindings-4.1.0.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.vWQjhe/_old  2018-11-01 18:58:30.289985786 +0100
+++ /var/tmp/diff_new_pack.vWQjhe/_new  2018-11-01 18:58:30.293985787 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:4.0.0
+Version:4.1.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -43,7 +43,7 @@
 BuildRequires:  boost-devel
 
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
-License:GPL-2.0
+License:GPL-2.0-only
 Group:  System/YaST
 
 %description
@@ -96,5 +96,6 @@
 %{yast_includedir}
 %{_libdir}/pkgconfig/yast2-ycp-ui-bindings.pc
 %doc %{yast_docdir}
+%license COPYING
 
 %changelog

++ yast2-ycp-ui-bindings-4.0.0.tar.bz2 -> 
yast2-ycp-ui-bindings-4.1.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.0.0/examples/PatternSelector-wizard.rb 
new/yast2-ycp-ui-bindings-4.1.0/examples/PatternSelector-wizard.rb
--- old/yast2-ycp-ui-bindings-4.0.0/examples/PatternSelector-wizard.rb  
2017-11-15 18:30:27.473202615 +0100
+++ new/yast2-ycp-ui-bindings-4.1.0/examples/PatternSelector-wizard.rb  
2018-10-16 17:43:55.0 +0200
@@ -7,6 +7,8 @@
   Yast.import "UI"
   Yast.import "Pkg"
 
+  textdomain "example"
+
   # Pkg::SourceCreate( 
"http://dist.suse.de/install/SLP/SUSE-10.1-Beta3/i386/CD1/;, "" );
   Pkg.SourceCreate("file:/srv/sles-10-i386/CD1/", "")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-4.1.0/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.changes   
2017-11-15 18:30:27.545202615 +0100
+++ new/yast2-ycp-ui-bindings-4.1.0/package/yast2-ycp-ui-bindings.changes   
2018-10-16 17:43:55.0 +0200
@@ -1,4 +1,21 @@
 ---
+Tue Oct 16 16:35:35 CEST 2018 - sch...@suse.de
+
+- Added license file to spec.
+
+---
+Tue Oct  9 09:41:09 UTC 2018 - snw...@suse.com
+
+- increase version to correspond to the libyui version increase
+  (related to bsc#991090)
+- 4.1.0
+
+---
+Mon Aug 20 14:11:53 CEST 2018 - sch...@suse.de
+
+- Switched license in spec file from SPDX2 to SPDX3 format.
+
+---
 Wed Nov 15 17:31:59 CET 2017 - shundham...@suse.de
 
 - Fixed segfault when comparing YCPValueWidgetIDs with
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-4.1.0/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.spec  
2017-11-15 18:30:27.545202615 +0100
+++ 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2017-11-19 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2017-11-19 11:06:55

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is "yast2-ycp-ui-bindings"

Sun Nov 19 11:06:55 2017 rev:71 rq:542098 version:4.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2017-04-12 17:10:24.276623052 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2017-11-19 11:07:00.844963399 +0100
@@ -1,0 +2,7 @@
+Wed Nov 15 17:31:59 CET 2017 - shundham...@suse.de
+
+- Fixed segfault when comparing YCPValueWidgetIDs with
+  YStringWidgetIDs (fate#324098)
+- 4.0.0
+
+---

Old:

  yast2-ycp-ui-bindings-3.2.0.tar.bz2

New:

  yast2-ycp-ui-bindings-4.0.0.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.8LoiSb/_old  2017-11-19 11:07:01.336945459 +0100
+++ /var/tmp/diff_new_pack.8LoiSb/_new  2017-11-19 11:07:01.340945314 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.2.0
+Version:4.0.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-3.2.0.tar.bz2 -> 
yast2-ycp-ui-bindings-4.0.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.2.0/README.md 
new/yast2-ycp-ui-bindings-4.0.0/README.md
--- old/yast2-ycp-ui-bindings-3.2.0/README.md   2017-04-10 14:06:12.716990458 
+0200
+++ new/yast2-ycp-ui-bindings-4.0.0/README.md   2017-11-15 18:30:27.429202615 
+0100
@@ -3,4 +3,6 @@
 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/)
 
+### Online Documentation
 
+The latest documentation is generated online 
[here](https://yast-ui-bindings.surge.sh/).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-3.2.0/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-3.2.0/package/yast2-ycp-ui-bindings.changes   
2017-04-10 14:06:12.852990458 +0200
+++ new/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.changes   
2017-11-15 18:30:27.545202615 +0100
@@ -1,4 +1,11 @@
 ---
+Wed Nov 15 17:31:59 CET 2017 - shundham...@suse.de
+
+- Fixed segfault when comparing YCPValueWidgetIDs with
+  YStringWidgetIDs (fate#324098)
+- 4.0.0
+
+---
 Mon Apr 10 10:31:28 UTC 2017 - jreidin...@suse.com
 
 - added built-in SetApplicationTitle for setting application title
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-3.2.0/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-3.2.0/package/yast2-ycp-ui-bindings.spec  
2017-04-10 14:06:12.852990458 +0200
+++ new/yast2-ycp-ui-bindings-4.0.0/package/yast2-ycp-ui-bindings.spec  
2017-11-15 18:30:27.545202615 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.2.0
+Version:4.0.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.2.0/src/YCPValueWidgetID.cc 
new/yast2-ycp-ui-bindings-4.0.0/src/YCPValueWidgetID.cc
--- old/yast2-ycp-ui-bindings-3.2.0/src/YCPValueWidgetID.cc 2017-04-10 
14:06:12.864990458 +0200
+++ new/yast2-ycp-ui-bindings-4.0.0/src/YCPValueWidgetID.cc 2017-11-15 
18:30:27.561202615 +0100
@@ -44,7 +44,7 @@
 YCPValueWidgetID * otherYCPValueID =
dynamic_cast (otherID);
 
-if ( otherID )
+if ( otherYCPValueID )
return _value->equal( otherYCPValueID->value() );
 
 if ( _value->isString() || _value->isSymbol() )
@@ -52,14 +52,17 @@
YStringWidgetID * otherStringID =
dynamic_cast (otherID);
 
-   if ( _value->isString() )
-   {
-   return _value->asString()->value() == otherStringID->value();
-   }
-   else // _value->isSymbol()
-   {
-   return 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2017-04-12 Thread root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2017-04-12 17:10:18

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is "yast2-ycp-ui-bindings"

Wed Apr 12 17:10:18 2017 rev:70 rq:487039 version:3.2.0

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2015-07-16 17:14:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2017-04-12 17:10:24.276623052 +0200
@@ -1,0 +2,7 @@
+Mon Apr 10 10:31:28 UTC 2017 - jreidin...@suse.com
+
+- added built-in SetApplicationTitle for setting application title
+  (bnc#1033161)
+- 3.2.0
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.9.tar.bz2

New:

  yast2-ycp-ui-bindings-3.2.0.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.vShGV2/_old  2017-04-12 17:10:25.928389227 +0200
+++ /var/tmp/diff_new_pack.vShGV2/_new  2017-04-12 17:10:25.932388661 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.9
+Version:3.2.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-3.1.9.tar.bz2 -> 
yast2-ycp-ui-bindings-3.2.0.tar.bz2 ++
 4397 lines of diff (skipped)




commit yast2-ycp-ui-bindings for openSUSE:Factory

2015-07-16 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2015-07-16 17:14:43

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2015-07-05 17:52:13.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2015-07-16 17:14:44.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul  8 12:40:33 UTC 2015 - mvid...@suse.com
+
+- Added OpenUI, CloseUI (boo#937026).
+- 3.1.9
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.8.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.9.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.2hZWdq/_old  2015-07-16 17:14:45.0 +0200
+++ /var/tmp/diff_new_pack.2hZWdq/_new  2015-07-16 17:14:45.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.8
+Version:3.1.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -35,13 +35,9 @@
 
 Requires:   yast2-core
 BuildRequires:  yast2-core-devel
-Conflicts:  yast2-core  2.16.38
 
-# dependecies for new libyui
-Conflicts:  yast2  2.23.0
-Conflicts:  yast2-libyui  2.42.0
-
-BuildRequires:  libyui-devel = 3.1.2
+# YApplication::openUI/closeUI
+BuildRequires:  libyui-devel = 3.2.0
 
 # libyui ImplPtr
 BuildRequires:  boost-devel

++ yast2-ycp-ui-bindings-3.1.8.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-3.1.8/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-3.1.9/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-3.1.8/package/yast2-ycp-ui-bindings.changes   
2015-07-01 14:46:36.0 +0200
+++ new/yast2-ycp-ui-bindings-3.1.9/package/yast2-ycp-ui-bindings.changes   
2015-07-08 17:36:37.0 +0200
@@ -1,4 +1,10 @@
 ---
+Wed Jul  8 12:40:33 UTC 2015 - mvid...@suse.com
+
+- Added OpenUI, CloseUI (boo#937026).
+- 3.1.9
+
+---
 Wed Jul  1 11:28:01 UTC 2015 - jreidin...@suse.com
 
 - added built-in SetApplicationIcon for setting application icon
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-3.1.8/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-3.1.9/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-3.1.8/package/yast2-ycp-ui-bindings.spec  
2015-07-01 14:46:36.0 +0200
+++ new/yast2-ycp-ui-bindings-3.1.9/package/yast2-ycp-ui-bindings.spec  
2015-07-08 17:36:37.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.8
+Version:3.1.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,13 +37,9 @@
 
 Requires:  yast2-core
 BuildRequires: yast2-core-devel
-Conflicts: yast2-core  2.16.38
 
-# dependecies for new libyui
-Conflicts: yast2  2.23.0
-Conflicts: yast2-libyui  2.42.0
-
-BuildRequires: libyui-devel = 3.1.2
+# YApplication::openUI/closeUI
+BuildRequires: libyui-devel = 3.2.0
 
 # libyui ImplPtr
 BuildRequires: boost-devel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.8/src/YCP_UI.cc 
new/yast2-ycp-ui-bindings-3.1.9/src/YCP_UI.cc
--- old/yast2-ycp-ui-bindings-3.1.8/src/YCP_UI.cc   2015-07-01 
14:46:36.0 +0200
+++ new/yast2-ycp-ui-bindings-3.1.9/src/YCP_UI.cc   2015-07-08 
17:36:37.0 +0200
@@ -619,6 +619,35 @@
 }
 
 
+/**
+ * @builtin OpenUI()
+ * @short Opens NCurses and disables stdout
+ * @description
+ * To mix TUI (NCurses) with stdio, enclose the UI parts
+ * within an OpenUI/CloseUI pair.
+ *
+ * @return void
+ */
+
+void YCP_UI::OpenUI()
+{
+YUI::app()-openUI();
+}
+
+
+/**
+ * @builtin CloseUI()
+ * @short Closes NCurses and enables stdout
+ *
+ * @return void
+ */
+
+void YCP_UI::CloseUI()
+{
+YUI::app()-closeUI();
+}
+
+
 
 /**
  * @builtin ChangeWidget
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.8/src/YCP_UI.h 
new/yast2-ycp-ui-bindings-3.1.9/src/YCP_UI.h
--- old/yast2-ycp-ui-bindings-3.1.8/src/YCP_UI.h2015-07-01 
14:46:36.0 +0200
+++ new/yast2-ycp-ui-bindings-3.1.9/src/YCP_UI.h

commit yast2-ycp-ui-bindings for openSUSE:Factory

2015-07-05 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2015-07-05 17:52:12

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2014-05-06 13:40:24.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2015-07-05 17:52:13.0 +0200
@@ -1,0 +2,13 @@
+Wed Jul  1 11:28:01 UTC 2015 - jreidin...@suse.com
+
+- added built-in SetApplicationIcon for setting application icon
+  only (bnc#894220)
+- 3.1.8
+
+---
+Wed Feb 25 09:06:23 CET 2015 - g...@suse.de
+
+- Enhance example DateField1.rb
+- Add RELEASE-NOTES*.es.* files to examples (bnc#906936)
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.7.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.8.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.NB65z5/_old  2015-07-05 17:52:14.0 +0200
+++ /var/tmp/diff_new_pack.NB65z5/_new  2015-07-05 17:52:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.7
+Version:3.1.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-3.1.7.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.7/.travis.yml 
new/yast2-ycp-ui-bindings-3.1.8/.travis.yml
--- old/yast2-ycp-ui-bindings-3.1.7/.travis.yml 1970-01-01 01:00:00.0 
+0100
+++ new/yast2-ycp-ui-bindings-3.1.8/.travis.yml 2015-07-01 14:46:36.0 
+0200
@@ -0,0 +1,14 @@
+language: cpp
+compiler:
+- gcc
+before_install:
+- rvm reset
+- wget 
https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
+- sh ./travis_setup.sh -p rake docbook-xsl xsltproc yast2-core-dev 
yast2-devtools libyui-dev -g yast-rake
+script:
+- rake check:syntax
+- make -f Makefile.cvs
+- make -j 4
+- make check
+- sudo make install
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.7/CONTRIBUTING.md 
new/yast2-ycp-ui-bindings-3.1.8/CONTRIBUTING.md
--- old/yast2-ycp-ui-bindings-3.1.7/CONTRIBUTING.md 2014-04-18 
13:42:41.0 +0200
+++ new/yast2-ycp-ui-bindings-3.1.8/CONTRIBUTING.md 2015-07-01 
14:46:36.0 +0200
@@ -12,13 +12,13 @@
 ---
 
 If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.novell.com/enter_bug.cgi?format=guidedproduct=openSUSE+Factorycomponent=YaST2)
+[Bugzilla](https://bugzilla.suse.com/enter_bug.cgi?format=guidedproduct=openSUSE+Factorycomponent=YaST2)
 or [GitHub issues](../../issues). (For Bugzilla, use the [simplified
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
 If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.novell.com/) or GitHub issues. We can't guarantee
+[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
 that every bug will be fixed, but we'll try.
 
 When creating a bug report, please follow our [bug reporting
@@ -71,7 +71,7 @@
 [widely used
 
conventions](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
 
-If your commit is related to a bug in Buzgilla or an issue on GitHub, make sure
+If your commit is related to a bug in Bugzilla or an issue on GitHub, make sure
 you mention it in the commit message for cross-reference. Use format like
 bnc#775814 or gh#yast/yast-foo#42. See also [GitHub
 
autolinking](https://help.github.com/articles/github-flavored-markdown#references)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.7/MAINTAINER 
new/yast2-ycp-ui-bindings-3.1.8/MAINTAINER
--- old/yast2-ycp-ui-bindings-3.1.7/MAINTAINER  2014-04-18 13:42:41.0 
+0200
+++ new/yast2-ycp-ui-bindings-3.1.8/MAINTAINER  2015-07-01 14:46:36.0 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2014-04-13 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2014-04-13 13:13:31

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2014-03-21 12:14:02.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2014-04-13 13:13:40.0 +0200
@@ -1,0 +2,6 @@
+Wed Apr  9 12:53:42 UTC 2014 - mvid...@suse.com
+
+- Enable wizard title on the left instead of on top (bnc#868859)
+- 3.1.6
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.5.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.6.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.3rpUsO/_old  2014-04-13 13:13:41.0 +0200
+++ /var/tmp/diff_new_pack.3rpUsO/_new  2014-04-13 13:13:41.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.5
+Version:3.1.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-3.1.5.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.6.tar.bz2 ++
 29243 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2014-03-21 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2014-03-21 12:13:57

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2014-01-09 17:27:15.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2014-03-21 12:14:02.0 +0100
@@ -1,0 +2,6 @@
+Wed Mar 12 08:19:36 UTC 2014 - jsr...@suse.cz
+
+- more relaxed typeinfo to avoid errors when calling the builtin
+- 3.1.5
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.4.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.5.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.ATknVW/_old  2014-03-21 12:14:03.0 +0100
+++ /var/tmp/diff_new_pack.ATknVW/_new  2014-03-21 12:14:03.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.4
+Version:3.1.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-3.1.4.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.5.tar.bz2 ++
 7258 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2014-01-09 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2014-01-09 17:27:14

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-11-15 13:43:58.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2014-01-09 17:27:15.0 +0100
@@ -1,0 +2,13 @@
+Mon Dec  9 08:28:31 UTC 2013 - lsle...@suse.cz
+
+- added missing locale directory initialization, fixes missing
+  translations in Gtk package manager (bnc#801311)
+- 3.1.4
+
+---
+Fri Dec  6 13:21:33 UTC 2013 - jsr...@suse.cz
+
+- added handling of release notes button (fate#314695)
+- 3.1.3
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.2.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.4.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.h6OLWM/_old  2014-01-09 17:27:16.0 +0100
+++ /var/tmp/diff_new_pack.h6OLWM/_new  2014-01-09 17:27:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.2
+Version:3.1.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -25,7 +25,7 @@
 
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
-BuildRequires:  yast2-devtools = 3.0.6
+BuildRequires:  yast2-devtools = 3.1.10
 
 # autodocs + docbook docs
 BuildRequires:  docbook-xsl-stylesheets
@@ -41,8 +41,7 @@
 Conflicts:  yast2  2.23.0
 Conflicts:  yast2-libyui  2.42.0
 
-Requires:   libyui5   = 3.0.4
-BuildRequires:  libyui-devel = 3.0.4
+BuildRequires:  libyui-devel = 3.0.11
 
 # libyui ImplPtr
 BuildRequires:  boost-devel

++ yast2-ycp-ui-bindings-3.1.2.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.2/VERSION 
new/yast2-ycp-ui-bindings-3.1.4/VERSION
--- old/yast2-ycp-ui-bindings-3.1.2/VERSION 2013-11-15 09:15:41.0 
+0100
+++ new/yast2-ycp-ui-bindings-3.1.4/VERSION 1970-01-01 01:00:00.0 
+0100
@@ -1 +0,0 @@
-3.1.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.2/examples/ContextMenu.rb 
new/yast2-ycp-ui-bindings-3.1.4/examples/ContextMenu.rb
--- old/yast2-ycp-ui-bindings-3.1.2/examples/ContextMenu.rb 2013-11-15 
09:15:41.0 +0100
+++ new/yast2-ycp-ui-bindings-3.1.4/examples/ContextMenu.rb 2014-01-08 
11:26:36.0 +0100
@@ -5,11 +5,9 @@
 def main
   Yast.import UI
 
-
   @event_display = iNo event yet - click something (or wait for 
timeout)/i
 
-
-  if !UI.HasSpecialWidget(:Slider)
+  if !UI.HasSpecialWidget(:ContextMenu)
 UI.OpenDialog(
   VBox(
 Label(ContextMenu not supported!),
@@ -21,10 +19,6 @@
 return
   end
 
-
-
-
-
   UI.OpenDialog(
 VBox(
   SelectionBox(
@@ -38,9 +32,7 @@
 )
   )
 
-  #
   # Event loop
-  #
 
   @event = {}
   begin
@@ -51,13 +43,6 @@
 
 if @event != nil 
 Ops.get_string(@event, EventReason, ) == ContextMenuActivated
-  # UI::OpenContextMenu( `menu(
-  #[   `item(`id(`folder), Folder),
-  #`item(`id(`text),   Text 
File ),
-  #`item(`id(`image),  Image
 )
-  #]));
-
-
   UI.OpenContextMenu(
 term(
   :menu,
@@ -74,9 +59,7 @@
 end
   end until Ops.get(@event, ID) == :close
 
-
   UI.CloseDialog
-
   nil
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-3.1.2/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-3.1.4/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-3.1.2/package/yast2-ycp-ui-bindings.changes   
2013-11-15 09:15:41.0 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-11-15 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-11-15 13:43:57

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-11-10 20:37:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-11-15 13:43:58.0 +0100
@@ -1,0 +2,7 @@
+Thu Nov 14 13:21:26 CET 2013 - loci...@suse.com
+
+- Removed warning if checking for TextMode. It became a standard
+  check so no warning is necessary anymore.
+- 3.1.2
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.1.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.2.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.evKe13/_old  2013-11-15 13:43:58.0 +0100
+++ /var/tmp/diff_new_pack.evKe13/_new  2013-11-15 13:43:58.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.1
+Version:3.1.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-3.1.1.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.1/VERSION 
new/yast2-ycp-ui-bindings-3.1.2/VERSION
--- old/yast2-ycp-ui-bindings-3.1.1/VERSION 2013-11-08 11:32:47.0 
+0100
+++ new/yast2-ycp-ui-bindings-3.1.2/VERSION 2013-11-15 09:15:41.0 
+0100
@@ -1 +1 @@
-3.1.1
+3.1.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-3.1.1/package/yast2-ycp-ui-bindings.changes 
new/yast2-ycp-ui-bindings-3.1.2/package/yast2-ycp-ui-bindings.changes
--- old/yast2-ycp-ui-bindings-3.1.1/package/yast2-ycp-ui-bindings.changes   
2013-11-08 11:32:47.0 +0100
+++ new/yast2-ycp-ui-bindings-3.1.2/package/yast2-ycp-ui-bindings.changes   
2013-11-15 09:15:41.0 +0100
@@ -1,4 +1,11 @@
 ---
+Thu Nov 14 13:21:26 CET 2013 - loci...@suse.com
+
+- Removed warning if checking for TextMode. It became a standard
+  check so no warning is necessary anymore.
+- 3.1.2
+
+---
 Mon Oct 14 14:47:09 UTC 2013 - jreidin...@suse.com
 
 - Fix query for special widget DateField and TimeField resulting
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ycp-ui-bindings-3.1.1/package/yast2-ycp-ui-bindings.spec 
new/yast2-ycp-ui-bindings-3.1.2/package/yast2-ycp-ui-bindings.spec
--- old/yast2-ycp-ui-bindings-3.1.1/package/yast2-ycp-ui-bindings.spec  
2013-11-08 11:32:47.0 +0100
+++ new/yast2-ycp-ui-bindings-3.1.2/package/yast2-ycp-ui-bindings.spec  
2013-11-15 09:15:41.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.1
+Version:3.1.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.1/source/YCP_UI.cc 
new/yast2-ycp-ui-bindings-3.1.2/source/YCP_UI.cc
--- old/yast2-ycp-ui-bindings-3.1.1/source/YCP_UI.cc2013-11-08 
11:32:47.0 +0100
+++ new/yast2-ycp-ui-bindings-3.1.2/source/YCP_UI.cc2013-11-15 
09:15:41.0 +0100
@@ -1016,8 +1016,6 @@
 
 YCPBoolean YCP_UI::TextMode()
 {
-ycpwarning( UI::TextMode(): Please check if this is really necessary! );
-
 return YCPBoolean( YUI::app()-isTextMode() );
 }
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-11-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-11-10 20:37:54

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-10-19 11:21:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-11-10 20:37:54.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 14 14:47:09 UTC 2013 - jreidin...@suse.com
+
+- Fix query for special widget DateField and TimeField resulting
+  in bad widget in GUI (BNC#845623)
+- 3.1.1
+
+---

Old:

  yast2-ycp-ui-bindings-3.1.0.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.1.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.AZ2kAd/_old  2013-11-10 20:37:55.0 +0100
+++ /var/tmp/diff_new_pack.AZ2kAd/_new  2013-11-10 20:37:55.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.1.0
+Version:3.1.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-3.1.0.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-3.1.0/CONTRIBUTING.md 
new/yast2-ycp-ui-bindings-3.1.1/CONTRIBUTING.md
--- old/yast2-ycp-ui-bindings-3.1.0/CONTRIBUTING.md 1970-01-01 
01:00:00.0 +0100
+++ new/yast2-ycp-ui-bindings-3.1.1/CONTRIBUTING.md 2013-11-08 
11:32:47.0 +0100
@@ -0,0 +1,87 @@
+YaST Contribution Guidelines
+
+
+YaST is an open source project and as such it welcomes all kinds of
+contributions. If you decide to contribute, please follow these guidelines to
+ensure the process is effective and pleasant both for you and YaST maintainers.
+
+There are two main forms of contribution: reporting bugs and performing code
+changes.
+
+Bug Reports
+---
+
+If you find a problem, please report it either using
+[Bugzilla](https://bugzilla.novell.com/enter_bug.cgi?format=guidedproduct=openSUSE+Factorycomponent=YaST2)
+or [GitHub issues](../../issues). (For Bugzilla, use the [simplified
+registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
+if you don't have an account yet.)
+
+If you find a problem, please report it either using
+[Bugzilla](https://bugzilla.novell.com/) or GitHub issues. We can't guarantee
+that every bug will be fixed, but we'll try.
+
+When creating a bug report, please follow our [bug reporting
+guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
+
+Code Changes
+
+
+We welcome all kinds of code contributions, from simple bug fixes to 
significant
+refactorings and implementation of new features. However, before making any
+non-trivial contribution, get in touch with us first — this can prevent wasted
+effort on both sides. Also, have a look at our [development
+documentation](http://en.opensuse.org/openSUSE:YaST_development).
+
+To send us your code change, use GitHub pull requests. The workflow is as
+follows:
+
+  1. Fork the project.
+
+  2. Create a topic branch based on `master`.
+
+  3. Implement your change, including tests (if possible). Make sure you adhere
+ to the [Ruby style
+ guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
+
+  4. Make sure your change didn't break anything by building the RPM package
+ (`rake osc:build`). The build process includes running the full testsuite.
+
+  5. Publish the branch and create a pull request.
+
+  6. YaST developers will review your change and possibly point out issues.
+ Adapt the code under their guidance until they are all resolved.
+
+  7. Finally, the pull request will get merged or rejected.
+
+See also [GitHub's guide on
+contributing](https://help.github.com/articles/fork-a-repo).
+
+If you want to do multiple unrelated changes, use separate branches and pull
+requests.
+
+Do not change the `VERSION` and `*.changes` files as this could lead to
+conflicts.
+
+### Commits
+
+Each commit in the pull request should do only one thing, which is clearly
+described by its commit message. Especially avoid mixing formatting changes and
+functional changes into one commit. When writing commit messages, adhere to
+[widely used
+conventions](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
+
+If your commit is related to a bug in Buzgilla or an issue on GitHub, make sure
+you 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-10-19 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-10-19 11:14:40

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-08-01 11:10:43.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-10-19 11:21:09.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 19 18:02:34 UTC 2013 - lsle...@suse.cz
+
+- do not use *.spec.in template, use *.spec file with RPM macros
+  instead
+- 3.1.0
+
+---

Old:

  yast2-ycp-ui-bindings-3.0.0.tar.bz2

New:

  yast2-ycp-ui-bindings-3.1.0.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.rWYMzg/_old  2013-10-19 11:21:10.0 +0200
+++ /var/tmp/diff_new_pack.rWYMzg/_new  2013-10-19 11:21:10.0 +0200
@@ -17,15 +17,15 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:3.0.0
+Version:3.1.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-ycp-ui-bindings-%{version}.tar.bz2
+Source0:%{name}-%{version}.tar.bz2
 
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
-BuildRequires:  yast2-devtools
+BuildRequires:  yast2-devtools = 3.0.6
 
 # autodocs + docbook docs
 BuildRequires:  docbook-xsl-stylesheets
@@ -50,7 +50,6 @@
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
 License:GPL-2.0
 Group:  System/YaST
-Provides:   %{_libdir}/YaST2/plugin/libpy2UI.so.2.0.0
 
 %description
 This package makes the generic YaST2 user interface engine available
@@ -76,49 +75,31 @@
 language in which most YaST2 modules are written).
 
 %prep
-%setup -n yast2-ycp-ui-bindings-%{version}
+%setup -n %{name}-%{version}
 
 %build
-%{_prefix}/bin/y2tool y2autoconf
-%{_prefix}/bin/y2tool y2automake
-autoreconf --force --install
-
-export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
-export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
-
-./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
-# V=1: verbose build in case we used AM_SILENT_RULES(yes)
-# so that RPM_OPT_FLAGS check works
-make %{?jobs:-j%jobs} V=1
+%yast_build
 
 %install
-make install DESTDIR=$RPM_BUILD_ROOT
-[ -e %{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
-for f in `find $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
-d=${f##*/}
-%suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop}
-done
+%yast_install
 
-mkdir -p $RPM_BUILD_ROOT/var/log/YaST2
+mkdir -p $RPM_BUILD_ROOT%{yast_logdir}
 %perl_process_packlist
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 
 %dir %{_libdir}/YaST2
-%dir %{_libdir}/YaST2/plugin
+%dir %{yast_plugindir}
 
-%{_libdir}/YaST2/plugin/lib*.so.*
+%{yast_plugindir}/lib*.so.*
 
 %files devel
 %defattr(-,root,root)
-%{_libdir}/YaST2/plugin/lib*.so
-%{_libdir}/YaST2/plugin/lib*.la
-%{_prefix}/include/YaST2
+%{yast_plugindir}/lib*.so
+%{yast_plugindir}/lib*.la
+%{yast_includedir}
 %{_libdir}/pkgconfig/yast2-ycp-ui-bindings.pc
-%doc %{_prefix}/share/doc/packages/yast2-ycp-ui-bindings
+%doc %{yast_docdir}
 
 %changelog

++ yast2-ycp-ui-bindings-3.0.0.tar.bz2 - 
yast2-ycp-ui-bindings-3.1.0.tar.bz2 ++
 61445 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-08-01 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-08-01 11:10:42

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-07-29 09:27:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-08-01 11:10:43.0 +0200
@@ -1,0 +2,7 @@
+Wed Jul 31 08:45:48 UTC 2013 - yast-de...@opensuse.org
+
+- converted from YCP to Ruby by YCP Killer
+  (https://github.com/yast/ycp-killer)
+- version 3.0.0
+
+---

Old:

  yast2-ycp-ui-bindings-2.24.1.tar.bz2

New:

  yast2-ycp-ui-bindings-3.0.0.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.7nFdGD/_old  2013-08-01 11:10:44.0 +0200
+++ /var/tmp/diff_new_pack.7nFdGD/_new  2013-08-01 11:10:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.24.1
+Version:3.0.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-2.24.1.tar.bz2 - 
yast2-ycp-ui-bindings-3.0.0.tar.bz2 ++
 117145 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-07-29 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-07-29 09:27:42

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-07-02 07:48:06.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-07-29 09:27:44.0 +0200
@@ -1,0 +2,8 @@
+Wed Jul 24 08:03:23 UTC 2013 - jreidin...@suse.com
+
+- fix calling SetFunctionKeys as overloaded function (gh#yast/ycp-killer#556)
+- removed DemoBrowser.ycp and memtest.ycp examples (lslezak)
+- adapt example to changes in NCTable (gs)
+- 2.24.1
+
+---

Old:

  yast2-ycp-ui-bindings-2.24.0.tar.bz2

New:

  yast2-ycp-ui-bindings-2.24.1.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.JVFit5/_old  2013-07-29 09:27:44.0 +0200
+++ /var/tmp/diff_new_pack.JVFit5/_new  2013-07-29 09:27:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.24.0
+Version:2.24.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-2.24.0.tar.bz2 - 
yast2-ycp-ui-bindings-2.24.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.24.0/Makefile.in 
new/yast2-ycp-ui-bindings-2.24.1/Makefile.in
--- old/yast2-ycp-ui-bindings-2.24.0/Makefile.in2013-06-27 
20:17:26.0 +0200
+++ new/yast2-ycp-ui-bindings-2.24.1/Makefile.in2013-07-24 
11:55:40.0 +0200
@@ -69,7 +69,7 @@
 am__aclocal_m4_deps = $(top_srcdir)/libtool.m4 \
$(top_srcdir)/ltoptions.m4 $(top_srcdir)/ltsugar.m4 \
$(top_srcdir)/ltversion.m4 $(top_srcdir)/lt~obsolete.m4 \
-   $(top_srcdir)/configure.in
+   $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.24.0/VERSION 
new/yast2-ycp-ui-bindings-2.24.1/VERSION
--- old/yast2-ycp-ui-bindings-2.24.0/VERSION2013-06-18 14:29:03.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.24.1/VERSION2013-07-24 10:07:10.0 
+0200
@@ -1 +1 @@
-2.24.0
+2.24.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.24.0/config.h.in 
new/yast2-ycp-ui-bindings-2.24.1/config.h.in
--- old/yast2-ycp-ui-bindings-2.24.0/config.h.in2013-06-27 
20:17:25.0 +0200
+++ new/yast2-ycp-ui-bindings-2.24.1/config.h.in2013-07-24 
11:55:39.0 +0200
@@ -1,4 +1,4 @@
-/* config.h.in.  Generated from configure.in by autoheader.  */
+/* config.h.in.  Generated from configure.ac by autoheader.  */
 
 /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
systems. This function is required for `alloca.c' support on those systems.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.24.0/configure 
new/yast2-ycp-ui-bindings-2.24.1/configure
--- old/yast2-ycp-ui-bindings-2.24.0/configure  2013-06-27 20:17:24.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.24.1/configure  2013-07-24 11:55:39.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-ycp-ui-bindings 2.24.0.
+# Generated by GNU Autoconf 2.69 for yast2-ycp-ui-bindings 2.24.1.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-ycp-ui-bindings'
 PACKAGE_TARNAME='yast2-ycp-ui-bindings'
-PACKAGE_VERSION='2.24.0'
-PACKAGE_STRING='yast2-ycp-ui-bindings 2.24.0'
+PACKAGE_VERSION='2.24.1'
+PACKAGE_STRING='yast2-ycp-ui-bindings 2.24.1'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1381,7 +1381,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-ycp-ui-bindings 2.24.0 to adapt to many kinds of 
systems.
+\`configure' configures yast2-ycp-ui-bindings 2.24.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1453,7 +1453,7 @@
 
 if test -n 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-07-01 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-07-02 07:48:05

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-06-11 09:39:05.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-07-02 07:48:06.0 +0200
@@ -1,0 +2,14 @@
+Tue Jun 18 12:20:23 UTC 2013 - jreidin...@suse.com
+
+- fix overloaded method matching (BNC#825263)
+- decrease log verbosity for cached component instances
+- 2.24.0
+
+---
+Tue Jun 18 12:19:24 UTC 2013 - tgoettlic...@suse.de
+
+- Fix for bnc#811842: segfault in ncurses because of 
+  uninitialized variable
+
+---
+

Old:

  yast2-ycp-ui-bindings-2.21.8.tar.bz2

New:

  yast2-ycp-ui-bindings-2.24.0.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.LpKS5q/_old  2013-07-02 07:48:07.0 +0200
+++ /var/tmp/diff_new_pack.LpKS5q/_new  2013-07-02 07:48:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.21.8
+Version:2.24.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-ycp-ui-bindings-2.21.8.tar.bz2 - 
yast2-ycp-ui-bindings-2.24.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.8/VERSION 
new/yast2-ycp-ui-bindings-2.24.0/VERSION
--- old/yast2-ycp-ui-bindings-2.21.8/VERSION2013-05-14 14:23:24.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.24.0/VERSION2013-06-18 14:29:03.0 
+0200
@@ -1 +1 @@
-2.21.8
+2.24.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.8/configure 
new/yast2-ycp-ui-bindings-2.24.0/configure
--- old/yast2-ycp-ui-bindings-2.21.8/configure  2013-05-28 13:56:53.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.24.0/configure  2013-06-27 20:17:24.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-ycp-ui-bindings 2.21.8.
+# Generated by GNU Autoconf 2.69 for yast2-ycp-ui-bindings 2.24.0.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-ycp-ui-bindings'
 PACKAGE_TARNAME='yast2-ycp-ui-bindings'
-PACKAGE_VERSION='2.21.8'
-PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.8'
+PACKAGE_VERSION='2.24.0'
+PACKAGE_STRING='yast2-ycp-ui-bindings 2.24.0'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1381,7 +1381,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-ycp-ui-bindings 2.21.8 to adapt to many kinds of 
systems.
+\`configure' configures yast2-ycp-ui-bindings 2.24.0 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1453,7 +1453,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.8:;;
+ short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.24.0:;;
esac
   cat \_ACEOF
 
@@ -1572,7 +1572,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-ycp-ui-bindings configure 2.21.8
+yast2-ycp-ui-bindings configure 2.24.0
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2116,7 +2116,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-ycp-ui-bindings $as_me 2.21.8, which was
+It was created by yast2-ycp-ui-bindings $as_me 2.24.0, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3055,7 +3055,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-ycp-ui-bindings'
- VERSION='2.21.8'
+ VERSION='2.24.0'
 
 
 cat confdefs.h _ACEOF
@@ -3178,7 +3178,7 @@
 
 
 
-VERSION=2.21.8
+VERSION=2.24.0
 RPMNAME=yast2-ycp-ui-bindings
 MAINTAINER=Thomas Goettlicher tgoettlic...@suse.de
 
@@ -17667,7 +17667,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-06-11 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-06-11 06:41:25

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-05-13 22:37:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-06-11 09:39:05.0 +0200
@@ -1,0 +2,6 @@
+Tue May 14 14:00:54 CEST 2013 - tgoettlic...@suse.de
+
+- Fixed libyui dependency
+- 2.21.8
+
+---

Old:

  yast2-ycp-ui-bindings-2.21.7.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.8.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.XxZlkx/_old  2013-06-11 09:39:05.0 +0200
+++ /var/tmp/diff_new_pack.XxZlkx/_new  2013-06-11 09:39:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.21.7
+Version:2.21.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -41,8 +41,8 @@
 Conflicts:  yast2  2.23.0
 Conflicts:  yast2-libyui  2.42.0
 
-Requires:   libyui5   = 2.21.5
-BuildRequires:  libyui-devel = 2.21.5
+Requires:   libyui5   = 3.0.4
+BuildRequires:  libyui-devel = 3.0.4
 
 # libyui ImplPtr
 BuildRequires:  boost-devel

++ yast2-ycp-ui-bindings-2.21.7.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.7/VERSION 
new/yast2-ycp-ui-bindings-2.21.8/VERSION
--- old/yast2-ycp-ui-bindings-2.21.7/VERSION2013-04-30 10:46:35.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.21.8/VERSION2013-05-14 14:23:24.0 
+0200
@@ -1 +1 @@
-2.21.7
+2.21.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.7/configure 
new/yast2-ycp-ui-bindings-2.21.8/configure
--- old/yast2-ycp-ui-bindings-2.21.7/configure  2013-04-30 10:51:34.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.21.8/configure  2013-05-28 13:56:53.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for yast2-ycp-ui-bindings 2.21.7.
+# Generated by GNU Autoconf 2.69 for yast2-ycp-ui-bindings 2.21.8.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-ycp-ui-bindings'
 PACKAGE_TARNAME='yast2-ycp-ui-bindings'
-PACKAGE_VERSION='2.21.7'
-PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.7'
+PACKAGE_VERSION='2.21.8'
+PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.8'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1381,7 +1381,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-ycp-ui-bindings 2.21.7 to adapt to many kinds of 
systems.
+\`configure' configures yast2-ycp-ui-bindings 2.21.8 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1453,7 +1453,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.7:;;
+ short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.8:;;
esac
   cat \_ACEOF
 
@@ -1572,7 +1572,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-ycp-ui-bindings configure 2.21.7
+yast2-ycp-ui-bindings configure 2.21.8
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2116,7 +2116,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-ycp-ui-bindings $as_me 2.21.7, which was
+It was created by yast2-ycp-ui-bindings $as_me 2.21.8, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3055,7 +3055,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-ycp-ui-bindings'
- VERSION='2.21.7'
+ VERSION='2.21.8'
 
 
 cat confdefs.h _ACEOF
@@ -3178,7 +3178,7 @@
 
 
 
-VERSION=2.21.7
+VERSION=2.21.8
 RPMNAME=yast2-ycp-ui-bindings
 MAINTAINER=Thomas Goettlicher tgoettlic...@suse.de
 
@@ -17667,7 +17667,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-05-13 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-05-13 22:31:58

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:




Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.U8LBS4/_old  2013-05-13 22:32:01.0 +0200
+++ /var/tmp/diff_new_pack.U8LBS4/_new  2013-05-13 22:32:01.0 +0200
@@ -41,7 +41,7 @@
 Conflicts:  yast2  2.23.0
 Conflicts:  yast2-libyui  2.42.0
 
-Requires:   libyui4   = 2.21.5
+Requires:   libyui5   = 2.21.5
 BuildRequires:  libyui-devel = 2.21.5
 
 # libyui ImplPtr

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-05-13 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-05-13 22:37:29

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2013-03-01 09:12:19.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-05-13 22:37:31.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 30 10:41:15 CEST 2013 - tgoettlic...@suse.de
+
+- Adapted setting prog dir in libyui
+- 2.21.7
+
+---

Old:

  yast2-ycp-ui-bindings-2.21.6.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.7.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.VBtfbX/_old  2013-05-13 22:37:32.0 +0200
+++ /var/tmp/diff_new_pack.VBtfbX/_new  2013-05-13 22:37:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.21.6
+Version:2.21.7
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -41,7 +41,7 @@
 Conflicts:  yast2  2.23.0
 Conflicts:  yast2-libyui  2.42.0
 
-Requires:   libyui5   = 2.21.5
+Requires:   libyui4   = 2.21.5
 BuildRequires:  libyui-devel = 2.21.5
 
 # libyui ImplPtr

++ yast2-ycp-ui-bindings-2.21.6.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.6/Makefile.am 
new/yast2-ycp-ui-bindings-2.21.7/Makefile.am
--- old/yast2-ycp-ui-bindings-2.21.6/Makefile.am2013-02-11 
17:30:42.0 +0100
+++ new/yast2-ycp-ui-bindings-2.21.7/Makefile.am2013-04-30 
10:51:21.0 +0200
@@ -158,19 +158,14 @@
 
 TAGVERSION  = $(Y2TOOL) tagversion
 
-check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
-   if [ -d $(srcdir)/CVS ]; then \
- cd $(srcdir)  ! cvs -q -n up 2/dev/null | grep '^[MCAR] ';\
-   else \
- cd $(srcdir)  ! LC_ALL=C svn status --show-updates --quiet | grep 
-v '^Status against revision' ;\
+# check if there is no modified files and all commits were pushed
+check-up-to-date:
+   if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` 
-gt 0 ]; then \
+ (echo ERROR: Source is not commited and pushed. See `git status`; 
false) \
fi
 
 check-tagversion:
-   @if [ -d $(srcdir)/CVS ]; then \
- cd $(srcdir)  cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
-   else \
- cd $(srcdir)  svn cat `$(TAGVERSION) --echourl`/VERSION; \
-   fi /dev/null; \
+   cd $(srcdir)  $(TAGVERSION) --check /dev/null; \
[ $$? = 0 ] || ( echo ERROR: Please run 'tagversion' first; false )
 
 check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.6/Makefile.in 
new/yast2-ycp-ui-bindings-2.21.7/Makefile.in
--- old/yast2-ycp-ui-bindings-2.21.6/Makefile.in2013-02-11 
17:30:55.0 +0100
+++ new/yast2-ycp-ui-bindings-2.21.7/Makefile.in2013-04-30 
10:51:36.0 +0200
@@ -1067,19 +1067,14 @@
 
 package: check-up-to-date check-tagversion check-textdomain package-local
 
-check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
-   if [ -d $(srcdir)/CVS ]; then \
- cd $(srcdir)  ! cvs -q -n up 2/dev/null | grep '^[MCAR] ';\
-   else \
- cd $(srcdir)  ! LC_ALL=C svn status --show-updates --quiet | grep 
-v '^Status against revision' ;\
+# check if there is no modified files and all commits were pushed
+check-up-to-date:
+   if [ `git status --short --branch | sed '/##[^[]*$/d;/^??/d' | wc -l` 
-gt 0 ]; then \
+ (echo ERROR: Source is not commited and pushed. See `git status`; 
false) \
fi
 
 check-tagversion:
-   @if [ -d $(srcdir)/CVS ]; then \
- cd $(srcdir)  cvs status -v VERSION | grep -w `$(TAGVERSION) -n` ;\
-   else \
- cd $(srcdir)  svn cat `$(TAGVERSION) --echourl`/VERSION; \
-   fi /dev/null; \
+   cd $(srcdir)  $(TAGVERSION) --check /dev/null; \
[ $$? = 0 ] || ( echo ERROR: Please run 'tagversion' first; false )
 
 check-parse-old:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.6/VERSION 
new/yast2-ycp-ui-bindings-2.21.7/VERSION
--- old/yast2-ycp-ui-bindings-2.21.6/VERSION2013-01-22 12:23:19.0 
+0100
+++ new/yast2-ycp-ui-bindings-2.21.7/VERSION

commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-05-13 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-05-13 22:39:23

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings

Changes:




Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.42j1Sb/_old  2013-05-13 22:39:25.0 +0200
+++ /var/tmp/diff_new_pack.42j1Sb/_new  2013-05-13 22:39:25.0 +0200
@@ -41,7 +41,7 @@
 Conflicts:  yast2  2.23.0
 Conflicts:  yast2-libyui  2.42.0
 
-Requires:   libyui4   = 2.21.5
+Requires:   libyui5   = 2.21.5
 BuildRequires:  libyui-devel = 2.21.5
 
 # libyui ImplPtr

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2013-03-01 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2013-03-01 09:12:18

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings, Maintainer is tgoettlic...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2012-09-20 15:48:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2013-03-01 09:12:19.0 +0100
@@ -1,0 +2,11 @@
+Wed Jan  9 13:24:11 UTC 2013 - loci...@suse.com
+
+- Added references to ButtonBox into the generated documentation
+
+---
+Mon Nov 12 18:12:27 CET 2012 - tgoettlic...@suse.de
+
+- confirmed license
+- 2.21.6
+
+---
@@ -5 +15,0 @@
-- 2.21.6



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.NMWRHd/_old  2013-03-01 09:12:20.0 +0100
+++ /var/tmp/diff_new_pack.NMWRHd/_new  2013-03-01 09:12:20.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -48,7 +48,7 @@
 BuildRequires:  boost-devel
 
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
-License:GPL-2.0+
+License:GPL-2.0
 Group:  System/YaST
 Provides:   %{_libdir}/YaST2/plugin/libpy2UI.so.2.0.0
 

++ yast2-ycp-ui-bindings-2.21.6.tar.bz2 ++
 2836 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2012-09-20 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2012-09-20 15:48:09

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings, Maintainer is tgoettlic...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2012-08-16 21:59:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2012-09-20 15:48:31.0 +0200
@@ -1,0 +2,6 @@
+Mon Sep 17 13:26:24 CEST 2012 - f...@suse.de
+
+- change Requires=2.23 to Conflicts2.23, to avoid build cycle
+- 2.21.6
+
+---

Old:

  yast2-ycp-ui-bindings-2.21.5.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.6.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.fCgSQl/_old  2012-09-20 15:48:32.0 +0200
+++ /var/tmp/diff_new_pack.fCgSQl/_new  2012-09-20 15:48:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +16,13 @@
 #
 
 
-
 Name:   yast2-ycp-ui-bindings
-Version:2.21.5
+Version:2.21.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-ycp-ui-bindings-%{version}.tar.bz2
 
-
-Group: System/YaST
-License:GPL-2.0+
-
-
 BuildRequires: gcc-c++
 BuildRequires: libtool
 BuildRequires: yast2-devtools
@@ -44,7 +38,7 @@
 Conflicts: yast2-core  2.16.38
 
 # dependecies for new libyui
-Requires:  yast2 = 2.23.1
+Conflicts:  yast2  2.23.0
 Conflicts: yast2-libyui  2.42.0
 
 Requires:  libyui4= 2.21.5
@@ -53,8 +47,9 @@
 # libyui ImplPtr
 BuildRequires: boost-devel
 
-
 Summary:   YaST2 - YCP Bindings for the YaST2 User Interface Engine
+License:GPL-2.0+
+Group:  System/YaST
 Provides:  %{_libdir}/YaST2/plugin/libpy2UI.so.2.0.0
 
 %description
@@ -64,13 +59,13 @@
 
 %package devel
 Requires:  yast2-ycp-ui-bindings = %version
-Group: Development/Libraries
 
 Summary:   YaST2 - YCP Bindings for the YaST2 User Interface Engine
+Group:  Development/Libraries
 
+Requires:   boost-devel
 Requires:  glibc-devel
 Requires:  libstdc++-devel
-Requires:  boost-devel
 Requires:  libyui-devel
 Requires:  yast2-core-devel
 Requires:  yast2-devtools
@@ -110,7 +105,6 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-
 %files
 %defattr(-,root,root)
 

++ yast2-ycp-ui-bindings-2.21.5.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.6.tar.bz2 ++
 22771 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2012-08-16 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2012-08-16 21:59:23

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings, Maintainer is tgoettlic...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2012-06-28 17:23:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2012-08-16 21:59:25.0 +0200
@@ -1,0 +2,6 @@
+Mon Aug  6 12:43:08 CEST 2012 - tgoettlic...@suse.de
+
+- adapt bindings to work with yast independed standalone libyui package
+- 2.21.5
+
+---

Old:

  yast2-ycp-ui-bindings-2.21.4.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.5.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.LbNRVa/_old  2012-08-16 21:59:27.0 +0200
+++ /var/tmp/diff_new_pack.LbNRVa/_new  2012-08-16 21:59:27.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,13 +16,19 @@
 #
 
 
+
 Name:   yast2-ycp-ui-bindings
-Version:2.21.4
+Version:2.21.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-ycp-ui-bindings-%{version}.tar.bz2
 
+
+Group: System/YaST
+License:GPL-2.0+
+
+
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
 BuildRequires:  yast2-devtools
@@ -37,15 +43,18 @@
 BuildRequires:  yast2-core-devel
 Conflicts:  yast2-core  2.16.38
 
-Requires:   yast2-libyui  = 2.21.1
-BuildRequires:  yast2-libyui-devel = 2.21.1
+# dependecies for new libyui
+Requires:  yast2 = 2.23.1
+Conflicts: yast2-libyui  2.42.0
+
+Requires:  libyui4= 2.21.5
+BuildRequires: libyui-devel = 2.21.5
 
 # libyui ImplPtr
 BuildRequires:  boost-devel
 
+
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
-License:GPL-2.0+
-Group:  System/YaST
 Provides:   %{_libdir}/YaST2/plugin/libpy2UI.so.2.0.0
 
 %description
@@ -55,16 +64,16 @@
 
 %package devel
 Requires:   yast2-ycp-ui-bindings = %version
+Group: Development/Libraries
 
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
-Group:  Development/Libraries
 
-Requires:   boost-devel
 Requires:   glibc-devel
 Requires:   libstdc++-devel
+Requires:  boost-devel
+Requires:  libyui-devel
 Requires:   yast2-core-devel
 Requires:   yast2-devtools
-Requires:   yast2-libyui-devel
 
 %description devel
 This is the development package that makes the generic YaST2 user
@@ -101,6 +110,7 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+
 %files
 %defattr(-,root,root)
 

++ yast2-ycp-ui-bindings-2.21.4.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.5.tar.bz2 ++
 17134 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2012-06-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2012-06-28 17:23:57

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings, Maintainer is tgoettlic...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2012-03-29 07:50:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2012-06-28 17:23:59.0 +0200
@@ -1,0 +2,6 @@
+Tue Jun 26 13:58:41 CEST 2012 - aschn...@suse.de
+
+- adapted to namespace changes in yast2-core
+- 2.21.4
+
+---

Old:

  yast2-ycp-ui-bindings-2.21.3.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.4.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.RuXbAU/_old  2012-06-28 17:24:00.0 +0200
+++ /var/tmp/diff_new_pack.RuXbAU/_new  2012-06-28 17:24:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.21.3
+Version:2.21.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -82,7 +82,6 @@
 export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 
-%{?suse_update_config:%{suse_update_config -f}}
 ./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works

++ yast2-ycp-ui-bindings-2.21.3.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.3/VERSION 
new/yast2-ycp-ui-bindings-2.21.4/VERSION
--- old/yast2-ycp-ui-bindings-2.21.3/VERSION2012-03-26 16:36:45.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.21.4/VERSION2012-06-26 14:10:56.0 
+0200
@@ -1 +1 @@
-2.21.3
+2.21.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.3/configure 
new/yast2-ycp-ui-bindings-2.21.4/configure
--- old/yast2-ycp-ui-bindings-2.21.3/configure  2012-03-27 14:14:44.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.21.4/configure  2012-06-26 14:12:07.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for yast2-ycp-ui-bindings 2.21.3.
+# Generated by GNU Autoconf 2.68 for yast2-ycp-ui-bindings 2.21.4.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -570,8 +570,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-ycp-ui-bindings'
 PACKAGE_TARNAME='yast2-ycp-ui-bindings'
-PACKAGE_VERSION='2.21.3'
-PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.3'
+PACKAGE_VERSION='2.21.4'
+PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.4'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1360,7 +1360,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-ycp-ui-bindings 2.21.3 to adapt to many kinds of 
systems.
+\`configure' configures yast2-ycp-ui-bindings 2.21.4 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1432,7 +1432,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.3:;;
+ short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.4:;;
esac
   cat \_ACEOF
 
@@ -1549,7 +1549,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-ycp-ui-bindings configure 2.21.3
+yast2-ycp-ui-bindings configure 2.21.4
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2093,7 +2093,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-ycp-ui-bindings $as_me 2.21.3, which was
+It was created by yast2-ycp-ui-bindings $as_me 2.21.4, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3023,7 +3023,7 @@
 
 # Define the identity of the package.
  PACKAGE='yast2-ycp-ui-bindings'
- VERSION='2.21.3'
+ VERSION='2.21.4'
 
 
 cat confdefs.h _ACEOF
@@ -3145,7 +3145,7 @@
 
 
 
-VERSION=2.21.3
+VERSION=2.21.4
 RPMNAME=yast2-ycp-ui-bindings
 MAINTAINER=Thomas Goettlicher tgoettlic...@suse.de
 
@@ -6141,10 +6141,10 @@
 
 fi
 
-CFLAGS=${CFLAGS} ${Y2CORE_CFLAGS} -Wall -Wformat=2 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2012-03-28 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2012-03-29 07:50:06

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings, Maintainer is tgoettlic...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2012-02-14 19:10:14.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2012-03-29 07:50:09.0 +0200
@@ -1,0 +2,7 @@
+Mon Mar 26 14:36:12 UTC 2012 - jreidin...@suse.com
+
+- removed libxcrypt-devel from buildrequires (aschnell)
+- add more examples (gs)
+-  2.21.3
+
+---

Old:

  yast2-ycp-ui-bindings-2.21.2.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.3.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.f3hhXm/_old  2012-03-29 07:50:10.0 +0200
+++ /var/tmp/diff_new_pack.f3hhXm/_new  2012-03-29 07:50:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.21.2
+Version:2.21.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -28,8 +28,8 @@
 BuildRequires:  yast2-devtools
 
 # autodocs + docbook docs
-BuildRequires:  doxygen
 BuildRequires:  docbook-xsl-stylesheets
+BuildRequires:  doxygen
 BuildRequires:  libxslt
 BuildRequires:  sgml-skel
 
@@ -37,9 +37,6 @@
 BuildRequires:  yast2-core-devel
 Conflicts:  yast2-core  2.16.38
 
-# libycp includes crypto built-ins
-BuildRequires:  libxcrypt-devel
-
 Requires:   yast2-libyui  = 2.21.1
 BuildRequires:  yast2-libyui-devel = 2.21.1
 
@@ -62,13 +59,12 @@
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
 Group:  Development/Libraries
 
+Requires:   boost-devel
 Requires:   glibc-devel
 Requires:   libstdc++-devel
-Requires:   boost-devel
-Requires:   yast2-libyui-devel
 Requires:   yast2-core-devel
-Requires:   libxcrypt-devel
 Requires:   yast2-devtools
+Requires:   yast2-libyui-devel
 
 %description devel
 This is the development package that makes the generic YaST2 user
@@ -86,6 +82,7 @@
 export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 
+%{?suse_update_config:%{suse_update_config -f}}
 ./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works

++ yast2-ycp-ui-bindings-2.21.2.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.2/VERSION 
new/yast2-ycp-ui-bindings-2.21.3/VERSION
--- old/yast2-ycp-ui-bindings-2.21.2/VERSION2011-08-16 17:24:25.0 
+0200
+++ new/yast2-ycp-ui-bindings-2.21.3/VERSION2012-03-26 16:36:45.0 
+0200
@@ -1 +1 @@
-2.21.2
+2.21.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.21.2/configure 
new/yast2-ycp-ui-bindings-2.21.3/configure
--- old/yast2-ycp-ui-bindings-2.21.2/configure  2012-02-01 13:08:17.0 
+0100
+++ new/yast2-ycp-ui-bindings-2.21.3/configure  2012-03-27 14:14:44.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for yast2-ycp-ui-bindings 2.21.2.
+# Generated by GNU Autoconf 2.68 for yast2-ycp-ui-bindings 2.21.3.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -570,8 +570,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-ycp-ui-bindings'
 PACKAGE_TARNAME='yast2-ycp-ui-bindings'
-PACKAGE_VERSION='2.21.2'
-PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.2'
+PACKAGE_VERSION='2.21.3'
+PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.3'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1360,7 +1360,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-ycp-ui-bindings 2.21.2 to adapt to many kinds of 
systems.
+\`configure' configures yast2-ycp-ui-bindings 2.21.3 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1432,7 +1432,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.2:;;
+ short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.3:;;
esac
   cat \_ACEOF
 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2012-02-14 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2012-02-14 19:10:12

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings, Maintainer is tgoettlic...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes  
2011-09-23 12:53:34.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new/yast2-ycp-ui-bindings.changes
 2012-02-14 19:10:14.0 +0100
@@ -1,0 +2,10 @@
+Wed Dec  7 10:06:22 UTC 2011 - co...@suse.com
+
+- fix license to be in spdx.org format
+
+---
+Fri Nov 25 12:27:04 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to avoid implicit dependency
+
+---



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.dxKOTa/_old  2012-02-14 19:10:15.0 +0100
+++ /var/tmp/diff_new_pack.dxKOTa/_new  2012-02-14 19:10:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ycp-ui-bindings
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,27 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   yast2-ycp-ui-bindings
 Version:2.21.2
-Release:1
+Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-ycp-ui-bindings-2.21.2.tar.bz2
-
-Prefix: /usr
-
-Group:  System/YaST
-License:GPL-2.0+
+Source0:yast2-ycp-ui-bindings-%{version}.tar.bz2
 
 BuildRequires:  gcc-c++
+BuildRequires:  libtool
 BuildRequires:  yast2-devtools
 
 # autodocs + docbook docs
 BuildRequires:  doxygen
-BuildRequires:  docbook-xsl-stylesheets libxslt
+BuildRequires:  docbook-xsl-stylesheets
+BuildRequires:  libxslt
 BuildRequires:  sgml-skel
 
 Requires:   yast2-core
@@ -52,6 +47,8 @@
 BuildRequires:  boost-devel
 
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
+License:GPL-2.0+
+Group:  System/YaST
 Provides:   %{_libdir}/YaST2/plugin/libpy2UI.so.2.0.0
 
 %description
@@ -60,10 +57,10 @@
 modules are written).
 
 %package devel
-
 Requires:   yast2-ycp-ui-bindings = %version
-Group:  Development/Libraries
+
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
+Group:  Development/Libraries
 
 Requires:   glibc-devel
 Requires:   libstdc++-devel
@@ -79,26 +76,25 @@
 language in which most YaST2 modules are written).
 
 %prep
-%setup -n yast2-ycp-ui-bindings-2.21.2
+%setup -n yast2-ycp-ui-bindings-%{version}
 
 %build
-%{prefix}/bin/y2tool y2autoconf
-%{prefix}/bin/y2tool y2automake
+%{_prefix}/bin/y2tool y2autoconf
+%{_prefix}/bin/y2tool y2automake
 autoreconf --force --install
 
 export CFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 export CXXFLAGS=$RPM_OPT_FLAGS -DNDEBUG
 
-%{?suse_update_config:%{suse_update_config -f}}
-./configure --libdir=%{_libdir} --prefix=%{prefix} --mandir=%{_mandir}
+./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
 # V=1: verbose build in case we used AM_SILENT_RULES(yes)
 # so that RPM_OPT_FLAGS check works
 make %{?jobs:-j%jobs} V=1
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
-[ -e %{prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
-for f in `find $RPM_BUILD_ROOT/%{prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
+[ -e %{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK ] || 
Y2DIR=$RPM_BUILD_ROOT/usr/share/YaST2 make check DESTDIR=$RPM_BUILD_ROOT
+for f in `find $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/ -name 
*.desktop` ; do
 d=${f##*/}
 %suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop}
 done
@@ -121,7 +117,8 @@
 %defattr(-,root,root)
 %{_libdir}/YaST2/plugin/lib*.so
 %{_libdir}/YaST2/plugin/lib*.la
-%{prefix}/include/YaST2
+%{_prefix}/include/YaST2
 %{_libdir}/pkgconfig/yast2-ycp-ui-bindings.pc
-%doc %{prefix}/share/doc/packages/yast2-ycp-ui-bindings
+%doc %{_prefix}/share/doc/packages/yast2-ycp-ui-bindings
+
 %changelog

++ yast2-ycp-ui-bindings-2.21.2.tar.bz2 ++
 19009 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, 

commit yast2-ycp-ui-bindings for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory checked in at 2011-12-06 19:20:53

Comparing /work/SRC/openSUSE:Factory/yast2-ycp-ui-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-ycp-ui-bindings.new (New)


Package is yast2-ycp-ui-bindings, Maintainer is tgoettlic...@suse.com

Changes:




Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.v6FXPz/_old  2011-12-06 20:02:46.0 +0100
+++ /var/tmp/diff_new_pack.v6FXPz/_new  2011-12-06 20:02:46.0 +0100
@@ -28,7 +28,7 @@
 Prefix: /usr
 
 Group:  System/YaST
-License:GPL v2 or later
+License:GPL-2.0+
 
 BuildRequires:  gcc-c++
 BuildRequires:  yast2-devtools

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2011-08-17 Thread h_root

Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory
checked in at Wed Aug 17 10:41:15 CEST 2011.




--- yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes 2011-04-19 
12:19:31.0 +0200
+++ 
/mounts/work_src_done/STABLE/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes
2011-08-16 17:28:52.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 16 17:23:11 CEST 2011 - tgoettlic...@suse.de
+
+- fixed bnc #711760: yast2 segfaults in second stage
+- V 2.21.2
+
+---

calling whatdependson for head-i586


Old:

  yast2-ycp-ui-bindings-2.21.1.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.2.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.gPz3DJ/_old  2011-08-17 10:40:13.0 +0200
+++ /var/tmp/diff_new_pack.gPz3DJ/_new  2011-08-17 10:40:13.0 +0200
@@ -19,16 +19,16 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.21.1
+Version:2.21.2
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-ycp-ui-bindings-2.21.1.tar.bz2
+Source0:yast2-ycp-ui-bindings-2.21.2.tar.bz2
 
 Prefix: /usr
 
 Group:  System/YaST
-License:GPLv2+
+License:GPL v2 or later
 
 BuildRequires:  gcc-c++
 BuildRequires:  yast2-devtools
@@ -60,7 +60,7 @@
 modules are written).
 
 %package devel
-License:GPLv2+
+
 Requires:   yast2-ycp-ui-bindings = %version
 Group:  Development/Libraries
 Summary:YaST2 - YCP Bindings for the YaST2 User Interface Engine
@@ -79,7 +79,7 @@
 language in which most YaST2 modules are written).
 
 %prep
-%setup -n yast2-ycp-ui-bindings-2.21.1
+%setup -n yast2-ycp-ui-bindings-2.21.2
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -124,5 +124,4 @@
 %{prefix}/include/YaST2
 %{_libdir}/pkgconfig/yast2-ycp-ui-bindings.pc
 %doc %{prefix}/share/doc/packages/yast2-ycp-ui-bindings
-
 %changelog

++ yast2-ycp-ui-bindings-2.21.1.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.2.tar.bz2 ++
 10237 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-ycp-ui-bindings for openSUSE:Factory

2011-04-20 Thread h_root

Hello community,

here is the log from the commit of package yast2-ycp-ui-bindings for 
openSUSE:Factory
checked in at Wed Apr 20 13:53:26 CEST 2011.




--- yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes 2011-02-11 
15:58:21.0 +0100
+++ 
/mounts/work_src_done/STABLE/yast2-ycp-ui-bindings/yast2-ycp-ui-bindings.changes
2011-04-19 12:19:31.0 +0200
@@ -1,0 +2,12 @@
+Tue Apr 19 12:13:02 CEST 2011 - tgoettlic...@suse.de
+
+- version bump
+- V 2.21.1
+
+---
+Fri Apr 15 16:18:41 CEST 2011 - tgoettlic...@suse.de
+
+- Added support for recursive selection in tree widgets
+- V 2.20.4
+
+---

calling whatdependson for head-i586


Old:

  yast2-ycp-ui-bindings-2.20.3.tar.bz2

New:

  yast2-ycp-ui-bindings-2.21.1.tar.bz2



Other differences:
--
++ yast2-ycp-ui-bindings.spec ++
--- /var/tmp/diff_new_pack.cyUCMY/_old  2011-04-20 13:53:15.0 +0200
+++ /var/tmp/diff_new_pack.cyUCMY/_new  2011-04-20 13:53:15.0 +0200
@@ -19,11 +19,11 @@
 
 
 Name:   yast2-ycp-ui-bindings
-Version:2.20.3
+Version:2.21.1
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-ycp-ui-bindings-2.20.3.tar.bz2
+Source0:yast2-ycp-ui-bindings-2.21.1.tar.bz2
 
 Prefix: /usr
 
@@ -45,8 +45,8 @@
 # libycp includes crypto built-ins
 BuildRequires:  libxcrypt-devel
 
-Requires:   yast2-libyui  = 2.20.1
-BuildRequires:  yast2-libyui-devel = 2.20.1
+Requires:   yast2-libyui  = 2.21.1
+BuildRequires:  yast2-libyui-devel = 2.21.1
 
 # libyui ImplPtr
 BuildRequires:  boost-devel
@@ -79,7 +79,7 @@
 language in which most YaST2 modules are written).
 
 %prep
-%setup -n yast2-ycp-ui-bindings-2.20.3
+%setup -n yast2-ycp-ui-bindings-2.21.1
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -124,4 +124,5 @@
 %{prefix}/include/YaST2
 %{_libdir}/pkgconfig/yast2-ycp-ui-bindings.pc
 %doc %{prefix}/share/doc/packages/yast2-ycp-ui-bindings
+
 %changelog

++ yast2-ycp-ui-bindings-2.20.3.tar.bz2 - 
yast2-ycp-ui-bindings-2.21.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.20.3/VERSION 
new/yast2-ycp-ui-bindings-2.21.1/VERSION
--- old/yast2-ycp-ui-bindings-2.20.3/VERSION2011-02-11 16:01:05.0 
+0100
+++ new/yast2-ycp-ui-bindings-2.21.1/VERSION2011-04-19 12:12:52.0 
+0200
@@ -1 +1 @@
-2.20.3
+2.21.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ycp-ui-bindings-2.20.3/configure 
new/yast2-ycp-ui-bindings-2.21.1/configure
--- old/yast2-ycp-ui-bindings-2.20.3/configure  2011-02-11 16:01:26.0 
+0100
+++ new/yast2-ycp-ui-bindings-2.21.1/configure  2011-04-19 12:19:10.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.65 for yast2-ycp-ui-bindings 2.20.3.
+# Generated by GNU Autoconf 2.65 for yast2-ycp-ui-bindings 2.21.1.
 #
 # Report bugs to http://bugs.opensuse.org/.
 #
@@ -701,8 +701,8 @@
 # Identity of this package.
 PACKAGE_NAME='yast2-ycp-ui-bindings'
 PACKAGE_TARNAME='yast2-ycp-ui-bindings'
-PACKAGE_VERSION='2.20.3'
-PACKAGE_STRING='yast2-ycp-ui-bindings 2.20.3'
+PACKAGE_VERSION='2.21.1'
+PACKAGE_STRING='yast2-ycp-ui-bindings 2.21.1'
 PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
 PACKAGE_URL=''
 
@@ -1485,7 +1485,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures yast2-ycp-ui-bindings 2.20.3 to adapt to many kinds of 
systems.
+\`configure' configures yast2-ycp-ui-bindings 2.21.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1557,7 +1557,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.20.3:;;
+ short | recursive ) echo Configuration of yast2-ycp-ui-bindings 
2.21.1:;;
esac
   cat \_ACEOF
 
@@ -1670,7 +1670,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-yast2-ycp-ui-bindings configure 2.20.3
+yast2-ycp-ui-bindings configure 2.21.1
 generated by GNU Autoconf 2.65
 
 Copyright (C) 2009 Free Software Foundation, Inc.
@@ -2162,7 +2162,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by yast2-ycp-ui-bindings $as_me 2.20.3, which was
+It was created by yast2-ycp-ui-bindings $as_me 2.21.1, which was
 generated by GNU Autoconf 2.65.  Invocation command line was
 
   $ $0 $@
@@ -3085,7 +3085,7 @@
 
 # Define the identity of the package.