Debian Bug report logs -
#862558
plasma-workspace: Freezes during login with fresh installed Stretch Japanese environment
Toggle useless messages
Report forwarded
to debian-bugs-dist@lists.debian.org, mozc@packages.debian.org, Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>:
Bug#862558; Package src:plasma-workspace.
(Sun, 14 May 2017 15:45:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Hideki Yamane <henrich@debian.org>:
New Bug report received and forwarded. Copy sent to mozc@packages.debian.org, Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>.
(Sun, 14 May 2017 15:45:04 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Source: plasma-workspace
Severity: grave
Justification: renders package unusable
Dear Maintainers,
After installation of Strech on Japanese environment, ksplashqml stops during
login. At that time, process was like below or just <defunct> status.
1511 ? Sl 0:22 ksplashqml Breeze --pid
1526 ? Sl 0:00 \_ /usr/lib/mozc/mozc_server
1532 ? Sl 0:00 \_ /usr/lib/x86_64-linux-gnu/uim/uim-candwin-qt5 -v
Then kill mozc-server process, then I could see desktop.
I'm not sure why ksplashqml need to talk to Input method server directly.
Step to reproduce)
1. Install Stretch
2. Select Japanese environment
3. Select KDE for desktop and ssh-server
4. After installation, just login (and freezes)
5. Login from ssh client and kill mozc_server process
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>:
Bug#862558; Package src:plasma-workspace.
(Sun, 28 May 2017 09:51:02 GMT) (full text, mbox, link).
Acknowledgement sent
to dai@debian.org:
Extra info received and forwarded to list. Copy sent to Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>.
(Sun, 28 May 2017 09:51:02 GMT) (full text, mbox, link).
Message #10 received at 862558@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Control: reassign -1 uim-qt5
Control: affects -1 uim-mozc plasma-workspace
Control: forwarded -1 https://github.com/uim/uim/issues/105
It may be caused by uim-qt5.
--
Regards,
dai
GPG Fingerprint = 0B29 D88E 42E6 B765 B8D8 EA50 7839 619D D439 668E
[signature.asc (application/pgp-signature, inline)]
Added indication that 862558 affects uim-mozc and plasma-workspace
Request was from dai@debian.org
to 862558-submit@bugs.debian.org.
(Sun, 28 May 2017 09:51:03 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, HIGUCHI Daisuke (VDR dai) <dai@debian.org>:
Bug#862558; Package uim-qt5.
(Wed, 31 May 2017 14:42:03 GMT) (full text, mbox, link).
Acknowledgement sent
to YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>:
Extra info received and forwarded to list. Copy sent to HIGUCHI Daisuke (VDR dai) <dai@debian.org>.
(Wed, 31 May 2017 14:42:03 GMT) (full text, mbox, link).
Message #21 received at 862558@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Followup-For: Bug #862558
Control: reassign -1 plasma-workspace
Control: affects -1 uim-qt5 uim-mozc
Control: tags -1 + patch
Dear Maintainer,
This is a bug in ksplashqml. An upstream commit
https://cgit.kde.org/plasma-workspace.git/commit/?id=56d2c15b9acb9c4b57398b281685807c3191f622
has caused this problem.
x-session-manag,133,kdetest /usr/bin/x-session-manager
├─(ksplashqml,232)
├─ssh-agent,191 /usr/bin/im-launch x-session-manager
├─uim-toolbar,220
│ ├─{llvmpipe-0},235
│ ├─{llvmpipe-1},236
│ ├─{llvmpipe-2},237
│ └─{llvmpipe-3},238
└─uim-xim,219
ksplashqml,233,kdetest Breeze --pid
├─mozc_server,239
│ ├─{IPCServer},244
│ ├─{QueueTimer},240
│ ├─{QueueTimer},243
│ └─{WatchDog},242
├─uim-candwin-qt5,245 -v
│ ├─{QDBusConnection},249
│ └─{QXcbEventReader},248
├─{QDBusConnection},255
├─{QQmlThread},254
├─{QXcbEventReader},234
├─{llvmpipe-0},250
├─{llvmpipe-1},251
├─{llvmpipe-2},252
└─{llvmpipe-3},253
# strace -f -p 133
strace: Process 133 attached
read(3, ^Cstrace: Process 133 detached
<detached ...>
It looks like the parent process (133), x-session-manager (startkde
script), is waiting for the stdout of the ksplashqml process (232),
but which is now defunct. Its child process(es) may be writing to the
same fd.
# ls -l /proc/133/fd/3
lr-x------ 1 kdetest kdetest 64 May 31 05:13 /proc/133/fd/3 -> pipe:[88694]
The direct child of the ksplashqml process (233), the splash screen daemon,
closes the file descriptor at ksplash/ksplashqml/main.cpp:97.
# ls -l /proc/233/fd/1
ls: cannot access '/proc/233/fd/1': No such file or directory
One of the children of the process (239), mozc_server, is holding the fd:
# ls -l /proc/239/fd/1
l-wx------ 1 kdetest kdetest 64 May 31 05:14 /proc/239/fd/1 -> pipe:[88694]
So the startkde process has finished reading the pid number string from
the now-defunct process, but is still waiting for another write(s) until
the (shared) fd has been closed.
This mozc_server process has been started during uim-qt5
(a QPlatformInputContext) startup in the SplashApp
initialization phase at ksplash/ksplashqml/main.cpp:92.
Due to the upstream commit the splash screen daemon does not close file
descriptors before the SplashApp initialization, thus its subprocess
shares the fds.
The commit log states Wayland initialization of this daemon needs the
channels. While it may require open file descriptors 0, 1 or 2,
no one should expect the process to talk to the parent through the
descriptors, since the splash screen is a daemon.
An attached patch reverts the commit and redirects the file descriptors
to /dev/null.
Regards,
--
YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>
[replace-fds.patch (text/x-patch, attachment)]
Bug reassigned from package 'uim-qt5' to 'plasma-workspace'.
Request was from YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>
to 862558-submit@bugs.debian.org.
(Wed, 31 May 2017 14:42:03 GMT) (full text, mbox, link).
Added indication that 862558 affects uim-qt5
Request was from YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>
to 862558-submit@bugs.debian.org.
(Wed, 31 May 2017 14:42:04 GMT) (full text, mbox, link).
Added tag(s) patch.
Request was from YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>
to 862558-submit@bugs.debian.org.
(Wed, 31 May 2017 14:42:05 GMT) (full text, mbox, link).
Unset Bug forwarded-to-address
Request was from YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>
to control@bugs.debian.org.
(Wed, 31 May 2017 23:45:02 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>:
Bug#862558; Package plasma-workspace.
(Sat, 03 Jun 2017 21:39:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Nobuhiro Iwamatsu <iwamatsu@nigauri.org>:
Extra info received and forwarded to list. Copy sent to Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>.
(Sat, 03 Jun 2017 21:39:03 GMT) (full text, mbox, link).
Message #36 received at 862558@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Followup-For: Bug #862558
Dear maintainer,
I plan to NMU plasma-workspace if the release team approves the attached patch.
(Unblock request #864067)
Best regards,
Nobuhiro
2017-05-31 23:38 GMT+09:00 YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>:
> Followup-For: Bug #862558
> Control: reassign -1 plasma-workspace
> Control: affects -1 uim-qt5 uim-mozc
> Control: tags -1 + patch
>
> Dear Maintainer,
>
> This is a bug in ksplashqml. An upstream commit
> https://cgit.kde.org/plasma-workspace.git/commit/?id=56d2c15b9acb9c4b57398b281685807c3191f622
> has caused this problem.
>
> x-session-manag,133,kdetest /usr/bin/x-session-manager
> ├─(ksplashqml,232)
> ├─ssh-agent,191 /usr/bin/im-launch x-session-manager
> ├─uim-toolbar,220
> │ ├─{llvmpipe-0},235
> │ ├─{llvmpipe-1},236
> │ ├─{llvmpipe-2},237
> │ └─{llvmpipe-3},238
> └─uim-xim,219
> ksplashqml,233,kdetest Breeze --pid
> ├─mozc_server,239
> │ ├─{IPCServer},244
> │ ├─{QueueTimer},240
> │ ├─{QueueTimer},243
> │ └─{WatchDog},242
> ├─uim-candwin-qt5,245 -v
> │ ├─{QDBusConnection},249
> │ └─{QXcbEventReader},248
> ├─{QDBusConnection},255
> ├─{QQmlThread},254
> ├─{QXcbEventReader},234
> ├─{llvmpipe-0},250
> ├─{llvmpipe-1},251
> ├─{llvmpipe-2},252
> └─{llvmpipe-3},253
>
> # strace -f -p 133
> strace: Process 133 attached
> read(3, ^Cstrace: Process 133 detached
> <detached ...>
>
> It looks like the parent process (133), x-session-manager (startkde
> script), is waiting for the stdout of the ksplashqml process (232),
> but which is now defunct. Its child process(es) may be writing to the
> same fd.
>
> # ls -l /proc/133/fd/3
> lr-x------ 1 kdetest kdetest 64 May 31 05:13 /proc/133/fd/3 -> pipe:[88694]
>
> The direct child of the ksplashqml process (233), the splash screen daemon,
> closes the file descriptor at ksplash/ksplashqml/main.cpp:97.
>
> # ls -l /proc/233/fd/1
> ls: cannot access '/proc/233/fd/1': No such file or directory
>
> One of the children of the process (239), mozc_server, is holding the fd:
>
> # ls -l /proc/239/fd/1
> l-wx------ 1 kdetest kdetest 64 May 31 05:14 /proc/239/fd/1 -> pipe:[88694]
>
> So the startkde process has finished reading the pid number string from
> the now-defunct process, but is still waiting for another write(s) until
> the (shared) fd has been closed.
>
> This mozc_server process has been started during uim-qt5
> (a QPlatformInputContext) startup in the SplashApp
> initialization phase at ksplash/ksplashqml/main.cpp:92.
>
> Due to the upstream commit the splash screen daemon does not close file
> descriptors before the SplashApp initialization, thus its subprocess
> shares the fds.
>
> The commit log states Wayland initialization of this daemon needs the
> channels. While it may require open file descriptors 0, 1 or 2,
> no one should expect the process to talk to the parent through the
> descriptors, since the splash screen is a daemon.
>
> An attached patch reverts the commit and redirects the file descriptors
> to /dev/null.
>
> Regards,
> --
> YOSHINO Yoshihito <yy.y.ja.jp@gmail.com>
--
Nobuhiro Iwamatsu
iwamatsu at {nigauri.org / debian.org}
GPG ID: 40AD1FA6
[plasma-workspace_5.8.6-2.1.debdiff (application/octet-stream, attachment)]
Reply sent
to Nobuhiro Iwamatsu <iwamatsu@debian.org>:
You have taken responsibility.
(Sun, 04 Jun 2017 06:39:04 GMT) (full text, mbox, link).
Notification sent
to Hideki Yamane <henrich@debian.org>:
Bug acknowledged by developer.
(Sun, 04 Jun 2017 06:39:04 GMT) (full text, mbox, link).
Message #41 received at 862558-close@bugs.debian.org (full text, mbox, reply):
Source: plasma-workspace
Source-Version: 4:5.8.6-2.1
We believe that the bug you reported is fixed in the latest version of
plasma-workspace, 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 862558@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Nobuhiro Iwamatsu <iwamatsu@debian.org> (supplier of updated plasma-workspace 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 ftpmaster@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Fri, 02 Jun 2017 22:17:22 +0900
Source: plasma-workspace
Binary: plasma-workspace-dev plasma-workspace-wayland plasma-workspace libkworkspace5-5 libplasma-geolocation-interface5 libtaskmanager6 libweather-ion7 sddm-theme-breeze sddm-theme-debian-breeze
Architecture: source amd64
Version: 4:5.8.6-2.1
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Nobuhiro Iwamatsu <iwamatsu@debian.org>
Description:
libkworkspace5-5 - Plasma Workspace for KF5 library
libplasma-geolocation-interface5 - Plasma Workspace for KF5 library
libtaskmanager6 - Plasma Workspace for KF5 library
libweather-ion7 - Plasma Workspace for KF5 library
plasma-workspace - Plasma Workspace for KF5
plasma-workspace-dev - Plasma Workspace for KF5 devel files
plasma-workspace-wayland - Plasma Workspace for KF5 - Wayland integration
sddm-theme-breeze - Breeze SDDM theme
sddm-theme-debian-breeze - Debian Breeze SDDM theme
Closes: 862558
Changes:
plasma-workspace (4:5.8.6-2.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Fix problem where processing stopped in ksplashqml on some environments.
(Closes: #862558)
Add patches/replace-fds.patch.
Checksums-Sha1:
ff4c6bd268d8ad626ae104464472146632a55be8 4588 plasma-workspace_5.8.6-2.1.dsc
3054b339e8886363881c594a307badb9ede61a00 30876 plasma-workspace_5.8.6-2.1.debian.tar.xz
801d823ea57af97a89a5b83f6ec31274948aff1a 837506 libkworkspace5-5-dbgsym_5.8.6-2.1_amd64.deb
a81e811abb28810d54c8f829278aeaa1b3b49a01 54400 libkworkspace5-5_5.8.6-2.1_amd64.deb
95be0b28d72ab193228b1bda19fd9835e72f1c82 281022 libplasma-geolocation-interface5-dbgsym_5.8.6-2.1_amd64.deb
30fb4cea2b4a845ea9b105bfddf8530be1f5da0b 30106 libplasma-geolocation-interface5_5.8.6-2.1_amd64.deb
75122ec3d972c9b09667395f113915e9c4538b57 2130588 libtaskmanager6-dbgsym_5.8.6-2.1_amd64.deb
d59461d496d5c2104434c744cd2ce7a8b2c7ce07 132936 libtaskmanager6_5.8.6-2.1_amd64.deb
efa62b68af0b1dd02a13d616cd0b6d1316d2036b 304456 libweather-ion7-dbgsym_5.8.6-2.1_amd64.deb
7315f4fefdc7f5be3b738ceea079ef285cc13caf 25562 libweather-ion7_5.8.6-2.1_amd64.deb
66c8f118b00085a3d2764a47f17ba0e39dc283d5 62870216 plasma-workspace-dbgsym_5.8.6-2.1_amd64.deb
923f02883531924a621b5997aff110da962d8385 49480 plasma-workspace-dev_5.8.6-2.1_amd64.deb
2524f590e1a5416e745d89344099ecf3ad6e5cbc 24244 plasma-workspace-wayland_5.8.6-2.1_amd64.deb
2fb57567278566a7327c4b8e16b95e77ec5d9679 30297 plasma-workspace_5.8.6-2.1_amd64.buildinfo
761b910064ae724eb01953a5f6330bde243f6e48 7374568 plasma-workspace_5.8.6-2.1_amd64.deb
64f431bc483399ed59726a8635d0ce50f3cd9605 827234 sddm-theme-breeze_5.8.6-2.1_amd64.deb
05902a4e15f5bf44acdabd8f5a4a4118a993ec75 21044 sddm-theme-debian-breeze_5.8.6-2.1_amd64.deb
Checksums-Sha256:
a531438d0563f52bbdde16d26fcd73f1bb15f7ed3c0e37017b6f7219205bba1f 4588 plasma-workspace_5.8.6-2.1.dsc
4268e86fe3bf8caa55de79cefb94b84638acfc70449ac88f3556b8884029785f 30876 plasma-workspace_5.8.6-2.1.debian.tar.xz
e8c911b0c5b991efe8022bf4ba8bf059bfde9f85f3c9a6a99ed4c804c981390f 837506 libkworkspace5-5-dbgsym_5.8.6-2.1_amd64.deb
1230d083d285a2f00b048be520e061cfad599855b9fcd7d50a364fab6af26d62 54400 libkworkspace5-5_5.8.6-2.1_amd64.deb
e577c5cd9ce9c1f552ce8643957e2968227174797d0833d4f62818c6be7ac60f 281022 libplasma-geolocation-interface5-dbgsym_5.8.6-2.1_amd64.deb
178db94dd553d913e1442affadf15d4c1d8b6dacbc5dab15d4b4d8b8fe79dde5 30106 libplasma-geolocation-interface5_5.8.6-2.1_amd64.deb
7567dd509deedcd14ac18d4ccce0bf8faf25b3e7eca5beacb91872374b887f9f 2130588 libtaskmanager6-dbgsym_5.8.6-2.1_amd64.deb
924ea5eb5194d6a41f5ed9f7c1d50e19eb1fcd4d8466a07a5ed368fce1804487 132936 libtaskmanager6_5.8.6-2.1_amd64.deb
38e8ee07db6c0c1085e3ca25b59c51340d5d74be181711dda0f2d29bb0f510d2 304456 libweather-ion7-dbgsym_5.8.6-2.1_amd64.deb
2a863c6cc11d90405b6a55b5d4dc5cd2487345f227f6a15fddee5eacbde93287 25562 libweather-ion7_5.8.6-2.1_amd64.deb
8546e662a2b679df7fba5d34bf2618ff026090a72e345f7f3738d58f71c20913 62870216 plasma-workspace-dbgsym_5.8.6-2.1_amd64.deb
31f5c3a1216ecdd144277e19ce2c08d13b850ad12f7b6f3738aad3c5f3cd3d54 49480 plasma-workspace-dev_5.8.6-2.1_amd64.deb
9230066f0b849dfb0175f45276374c96e0c729c0de6d7030cbdff5db104db025 24244 plasma-workspace-wayland_5.8.6-2.1_amd64.deb
835e7e05fe07a1501ef23e24455bd10c66bf407c273d0ce0c764e7897c43aa4d 30297 plasma-workspace_5.8.6-2.1_amd64.buildinfo
9877701c01f3e70316ae674ff5dde91c42d7eb194e0c66ff01658588b5c626c7 7374568 plasma-workspace_5.8.6-2.1_amd64.deb
d8184831095ea105a26f510cd36d3ffd9d585f55c1f72e0ad3fe36cf48833163 827234 sddm-theme-breeze_5.8.6-2.1_amd64.deb
26b8a2fd0e9813fbba7d9b6e3d9bdd6e4249732c5dc9277fec07895577ce43f9 21044 sddm-theme-debian-breeze_5.8.6-2.1_amd64.deb
Files:
dc39785027e66fe9d59eefc20a6efb32 4588 kde optional plasma-workspace_5.8.6-2.1.dsc
15ef79935b0bcfa790f2b8457ade842d 30876 kde optional plasma-workspace_5.8.6-2.1.debian.tar.xz
160e60777c9319caaa516a1ba426a0c1 837506 debug extra libkworkspace5-5-dbgsym_5.8.6-2.1_amd64.deb
18553c0ab6d4f69850a9c54bae480b3f 54400 kde optional libkworkspace5-5_5.8.6-2.1_amd64.deb
3e0e13fc7447e5dea9c46833268d7397 281022 debug extra libplasma-geolocation-interface5-dbgsym_5.8.6-2.1_amd64.deb
e35e098d00f28b24ae680912de25f86a 30106 kde optional libplasma-geolocation-interface5_5.8.6-2.1_amd64.deb
a63e85c42c8913ff0db9fbea36d08e9e 2130588 debug extra libtaskmanager6-dbgsym_5.8.6-2.1_amd64.deb
b7a0bc13285d83b075495dffab08a968 132936 kde optional libtaskmanager6_5.8.6-2.1_amd64.deb
51a30737cbbe76e8ae0a88dea165dc92 304456 debug extra libweather-ion7-dbgsym_5.8.6-2.1_amd64.deb
0918f438ac4fa63c838b030723642f35 25562 kde optional libweather-ion7_5.8.6-2.1_amd64.deb
5a2717211ba0f55a806deb2d3a15e239 62870216 debug extra plasma-workspace-dbgsym_5.8.6-2.1_amd64.deb
28e1d28c937d4e9bfe99a8b4fac233fb 49480 kde optional plasma-workspace-dev_5.8.6-2.1_amd64.deb
5d1643ff4e617abc0f91699ffa4ae1ac 24244 kde optional plasma-workspace-wayland_5.8.6-2.1_amd64.deb
aadd02d13a7839602508e6e82b7f97da 30297 kde optional plasma-workspace_5.8.6-2.1_amd64.buildinfo
c922c8a4b900cb0ac8d4fbc231e81c55 7374568 kde optional plasma-workspace_5.8.6-2.1_amd64.deb
2d75a7c7f62ff4c849e3aa3cb72082ed 827234 kde optional sddm-theme-breeze_5.8.6-2.1_amd64.deb
0b05297fd272f3afa0309d2aee8e244e 21044 kde optional sddm-theme-debian-breeze_5.8.6-2.1_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEXmKe5SMhlzV7hM9DMiR/u0CtH6YFAlkzJbQACgkQMiR/u0Ct
H6ZpBg/7BxSO869iVQBGztxiOW+AuGC0GpOKY7+OIgMOy6yi6Tnod+zaz2P/oGIx
2ceDOyhVxlDmAg1/Wv5HFuQH3CoyqoyKCz7uocGd8J0Wu/LxYmIb+lMjsEUPrRXu
g4YcDvoKEcqw2owpSVUDj3drNMayb30gFsr5kFG3lWhzKQMAnBJrnDma5KhRrNb7
kXJPQqUBT7wBTkYbI0Ts9C5aq8BC+XXig63VQp4vxMgwfnNAiB1sKh+2Q7aWYTPM
6+DZR61Wg4MZvIQoBGCjSsBv24B7uRcMmyMOkoBB+z+/SDdz+TJr+Z0OLuz1vfLH
h1Txmn13t1Yz1hHKKoPRTc08Y1qpf9LA3nDApO9bfmQV2KmmKU6C1Pi+ruDk2BxX
G3w3XP99tgqlmlVwOaJHiRXsZMxi5zZLtykuH5H6c5S1UIz4NYZHLD/HfFHdLpaq
UvsO2jLB/V40n58Ac21N3r3RXVkYh/pX3iEip4t+O79rqeJj8vZYwI2uhBrY0N7G
PnUQukZlUCUmXcmF14jNYwYVXWWenjVe0BzVFpW5mDQhHPAMvDJMhtakuPFLPFO2
n2ILleuuYjr7YvwhqbXCcj4+wXA90rayU3SZOrhwxqvaeLeCcAPasg1DDn1mdoNj
Ya1VBiRWmnGo4wlxGvMEgQTRfeTX5XMJ1E8WBKtRFw4hGXFUhf8=
=5sPd
-----END PGP SIGNATURE-----
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Sun, 16 Jul 2017 07:45:22 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Sun Jun 4 07:02:24 2023;
Machine Name:
buxtehude
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.