Debian Bug report logs - #704832
[patch]: locale aware ifconfig breaks completion

version graph

Package: bash-completion; Maintainer for bash-completion is Gabriel F. T. Gomes <gabriel@debian.org>; Source for bash-completion is src:bash-completion (PTS, buildd, popcon).

Reported by: Thilo Six <T.Six@gmx.de>

Date: Sat, 6 Apr 2013 14:18:09 UTC

Severity: normal

Tags: confirmed, fixed-upstream

Found in version bash-completion/1:2.0-1

Fixed in version bash-completion/1:2.1-3

Done: David Paleino <dapal@debian.org>

Bug is archived. No further changes may be made.

Toggle useless messages

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to debian-bugs-dist@lists.debian.org, Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>:
Bug#704832; Package bash-completion. (Sat, 06 Apr 2013 14:18:13 GMT) (full text, mbox, link).


Acknowledgement sent to Thilo Six <T.Six@gmx.de>:
New Bug report received and forwarded. Copy sent to Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>. (Sat, 06 Apr 2013 14:18:13 GMT) (full text, mbox, link).


Message #5 received at submit@bugs.debian.org (full text, mbox, reply):

From: Thilo Six <T.Six@gmx.de>
To: Debian Submit Bugs <submit@bugs.debian.org>
Subject: [patch]: locale aware ifconfig breaks completion
Date: Sat, 06 Apr 2013 16:16:39 +0200
Package: bash-completion
Version: 1:2.0-1
Severity: normal

Dear Maintainer,


_mac_addresses() suffer from not taking care of locale awareness of ifconfig
thus breaking completion for users with non english locale settings.

line 824 needs to be changed:

824 -   COMPREPLY+=( $( ifconfig -a 2>/dev/null | sed -ne \
824 +   COMPREPLY+=( $( LC_ALL=C ifconfig -a 2>/dev/null | sed -ne \

Sidenote:
As a measure of precaution _available_interfaces() should probably be
fixed in the same way but it does currently not break there.



Further more the sed expression in line 825 does not yield anything here.

compare the original:
$ LC_ALL=C ifconfig -a | sed -ne
"s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p"
<nothing>

with
$ LC_ALL=C ifconfig -a | sed -ne "s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)//p"
xx:xx:xx:xx:xx:xx



-- System Information:
Debian Release: 7.0
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing-proposed-updates'), (500,
'testing')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-4-686-pae (SMP w/1 CPU core)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bash-completion depends on:
ii  bash  4.2+dfsg-1
ii  dpkg  1.16.10

bash-completion recommends no packages.

bash-completion suggests no packages.

-- Configuration Files:
/etc/profile.d/bash_completion.sh changed [not included]

-- no debconf information




-- 
Regards,
Thilo

4096R/0xC70B1A8F
721B 1BA0 095C 1ABA 3FC6  7C18 89A4 A2A0 C70B 1A8F




Added tag(s) patch. Request was from Thilo Six <T.Six@gmx.de> to control@bugs.debian.org. (Sat, 06 Apr 2013 14:27:04 GMT) (full text, mbox, link).


Information forwarded to debian-bugs-dist@lists.debian.org, Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>:
Bug#704832; Package bash-completion. (Sat, 06 Apr 2013 18:18:04 GMT) (full text, mbox, link).


Acknowledgement sent to Ville Skyttä <ville.skytta@iki.fi>:
Extra info received and forwarded to list. Copy sent to Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>. (Sat, 06 Apr 2013 18:18:04 GMT) (full text, mbox, link).


Message #12 received at 704832@bugs.debian.org (full text, mbox, reply):

From: Ville Skyttä <ville.skytta@iki.fi>
To: Thilo Six <T.Six@gmx.de>, 704832@bugs.debian.org
Subject: Re: [Bash-completion-devel] Bug#704832: [patch]: locale aware ifconfig breaks completion
Date: Sat, 06 Apr 2013 21:14:51 +0300
On 2013-04-06 17:16, Thilo Six wrote:
> _mac_addresses() suffer from not taking care of locale awareness of ifconfig

Fixed upstream:
http://anonscm.debian.org/gitweb/?p=bash-completion/bash-completion.git;a=commitdiff;h=a9db458

> As a measure of precaution _available_interfaces() should probably be
> fixed in the same way but it does currently not break there.

It doesn't touch any locale specific strings in the output so I don't
think there's anything to fix in it.



Information forwarded to debian-bugs-dist@lists.debian.org, Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>:
Bug#704832; Package bash-completion. (Sat, 06 Apr 2013 19:21:04 GMT) (full text, mbox, link).


Acknowledgement sent to Thilo Six <T.Six@gmx.de>:
Extra info received and forwarded to list. Copy sent to Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>. (Sat, 06 Apr 2013 19:21:04 GMT) (full text, mbox, link).


Message #17 received at 704832@bugs.debian.org (full text, mbox, reply):

From: Thilo Six <T.Six@gmx.de>
To: Ville Skyttä <ville.skytta@iki.fi>
Cc: 704832@bugs.debian.org
Subject: Re: [patch] [Bash-completion-devel] (was: Bug#704832: locale aware ifconfig breaks completion)
Date: Sat, 06 Apr 2013 21:19:28 +0200
Hello Ville


Excerpt from Ville Skyttä:

> On 2013-04-06 17:16, Thilo Six wrote:
>> _mac_addresses() suffer from not taking care of locale awareness of ifconfig
> 
> Fixed upstream:
> http://anonscm.debian.org/gitweb/?p=bash-completion/bash-completion.git;a=commitdiff;h=a9db458
> 
>> As a measure of precaution _available_interfaces() should probably be
>> fixed in the same way but it does currently not break there.
> 
> It doesn't touch any locale specific strings in the output so I don't
> think there's anything to fix in it.

Thank you!

Did you notice my comment about the sed statement? Looking at the git repo i see
the sed statement in the follwoing line is still unmodified. When i try it here
i get nothing.

these two from git echo nothing back:
$ LC_ALL=C ifconfig -a | sed -ne
"s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p"
$ LC_ALL=C ifconfig -a | sed -ne
"s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]].*/\1/p"

this one echos my MACs (this is on GNU/Linux):
$ LC_ALL=C ifconfig -a | sed -ne "s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)//p"
-- 
Regards,
Thilo

4096R/0xC70B1A8F
721B 1BA0 095C 1ABA 3FC6  7C18 89A4 A2A0 C70B 1A8F




Information forwarded to debian-bugs-dist@lists.debian.org, Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>:
Bug#704832; Package bash-completion. (Sat, 06 Apr 2013 20:00:03 GMT) (full text, mbox, link).


Acknowledgement sent to Ville Skyttä <ville.skytta@iki.fi>:
Extra info received and forwarded to list. Copy sent to Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>. (Sat, 06 Apr 2013 20:00:03 GMT) (full text, mbox, link).


Message #22 received at 704832@bugs.debian.org (full text, mbox, reply):

From: Ville Skyttä <ville.skytta@iki.fi>
To: Thilo Six <T.Six@gmx.de>
Cc: 704832@bugs.debian.org
Subject: Re: [patch] [Bash-completion-devel]
Date: Sat, 06 Apr 2013 22:56:33 +0300
On 2013-04-06 22:19, Thilo Six wrote:

> $ LC_ALL=C ifconfig -a | sed -ne
> "s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p"

This one should work for you (if I guess your ifconfig -a output format
correctly) -- did you remember to define $re when testing it?

re='\([A-Fa-f0-9]\{2\}:\)\{5\}[A-Fa-f0-9]\{2\}'



Information forwarded to debian-bugs-dist@lists.debian.org, Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>:
Bug#704832; Package bash-completion. (Sat, 06 Apr 2013 21:06:04 GMT) (full text, mbox, link).


Acknowledgement sent to Thilo Six <T.Six@gmx.de>:
Extra info received and forwarded to list. Copy sent to Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>. (Sat, 06 Apr 2013 21:06:04 GMT) (full text, mbox, link).


Message #27 received at 704832@bugs.debian.org (full text, mbox, reply):

From: Thilo Six <T.Six@gmx.de>
To: 704832@bugs.debian.org
Subject: Re: [patch] [Bash-completion-devel]
Date: Sat, 06 Apr 2013 23:02:49 +0200
resending here to keep the log complete.
I mark this bug as fixed now!

--------------------------------------

Hello Ville,


Excerpt from Ville Skyttä:


>> $ LC_ALL=C ifconfig -a | sed -ne
>> "s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p"
> 
> This one should work for you (if I guess your ifconfig -a output format
> correctly) -- did you remember to define $re when testing it?
> 
> re='\([A-Fa-f0-9]\{2\}:\)\{5\}[A-Fa-f0-9]\{2\}'

This works. Sorry for the confusion.

I will mark the bug report as fixed. Tanks again!

-- 
Regards,
Thilo

4096R/0xC70B1A8F
721B 1BA0 095C 1ABA 3FC6  7C18 89A4 A2A0 C70B 1A8F





Added tag(s) fixed and pending. Request was from Thilo Six <T.Six@gmx.de> to control@bugs.debian.org. (Sat, 06 Apr 2013 21:09:07 GMT) (full text, mbox, link).


Added tag(s) confirmed and fixed-upstream; removed tag(s) fixed, pending, and patch. Request was from David Paleino <dapal@debian.org> to control@bugs.debian.org. (Sat, 06 Apr 2013 21:24:07 GMT) (full text, mbox, link).


Reply sent to Nobuhiro Iwamatsu <iwamatsu@debian.org>:
You have taken responsibility. (Tue, 14 May 2013 04:21:08 GMT) (full text, mbox, link).


Notification sent to Thilo Six <T.Six@gmx.de>:
Bug acknowledged by developer. (Tue, 14 May 2013 04:21:08 GMT) (full text, mbox, link).


Message #36 received at 704832-close@bugs.debian.org (full text, mbox, reply):

From: Nobuhiro Iwamatsu <iwamatsu@debian.org>
To: 704832-close@bugs.debian.org
Subject: Bug#704832: fixed in mozc 1.6.1187.102-1~exp3
Date: Tue, 14 May 2013 04:18:20 +0000
Source: mozc
Source-Version: 1.6.1187.102-1~exp3

We believe that the bug you reported is fixed in the latest version of
mozc, 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 704832@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 mozc 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@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sun, 14 Apr 2013 07:42:04 +0900
Source: mozc
Binary: mozc-data ibus-mozc uim-mozc fcitx-mozc emacs-mozc emacs-mozc-bin mozc-server mozc-utils-gui
Architecture: source all amd64
Version: 1.6.1187.102-1~exp3
Distribution: experimental
Urgency: low
Maintainer: Nobuhiro Iwamatsu <iwamatsu@debian.org>
Changed-By: Nobuhiro Iwamatsu <iwamatsu@debian.org>
Description: 
 emacs-mozc - Mozc for Emacs
 emacs-mozc-bin - Helper module for emacs-mozc
 fcitx-mozc - Mozc engine for fcitx - Client of the Mozc input method
 ibus-mozc  - Mozc engine for IBus - Client of the Mozc input method
 mozc-data  - Mozc input method - data files
 mozc-server - Server of the Mozc input method
 mozc-utils-gui - GUI utilities of the Mozc input method
 uim-mozc   - Mozc engine for uim - Client of the Mozc input method
Closes: 704831 704832 704833
Changes: 
 mozc (1.6.1187.102-1~exp3) experimental; urgency=low
 .
   * Update debian/rules.
     - Add and fix install path of mo file for fcitx-mozc. (Closes: #704833)
     - Remove '--channel_dev=0' option from build option. (Closes: #704831)
   * Update debian/control.
     Add mozc-data to tegaki-zinnia-japanese to Depends and add
     mozc-utils-gui to Recommends. (Closes: #704832)
   * Update patches/uim-mozc.patch (macuim r323).
Checksums-Sha1: 
 61f93c646dadd78f403b020cb7b37c6b4af70d35 2506 mozc_1.6.1187.102-1~exp3.dsc
 15b72aa3b3f8c6a0df388f70db461683bfccee5a 61559 mozc_1.6.1187.102-1~exp3.debian.tar.gz
 cd7a42f97bcef00eb0619ed1f14e27ed02859577 14776 mozc-data_1.6.1187.102-1~exp3_all.deb
 5f07947b5a05fc076f962841b8a797bda4f46dbf 304836 ibus-mozc_1.6.1187.102-1~exp3_amd64.deb
 216562732de5c2f2cad2cbf56c53ba2cf8ffc1b1 303736 uim-mozc_1.6.1187.102-1~exp3_amd64.deb
 00e5335d138dca68bbc5d4d2162a1ffa134bc00e 345654 fcitx-mozc_1.6.1187.102-1~exp3_amd64.deb
 a0bf007795fc4455ddc703639c03bb7a0ec85dd0 29468 emacs-mozc_1.6.1187.102-1~exp3_amd64.deb
 c472230352ae1cd2e3a0406d8509c8e77d2d1663 246518 emacs-mozc-bin_1.6.1187.102-1~exp3_amd64.deb
 fe9e340ea944b6a586ad2c7b92f05cf7d234ef71 14125556 mozc-server_1.6.1187.102-1~exp3_amd64.deb
 a2963fe21c81ff23ab91a7002193aa9096b95962 1001414 mozc-utils-gui_1.6.1187.102-1~exp3_amd64.deb
Checksums-Sha256: 
 9eb55663f1d94825907eb78853b86ecde271daa340a58cda8267041d9b915e56 2506 mozc_1.6.1187.102-1~exp3.dsc
 eff681f9a48675f2ec6532a35ef154b9cf2032d4a1e3af09adbf0fe5d44359ac 61559 mozc_1.6.1187.102-1~exp3.debian.tar.gz
 a5cff7953b2bf2c55eb0791f3147b0b812a02c7adf000b38f59ce986a0548e6e 14776 mozc-data_1.6.1187.102-1~exp3_all.deb
 2f2472a69e71f9fdac3c35fd4b23b34251ee254acf0c5b465e965cb758c944ee 304836 ibus-mozc_1.6.1187.102-1~exp3_amd64.deb
 163ed39e9818ec75f352c2b7e14dd2c1a7ffbd0f463701f674e3f711dc82422a 303736 uim-mozc_1.6.1187.102-1~exp3_amd64.deb
 1e78617bbec63f6296152fafe0ec0f85c9bf27a7958273566e149d453fb2096b 345654 fcitx-mozc_1.6.1187.102-1~exp3_amd64.deb
 1a5c98be4e923b687000dca27d5cdf742ebce680b8c5875c8f1e1d2860f20bfe 29468 emacs-mozc_1.6.1187.102-1~exp3_amd64.deb
 69893eadd052acb2c4750952442d4047ec9042e5a07131178a3fdf00856f5b2e 246518 emacs-mozc-bin_1.6.1187.102-1~exp3_amd64.deb
 95e6c3c96d5bf50b2443025d216122ecd5ce05a2b583178836e9aa29f7b7916b 14125556 mozc-server_1.6.1187.102-1~exp3_amd64.deb
 34e757fa57f1aa84b4e7fcaff64f6021df2c9cba23228367f165b57a2f2e09a5 1001414 mozc-utils-gui_1.6.1187.102-1~exp3_amd64.deb
Files: 
 3a3a50c9194a9fcd608c8a2a7d4e5d1e 2506 utils optional mozc_1.6.1187.102-1~exp3.dsc
 0495bc1c0f73ae01a79add389c37ad17 61559 utils optional mozc_1.6.1187.102-1~exp3.debian.tar.gz
 0cd4d2138a95fd289ad974bf7601b0c6 14776 utils optional mozc-data_1.6.1187.102-1~exp3_all.deb
 98f1faea179895306b4f33f1fd95d8b5 304836 utils optional ibus-mozc_1.6.1187.102-1~exp3_amd64.deb
 91670e97331b5b4d60602f6a80af1b63 303736 utils optional uim-mozc_1.6.1187.102-1~exp3_amd64.deb
 35de3b49eaf39fe22f0241250d4762e9 345654 utils optional fcitx-mozc_1.6.1187.102-1~exp3_amd64.deb
 91bbb9b2a6d8ef13a3d4b797056a469b 29468 utils optional emacs-mozc_1.6.1187.102-1~exp3_amd64.deb
 cbdd3947ea433b4fe3ae693b4c6a89cf 246518 utils optional emacs-mozc-bin_1.6.1187.102-1~exp3_amd64.deb
 2e972c9f4f7db634de29d4df609e8708 14125556 utils optional mozc-server_1.6.1187.102-1~exp3_amd64.deb
 bfcbbeae2eb42fae5c7adc8f8e849b32 1001414 utils optional mozc-utils-gui_1.6.1187.102-1~exp3_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJRkbjyAAoJEDIkf7tArR+mO5AP/03sDPYzFxeBW8uUQhCw1Kb1
Pzy/KlEVKtg3YyBNMJqDR4Xl1z57j6Iv8gXSQaZLhhuP1zu16dZpGh7qT04kwrTO
yVeNQjkXp+WXUoq1Pxo5tgBbCNPl3z36byCLW+bP5rN9VZr4QYI0+0ayhehfg+wS
bzh2jE6z8i73wwrctBUMvyIM8z3p+Y3mPrzEDU2Sis3FG6dytwsh8NkTl1wlK3UH
aewaWYl73XwC86V9S/yaBRUPcm8gSYj3KQdIUkHCejB1mb5QbUd958fndbr44T+8
RLEhs5T4WusCi1W4B/SdLMijsmehIs0gW7yEXe/x4SAf904WmXOHGVK/zkIc/XXf
YOb2+oe9yaI7lUqNtS5v3A3d9TOr36sxgmadUdbSVfOs6w5CP59PwHkkIeIYJ7QB
iRR112Snhuddimc5lFAbg910t5V9+7XgURObnoNYikupgRaj6LxutjiaVxLfFPs/
QHJdJtrDZxVUdxVaDfj0OJAkTcCcMCSP+W7UzduGmRLzlV5ugfwsTFjAyuCOA7YF
1JUkXCqQ8oJnUOyWQYngLpkvhzzm5idMZI8J5lpPNUnRw9jTxFv6uoYo9+5lWQTB
srCUtbrez7lN2elLDIYLbYqF6la96Qi/9oC3NlKaaOD7mSgMwRcapxWACImwvVu0
GNLNhgb8NynXYsYwe1aZ
=7mKx
-----END PGP SIGNATURE-----




Information forwarded to debian-bugs-dist@lists.debian.org, Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>:
Bug#704832; Package bash-completion. (Tue, 14 May 2013 04:36:17 GMT) (full text, mbox, link).


Acknowledgement sent to Nobuhiro Iwamatsu <iwamatsu@debian.org>:
Extra info received and forwarded to list. Copy sent to Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>. (Tue, 14 May 2013 04:36:17 GMT) (full text, mbox, link).


Message #41 received at 704832@bugs.debian.org (full text, mbox, reply):

From: Nobuhiro Iwamatsu <iwamatsu@debian.org>
To: 704832@bugs.debian.org
Cc: Debian Bug Tracking System <control@bugs.debian.org>
Subject: Re: Bug#704832: marked as done ([patch]: locale aware ifconfig breaks completion)
Date: Tue, 14 May 2013 13:34:22 +0900
reopen 704832
thanks

Sorry, I was mistaken in the BTS number.
I reopen.

Best regards,
  Nobuhiro


2013/5/14 Debian Bug Tracking System <owner@bugs.debian.org>:
> Your message dated Tue, 14 May 2013 04:18:20 +0000
> with message-id <E1Uc6gu-0006HJ-RY@franck.debian.org>
> and subject line Bug#704832: fixed in mozc 1.6.1187.102-1~exp3
> has caused the Debian Bug report #704832,
> regarding [patch]: locale aware ifconfig breaks completion
> 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 owner@bugs.debian.org
> immediately.)
>
>
> --
> 704832: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=704832
> Debian Bug Tracking System
> Contact owner@bugs.debian.org with problems
>
>
> ---------- 転送メッセージ ----------
> From: Thilo Six <T.Six@gmx.de>
> To: Debian Submit Bugs <submit@bugs.debian.org>
> Cc:
> Date: Sat, 06 Apr 2013 16:16:39 +0200
> Subject: [patch]: locale aware ifconfig breaks completion
> Package: bash-completion
> Version: 1:2.0-1
> Severity: normal
>
> Dear Maintainer,
>
>
> _mac_addresses() suffer from not taking care of locale awareness of ifconfig
> thus breaking completion for users with non english locale settings.
>
> line 824 needs to be changed:
>
> 824 -   COMPREPLY+=( $( ifconfig -a 2>/dev/null | sed -ne \
> 824 +   COMPREPLY+=( $( LC_ALL=C ifconfig -a 2>/dev/null | sed -ne \
>
> Sidenote:
> As a measure of precaution _available_interfaces() should probably be
> fixed in the same way but it does currently not break there.
>
>
>
> Further more the sed expression in line 825 does not yield anything here.
>
> compare the original:
> $ LC_ALL=C ifconfig -a | sed -ne
> "s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)[[:space:]]*$/\1/p"
> <nothing>
>
> with
> $ LC_ALL=C ifconfig -a | sed -ne "s/.*[[:space:]]HWaddr[[:space:]]\{1,\}\($re\)//p"
> xx:xx:xx:xx:xx:xx
>
>
>
> -- System Information:
> Debian Release: 7.0
>   APT prefers testing-updates
>   APT policy: (500, 'testing-updates'), (500, 'testing-proposed-updates'), (500,
> 'testing')
> Architecture: i386 (i686)
>
> Kernel: Linux 3.2.0-4-686-pae (SMP w/1 CPU core)
> Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
>
> Versions of packages bash-completion depends on:
> ii  bash  4.2+dfsg-1
> ii  dpkg  1.16.10
>
> bash-completion recommends no packages.
>
> bash-completion suggests no packages.
>
> -- Configuration Files:
> /etc/profile.d/bash_completion.sh changed [not included]
>
> -- no debconf information
>
>
>
>
> --
> Regards,
> Thilo
>
> 4096R/0xC70B1A8F
> 721B 1BA0 095C 1ABA 3FC6  7C18 89A4 A2A0 C70B 1A8F
>
>
> ---------- 転送メッセージ ----------
> From: Nobuhiro Iwamatsu <iwamatsu@debian.org>
> To: 704832-close@bugs.debian.org
> Cc:
> Date: Tue, 14 May 2013 04:18:20 +0000
> Subject: Bug#704832: fixed in mozc 1.6.1187.102-1~exp3
> Source: mozc
> Source-Version: 1.6.1187.102-1~exp3
>
> We believe that the bug you reported is fixed in the latest version of
> mozc, 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 704832@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 mozc 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@debian.org)
>
>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA256
>
> Format: 1.8
> Date: Sun, 14 Apr 2013 07:42:04 +0900
> Source: mozc
> Binary: mozc-data ibus-mozc uim-mozc fcitx-mozc emacs-mozc emacs-mozc-bin mozc-server mozc-utils-gui
> Architecture: source all amd64
> Version: 1.6.1187.102-1~exp3
> Distribution: experimental
> Urgency: low
> Maintainer: Nobuhiro Iwamatsu <iwamatsu@debian.org>
> Changed-By: Nobuhiro Iwamatsu <iwamatsu@debian.org>
> Description:
>  emacs-mozc - Mozc for Emacs
>  emacs-mozc-bin - Helper module for emacs-mozc
>  fcitx-mozc - Mozc engine for fcitx - Client of the Mozc input method
>  ibus-mozc  - Mozc engine for IBus - Client of the Mozc input method
>  mozc-data  - Mozc input method - data files
>  mozc-server - Server of the Mozc input method
>  mozc-utils-gui - GUI utilities of the Mozc input method
>  uim-mozc   - Mozc engine for uim - Client of the Mozc input method
> Closes: 704831 704832 704833
> Changes:
>  mozc (1.6.1187.102-1~exp3) experimental; urgency=low
>  .
>    * Update debian/rules.
>      - Add and fix install path of mo file for fcitx-mozc. (Closes: #704833)
>      - Remove '--channel_dev=0' option from build option. (Closes: #704831)
>    * Update debian/control.
>      Add mozc-data to tegaki-zinnia-japanese to Depends and add
>      mozc-utils-gui to Recommends. (Closes: #704832)
>    * Update patches/uim-mozc.patch (macuim r323).
> Checksums-Sha1:
>  61f93c646dadd78f403b020cb7b37c6b4af70d35 2506 mozc_1.6.1187.102-1~exp3.dsc
>  15b72aa3b3f8c6a0df388f70db461683bfccee5a 61559 mozc_1.6.1187.102-1~exp3.debian.tar.gz
>  cd7a42f97bcef00eb0619ed1f14e27ed02859577 14776 mozc-data_1.6.1187.102-1~exp3_all.deb
>  5f07947b5a05fc076f962841b8a797bda4f46dbf 304836 ibus-mozc_1.6.1187.102-1~exp3_amd64.deb
>  216562732de5c2f2cad2cbf56c53ba2cf8ffc1b1 303736 uim-mozc_1.6.1187.102-1~exp3_amd64.deb
>  00e5335d138dca68bbc5d4d2162a1ffa134bc00e 345654 fcitx-mozc_1.6.1187.102-1~exp3_amd64.deb
>  a0bf007795fc4455ddc703639c03bb7a0ec85dd0 29468 emacs-mozc_1.6.1187.102-1~exp3_amd64.deb
>  c472230352ae1cd2e3a0406d8509c8e77d2d1663 246518 emacs-mozc-bin_1.6.1187.102-1~exp3_amd64.deb
>  fe9e340ea944b6a586ad2c7b92f05cf7d234ef71 14125556 mozc-server_1.6.1187.102-1~exp3_amd64.deb
>  a2963fe21c81ff23ab91a7002193aa9096b95962 1001414 mozc-utils-gui_1.6.1187.102-1~exp3_amd64.deb
> Checksums-Sha256:
>  9eb55663f1d94825907eb78853b86ecde271daa340a58cda8267041d9b915e56 2506 mozc_1.6.1187.102-1~exp3.dsc
>  eff681f9a48675f2ec6532a35ef154b9cf2032d4a1e3af09adbf0fe5d44359ac 61559 mozc_1.6.1187.102-1~exp3.debian.tar.gz
>  a5cff7953b2bf2c55eb0791f3147b0b812a02c7adf000b38f59ce986a0548e6e 14776 mozc-data_1.6.1187.102-1~exp3_all.deb
>  2f2472a69e71f9fdac3c35fd4b23b34251ee254acf0c5b465e965cb758c944ee 304836 ibus-mozc_1.6.1187.102-1~exp3_amd64.deb
>  163ed39e9818ec75f352c2b7e14dd2c1a7ffbd0f463701f674e3f711dc82422a 303736 uim-mozc_1.6.1187.102-1~exp3_amd64.deb
>  1e78617bbec63f6296152fafe0ec0f85c9bf27a7958273566e149d453fb2096b 345654 fcitx-mozc_1.6.1187.102-1~exp3_amd64.deb
>  1a5c98be4e923b687000dca27d5cdf742ebce680b8c5875c8f1e1d2860f20bfe 29468 emacs-mozc_1.6.1187.102-1~exp3_amd64.deb
>  69893eadd052acb2c4750952442d4047ec9042e5a07131178a3fdf00856f5b2e 246518 emacs-mozc-bin_1.6.1187.102-1~exp3_amd64.deb
>  95e6c3c96d5bf50b2443025d216122ecd5ce05a2b583178836e9aa29f7b7916b 14125556 mozc-server_1.6.1187.102-1~exp3_amd64.deb
>  34e757fa57f1aa84b4e7fcaff64f6021df2c9cba23228367f165b57a2f2e09a5 1001414 mozc-utils-gui_1.6.1187.102-1~exp3_amd64.deb
> Files:
>  3a3a50c9194a9fcd608c8a2a7d4e5d1e 2506 utils optional mozc_1.6.1187.102-1~exp3.dsc
>  0495bc1c0f73ae01a79add389c37ad17 61559 utils optional mozc_1.6.1187.102-1~exp3.debian.tar.gz
>  0cd4d2138a95fd289ad974bf7601b0c6 14776 utils optional mozc-data_1.6.1187.102-1~exp3_all.deb
>  98f1faea179895306b4f33f1fd95d8b5 304836 utils optional ibus-mozc_1.6.1187.102-1~exp3_amd64.deb
>  91670e97331b5b4d60602f6a80af1b63 303736 utils optional uim-mozc_1.6.1187.102-1~exp3_amd64.deb
>  35de3b49eaf39fe22f0241250d4762e9 345654 utils optional fcitx-mozc_1.6.1187.102-1~exp3_amd64.deb
>  91bbb9b2a6d8ef13a3d4b797056a469b 29468 utils optional emacs-mozc_1.6.1187.102-1~exp3_amd64.deb
>  cbdd3947ea433b4fe3ae693b4c6a89cf 246518 utils optional emacs-mozc-bin_1.6.1187.102-1~exp3_amd64.deb
>  2e972c9f4f7db634de29d4df609e8708 14125556 utils optional mozc-server_1.6.1187.102-1~exp3_amd64.deb
>  bfcbbeae2eb42fae5c7adc8f8e849b32 1001414 utils optional mozc-utils-gui_1.6.1187.102-1~exp3_amd64.deb
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.12 (GNU/Linux)
>
> iQIcBAEBCAAGBQJRkbjyAAoJEDIkf7tArR+mO5AP/03sDPYzFxeBW8uUQhCw1Kb1
> Pzy/KlEVKtg3YyBNMJqDR4Xl1z57j6Iv8gXSQaZLhhuP1zu16dZpGh7qT04kwrTO
> yVeNQjkXp+WXUoq1Pxo5tgBbCNPl3z36byCLW+bP5rN9VZr4QYI0+0ayhehfg+wS
> bzh2jE6z8i73wwrctBUMvyIM8z3p+Y3mPrzEDU2Sis3FG6dytwsh8NkTl1wlK3UH
> aewaWYl73XwC86V9S/yaBRUPcm8gSYj3KQdIUkHCejB1mb5QbUd958fndbr44T+8
> RLEhs5T4WusCi1W4B/SdLMijsmehIs0gW7yEXe/x4SAf904WmXOHGVK/zkIc/XXf
> YOb2+oe9yaI7lUqNtS5v3A3d9TOr36sxgmadUdbSVfOs6w5CP59PwHkkIeIYJ7QB
> iRR112Snhuddimc5lFAbg910t5V9+7XgURObnoNYikupgRaj6LxutjiaVxLfFPs/
> QHJdJtrDZxVUdxVaDfj0OJAkTcCcMCSP+W7UzduGmRLzlV5ugfwsTFjAyuCOA7YF
> 1JUkXCqQ8oJnUOyWQYngLpkvhzzm5idMZI8J5lpPNUnRw9jTxFv6uoYo9+5lWQTB
> srCUtbrez7lN2elLDIYLbYqF6la96Qi/9oC3NlKaaOD7mSgMwRcapxWACImwvVu0
> GNLNhgb8NynXYsYwe1aZ
> =7mKx
> -----END PGP SIGNATURE-----



-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6



Bug reopened Request was from Nobuhiro Iwamatsu <iwamatsu@debian.org> to control@bugs.debian.org. (Tue, 14 May 2013 04:36:19 GMT) (full text, mbox, link).


No longer marked as fixed in versions mozc/1.6.1187.102-1~exp3. Request was from Nobuhiro Iwamatsu <iwamatsu@debian.org> to control@bugs.debian.org. (Tue, 14 May 2013 04:36:20 GMT) (full text, mbox, link).


Reply sent to David Paleino <dapal@debian.org>:
You have taken responsibility. (Wed, 19 Mar 2014 11:06:35 GMT) (full text, mbox, link).


Notification sent to Thilo Six <T.Six@gmx.de>:
Bug acknowledged by developer. (Wed, 19 Mar 2014 11:06:35 GMT) (full text, mbox, link).


Message #50 received at 704832-close@bugs.debian.org (full text, mbox, reply):

From: David Paleino <dapal@debian.org>
To: 704832-close@bugs.debian.org
Subject: Bug#704832: fixed in bash-completion 1:2.1-3
Date: Wed, 19 Mar 2014 11:03:30 +0000
Source: bash-completion
Source-Version: 1:2.1-3

We believe that the bug you reported is fixed in the latest version of
bash-completion, 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 704832@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Paleino <dapal@debian.org> (supplier of updated bash-completion 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: SHA1

Format: 1.8
Date: Wed, 19 Mar 2014 11:44:27 +0100
Source: bash-completion
Binary: bash-completion
Architecture: source all
Version: 1:2.1-3
Distribution: unstable
Urgency: medium
Maintainer: Bash Completion Maintainers <bash-completion-devel@lists.alioth.debian.org>
Changed-By: David Paleino <dapal@debian.org>
Description: 
 bash-completion - programmable completion for the bash shell
Closes: 496162 574950 665651 673235 680852 697513 698977 702498 704832 708173 737672 737881 739835 741657
Changes: 
 bash-completion (1:2.1-3) unstable; urgency=medium
 .
   * Import patch from Ubuntu:
     - fix_quote_readline_by_ref.patch, thanks to JuanJo Ciarlante
       (Closes: #739835):
       + avoid escaping 1st '~' (LP: #1288314)
       + avoid quoting if empty, else expansion without args only shows
         dirs (LP: #1288031)
       + replace double escaping to single (eg for completing file/paths
         with spaces)
     - words_bad_array_subscript.patch, thanks to Barry Warsaw
     - dpkg_ddeb.patch: dpkg also supports *.ddeb, thanks to Sebastien
       Bacher (LP: #568404, Closes: #737881)
     - disable_avahi_browse.patch: slow, and doesn't scale to big
       networks, thanks to Chris Jones (Closes: #574950, LP: #510591)
     - xine_add_more_formats.patch: add oga and ogx to multimedia players
       (Closes: #496162, LP: #311525)
   * debian/maintscript, debian/postinst:
     - clean etc conffiles on upgrade since completion files are in /usr
       with 2.0, thanks to Sebastien Bacher
   * debian/control: marked Multi-Arch: foreign
   * debian/patches/:
     - fix_gcc_detection.patch, correctly parses Debian's GCC version
       number, thanks to Tomas Janousek (Closes: #665651)
     - xpdf_support_compressed_pdf.patch, in Debian xpdf also supports
       compressed files, thanks to Alfredo Finelli (Closes: #702498)
     - dpkg_support_raw-extract_vextract.patch: add support for more
       options in dpkg-deb, thanks to Uwe Storbeck (Closes: #698977)
     - dpkg_fix_-W_option.patch: -W|--show doesn't support udebs/ddebs,
       thanks to Luca Capello (Closes: #697513)
     - aptitude_safe-upgrade.patch: safe-upgrade supports package names,
       thanks to Nicolas Le Cam (Closes: #673235)
     - ifconfig_locale.patch: _mac_addresses() didn't consider locale
       awareness of ifconfig, thanks to Thilo Six (Closes: #704832)
     - dont_return_from_sourced_script.patch: avoid problems with shells
       not supporting returning from a sourced script (Closes: #741657)
     - look_for_pod.patch: perldoc: look for .pod in addition to .pm
       files, thanks to Carl Hayter (Closes: #708173)
   * debian/extra/debhelper/dh_bash-completion: fix installation process
     when more than one "proper snippet" is being installed, thanks to
     Jean-Michel Vourgère (Closes: #680852)
   * Dropped completions included in util-linux (Closes: #737672)
Checksums-Sha1: 
 e9849707f765792d9227836eec5a9db90a1bcb0b 1377 bash-completion_2.1-3.dsc
 abd628e5dfef3242aa467277e4647a0ec0b13a7d 19408 bash-completion_2.1-3.debian.tar.xz
 f2a0edfbace7dfc007d629968e6eec180267c124 182124 bash-completion_2.1-3_all.deb
Checksums-Sha256: 
 2b44aeb674a9690c6af75957fa5308889277c9abd1a05143c81ccb4733e0a15f 1377 bash-completion_2.1-3.dsc
 8f48a945a680d9ab0da54be570929c33ae7bc5ec0f25fb6512fb75db1013ee3a 19408 bash-completion_2.1-3.debian.tar.xz
 d226ff84e0633c0ee4abdb9b2631fe0532b6c516f9d434a035633500811d9049 182124 bash-completion_2.1-3_all.deb
Files: 
 1ad095c77d5c9f34aa34d8822c52af4b 1377 shells standard bash-completion_2.1-3.dsc
 0d3f94bc45de05f6c05bfdf7d8d9a82e 19408 shells standard bash-completion_2.1-3.debian.tar.xz
 b3f48281983f26282a473b2a082d9786 182124 shells standard bash-completion_2.1-3_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iEYEARECAAYFAlMpdqQACgkQ5qqQFxOSsXRWtwCfRpjyuFpSIdtHdUnGSM3nzZSv
5OUAn29tGWEKYQydzlajsOUrA45W4D/f
=67po
-----END PGP SIGNATURE-----




Bug archived. Request was from Debbugs Internal Request <owner@bugs.debian.org> to internal_control@bugs.debian.org. (Thu, 17 Apr 2014 07:27:17 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 Jul 2 09:17:36 2023; Machine Name: bembo

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.