Mailinglist Archive: opensuse-commit (1028 mails)
| < Previous | Next > |
commit yast2-samba-client
- From: root@xxxxxxx (h_root)
- Date: Wed, 21 Jun 2006 01:43:50 +0200 (CEST)
- Message-id: <20060620234350.389E06C5D5@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2-samba-client
checked in at Wed Jun 21 01:43:50 CEST 2006.
--------
--- yast2-samba-client/yast2-samba-client.changes 2006-06-08 16:31:37.000000000 +0200
+++ yast2-samba-client/yast2-samba-client.changes 2006-06-19 18:39:16.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Jun 19 17:55:12 CEST 2006 - jsuchome@xxxxxxx
+
+- show info about services to restart (#174589)
+- 2.13.20
+
+-------------------------------------------------------------------
Old:
----
yast2-samba-client-2.13.19.tar.bz2
New:
----
yast2-samba-client-2.13.20.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-samba-client.spec ++++++
--- /var/tmp/diff_new_pack.KTlP4t/_old 2006-06-21 01:43:43.000000000 +0200
+++ /var/tmp/diff_new_pack.KTlP4t/_new 2006-06-21 01:43:43.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-samba-client (Version 2.13.19)
+# spec file for package yast2-samba-client (Version 2.13.20)
#
# 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-samba-client
-Version: 2.13.19
+Version: 2.13.20
Release: 1
License: GPL
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-samba-client-2.13.19.tar.bz2
+Source0: yast2-samba-client-2.13.20.tar.bz2
prefix: /usr
BuildRequires: perl-XML-Writer update-desktop-files yast2-devtools yast2-pam yast2-perl-bindings yast2-testsuite
Requires: yast2 yast2-pam yast2-kerberos-client
@@ -34,7 +34,7 @@
Stanislav Visnovsky <visnov@xxxxxxx>
%prep
-%setup -n yast2-samba-client-2.13.19
+%setup -n yast2-samba-client-2.13.20
%build
%{prefix}/bin/y2tool y2autoconf
@@ -71,6 +71,9 @@
%doc %{prefix}/share/doc/packages/yast2-samba-client
%changelog -n yast2-samba-client
+* Mon Jun 19 2006 - jsuchome@xxxxxxx
+- show info about services to restart (#174589)
+- 2.13.20
* Thu Jun 08 2006 - jsuchome@xxxxxxx
- set the "template shell" value also for non-AD domain (#176222)
- 2.13.19
++++++ yast2-samba-client-2.13.19.tar.bz2 -> yast2-samba-client-2.13.20.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/Makefile.am new/yast2-samba-client-2.13.20/Makefile.am
--- old/yast2-samba-client-2.13.19/Makefile.am 2006-02-02 19:28:18.000000000 +0100
+++ new/yast2-samba-client-2.13.20/Makefile.am 2006-06-19 17:55:16.000000000 +0200
@@ -8,6 +8,7 @@
#where devtools are
PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools)
+Y2TOOL = $(PREFIX)/bin/y2tool
VERSION = $(shell cat $(srcdir)/VERSION)
RPMNAME = $(shell cat $(srcdir)/RPMNAME)
@@ -95,7 +96,7 @@
done
pot:
- y2tool y2makepot -s $(srcdir)
+ $(Y2TOOL) y2makepot -s $(srcdir)
install-pot: pot
@POT_DST=`find -type d -name testsuite -prune , \
@@ -116,7 +117,7 @@
fi
spellcheck: pot
- y2tool pot-spellcheck
+ $(Y2TOOL) pot-spellcheck
# all-local: $(if $(IS_DEVTOOLS),,$(POT_DST))
@@ -143,20 +144,20 @@
rm -f package/*.bak
rm -f package/*.auto
mv $(RPMNAME)-$(VERSION).tar.bz2 package/
- if ! test -x $(PREFIX)/bin/y2tool; then \
- echo "$(PREFIX)/bin/y2tool: not found."; \
+ if ! test -x $(Y2TOOL); then \
+ echo "$(Y2TOOL): not found."; \
echo "You have to install yast2-devtools to making a package"; \
false; \
fi
here=`pwd`; \
cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \
newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
- $(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \
+ $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
done
-package: check-up-to-date check-tagversion check-all-packages package-local
+package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local
-TAGVERSION = $(PREFIX)/bin/y2tool tagversion
+TAGVERSION = $(Y2TOOL) tagversion
check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
if [ -d $(srcdir)/CVS ]; then \
@@ -199,10 +200,13 @@
false; \
fi
+check-textdomain:
+ $(Y2TOOL) check-textdomain $(srcdir)
+
stable: checkin-stable
checkin-stable: package
- $(PREFIX)/bin/y2tool checkin-stable
+ $(Y2TOOL) checkin-stable
# For po/ modules
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/Makefile.in new/yast2-samba-client-2.13.20/Makefile.in
--- old/yast2-samba-client-2.13.19/Makefile.in 2006-02-02 19:28:24.000000000 +0100
+++ new/yast2-samba-client-2.13.20/Makefile.in 2006-06-19 17:55:22.000000000 +0200
@@ -198,6 +198,7 @@
#where devtools are
PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools)
+Y2TOOL = $(PREFIX)/bin/y2tool
SUBDIRS_FILE = $(shell test -e $(srcdir)/SUBDIRS && echo SUBDIRS)
ACINCLUDE_FILE = $(shell test -e $(srcdir)/acinclude.m4 && echo acinclude.m4)
HAS_YAST_LICENSE = $(shell test -e $(srcdir)/YAST_LICENSE && echo YAST_LICENSE)
@@ -227,7 +228,7 @@
$(IS_DEVTOOLS),Makefile.am.common,$(POT_DST)) $(am__append_1)
@CREATE_PKGCONFIG_NOARCH_TRUE@@CREATE_PKGCONFIG_TRUE@pkgconfigdata_DATA = $(RPMNAME).pc
@CREATE_PKGCONFIG_NOARCH_FALSE@@CREATE_PKGCONFIG_TRUE@pkgconfig_DATA = $(RPMNAME).pc
-TAGVERSION = $(PREFIX)/bin/y2tool tagversion
+TAGVERSION = $(Y2TOOL) tagversion
# test ! -d $(srcdir)/po \
# || { $(MAKE) -C po checkpo && $(MAKE) -C po make-pox; }
# No ./SUBDIRS file found - assuming default: All direct subdirs with Makefile.am
@@ -724,7 +725,7 @@
done
pot:
- y2tool y2makepot -s $(srcdir)
+ $(Y2TOOL) y2makepot -s $(srcdir)
install-pot: pot
@POT_DST=`find -type d -name testsuite -prune , \
@@ -745,7 +746,7 @@
fi
spellcheck: pot
- y2tool pot-spellcheck
+ $(Y2TOOL) pot-spellcheck
# all-local: $(if $(IS_DEVTOOLS),,$(POT_DST))
@@ -772,18 +773,18 @@
rm -f package/*.bak
rm -f package/*.auto
mv $(RPMNAME)-$(VERSION).tar.bz2 package/
- if ! test -x $(PREFIX)/bin/y2tool; then \
- echo "$(PREFIX)/bin/y2tool: not found."; \
+ if ! test -x $(Y2TOOL); then \
+ echo "$(Y2TOOL): not found."; \
echo "You have to install yast2-devtools to making a package"; \
false; \
fi
here=`pwd`; \
cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \
newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
- $(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \
+ $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
done
-package: check-up-to-date check-tagversion check-all-packages package-local
+package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local
check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
if [ -d $(srcdir)/CVS ]; then \
@@ -826,10 +827,13 @@
false; \
fi
+check-textdomain:
+ $(Y2TOOL) check-textdomain $(srcdir)
+
stable: checkin-stable
checkin-stable: package
- $(PREFIX)/bin/y2tool checkin-stable
+ $(Y2TOOL) checkin-stable
# For po/ modules
checkpo:
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/VERSION new/yast2-samba-client-2.13.20/VERSION
--- old/yast2-samba-client-2.13.19/VERSION 2006-06-08 13:06:32.000000000 +0200
+++ new/yast2-samba-client-2.13.20/VERSION 2006-06-19 17:55:37.000000000 +0200
@@ -1 +1 @@
-2.13.19
+2.13.20
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/configure new/yast2-samba-client-2.13.20/configure
--- old/yast2-samba-client-2.13.19/configure 2006-02-02 19:28:22.000000000 +0100
+++ new/yast2-samba-client-2.13.20/configure 2006-06-19 17:55:20.000000000 +0200
@@ -1,8 +1,8 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for yast2-samba-client 2.13.5.
+# Generated by GNU Autoconf 2.59 for yast2-samba-client 2.13.19.
#
-# Report bugs to <http://www.suse.de/feedback>.
+# Report bugs to <http://bugs.opensuse.org/>.
#
# Copyright (C) 2003 Free Software Foundation, Inc.
# This configure script is free software; the Free Software Foundation
@@ -269,9 +269,9 @@
# Identity of this package.
PACKAGE_NAME='yast2-samba-client'
PACKAGE_TARNAME='yast2-samba-client'
-PACKAGE_VERSION='2.13.5'
-PACKAGE_STRING='yast2-samba-client 2.13.5'
-PACKAGE_BUGREPORT='http://www.suse.de/feedback'
+PACKAGE_VERSION='2.13.19'
+PACKAGE_STRING='yast2-samba-client 2.13.19'
+PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
ac_unique_file="RPMNAME"
ac_default_prefix=/usr
@@ -728,7 +728,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures yast2-samba-client 2.13.5 to adapt to many kinds of systems.
+\`configure' configures yast2-samba-client 2.13.19 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -795,7 +795,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-samba-client 2.13.5:";;
+ short | recursive ) echo "Configuration of yast2-samba-client 2.13.19:";;
esac
cat <<\_ACEOF
@@ -812,7 +812,7 @@
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
-Report bugs to <http://www.suse.de/feedback>.
+Report bugs to <http://bugs.opensuse.org/>.
_ACEOF
fi
@@ -908,7 +908,7 @@
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-yast2-samba-client configure 2.13.5
+yast2-samba-client configure 2.13.19
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@@ -922,7 +922,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by yast2-samba-client $as_me 2.13.5, which was
+It was created by yast2-samba-client $as_me 2.13.19, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@@ -1652,7 +1652,7 @@
# Define the identity of the package.
PACKAGE='yast2-samba-client'
- VERSION='2.13.5'
+ VERSION='2.13.19'
cat >>confdefs.h <<_ACEOF
@@ -1863,7 +1863,7 @@
-VERSION="2.13.5"
+VERSION="2.13.19"
RPMNAME="yast2-samba-client"
MAINTAINER="Jiri Suchomel <jsuchome@xxxxxxx>"
@@ -2693,7 +2693,7 @@
} >&5
cat >&5 <<_CSEOF
-This file was extended by yast2-samba-client $as_me 2.13.5, which was
+This file was extended by yast2-samba-client $as_me 2.13.19, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -2748,7 +2748,7 @@
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-yast2-samba-client config.status 2.13.5
+yast2-samba-client config.status 2.13.19
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/configure.in new/yast2-samba-client-2.13.20/configure.in
--- old/yast2-samba-client-2.13.19/configure.in 2006-02-02 19:28:18.000000000 +0100
+++ new/yast2-samba-client-2.13.20/configure.in 2006-06-19 17:55:15.000000000 +0200
@@ -1,9 +1,9 @@
dnl configure.in for yast2-samba-client
dnl
-dnl -- This file is generated by y2autoconf - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.13.18 - DO NOT EDIT! --
dnl (edit configure.in.in instead)
-AC_INIT(yast2-samba-client, 2.13.5, http://www.suse.de/feedback, yast2-samba-client)
+AC_INIT(yast2-samba-client, 2.13.19, http://bugs.opensuse.org/, yast2-samba-client)
dnl Check for presence of file 'RPMNAME'
AC_CONFIG_SRCDIR([RPMNAME])
@@ -17,7 +17,7 @@
AM_INIT_AUTOMAKE(tar-ustar) dnl searches for some needed programs
dnl Important YaST2 variables
-VERSION="2.13.5"
+VERSION="2.13.19"
RPMNAME="yast2-samba-client"
MAINTAINER="Jiri Suchomel <jsuchome@xxxxxxx>"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/src/SambaAD.pm new/yast2-samba-client-2.13.20/src/SambaAD.pm
--- old/yast2-samba-client-2.13.19/src/SambaAD.pm 2006-06-08 13:01:29.000000000 +0200
+++ new/yast2-samba-client-2.13.20/src/SambaAD.pm 2006-06-08 16:33:30.000000000 +0200
@@ -4,7 +4,7 @@
# Summary: Manage AD issues for samba-client
# Authors: Jiri Suchomel <jsuchome@xxxxxxx>
#
-# $Id: SambaAD.pm 30562 2006-04-28 09:00:57Z jsuchome $
+# $Id: SambaAD.pm 31398 2006-06-08 14:33:25Z jsuchome $
#
package SambaAD;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/src/SambaWinbind.pm new/yast2-samba-client-2.13.20/src/SambaWinbind.pm
--- old/yast2-samba-client-2.13.19/src/SambaWinbind.pm 2006-06-08 13:01:45.000000000 +0200
+++ new/yast2-samba-client-2.13.20/src/SambaWinbind.pm 2006-06-08 16:33:30.000000000 +0200
@@ -4,7 +4,7 @@
# Authors: Stanislav Visnovsky <visnov@xxxxxxx>
# Martin Lazar <mlazar@xxxxxxx>
#
-# $Id: SambaWinbind.pm 30562 2006-04-28 09:00:57Z jsuchome $
+# $Id: SambaWinbind.pm 31398 2006-06-08 14:33:25Z jsuchome $
package SambaWinbind;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.19/src/dialogs.ycp new/yast2-samba-client-2.13.20/src/dialogs.ycp
--- old/yast2-samba-client-2.13.19/src/dialogs.ycp 2006-04-28 08:17:20.000000000 +0200
+++ new/yast2-samba-client-2.13.20/src/dialogs.ycp 2006-06-19 17:54:44.000000000 +0200
@@ -66,6 +66,8 @@
);
}
+ // winbind enabled on start
+ boolean was_winbind = Samba::GetWinbind();
term winbind_term = Stage::cont() ? `Empty () : `VBox(
`VSpacing (0.5),
@@ -276,6 +278,14 @@
Samba::stop_services = AskToStopServices ();
}
Samba::SetShares (max,(string)UI::QueryWidget(`id(`group),`Value));
+ if(!Stage::cont() && !Mode::config() && use_winbind&& !was_winbind){
+ // message popup, part 1/2
+ Popup::Message (
+_("This change only affects newly created processes and not already
+running services. Restart your services manually or reboot
+the machine to enable it for all services.
+"));
+ }
break;
} else if (ret == `browse) {
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit-unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit-help@xxxxxxxxxxxx
| < Previous | Next > |