Mailinglist Archive: opensuse-commit (710 mails)

< Previous Next >
commit yast2 for openSUSE:Factory
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Mon, 03 May 2010 21:29:16 +0200
  • Message-id: <20100503192916.BFAB42029C@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory
checked in at Mon May 3 21:29:16 CEST 2010.



--------
--- yast2/yast2.changes 2010-04-19 09:54:07.000000000 +0200
+++ yast2/yast2.changes 2010-04-30 13:44:50.000000000 +0200
@@ -1,0 +2,11 @@
+Fri Apr 30 13:32:22 CEST 2010 - jsuchome@xxxxxxx
+
+- ag_anyxml: do not die on broken XML (bnc#600928)
+- 2.19.13
+
+-------------------------------------------------------------------
+Thu Apr 29 12:15:50 CEST 2010 - jsrain@xxxxxxx
+
+- fixed typo (bnc#594384)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
yast2-2.19.12.tar.bz2

New:
----
yast2-2.19.13.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.ROvp6f/_old 2010-05-03 21:28:37.000000000 +0200
+++ /var/tmp/diff_new_pack.ROvp6f/_new 2010-05-03 21:28:37.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2 (Version 2.19.12)
+# spec file for package yast2 (Version 2.19.13)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -19,11 +19,11 @@


Name: yast2
-Version: 2.19.12
+Version: 2.19.13
Release: 1

BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-2.19.12.tar.bz2
+Source0: yast2-2.19.13.tar.bz2

Prefix: /usr

@@ -128,7 +128,7 @@
installation with YaST2.

%prep
-%setup -n yast2-2.19.12
+%setup -n yast2-2.19.13

%build
%{prefix}/bin/y2tool y2autoconf

++++++ yast2-2.19.12.tar.bz2 -> yast2-2.19.13.tar.bz2 ++++++
++++ 2291 lines of diff (skipped)
++++ retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/yast2-2.19.12/VERSION new/yast2-2.19.13/VERSION
--- old/yast2-2.19.12/VERSION 2010-04-19 09:51:50.000000000 +0200
+++ new/yast2-2.19.13/VERSION 2010-04-30 13:32:57.000000000 +0200
@@ -1 +1 @@
-2.19.12
+2.19.13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/yast2-2.19.12/configure.in new/yast2-2.19.13/configure.in
--- old/yast2-2.19.12/configure.in 2010-01-05 16:29:19.000000000 +0100
+++ new/yast2-2.19.13/configure.in 2010-01-18 14:40:47.000000000 +0100
@@ -3,7 +3,7 @@
dnl -- This file is generated by y2autoconf 2.18.11 - DO NOT EDIT! --
dnl (edit configure.in.in instead)

-AC_INIT(yast2, 2.19.1, http://bugs.opensuse.org/, yast2)
+AC_INIT(yast2, 2.19.5, http://bugs.opensuse.org/, yast2)
dnl Check for presence of file 'RPMNAME'
AC_CONFIG_SRCDIR([RPMNAME])

@@ -18,7 +18,7 @@
AM_INIT_AUTOMAKE(tar-ustar -Wno-portability)

dnl Important YaST2 variables
-VERSION="2.19.1"
+VERSION="2.19.5"
RPMNAME="yast2"
MAINTAINER="Jiri Srain <jsrain@xxxxxxx>"

diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/yast2-2.19.12/library/agents/ag_anyxml
new/yast2-2.19.13/library/agents/ag_anyxml
--- old/yast2-2.19.12/library/agents/ag_anyxml 2008-12-09 14:29:16.000000000
+0100
+++ new/yast2-2.19.13/library/agents/ag_anyxml 2010-04-29 15:49:42.000000000
+0200
@@ -78,9 +78,14 @@
}

my $xml = new XML::Simple (%in_args);
- my $root = $xml->XMLin ($file);
+ my $root = eval { $xml->XMLin ($file) };
undef $xml;

+ if($@) {
+ y2error ("error while parsing file $file");
+ undef $root;
+ }
+
ycp::Return ($root, 1); # pass everything as string (bnc#409491)

} elsif ($command eq "Write") {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/yast2-2.19.12/library/modules/Version.ycp
new/yast2-2.19.13/library/modules/Version.ycp
--- old/yast2-2.19.12/library/modules/Version.ycp 2010-04-19
09:52:32.000000000 +0200
+++ new/yast2-2.19.13/library/modules/Version.ycp 2010-04-30
13:33:03.000000000 +0200
@@ -20,7 +20,7 @@
/**
* Version of the yast2 package
*/
-global string yast2 = "2.19.12";
+global string yast2 = "2.19.13";

/* EOF */
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh
old/yast2-2.19.12/library/packages/src/PackageLock.ycp
new/yast2-2.19.13/library/packages/src/PackageLock.ycp
--- old/yast2-2.19.12/library/packages/src/PackageLock.ycp 2009-11-26
08:53:11.000000000 +0100
+++ new/yast2-2.19.13/library/packages/src/PackageLock.ycp 2010-04-30
13:32:19.000000000 +0200
@@ -4,7 +4,7 @@
* Summary: Packages manipulation (system)
* Authors: Martin Vidner <mvidner@xxxxxxx>
*
- * $Id: PackageLock.ycp 59764 2009-11-26 07:53:10Z lslezak $
+ * $Id: PackageLock.ycp 61908 2010-04-29 10:16:18Z jsrain $
*
* This should be used everywhere before Pkg is first used. #160319
*/
@@ -87,7 +87,7 @@
{
symbol ret = Popup::AnyQuestion3(
// TRANSLATORS: a popup headline
- _("Accessing the Softwaree Management Failed"),
+ _("Accessing the Software Management Failed"),
Pkg::LastError() + "\n\n" +
// TRANSLATORS: an error message with question
_("Would you like to retry accessing the software manager,


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



Remember to have fun...

--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages