Mailinglist Archive: opensuse-commit (858 mails)
| < Previous | Next > |
commit kdeadmin4
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Fri, 02 Nov 2007 01:11:20 +0100
- Message-id: <20071102001120.B90356781B8@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package kdeadmin4
checked in at Fri Nov 2 01:11:20 CET 2007.
--------
--- KDE/kdeadmin4/kdeadmin4.changes 2007-10-26 12:14:58.000000000 +0200
+++ /mounts/work_src_done/STABLE/kdeadmin4/kdeadmin4.changes 2007-11-01
14:26:32.000000000 +0100
@@ -1,0 +2,5 @@
+Thu Nov 1 14:26:25 CET 2007 - dmueller@xxxxxxx
+
+- update to 3.95.1
+
+-------------------------------------------------------------------
Old:
----
kdeadmin-3.95.0.tar.bz2
New:
----
kdeadmin-3.95.1.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kdeadmin4.spec ++++++
--- /var/tmp/diff_new_pack.H12412/_old 2007-11-02 01:11:14.000000000 +0100
+++ /var/tmp/diff_new_pack.H12412/_new 2007-11-02 01:11:14.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package kdeadmin4 (Version 3.95.0)
+# spec file for package kdeadmin4 (Version 3.95.1)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -15,9 +15,9 @@
Group: System/GUI/KDE
Summary: kdeadmin base package
Url: http://www.kde.org
-Version: 3.95.0
+Version: 3.95.1
Release: 1
-%define rversion 3.95.0
+%define rversion 3.95.1
Source0: kdeadmin-%rversion.tar.bz2
Source1: _upstream
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -214,6 +214,8 @@
%defattr(-,root,root)
%doc COPYING COPYING-DOCS README
%changelog
+* Thu Nov 01 2007 - dmueller@xxxxxxx
+- update to 3.95.1
* Fri Oct 26 2007 - dmueller@xxxxxxx
- update to 3.95.0
* Sat Oct 20 2007 - dmueller@xxxxxxx
++++++ kdeadmin-3.95.0.tar.bz2 -> kdeadmin-3.95.1.tar.bz2 ++++++
Files old/kdeadmin-3.95.0/doc/kcron/index.cache.bz2 and
new/kdeadmin-3.95.1/doc/kcron/index.cache.bz2 differ
Files old/kdeadmin-3.95.0/doc/kdat/index.cache.bz2 and
new/kdeadmin-3.95.1/doc/kdat/index.cache.bz2 differ
Files old/kdeadmin-3.95.0/doc/knetworkconf/index.cache.bz2 and
new/kdeadmin-3.95.1/doc/knetworkconf/index.cache.bz2 differ
Files old/kdeadmin-3.95.0/doc/kpackage/index.cache.bz2 and
new/kdeadmin-3.95.1/doc/kpackage/index.cache.bz2 differ
Files old/kdeadmin-3.95.0/doc/ksysv/index.cache.bz2 and
new/kdeadmin-3.95.1/doc/ksysv/index.cache.bz2 differ
Files old/kdeadmin-3.95.0/doc/kuser/index.cache.bz2 and
new/kdeadmin-3.95.1/doc/kuser/index.cache.bz2 differ
Files old/kdeadmin-3.95.0/doc/lilo-config/index.cache.bz2 and
new/kdeadmin-3.95.1/doc/lilo-config/index.cache.bz2 differ
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/kdeadmin-3.95.0/kpackage/kpPty.cpp
new/kdeadmin-3.95.1/kpackage/kpPty.cpp
--- old/kdeadmin-3.95.0/kpackage/kpPty.cpp 2007-10-25 11:33:51.000000000
+0200
+++ new/kdeadmin-3.95.1/kpackage/kpPty.cpp 2007-10-31 21:36:43.000000000
+0100
@@ -160,7 +160,7 @@
passMsg = i18n("The action you requested needs root privileges. Please
enter root's password.\n");
startSu();
} else if (kpkg->conf->privCommand == Settings::EnumPrivCommand::sudo) {
- passMsg = i18n("The action you requested needs root privileges. Please
enter your SUDO password.\n");
+ passMsg = i18n("The action you requested needs root privileges. Please
enter your password.\n");
startSudo();
} else {
kDebug() << "privCommand Invalid\n";
@@ -199,7 +199,6 @@
} else {
kDebug() << "Passwd=" << retList.last() << "\n";
QString msg = passMsg;
- // kDebug() << "privCmd=" << opts->privCmd << " host=" <<
hostName.isEmpty() << "\n";
if (kpkg->conf->privCommand == Settings::EnumPrivCommand::ssh ||
!hostName.isEmpty()) {
msg += retList.last();
}
@@ -207,7 +206,7 @@
dlg.setPrompt( msg );
res = dlg.exec();
pass = dlg.password();
- // kDebug() << "Pass=" << pass << " Keep=" << keep << " Res=" <<
res << "\n";
+// kDebug() << "Pass=" << pass << " Res=" << res << "\n";
if (res && dlg.keepPassword()) {
passwords[hostName] = pass;
} else if(res) {
@@ -353,12 +352,11 @@
if (!retList.empty()) {
int p;
l = retList.fromLast();
+// kDebug() << "kpPty::finish RESULT=" << *l << "\n";
if ((p = (*l).indexOf("RESULT=")) >= 0) {
ret = (*l).mid(p+7).toInt(0,10);
retList.erase(l); // Remove return code
- } else {
- ret = 666;
- }
+ }
}
if (!retList.empty()) {
@@ -372,7 +370,7 @@
}
emit result(retList,ret);
-
+// kDebug() << "Result=" << Result << " ret=" << ret <<"\n";
Result = ret;
if (eventLoop) {
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |