Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory
checked in at Fri Sep 9 11:57:45 CEST 2011.



--------
--- yast2/yast2.changes 2011-09-05 18:55:30.000000000 +0200
+++ /mounts/work_src_done/STABLE/yast2/yast2.changes    2011-09-08 
11:37:35.000000000 +0200
@@ -1,0 +2,13 @@
+Thu Sep  8 11:33:46 CEST 2011 - [email protected]
+
+- added agent for /etc/sysctl.conf (fate#312343)
+- 2.21.17
+
+-------------------------------------------------------------------
+Thu Sep  8 09:29:27 UTC 2011 - [email protected]
+
+- GPG.ycp - fixed initialization after creating a new GPG key,
+  fixed creating a GPG key in KDE desktop or after logging via
+  plain "su" (gpg agent problem) (bnc#715242)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  yast2-2.21.16.tar.bz2

New:
----
  yast2-2.21.17.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.RW9rfY/_old  2011-09-09 11:57:33.000000000 +0200
+++ /var/tmp/diff_new_pack.RW9rfY/_new  2011-09-09 11:57:33.000000000 +0200
@@ -19,11 +19,11 @@
 
 
 Name:           yast2
-Version:        2.21.16
+Version:        2.21.17
 Release:        1
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-2.21.16.tar.bz2
+Source0:        yast2-2.21.17.tar.bz2
 
 Prefix:         /usr
 
@@ -130,7 +130,7 @@
 installation with YaST2.
 
 %prep
-%setup -n yast2-2.21.16
+%setup -n yast2-2.21.17
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -252,4 +252,5 @@
 %doc %{prefix}/share/doc/packages/yast2/types
 %doc %{prefix}/share/doc/packages/yast2/wizard
 %doc %{prefix}/share/doc/packages/yast2/xml
+
 %changelog

++++++ yast2-2.21.16.tar.bz2 -> yast2-2.21.17.tar.bz2 ++++++
++++ 5851 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.21.16/VERSION new/yast2-2.21.17/VERSION
--- old/yast2-2.21.16/VERSION   2011-09-05 18:52:03.000000000 +0200
+++ new/yast2-2.21.17/VERSION   2011-09-08 11:23:53.000000000 +0200
@@ -1 +1 @@
-2.21.16
+2.21.17
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.21.16/configure.in new/yast2-2.21.17/configure.in
--- old/yast2-2.21.16/configure.in      2011-09-05 19:38:15.000000000 +0200
+++ new/yast2-2.21.17/configure.in      2011-06-23 15:49:18.000000000 +0200
@@ -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.21.16, http://bugs.opensuse.org/, yast2)
+AC_INIT(yast2, 2.21.2, 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.21.16"
+VERSION="2.21.2"
 RPMNAME="yast2"
 MAINTAINER="Jiri Srain <[email protected]>"
 
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.21.16/library/agents/etc_sysctl_conf.scr 
new/yast2-2.21.17/library/agents/etc_sysctl_conf.scr
--- old/yast2-2.21.16/library/agents/etc_sysctl_conf.scr        1970-01-01 
01:00:00.000000000 +0100
+++ new/yast2-2.21.17/library/agents/etc_sysctl_conf.scr        2011-09-08 
11:23:04.000000000 +0200
@@ -0,0 +1,21 @@
+/*
+ * File:
+ *   etc_sysctl_conf.scr
+ * Summary:
+ *   SCR Agent for reading/writing /etc/sysctl.conf
+ * Access:
+ *   r/w
+ *
+ */
+.etc.sysctl_conf
+
+`ag_ini(
+  `IniAgent(
+    "/etc/sysctl.conf",
+    $[ "options" : ["ignore_case", "global_values", "flat"],
+       "comments" : [ "^#.*", "^[ \t]*$", ],
+       "params" : [
+                $[ "match" : [ "^[ \t]*([^=]*[^ \t=])[ \t]*=[ \t]*(.*[^ \t]|)[ 
\t]*$" , "%s = %s"],],
+       ]
+       ]
+    ))
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.21.16/library/gpg/src/GPG.ycp 
new/yast2-2.21.17/library/gpg/src/GPG.ycp
--- old/yast2-2.21.16/library/gpg/src/GPG.ycp   2011-06-23 17:40:13.000000000 
+0200
+++ new/yast2-2.21.17/library/gpg/src/GPG.ycp   2011-09-08 11:32:22.000000000 
+0200
@@ -4,7 +4,7 @@
  * Summary:    A wrapper for gpg binary
  * Authors:    Ladislav Slezák <[email protected]>
  *
- * $Id: GPG.ycp 64567 2011-06-23 15:40:16Z lslezak $
+ * $Id: GPG.ycp 65599 2011-09-08 09:31:50Z lslezak $
  *
  * This module provides GPG key related functions. It is a wrapper around gpg
  * binary. It uses caching for reading GPG keys from the keyrings.
@@ -36,7 +36,7 @@
  */
 global boolean Init(string home_dir, boolean force)
 {
-    if (FileUtils::IsDirectory(home_dir) != true)
+    if (home_dir != "" && FileUtils::IsDirectory(home_dir) != true)
     {
        y2error("Path %1 is not a directory", home_dir);
        return false;
@@ -253,7 +253,7 @@
 global boolean CreateKey()
 {
     string xterm = "/usr/bin/xterm";
-    string command = buildGPGcommand("--gen-key");
+    string command = "GPG_AGENT_INFO='' " + buildGPGcommand("--gen-key");
     boolean text_mode = UI::GetDisplayInfo()["TextMode"]:false;
 
     y2debug("text_mode: %1", text_mode);
@@ -272,10 +272,10 @@
        string exit_file = ((string)SCR::Read(.target.tmpdir)) + 
"/gpg_tmp_exit_file";
        if (FileUtils::Exists(exit_file))
        {
-           SCR::Execute(.target.execute, "rm -f " + exit_file);
+           SCR::Execute(.target.bash, "rm -f " + exit_file);
        }
 
-       command = "LC_ALL=C " + xterm + " -e \"" + command + "; echo $? > " + 
exit_file + "\"";
+       command = "LC_ALL=en_US.UTF-8 " + xterm + " -e \"" + command + "; echo 
$? > " + exit_file + "\"";
        y2internal("Executing: %1", command);
 
        // in Qt start GPG in a xterm window
@@ -298,7 +298,7 @@
     }
     else
     {
-       command = "LC_ALL=C " + command;
+       command = "LC_ALL=en_US.UTF-8 " + command;
        y2internal("Executing in terminal: %1", command);
        // in ncurses use UI::RunInTerminal
        ret = UI::RunInTerminal(command) == 0;
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.21.16/library/modules/Version.ycp 
new/yast2-2.21.17/library/modules/Version.ycp
--- old/yast2-2.21.16/library/modules/Version.ycp       2011-09-05 
19:38:21.000000000 +0200
+++ new/yast2-2.21.17/library/modules/Version.ycp       2011-09-08 
11:34:32.000000000 +0200
@@ -20,7 +20,7 @@
 /**
  * Version of the yast2 package
  */
-global string yast2 = "2.21.16";
+global string yast2 = "2.21.17";
 
 /* EOF */
 }


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



Remember to have fun...

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

Reply via email to