Hello community,

here is the log from the commit of package libyui for openSUSE:Factory checked 
in at 2013-05-27 09:53:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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    2013-05-13 
20:22:34.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libyui.new/libyui.changes       2013-05-27 
09:53:03.000000000 +0200
@@ -1,0 +2,9 @@
+Wed May 15 15:05:00 UTC 2013 - bjoern.es...@gmail.com
+
+- respect compiler flags of system rpm config when building RELEASE
+  by adding -DRESPECT_FLAGS to cmake
+- add -DSKIP_LATEX to skip generation of LaTeX-based PDF-generation
+  when invoking `make docs`
+- Version 3.0.5
+
+-------------------------------------------------------------------

Old:
----
  libyui-3.0.4.tar.bz2

New:
----
  libyui-3.0.5.tar.bz2

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

Other differences:
------------------
++++++ libyui-doc.spec ++++++
--- /var/tmp/diff_new_pack.BQ1gMF/_old  2013-05-27 09:53:04.000000000 +0200
+++ /var/tmp/diff_new_pack.BQ1gMF/_new  2013-05-27 09:53:04.000000000 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui (Version 3.0.4)
+# spec file for package libyui (Version 3.0.5)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -16,7 +16,7 @@
 #
 
 Name:          libyui-doc
-Version:       3.0.4
+Version:       3.0.5
 Release:       0
 License:       LGPL-2.1 or LGPL-3.0
 Source:                libyui-%{version}.tar.bz2

++++++ libyui.spec ++++++
--- /var/tmp/diff_new_pack.BQ1gMF/_old  2013-05-27 09:53:04.000000000 +0200
+++ /var/tmp/diff_new_pack.BQ1gMF/_new  2013-05-27 09:53:04.000000000 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package libyui (Version 3.0.4)
+# spec file for package libyui (Version 3.0.5)
 #
 # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
@@ -20,7 +20,7 @@
 # norootforbuild
 
 Name:          libyui
-Version:       3.0.4
+Version:       3.0.5
 Release:       0
 License:       LGPL-2.1 or LGPL-3.0
 Source:                libyui-%{version}.tar.bz2

++++++ libyui-3.0.4.tar.bz2 -> libyui-3.0.5.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.4/ChangeLog new/libyui-3.0.5/ChangeLog
--- old/libyui-3.0.4/ChangeLog  2013-05-10 16:52:55.000000000 +0200
+++ new/libyui-3.0.5/ChangeLog  2013-05-16 13:22:54.000000000 +0200
@@ -1,4 +1,13 @@
 -------------------------------------------------------------------
+Wed May 15 15:05:00 UTC 2013 - bjoern.es...@gmail.com
+
+- respect compiler flags of system rpm config when building RELEASE
+  by adding -DRESPECT_FLAGS to cmake
+- add -DSKIP_LATEX to skip generation of LaTeX-based PDF-generation
+  when invoking `make docs`
+- Version 3.0.5
+
+-------------------------------------------------------------------
 Fri May 10 14:00:00 UTC 2013 - bjoern.es...@gmail.com
 
 - checking prefix in -doc pkg is obsolete
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.4/VERSION.cmake 
new/libyui-3.0.5/VERSION.cmake
--- old/libyui-3.0.4/VERSION.cmake      2013-05-10 16:52:55.000000000 +0200
+++ new/libyui-3.0.5/VERSION.cmake      2013-05-16 13:22:54.000000000 +0200
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR "3")
 SET( VERSION_MINOR "0" )
-SET( VERSION_PATCH "4" )
+SET( VERSION_PATCH "5" )
 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.4/buildtools/LibyuiCommon.cmake 
new/libyui-3.0.5/buildtools/LibyuiCommon.cmake
--- old/libyui-3.0.4/buildtools/LibyuiCommon.cmake      2013-05-10 
16:52:55.000000000 +0200
+++ new/libyui-3.0.5/buildtools/LibyuiCommon.cmake      2013-05-16 
13:22:54.000000000 +0200
@@ -41,11 +41,13 @@
 
   OPTION( DISABLE_SHARED "Shall I build a static library, only?" OFF )
   OPTION( DOCS_ONLY "Shall \"make install\" install only docs, no binaries?" 
OFF )
+  OPTION( SKIP_LATEX "Shall I skip the generation of LaTeX PDF-docs?" OFF )
   OPTION( ENABLE_STATIC "Shall I build a static library, too?" OFF )
   OPTION( ENABLE_DEBUG "Shall I include Debug-Symbols in Release?" OFF )
   OPTION( ENABLE_EXAMPLES "Shall I compile the examples, too?" OFF )
   OPTION( ENABLE_WALL "Enable the -Wall compiler-flag?" ON )
   OPTION( ENABLE_WERROR "Enable the -Werror compiler-flag?" ON )
+  OPTION( RESPECT_FLAGS "Shall I respect the system c/ldflags?" OFF )
   OPTION( INSTALL_DOCS "Shall \"make install\" install the docs?" OFF )
 
 ENDMACRO( SET_OPTIONS )
@@ -109,8 +111,13 @@
   SET( CMAKE_C_FLAGS_DEBUG     "-O0 -g3" )
   SET( CMAKE_CXX_FLAGS_MINSIZEREL      "-Os" )
   SET( CMAKE_C_FLAGS_MINSIZEREL                "-Os" )
+IF( RESPECT_FLAGS )
+  SET( CMAKE_CXX_FLAGS_RELEASE "" )
+  SET( CMAKE_C_FLAGS_RELEASE   "" )
+ELSE( RESPECT_FLAGS )
   SET( CMAKE_CXX_FLAGS_RELEASE "-O3" )
   SET( CMAKE_C_FLAGS_RELEASE   "-O3" )
+ENDIF( RESPECT_FLAGS )
   SET( CMAKE_CXX_FLAGS_RELWITHDEBINFO  "-O3 -g3" )
   SET( CMAKE_C_FLAGS_RELWITHDEBINFO    "-O3 -g3" )
 
@@ -266,7 +273,7 @@
       AND NOT ${MAKEINDEX_COMPILER} STREQUAL "MAKEINDEX_COMPILER-NOTFOUND"
     )
 
-    IF( ${LATEX_COND} )
+    IF( ${LATEX_COND} AND NOT SKIP_LATEX )
       MESSAGE( STATUS "Found LaTeX: ${PDFLATEX_COMPILER}" )
       MESSAGE( STATUS "Found LaTeX: ${MAKEINDEX_COMPILER}" )
       SET( BUILD_LATEX "YES" )
@@ -286,10 +293,10 @@
         )
       ENDIF( INSTALL_DOCS OR DOCS_ONLY )
 
-    ELSE( ${LATEX_COND} )
+    ELSE( ${LATEX_COND} AND NOT SKIP_LATEX )
       MESSAGE( STATUS "Checking for LaTeX: not found" )
       SET( BUILD_LATEX "NO" )
-    ENDIF( ${LATEX_COND} )
+    ENDIF( ${LATEX_COND} AND NOT SKIP_LATEX )
 
     ADD_CUSTOM_TARGET( ${DOXYGEN_TARGET}
       ${DOXYGEN_EXECUTABLE} "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile"

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

Reply via email to