Hello community,

here is the log from the commit of package libyui for openSUSE:Factory checked 
in at 2014-04-13 13:13:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libyui (Old)
 and      /work/SRC/openSUSE:Factory/.libyui.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libyui"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libyui/libyui.changes    2014-02-24 
14:12:00.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libyui.new/libyui.changes       2014-04-13 
13:13:20.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Apr  9 12:44:17 UTC 2014 - [email protected]
+
+- Added YUIOpt_titleOnLeft, YWizardMode_TitleOnLeft (bnc#868859)
+- 3.1.0
+
+-------------------------------------------------------------------

Old:
----
  libyui-3.0.13.tar.bz2

New:
----
  libyui-3.1.0.tar.bz2

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

Other differences:
------------------
++++++ libyui-doc.spec ++++++
--- /var/tmp/diff_new_pack.LMQy9c/_old  2014-04-13 13:13:22.000000000 +0200
+++ /var/tmp/diff_new_pack.LMQy9c/_new  2014-04-13 13:13:22.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libyui-doc
-Version:        3.0.13
+Version:        3.1.0
 Release:        0
 Source:         libyui-%{version}.tar.bz2
 

++++++ libyui.spec ++++++
--- /var/tmp/diff_new_pack.LMQy9c/_old  2014-04-13 13:13:22.000000000 +0200
+++ /var/tmp/diff_new_pack.LMQy9c/_new  2014-04-13 13:13:22.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libyui
-Version:        3.0.13
+Version:        3.1.0
 Release:        0
 Source:         libyui-%{version}.tar.bz2
 

++++++ libyui-3.0.13.tar.bz2 -> libyui-3.1.0.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/ChangeLog new/libyui-3.1.0/ChangeLog
--- old/libyui-3.0.13/ChangeLog 2014-02-21 16:22:51.000000000 +0100
+++ new/libyui-3.1.0/ChangeLog  2014-04-10 11:27:37.000000000 +0200
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Wed Apr  9 12:44:17 UTC 2014 - [email protected]
+
+- Added YUIOpt_titleOnLeft, YWizardMode_TitleOnLeft (bnc#868859)
+- 3.1.0
+
+-------------------------------------------------------------------
 Fri Feb 21 14:54:17 UTC 2014 - [email protected]
 
 - now building on https://ci.opensuse.org/view/libyui/ !
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/Rakefile new/libyui-3.1.0/Rakefile
--- old/libyui-3.0.13/Rakefile  2014-02-21 14:45:21.000000000 +0100
+++ new/libyui-3.1.0/Rakefile   2014-03-12 15:47:44.000000000 +0100
@@ -11,12 +11,14 @@
 BUILDDIR = "build"
 
 Packaging.configuration do |conf|
+  spec_template = Dir.glob("*.spec.{in,cmake}").first
+
   conf.obs_project = "devel:libraries:libyui"
   conf.obs_sr_project = "openSUSE:Factory"
-  conf.package_name = Dir.glob("*.spec.in").first.chomp(".spec.in")
+  conf.package_name = spec_template[/(.*)\.spec\..*/, 1]
   conf.package_dir = "#{BUILDDIR}/package"
 
-  conf.skip_license_check << /.*/ if conf.package_name =~ /^libyui-gtk/
+  conf.skip_license_check << /.*/ if conf.package_name =~ /gtk|bindings/
   conf.skip_license_check << /bootstrap.sh|ChangeLog|Makefile.cvs/
   conf.skip_license_check << /^buildtools\/.*/
   conf.skip_license_check << /\.(cmake|gv|ui|xpm)$/
@@ -36,7 +38,9 @@
 desc 'Build a tarball for OBS'
 task :tarball do
   rm_rf BUILDDIR
-  ln_sf "#{LIBYUI_BASE}/buildtools/CMakeLists.common", "CMakeLists.txt"
+  unless File.file? "CMakeLists.txt"
+    ln_sf "#{LIBYUI_BASE}/buildtools/CMakeLists.common", "CMakeLists.txt"
+  end
   lib_dir = `rpm --eval '%{_lib}'`.chomp
   mkdir_p BUILDDIR
   chdir BUILDDIR do
@@ -50,7 +54,7 @@
        "-DENABLE_WERROR=OFF", # gtk needs this
        "..")
     sh "make clean"
-    sh "make -j$(nproc)"
+    sh "make -j$(nproc) VERBOSE=1"
     sh "make install"
     sh "make srcpackage"
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/VERSION.cmake 
new/libyui-3.1.0/VERSION.cmake
--- old/libyui-3.0.13/VERSION.cmake     2014-02-18 17:12:09.000000000 +0100
+++ new/libyui-3.1.0/VERSION.cmake      2014-04-10 11:27:37.000000000 +0200
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR "3")
-SET( VERSION_MINOR "0" )
-SET( VERSION_PATCH "13" )
+SET( VERSION_MINOR "1" )
+SET( VERSION_PATCH "0" )
 SET( VERSION 
"${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" )
 
 ##### This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/src/YContextMenu.h 
new/libyui-3.1.0/src/YContextMenu.h
--- old/libyui-3.0.13/src/YContextMenu.h        2014-02-18 17:12:09.000000000 
+0100
+++ new/libyui-3.1.0/src/YContextMenu.h 2014-02-24 16:07:51.000000000 +0100
@@ -44,6 +44,9 @@
  * right away when the user selects an item (clicks on a menu item or activates
  * it with the keyboard). Items that have a submenu never send an event, they
  * simply open their submenu when activated.
+ *
+ * Note: unlike other widgets, this one is not created via YWidgetFactory
+ * or YOptionalWidgetFactory but with YApplication::openContextMenu()
  **/
 class YContextMenu : public YSelectionWidget
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/src/YUISymbols.h 
new/libyui-3.1.0/src/YUISymbols.h
--- old/libyui-3.0.13/src/YUISymbols.h  2014-02-18 17:12:09.000000000 +0100
+++ new/libyui-3.1.0/src/YUISymbols.h   2014-04-10 11:27:37.000000000 +0200
@@ -233,6 +233,7 @@
 #define YUIOpt_okButton                                "okButton"
 #define YUIOpt_outputField                     "outputField"
 #define YUIOpt_plainText                       "plainText"
+#define YUIOpt_recursiveSelection              "recursiveSelection"
 #define YUIOpt_relaxSanityCheck                        "relaxSanityCheck"
 #define YUIOpt_repoMgr                         "repoMgr"
 #define YUIOpt_repoMode                                "repoMode"
@@ -243,6 +244,7 @@
 #define YUIOpt_summaryMode                     "summaryMode"
 #define YUIOpt_testMode                                "testMode"
 #define YUIOpt_tiled                           "tiled"
+#define YUIOpt_titleOnLeft                     "titleOnLeft"
 #define YUIOpt_treeEnabled                     "treeEnabled"
 #define YUIOpt_updateMode                      "updateMode"
 #define YUIOpt_vstretch                                "vstretch"
@@ -251,7 +253,6 @@
 #define YUIOpt_youMode                         "youMode"
 #define YUIOpt_zeroHeight                      "zeroHeight"
 #define YUIOpt_zeroWidth                       "zeroWidth"
-#define YUIOpt_recursiveSelection              "recursiveSelection"
 
 #define YUIOpt_key_F1                          "key_F1"
 #define YUIOpt_key_F2                          "key_F2"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/src/YWizard.h 
new/libyui-3.1.0/src/YWizard.h
--- old/libyui-3.0.13/src/YWizard.h     2014-02-18 17:12:09.000000000 +0100
+++ new/libyui-3.1.0/src/YWizard.h      2014-04-10 11:27:37.000000000 +0200
@@ -40,7 +40,8 @@
 {
     YWizardMode_Standard,      // Normal wizard (help panel or nothing)
     YWizardMode_Steps,         // Steps visible in left side panel
-    YWizardMode_Tree           // Tree in left side panel
+    YWizardMode_Tree,          // Tree in left side panel
+    YWizardMode_TitleOnLeft     // Title on the left side
 };
 
 
@@ -123,7 +124,7 @@
 
     /**
      * Return the wizard mode (what kind of wizard this is):
-     * YWizardMode_Standard, YWizardMode_Steps, YWizardMode_Tree
+     * YWizardMode_Standard, YWizardMode_Steps, YWizardMode_Tree, 
YWizardMode_TitleOnLeft
      **/
     YWizardMode wizardMode() const;
 

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to