Your message dated Fri, 07 Aug 2020 15:20:16 +0000
with message-id <[email protected]>
and subject line Bug#875898: fixed in ktorrent 5.2.0-1
has caused the Debian Bug report #875898,
regarding [ktorrent] KTorrent shits into .xsession-errors with connection logs
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
875898: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875898
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ktorrent
Version: 5.1.1-1+b1
Severity: normal
Tags: patch
--- Please enter the report below this line. ---
Bug is known in upstream https://bugs.kde.org/show_bug.cgi?id=368114 since
2017(!!!), even the patch is available. How TF it still didn't get in 5.1.1 is
beyond my understanding.
--- System information. ---
Architecture:
Kernel: Linux 4.19.37-bootes0-iommu-p-1000
Debian Release: 10.0
991 stable security.debian.org
991 stable ftp.fi.debian.org
99 stable www.deb-multimedia.org
500 stable dl.google.com
500 stable deb.torproject.org
--- Package information. ---
Depends (Version) | Installed
============================================================-+-
==================================
kio | 5.54.1-1
libc6 (>= 2.14) |
libgcc1 (>= 1:3.0) |
libgeoip1 |
libkf5archive5 (>= 4.96.0) |
libkf5completion5 (>= 4.97.0) |
libkf5configcore5 (>= 4.98.0) |
libkf5configgui5 (>= 4.97.0) |
libkf5configwidgets5 (>= 4.96.0) |
libkf5coreaddons5 (>= 5.16.0) |
libkf5crash5 (>= 5.15.0) |
libkf5dbusaddons5 (>= 4.99.0) |
libkf5dnssd5 (>= 4.96.0) |
libkf5i18n5 (>= 4.97.0) |
libkf5iconthemes5 (>= 4.96.0) |
libkf5itemviews5 (>= 4.96.0) |
libkf5kcmutils5 (>= 4.96.0) |
libkf5kiocore5 (>= 4.96.0) |
libkf5kiofilewidgets5 (>= 4.96.0) |
libkf5kiowidgets5 (>= 4.96.0) |
libkf5krosscore5 (>= 4.96.0) |
libkf5notifications5 (>= 4.96.0) |
libkf5notifyconfig5 (>= 4.96.0) |
libkf5parts5 (>= 4.96.0) |
libkf5plotting5 (>= 4.96.0) |
libkf5service-bin |
libkf5service5 (>= 5.4.0+git20141113.1055+15.04) |
libkf5syndication5abi1 (>= 18.07.90) |
libkf5textwidgets5 (>= 5.0.0) |
libkf5torrent6 (>= 2.1) |
libkf5webkit5 (>= 4.96.0) |
libkf5widgetsaddons5 (>= 4.96.0) |
libkf5windowsystem5 (>= 4.96.0) |
libkf5xmlgui5 (>= 4.98.0) |
libphonon4qt5-4 (>= 4:4.8.0) |
libqt5core5a (>= 5.11.0~rc1) |
libqt5dbus5 (>= 5.7.0) |
libqt5gui5 (>= 5.8.0) |
libqt5network5 (>= 5.7.0) |
libqt5webkit5 (>= 5.6.0~rc) |
libqt5widgets5 (>= 5.11.0~rc1) |
libqt5xml5 (>= 5.7.0) |
libstdc++6 (>= 5.2) |
libtag1v5 (>= 1.9.1-2.2~) |
phonon4qt5 |
ktorrent-data (= 5.1.1-1) |
libktorrent-l10n |
Package's Recommends field is empty.
Suggests (Version) | Installed
=============================-+-===========
krosspython | 4:18.08.1-1
geoip-database | 20181108-1
>From af1abedb3bc5cd8e73f134e123857b0f9dcaa239 Mon Sep 17 00:00:00 2001
From: Valeriy Malov <[email protected]>
Date: Tue, 24 Oct 2017 00:54:30 +0300
Subject: Disable logging to stdout by default
Summary:
Do not log to stdout by default since ktorrent logs are very verbose and
pollute session log (e.g. xsession-errors), while ktorrent manages it's
own log files in ~/.local/share/ktorrent.
Add command line option to enable logging to stadnard output again, if
needed.
Remove some duplicate headers.
BUG: 368114
Reviewers: stikonas
Subscribers: ltoscano
Differential Revision: https://phabricator.kde.org/D8438
---
ktorrent/main.cpp | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/ktorrent/main.cpp b/ktorrent/main.cpp
index 24f1cc8..19693b7 100644
--- a/ktorrent/main.cpp
+++ b/ktorrent/main.cpp
@@ -43,11 +43,7 @@
#include <KStartupInfo>
#include <KWindowSystem>
-#include <util/log.h>
#include <torrent/globals.h>
-#include <util/functions.h>
-#include <util/error.h>
-#include <util/log.h>
#include <interfaces/functions.h>
#include <utp/connection.h>
#include "gui.h"
@@ -179,6 +175,7 @@ int main(int argc, char** argv)
KAboutData::setApplicationData(about);
about.setupCommandLine(&parser);
+ parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("verbose"), i18n("Enable logging to standard output")));
parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("silent"), i18n( "Silently open torrent given on URL")));
parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("+[URL]"), i18n( "Document to open" )));
parser.process(app);
@@ -205,7 +202,8 @@ int main(int argc, char** argv)
QObject::connect(&catcher, &bt::SignalCatcher::triggered, &app, &QApplication::quit);
#endif
- bt::InitLog(kt::DataDir(kt::CreateIfNotExists) + QLatin1String("log"), true, true, true);
+ const bool logToStdout = parser.isSet(QStringLiteral("verbose"));
+ bt::InitLog(kt::DataDir(kt::CreateIfNotExists) + QLatin1String("log"), true, true, logToStdout);
kt::GUI widget;
widget.show();
--
cgit v1.1
--- End Message ---
--- Begin Message ---
Source: ktorrent
Source-Version: 5.2.0-1
Done: Pino Toscano <[email protected]>
We believe that the bug you reported is fixed in the latest version of
ktorrent, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Pino Toscano <[email protected]> (supplier of updated ktorrent package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Fri, 07 Aug 2020 17:03:36 +0200
Source: ktorrent
Architecture: source
Version: 5.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian KDE Extras Team <[email protected]>
Changed-By: Pino Toscano <[email protected]>
Closes: 875898
Changes:
ktorrent (5.2.0-1) unstable; urgency=medium
.
* Team upload.
* New upstream release:
- disables the logging by default (Closes: #875898)
* Drop the Debian man pages, as they are outdated, and they offer no useful
information.
* Update the build dependencies according to the upstream build system:
- bump libktorrent to 2.2.0
- add qtwebengine5-dev (only where available)
- remove libkf5webkit-dev, no more used
- explicitly add gettext
* Bump the debhelper compatibility to 13:
- switch the debhelper build dependency to debhelper-compat 13
- remove debian/compat
- stop passing --fail-missing to dh_missing, as it is the default now
* Add Rules-Requires-Root: no.
* Bump Standards-Version to 4.5.0, no changes required.
* Update install files.
Checksums-Sha1:
9c4a32d73a741e615c2406a2701c79834d3171d0 3055 ktorrent_5.2.0-1.dsc
89d5e94f7e38e756876268827ffd88a83a705a22 2056012 ktorrent_5.2.0.orig.tar.xz
b4aaf44af14da591506e357d03dab10e0d51ace1 21964 ktorrent_5.2.0-1.debian.tar.xz
389c0b4da94ee03accad74e2ae39ebb4f38625a9 20501
ktorrent_5.2.0-1_source.buildinfo
Checksums-Sha256:
b47f105c17c5d037e0568ba3f3faf62fa8d97ba93b341659cfe0a1a5ba789aab 3055
ktorrent_5.2.0-1.dsc
d1031d745c1ace02d11b59c426610aee779d208e3d1ae81f8559c265173732ff 2056012
ktorrent_5.2.0.orig.tar.xz
bba2f1219f6d7f9eecf504844f0c412bed69467e00d9c8900eb9f65e059a0696 21964
ktorrent_5.2.0-1.debian.tar.xz
93557c0d16bf6c469f6054676f02b8532fd84ed778a3467036d923c4f3650c1a 20501
ktorrent_5.2.0-1_source.buildinfo
Files:
20dc8bb52b690addab39c5038f739f92 3055 net optional ktorrent_5.2.0-1.dsc
0aeed9807a578e7aabc9c4e7cae83d56 2056012 net optional
ktorrent_5.2.0.orig.tar.xz
2098c743a390df2cdf7d4a525500c3c2 21964 net optional
ktorrent_5.2.0-1.debian.tar.xz
32c5babea6243903248354b13a661318 20501 net optional
ktorrent_5.2.0-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAl8tbWwACgkQLRkciEOx
P015Gw/9GYAafbGiSiVDD+8EQgV7eJupr7NCvtOMvcS10B9pAzIy3w2xNi9kOmhm
CZ1zzhfk1vQhSsJOWcww4muz+L5zScRQYBgV6Ysaf76d5SEmi5p64dJI1NZZDkHj
Ac+pnZ0wFlGD8DvYh9cQtzO9KsR449YBXSBGE26Hf+cpVuhlkSNY0fNjLXYjMhdE
KbJwmwlVVBpEEqknYZ6mv4ZgXdbVAd3smofSSMWixpAh+cZPg1+IMBrqx8lB/J/R
bCXwnB5Dn5vWBm7Ijq3VUL0mCkfiTQKtkD+EL17OIM5RWDdFoz+LIWNzcpMXr/ai
8+xikxpby+QfxJ0rW4VCRwQP2kZehv/uBMeF1lA9XD3Xbz7uRJ7LdhNyWI3XJcGb
BqykdJMo6GMrU6bw2Jx3kJmcSUO70Ks4p0Vwcfpa+zkNhMo6uajMI4ZFKGEAF5yK
8WAwUykLqBgMvT+OrefoWEapc6BUXP3S5oZ+q2an4qAjTUyV/GrMvja/gITNvfWQ
wC8hx7Jtgz86zpk1WwpoelqxM1p2XPh0141I15AZZ3vl1W3ta6WCRRbdZwu6LfIp
FBIijPH+ayU6fs3jpBNw4nxEACIG9PZmlRIurdtvDEdViuv6Pu2Acg0Io+7DG8u/
G0RHMR6D+rXe9/2YDzlAV+HynViL5BH36F2sbPogDSebpNWZ3tM=
=wMkK
-----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________
pkg-kde-extras mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-kde-extras