Mailinglist Archive: opensuse-commit (1081 mails)

< Previous Next >
commit yast2-samba-client
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Thu, 17 May 2007 14:36:26 +0200
  • Message-id: <20070517123627.1CECD678182@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package yast2-samba-client
checked in at Thu May 17 14:36:26 CEST 2007.

--------
--- yast2-samba-client/yast2-samba-client.changes       2007-03-27 11:33:36.000000000 +0200
+++ /mounts/work_src_done/NOARCH/yast2-samba-client/yast2-samba-client.changes  2007-05-17 13:52:00.545793000 +0200
@@ -1,0 +2,6 @@
+Thu May 17 13:44:22 CEST 2007 - jsuchome@xxxxxxx
+
+- fix deleting shares from smb.conf (#264834)
+- 2.15.6 
+
+-------------------------------------------------------------------

Old:
----
  yast2-samba-client-2.15.5.tar.bz2

New:
----
  yast2-samba-client-2.15.6.tar.bz2

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

Other differences:
------------------
++++++ yast2-samba-client.spec ++++++
--- /var/tmp/diff_new_pack.H20214/_old  2007-05-17 14:35:29.000000000 +0200
+++ /var/tmp/diff_new_pack.H20214/_new  2007-05-17 14:35:29.000000000 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package yast2-samba-client (Version 2.15.5)
+# spec file for package yast2-samba-client (Version 2.15.6)
 #
 # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
 # norootforbuild
 
 Name:           yast2-samba-client
-Version:        2.15.5
+Version:        2.15.6
 Release:        1
 License:        GNU General Public License (GPL)
 Group:          System/YaST
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-samba-client-2.15.5.tar.bz2
+Source0:        yast2-samba-client-2.15.6.tar.bz2
 prefix:                /usr
 BuildRequires:  perl-XML-Writer update-desktop-files yast2-devtools yast2-pam yast2-perl-bindings yast2-testsuite
 Requires:       yast2 yast2-kerberos-client
@@ -36,7 +36,7 @@
     Stanislav Visnovsky <visnov@xxxxxxx>
 
 %prep
-%setup -n yast2-samba-client-2.15.5
+%setup -n yast2-samba-client-2.15.6
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -74,6 +74,9 @@
 %doc %{prefix}/share/doc/packages/yast2-samba-client
 
 %changelog
+* Thu May 17 2007 - jsuchome@xxxxxxx
+- fix deleting shares from smb.conf (#264834)
+- 2.15.6
 * Tue Mar 27 2007 - jsuchome@xxxxxxx
 - after joining during installation ask user if DHCLIENT_SET_HOSTNAME
   should be set to "no" (#169260)

++++++ yast2-samba-client-2.15.5.tar.bz2 -> yast2-samba-client-2.15.6.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.15.5/src/dialogs.ycp new/yast2-samba-client-2.15.6/src/dialogs.ycp
--- old/yast2-samba-client-2.15.5/src/dialogs.ycp       2007-03-27 09:29:47.000000000 +0200
+++ new/yast2-samba-client-2.15.6/src/dialogs.ycp       2007-03-27 11:34:01.000000000 +0200
@@ -3,7 +3,7 @@
  * Summary:    Dialogs definitions
  * Authors:    Stanislav Visnovsky <visnov@xxxxxxx>
  *
- * $Id: dialogs.ycp 36773 2007-03-08 10:06:02Z jsuchome $
+ * $Id: dialogs.ycp 37129 2007-03-27 09:33:58Z jsuchome $
  */
 
 {
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.15.5/src/SambaConfig.pm new/yast2-samba-client-2.15.6/src/SambaConfig.pm
--- old/yast2-samba-client-2.15.5/src/SambaConfig.pm    2007-03-08 11:06:05.000000000 +0100
+++ new/yast2-samba-client-2.15.6/src/SambaConfig.pm    2007-05-17 13:20:01.000000000 +0200
@@ -107,10 +107,10 @@
 sub GetModified {
     my ($self) = @_;
     foreach (keys %Config) {
-       return 1 if $Config{$_}{_modified};
+       return 1 if (defined $Config{$_} && $Config{$_}{_modified});
     }
     foreach (keys %WinbindConfig) {
-       return 1 if $WinbindConfig{$_}{_modified};
+       return 1 if (defined $WinbindConfig{$_} && $WinbindConfig{$_}{_modified});
     }
     return 0;
 }
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.15.5/src/Samba.ycp new/yast2-samba-client-2.15.6/src/Samba.ycp
--- old/yast2-samba-client-2.15.5/src/Samba.ycp 2007-03-27 09:32:44.000000000 +0200
+++ new/yast2-samba-client-2.15.6/src/Samba.ycp 2007-03-27 11:34:01.000000000 +0200
@@ -4,7 +4,7 @@
  * Summary:    Data for configuration of samba-client, input and output functions.
  * Authors:    Stanislav Visnovsky <visnov@xxxxxxx>
  *
- * $Id: Samba.ycp 36773 2007-03-08 10:06:02Z jsuchome $
+ * $Id: Samba.ycp 37129 2007-03-27 09:33:58Z jsuchome $
  *
  * Representation of the configuration of samba-client.
  * Input and output routines.
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.15.5/VERSION new/yast2-samba-client-2.15.6/VERSION
--- old/yast2-samba-client-2.15.5/VERSION       2007-03-27 09:34:04.000000000 +0200
+++ new/yast2-samba-client-2.15.6/VERSION       2007-05-17 13:44:44.000000000 +0200
@@ -1 +1 @@
-2.15.5
+2.15.6


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



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