Mailinglist Archive: opensuse-commit (1500 mails)
| < Previous | Next > |
commit yast2
- From: root@xxxxxxx (h_root)
- Date: Mon, 13 Nov 2006 17:57:48 +0100 (CET)
- Message-id: <20061113165748.995EE848F7@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2
checked in at Mon Nov 13 17:57:48 CET 2006.
--------
--- yast2/yast2.changes 2006-11-13 14:43:24.000000000 +0100
+++ /mounts/work_src_done/STABLE/yast2/yast2.changes 2006-11-13 17:27:18.000000000 +0100
@@ -1,0 +2,7 @@
+Mon Nov 13 17:26:19 CET 2006 - locilka@xxxxxxx
+
+- Tuning the previous change not to use .target.tmpdir but using
+ "/var/lib/YaST2" instead.
+- 2.14.12
+
+-------------------------------------------------------------------
Old:
----
yast2-2.14.11.tar.bz2
New:
----
yast2-2.14.12.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.V5rAFX/_old 2006-11-13 17:57:22.000000000 +0100
+++ /var/tmp/diff_new_pack.V5rAFX/_new 2006-11-13 17:57:22.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package yast2 (Version 2.14.11)
+# spec file for package yast2 (Version 2.14.12)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild
Name: yast2
-Version: 2.14.11
+Version: 2.14.12
Release: 1
License: GNU General Public License (GPL) - all versions
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-2.14.11.tar.bz2
+Source0: yast2-2.14.12.tar.bz2
prefix: /usr
BuildRequires: perl-XML-Writer update-desktop-files yast2-devtools yast2-pkg-bindings yast2-testsuite
# Need the new file popups
@@ -97,7 +97,7 @@
Steffen Winterfeldt <snwint@xxxxxxx>
%prep
-%setup -n yast2-2.14.11
+%setup -n yast2-2.14.12
%build
%{prefix}/bin/y2tool y2autoconf
@@ -198,6 +198,10 @@
%changelog -n yast2
* Mon Nov 13 2006 - locilka@xxxxxxx
+- Tuning the previous change not to use .target.tmpdir but using
+ "/var/lib/YaST2" instead.
+- 2.14.12
+* Mon Nov 13 2006 - locilka@xxxxxxx
- Calling /sbin/SuSEfirewall2 (start|stop) instead of
Service::Start()/Service::Stop() for SuSEfirewall2_(init && setup)
(#215416).
++++++ yast2-2.14.11.tar.bz2 -> yast2-2.14.12.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-2.14.11/VERSION new/yast2-2.14.12/VERSION
--- old/yast2-2.14.11/VERSION 2006-11-13 14:27:33.000000000 +0100
+++ new/yast2-2.14.12/VERSION 2006-11-13 17:24:32.000000000 +0100
@@ -1 +1 @@
-2.14.11
+2.14.12
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-2.14.11/library/modules/Version.ycp new/yast2-2.14.12/library/modules/Version.ycp
--- old/yast2-2.14.11/library/modules/Version.ycp 2006-11-13 14:33:53.000000000 +0100
+++ new/yast2-2.14.12/library/modules/Version.ycp 2006-11-13 17:28:09.000000000 +0100
@@ -20,7 +20,7 @@
/**
* Version of the yast2 package
*/
-global string yast2 = "2.14.11";
+global string yast2 = "2.14.12";
/* EOF */
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-2.14.11/library/network/src/SuSEFirewall.ycp new/yast2-2.14.12/library/network/src/SuSEFirewall.ycp
--- old/yast2-2.14.11/library/network/src/SuSEFirewall.ycp 2006-11-13 14:18:19.000000000 +0100
+++ new/yast2-2.14.12/library/network/src/SuSEFirewall.ycp 2006-11-13 17:23:45.000000000 +0100
@@ -1034,8 +1034,10 @@
// }
//});
- string tmpdir_file = (string) SCR::Read(.target.tmpdir);
- if (tmpdir_file == nil || tmpdir_file == "") tmpdir_file = "/tmp";
+ //string tmpdir_file = (string) SCR::Read(.target.tmpdir);
+ //if (tmpdir_file == nil || tmpdir_file == "") tmpdir_file = "/tmp";
+
+ string tmpdir_file = "/var/lib/YaST2";
tmpdir_file = tmpdir_file + "/SuSEfirewall2_YaST_output";
string command = sformat(
"/sbin/SuSEfirewall2 start 2>'%1'; cat '%1'; rm -rf '%1'",
@@ -1072,8 +1074,10 @@
// }
//});
- string tmpdir_file = (string) SCR::Read(.target.tmpdir);
- if (tmpdir_file == nil || tmpdir_file == "") tmpdir_file = "/tmp";
+ // string tmpdir_file = (string) SCR::Read(.target.tmpdir);
+ // if (tmpdir_file == nil || tmpdir_file == "") tmpdir_file = "/tmp";
+
+ string tmpdir_file = "/var/lib/YaST2";
tmpdir_file = tmpdir_file + "/SuSEfirewall2_YaST_output";
string command = sformat(
"/sbin/SuSEfirewall2 stop 2>'%1'; cat '%1'; rm -rf '%1'",
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |