Mailinglist Archive: opensuse-commit (1159 mails)
| < Previous | Next > |
commit yast2-ncurses
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Thu, 25 Oct 2007 02:21:34 +0200
- Message-id: <20071025002134.D1D87678179@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2-ncurses
checked in at Thu Oct 25 02:21:34 CEST 2007.
--------
--- yast2-ncurses/yast2-ncurses.changes 2007-09-08 09:38:32.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2-ncurses/yast2-ncurses.changes
2007-10-24 16:02:20.702179000 +0200
@@ -1,0 +2,7 @@
+Tue Oct 23 15:18:39 CEST 2007 - kmachalkova@xxxxxxx
+
+- Added missing includes to compile with gcc 4.3
+- Removed sources of gcc 4.3 operator priority warnings
+- 2.16.0
+
+-------------------------------------------------------------------
Old:
----
yast2-ncurses-2.15.27.tar.bz2
New:
----
yast2-ncurses-2.16.0.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-ncurses.spec ++++++
--- /var/tmp/diff_new_pack.U24452/_old 2007-10-25 02:19:51.000000000 +0200
+++ /var/tmp/diff_new_pack.U24452/_new 2007-10-25 02:19:51.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-ncurses (Version 2.15.27)
+# spec file for package yast2-ncurses (Version 2.16.0)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,13 +11,13 @@
# norootforbuild
Name: yast2-ncurses
-Version: 2.15.27
+Version: 2.16.0
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-ncurses-2.15.27.tar.bz2
-prefix: /usr
+Source0: yast2-ncurses-2.16.0.tar.bz2
+Prefix: /usr
BuildRequires: dejagnu doxygen gcc-c++ libzypp-devel yast2-core-devel
yast2-devtools
BuildRequires: blocxx-devel libxcrypt-devel ncurses-devel
Summary: YaST2 - Character Based User Interface
@@ -44,7 +44,7 @@
%prep
-%setup -n yast2-ncurses-2.15.27
+%setup -n yast2-ncurses-2.16.0
%build
%{prefix}/bin/y2tool y2autoconf
@@ -78,8 +78,11 @@
/usr/share/YaST2/data/pkg_layout.ycp
/usr/share/YaST2/data/you_layout.ycp
%doc %{prefix}/share/doc/packages/yast2-ncurses
-
%changelog
+* Tue Oct 23 2007 - kmachalkova@xxxxxxx
+- Added missing includes to compile with gcc 4.3
+- Removed sources of gcc 4.3 operator priority warnings
+- 2.16.0
* Fri Sep 07 2007 - kmachalkova@xxxxxxx
- Display install notify message only if package is marked for
installation, disregard update (#308410)
++++++ yast2-ncurses-2.15.27.tar.bz2 -> yast2-ncurses-2.16.0.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/src/NCRichText.h
new/yast2-ncurses-2.16.0/src/NCRichText.h
--- old/yast2-ncurses-2.15.27/src/NCRichText.h 2007-05-18 10:55:40.000000000
+0200
+++ new/yast2-ncurses-2.16.0/src/NCRichText.h 2007-10-23 14:37:02.000000000
+0200
@@ -142,7 +142,7 @@
if ( sline == unset || scol == unset
|| eline == unset || ecol == unset )
return false;
- if ( eline == sline && ecol <= scol
+ if ( ( eline == sline && ecol <= scol )
|| eline < sline )
return false;
return true;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/src/NCstring.cc
new/yast2-ncurses-2.16.0/src/NCstring.cc
--- old/yast2-ncurses-2.15.27/src/NCstring.cc 2007-05-18 10:55:40.000000000
+0200
+++ new/yast2-ncurses-2.16.0/src/NCstring.cc 2007-10-23 13:38:07.000000000
+0200
@@ -19,6 +19,7 @@
#include <ycp/YCPString.h>
#include <errno.h>
+#include <iconv.h>
#include "Y2Log.h"
#include "NCstring.h"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/src/NCstyle.h
new/yast2-ncurses-2.16.0/src/NCstyle.h
--- old/yast2-ncurses-2.15.27/src/NCstyle.h 2007-05-18 10:55:40.000000000
+0200
+++ new/yast2-ncurses-2.16.0/src/NCstyle.h 2007-10-23 14:54:15.000000000
+0200
@@ -75,13 +75,13 @@
inline static chtype getChar ( chtype a ) { return a &
char_mask; }
inline static chtype getNonChar ( chtype a ) { return a &
~char_mask; }
- inline static void setStyle ( chtype & a, chtype ch ) { a = a &
~style_mask | ch & style_mask; }
- inline static void setColor ( chtype & a, chtype ch ) { if ( colors() )
a = a & ~color_mask | ch & color_mask; }
- inline static void setChar ( chtype & a, chtype ch ) { a = a &
~char_mask | ch & char_mask; }
+ inline static void setStyle ( chtype & a, chtype ch ) { a = (a &
~style_mask) | (ch & style_mask); }
+ inline static void setColor ( chtype & a, chtype ch ) { if ( colors() )
a = (a & ~color_mask) | (ch & color_mask); }
+ inline static void setChar ( chtype & a, chtype ch ) { a = (a &
~char_mask) | (ch & char_mask); }
- inline static void addStyle ( chtype & a, chtype ch ) { a = a | ch &
style_mask; }
+ inline static void addStyle ( chtype & a, chtype ch ) { a = a | (ch &
style_mask); }
inline static void delStyle ( chtype & a, chtype ch ) { a = a & ~(ch &
style_mask); }
- inline static void toggleStyle( chtype & a, chtype ch ) { setStyle( a, a &
~ch | (a ^ ch) & ch ); }
+ inline static void toggleStyle( chtype & a, chtype ch ) { setStyle( a, (a
& ~ch) | ((a ^ ch) & ch )); }
inline static void addAlt ( chtype & a ) { a |= A_ALTCHARSET; }
inline static void delAlt ( chtype & a ) { a &= ~A_ALTCHARSET; }
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/src/NCTablePad.cc
new/yast2-ncurses-2.16.0/src/NCTablePad.cc
--- old/yast2-ncurses-2.15.27/src/NCTablePad.cc 2007-05-18 10:55:40.000000000
+0200
+++ new/yast2-ncurses-2.16.0/src/NCTablePad.cc 2007-10-23 13:48:41.000000000
+0200
@@ -20,6 +20,8 @@
#include "NCTablePad.h"
#include "NCPopupMenu.h"
+#include <limits.h>
+
#if 0
#undef DBG_CLASS
#define DBG_CLASS "_NCTablePad_"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/src/NCtext.cc
new/yast2-ncurses-2.16.0/src/NCtext.cc
--- old/yast2-ncurses-2.15.27/src/NCtext.cc 2007-05-18 10:55:40.000000000
+0200
+++ new/yast2-ncurses-2.16.0/src/NCtext.cc 2007-10-23 13:42:23.000000000
+0200
@@ -21,6 +21,7 @@
#include "stringutil.h"
#include <wchar.h> // wcwidth
+#include <langinfo.h>
///////////////////////////////////////////////////////////////////
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/src/NCTextPad.cc
new/yast2-ncurses-2.16.0/src/NCTextPad.cc
--- old/yast2-ncurses-2.15.27/src/NCTextPad.cc 2007-05-18 10:55:40.000000000
+0200
+++ new/yast2-ncurses-2.16.0/src/NCTextPad.cc 2007-10-23 13:46:34.000000000
+0200
@@ -19,6 +19,8 @@
#include "Y2Log.h"
#include "NCTextPad.h"
+#include <limits.h>
+
///////////////////////////////////////////////////////////////////
//
//
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/src/YNCursesUI.cc
new/yast2-ncurses-2.16.0/src/YNCursesUI.cc
--- old/yast2-ncurses-2.15.27/src/YNCursesUI.cc 2007-08-24 14:18:15.000000000
+0200
+++ new/yast2-ncurses-2.16.0/src/YNCursesUI.cc 2007-10-23 13:27:41.000000000
+0200
@@ -21,6 +21,7 @@
#include <string>
#include <sys/time.h>
#include <unistd.h>
+#include <langinfo.h>
#include "Y2Log.h"
#include <YEvent.h>
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/testsuite/NCstring_test.cc
new/yast2-ncurses-2.16.0/testsuite/NCstring_test.cc
--- old/yast2-ncurses-2.15.27/testsuite/NCstring_test.cc 2007-05-18
10:55:40.000000000 +0200
+++ new/yast2-ncurses-2.16.0/testsuite/NCstring_test.cc 2007-10-23
14:11:14.000000000 +0200
@@ -19,6 +19,7 @@
#include <ycp/YCPString.h>
#include <errno.h>
+#include <iconv.h>
#include "Y2Log.h"
#include "NCstring_test.h"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/testsuite/utf8test.cc
new/yast2-ncurses-2.16.0/testsuite/utf8test.cc
--- old/yast2-ncurses-2.15.27/testsuite/utf8test.cc 2007-05-18
10:55:40.000000000 +0200
+++ new/yast2-ncurses-2.16.0/testsuite/utf8test.cc 2007-10-23
14:29:20.000000000 +0200
@@ -18,6 +18,8 @@
#include <stdio.h>
#include <errno.h>
+#include <langinfo.h>
+#include <libintl.h>
#include <ycp/y2log.h>
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ncurses-2.15.27/VERSION
new/yast2-ncurses-2.16.0/VERSION
--- old/yast2-ncurses-2.15.27/VERSION 2007-09-07 17:17:26.000000000 +0200
+++ new/yast2-ncurses-2.16.0/VERSION 2007-10-23 15:36:20.000000000 +0200
@@ -1 +1 @@
-2.15.27
+2.16.0
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |