Bug#1008190: gcc-11: isinf(nan) returns 1 with -O0 on m68k

2022-03-24 Thread Kazuhiro NISHIYAMA
Package: gcc-11 Version: 11.2.0-18 Severity: normal Dear Maintainer, O option affects the return value of isinf(nan). user@m68k-sid:~$ cat n.c #include #include int main() { double inf = HUGE_VAL; double nan = (inf / inf); printf("isinf(inf)=%d\n", isinf(inf));

Bug#905480: typo: piv4 -> ipv4

2018-08-05 Thread Kazuhiro NISHIYAMA
Package: x11vnc Version: 0.9.13-2 Severity: minor Dear Maintainer, I found typo in man page and some files. $ grep -r piv4 . ./README: all usage modes no IPv4 support is required. See -nopiv4 ./.pc/0002-Support-openssl-1.1.0.patch/README: all usage

Bug#843561: certbot: Skip use perl in cron-script, just use shell

2016-11-12 Thread Kazuhiro NISHIYAMA
I think `$((RANDOM\%3600))` always means 0 when /bin/sh is dash. I think it should be `bash -c 'sleep $((RANDOM\%3600))'` or something else.

Bug#843607: certbot: Unknown lvalue 'RandomizedDelaySec' in section 'Timer'

2016-11-07 Thread Kazuhiro NISHIYAMA
Package: certbot Version: 0.9.3-1~bpo8+1 Severity: normal Dear Maintainer, After upgrade to 0.9.3-1~bpo8+1, systemd message in log: systemd[1]: [/lib/systemd/system/certbot.timer:6] Unknown lvalue 'RandomizedDelaySec' in section 'Timer' And certbot.service runs without any random sleep. I

Bug#836206: lolcat: shebang should not use env

2016-08-31 Thread Kazuhiro NISHIYAMA
Package: lolcat Version: 42.0.99-1 Severity: normal Dear Maintainer, I use rbenv and install ruby to PATH before /usr/bin. So "#!/usr/bin/env ruby" runs with ruby which does not have dependent packages (ruby-paint, ruby-trollop). Actual result: % lolcat /dev/null

Bug#684108: php5-common: /usr/share/doc/php5-common/examples is empty

2012-08-06 Thread Kazuhiro NISHIYAMA
Package: php5-common Version: 5.4.4-4 Severity: minor Dear Maintainer, /usr/share/doc/php5-common/examples is an empty directory. Is it necessary? -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel:

Bug#648946: chown: invalid user: `zabbix' in zabbix-server-mysql.postinst

2011-11-16 Thread Kazuhiro NISHIYAMA
Source: zabbix-server-mysql Version: 1.8.6-1 Severity: normal - `zabbix-server-mysql.postinst` calls `dbc_go zabbix-server-mysql` before `adduser ... zabbix`. - dbc_go defined in /usr/share/dbconfig-common/dpkg/postinst and dbc_go calls `dbconfig-generate-include` with `-O zabbix`. -

Bug#635205: libc0.1-dev: no declaration of function 'issetugid'

2011-07-23 Thread Kazuhiro NISHIYAMA
Package: libc0.1-dev Version: 2.11.2-10+b1 Severity: normal Man page of issetugid(2) says that unistd.h has `int issetugid(void);', but Debian GNU/kFreeBSD 6.0.2's unistd.h does not. I tried to build ruby's trunk, and it failed with a following error. $ make CC = ccache gcc LD = ld

Bug#590489: user-setup: The UID range of user accounts is extended to 1000-59999

2010-07-26 Thread Kazuhiro NISHIYAMA
Package: user-setup Version: 1.31 Severity: normal The mail 'Policy 3.9.0.0 released' http://lists.debian.org/debian-devel-announce/2010/06/msg5.html says: 9.2.2 The UID range of user accounts is extended to 1000-5. but is_system_user() in /usr/lib/user-setup/functions.sh

Bug#577973: gcc-4.4: optimization bug on x86

2010-04-19 Thread Kazuhiro NISHIYAMA
Sorry for missing detail informations. I reported it first to ruby, and it filed in http://redmine.ruby-lang.org/issues/show/2727, and it marked as Third Party's Issue. At Fri, 16 Apr 2010 02:53:45 +0200, Matthias Klose wrote: - please recheck with gcc-snapshot-20100414 (GCC-4.5.0), when it

Bug#578217: elscreen: unused packages in Suggests

2010-04-17 Thread Kazuhiro NISHIYAMA
Package: elscreen Version: 1.4.6-4 Severity: normal wl | wl-beta in Suggests, but elscreen-wl.el is already removed because #454692 . I want to re-package elscreen-wl, for example, splited package. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500,

Bug#577973: gcc-4.4: optimization bug on x86

2010-04-15 Thread Kazuhiro NISHIYAMA
Package: gcc-4.4 Version: 4.4.3-7 Severity: normal Ruby 1.9.1 HEAD compiled with gcc-4.4.x -O2 causes Segmentation fault. I can not reproduce on amd64. How to reproduce: svn co -r 26571 http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1 cd ruby_1_9_1 autoconf ./configure make miniruby

Bug#576843: update-rc.d: error: insserv rejected the script header

2010-04-07 Thread Kazuhiro NISHIYAMA
Package: open-vm-tools Version: 2010.03.20-243334-3 Severity: important I failed to upgrade open-vm-tools package. I guess that init.d script header's * $remote_fs in Required-Start and * $network in X-Start-Before are conflicted. open-vm-tools (2010.03.20-243334-3) を設定しています ...

Bug#572983: live-helper: Please add *-updates apt-lines when --mode ubuntu

2010-03-07 Thread Kazuhiro NISHIYAMA
Package: live-helper Version: 2.0~a8-1 Severity: normal For example, gnome-desktop-environment package of hardy, 1:2.20.2.2 in hardy has dependency problem, and resolved 1:2.20.2.2ubuntu0.1 in hardy-updates. http://packages.ubuntu.com/search?keywords=gnome-desktop-environment --

Bug#572992: subversion: cannot svn add filename includes '@'

2010-03-07 Thread Kazuhiro NISHIYAMA
Package: subversion Version: 1.6.9dfsg-1 Severity: normal On squeeze/sid, `svn add f...@bar` does not work. % cat t.sh #!/bin/sh TEST_ROOT=$(pwd)/test mkdir -p $TEST_ROOT cd $TEST_ROOT svnadmin create $TEST_ROOT/testrepo svn co file://$TEST_ROOT/testrepo testwc cd testwc touch f...@bar svn add

Bug#571743: busybox httpd -e STRING does not work

2010-02-27 Thread Kazuhiro NISHIYAMA
Package: busybox Version: 1:1.15.3-1 Severity: normal -e option is in usage, but it does not work. $ busybox httpd -e STRING httpd: invalid option -- 'e' BusyBox v1.15.3 (Debian 1:1.15.3-1) multi-call binary Usage: httpd [-ifv[v]] [-c CONFFILE] [-p [IP:]PORT] [-r REALM] [-h HOME] or httpd -d/-e

Bug#571747: etckeeper: add aliases.db to ignore list

2010-02-27 Thread Kazuhiro NISHIYAMA
Package: etckeeper Version: 0.43 Severity: wishlist Please add aliases.db to ignore list. It is generated file using newaliases command in postfix package. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686)

Bug#567520: smbldap-tools: smbldap-passwd failed when defaultMaxPasswordAge commented out

2010-01-29 Thread Kazuhiro NISHIYAMA
Package: smbldap-tools Version: 0.9.4-1 Severity: normal When defaultMaxPasswordAge commented out, samba passwords changed successfully, but userPassword failed to change. % sudo /usr/sbin/smbldap-passwd ldapuser Changing UNIX and samba passwords for ldapuser New password: Retype new password:

Bug#552539: milter-greylist: Please recommends postfix too instead of sendmail only

2009-10-27 Thread Kazuhiro NISHIYAMA
Package: milter-greylist Severity: wishlist Please change Recommends from sendmail to sendmail | postfix. http://milter-manager.sourceforge.net/reference/install-to-debian.html says: % sudo aptitude -V -D -y --without-recommends install milter-greylist It's the reason why --without-recommends

Bug#540233: autoconf: $as_mkdir_p creates '$as_dir' directory

2009-08-15 Thread Kazuhiro NISHIYAMA
Thanks for your reply, At Mon, 10 Aug 2009 23:57:45 +0200, Ralf Wildenhues wrote: That is a bug in Ruby then. $as_mkdir_p is not a documented Autoconf API, and you are not supposed to use it directly, and its usage may change. However, the AS_MKDIR_P macro is documented. You can use that:

Bug#540233: autoconf: $as_mkdir_p creates '$as_dir' directory

2009-08-06 Thread Kazuhiro NISHIYAMA
Package: autoconf Version: 2.64-1 Severity: normal I built ruby (www.ruby-lang.org) with autoconf 2.64-1, and I found strange directory '$as_dir' found in build directory. Ruby's configure.in includes $as_mkdir_p, it makes '$as_dir' directory. reproducable example: % cat configure.in

Bug#538956: zsh: please add completion: aptitude build-dep and build-depends

2009-07-28 Thread Kazuhiro NISHIYAMA
Package: zsh Version: 4.3.10-3 Severity: normal The aptitude supports build-depends and build-dep, like apt-get build-dep. But zsh can not complete aptitude build-dep. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386

Bug#532302: dash: lack a byte of multibyte character when redirect

2009-06-08 Thread Kazuhiro NISHIYAMA
Package: dash Version: 0.5.4-12 Severity: normal I found this problem when I try to create a file on the desktop. $ dash -c 'echo $(xdg-user-dir DESKTOP)/foo' dash: cannot create /home/kazu/デスク�ップ/foo: Directory nonexistent $ dash's echo works fine, and redirect of bash is no problem. $ dash

Bug#521160: smbldap-tools: error with passwd chat in README.Debian

2009-03-25 Thread Kazuhiro NISHIYAMA
Package: smbldap-tools Version: 0.9.4-1 Severity: normal wrote in /usr/share/doc/smbldap-tools/README.Debian.gz: 3. More to use the smbldap-tools to change passwords: ; Don't use samba's internal LDAP password sync ldap passwd sync = No ; Use an external program to sync the LDAP password

Bug#503901: zsh: _*_caching_policy set oldp

2008-10-29 Thread Kazuhiro NISHIYAMA
Package: zsh Version: 4.3.6-7 Severity: minor *** Please type your report below this line *** some _*_caching_policy (_perl_modules_caching_policy, _apt_caching_policy, _debs_caching_policy, etc.) set oldp. I think it should be local. There is the same problem in a man page of zshcompsys,

Bug#493201: no such file written in /usr/share/doc/postfix-ldap/README.Debian

2008-08-01 Thread Kazuhiro NISHIYAMA
Package: postfix-ldap Version: 2.5.2-2 Severity: minor See /usr/share/doc/postfix/html/LDAP_README.html in /usr/share/doc/postfix-ldap/README.Debian, but /usr/share/doc/postfix/html/LDAP_README.html does not found. -- System Information: Debian Release: lenny/sid APT prefers testing APT

Bug#471784: Please recommends open-vm-source

2008-03-28 Thread Kazuhiro NISHIYAMA
I had a same problem, and resolved following commands: * sudo aptitude purge open-vm-tools * sudo reboot * sudo aptitude install open-vm-source * pager /usr/share/doc/open-vm-source/README.Debian * sudo module-assistant prepare open-vm * sudo module-assistant auto-install open-vm * sudo

Bug#462938: emacs22-gtk: window size suddenly changes

2008-01-29 Thread Kazuhiro NISHIYAMA
Hello, At Mon, 28 Jan 2008 16:20:44 +0100, Sven Joachim wrote: I cannot reproduce this. Which window manager do you use? I use GNOME and metacity (default window manager of GNOME). Regard, -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL

Bug#462938: emacs22-gtk: window size suddenly changes

2008-01-28 Thread Kazuhiro NISHIYAMA
Package: emacs22-gtk Version: 22.1+1-2.3 Severity: normal - run `emacs -q --no-site-file` - maximize the window - unmaximize the window - type M-x, then window size changes to same as maximize I found this problem in Ubuntu Japanese forum. http://forum.ubuntulinux.jp/viewtopic.php?id=1439

Bug#454245: gdm: gdmsetup cannot set Use 24 Hour Clock

2007-12-05 Thread Kazuhiro NISHIYAMA
Hello, At Tue, 04 Dec 2007 14:30:43 +0100, Josselin Mouette wrote: Does it also happen with gdm 2.20 currently in unstable? It can save with gdm 2.20, but it does not affect time strings in greeter. (It looks like AM/PM style.) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of

Bug#454245: gdm: gdmsetup cannot set Use 24 Hour Clock

2007-12-04 Thread Kazuhiro NISHIYAMA
Package: gdm Version: 2.18.4-1 Severity: normal The setting of 24時間制の書式にする(_E): (Us_e 24 Hour Clock: in English) can set to はい (yes) in gdmsetup, but it is reverted to 自動 (auto) after re-open gdmsetup. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (500,

Bug#424027: ttf-kochi-mincho: some glyphs become thin when bold

2007-05-22 Thread Kazuhiro NISHIYAMA
At Wed, 23 May 2007 01:18:15 +0900, GOTO Masanori wrote: Thanks for your report. However, we still provide ttf-kochi-mincho, but it'll be deprecate because it's not maintained these days. I'll add such statement for these packages. Could you use ttf-sazanami and test it again if possible?

Bug#424027: ttf-kochi-mincho: some glyphs become thin when bold

2007-05-15 Thread Kazuhiro NISHIYAMA
Package: ttf-kochi-mincho Version: 1.0.20030809-4 Severity: normal following glyphs become thin when bold on gucharmap, iceweasel, and so on. * U+30AD KATAKANA LETTER KI * U+30AE KATAKANA LETTER GI * U+30B7 KATAKANA LETTER SI * U+30B8 KATAKANA LETTER ZI * U+30F3 KATAKANA LETTER N * U+FF7C

Bug#423315: xfonts-base: strange glyphs for codepoints between U+30D0 (KATAKANA LETTER BA) and U+30D3 (KATAKANA LETTER BI)

2007-05-11 Thread Kazuhiro NISHIYAMA
Package: xfonts-base Version: 1:1.0.0-4 Severity: normal strange glyphs in /usr/share/fonts/X11/misc/clR6x12.pcf.gz for more info, see thread from http://lists.debian.or.jp/ml/debian-users/48556 (in Japanese) -- System Information: Debian Release: 4.0 APT prefers stable APT policy: (500,

Bug#423315: xfonts-base: strange glyphs for codepoints between U+30D0 (KATAKANA LETTER BA) and U+30D3 (KATAKANA LETTER BI)

2007-05-11 Thread Kazuhiro NISHIYAMA
Hello, At Fri, 11 May 2007 10:19:45 +0200, Julien Cristau wrote: more info in japanese isn't all that helpful for non-japanese-speaking people :) could you summarise the problem with this font? Thanks, Julien expected glyphs are in http://www.unicode.org/charts/PDF/U30A0.pdf but KATAKANA

Bug#411606: manpages-ja: update-pciids(8) FILES differ from the English man page

2007-02-19 Thread Kazuhiro NISHIYAMA
Package: manpages-ja Version: 0.5.0.0.20061115-1 Severity: normal *** Please type your report below this line *** /usr/share/misc/pci.ids in the English man page of update-pciids(8) in pciutils 1:2.2.4~pre4-1. /usr/share/pci.ids in the Japanese man page of manpages-ja. -- System Information:

Bug#382336: dh-make: a copyright file is not bsd with -c bsd and -n

2006-08-10 Thread Kazuhiro NISHIYAMA
Package: dh-make Version: 0.38 Severity: normal A message of dh_make is `License: bsd', but debian/copyright is GPL. % mkdir hoge-0.0.0 cd hoge-0.0.0 dh_make -c bsd -n -s Maintainer name : Kazuhiro NISHIYAMA Email-Address : [EMAIL PROTECTED] Date: Thu, 10 Aug 2006 21:08:27 +0900

Bug#374182: `see with-mta.rd' in quickmlrc but no such file

2006-06-17 Thread Kazuhiro NISHIYAMA
Package: quickml Version: 0.7-2 Severity: minor `# see /usr/share/doc/quickml/with-mta.rd' in /etc/quickml/quickmlrc, but with-mta.rd does not exist and with-mta.ja.rd only exists. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.8 Locale: LANG=ja_JP.eucJP,

Bug#370652: dpkg-reconfigure iptables does nothing with oldinitdscript

2006-06-06 Thread Kazuhiro NISHIYAMA
Package: iptables Version: 1.2.11-10 Severity: minor In comment of /usr/share/doc/iptables/examples/oldinitdscript.gz: #3. Controlling the script itself is done through runlevels configured # with debconf for package installation. Run dpkg-reconfigure iptables # to enable or

Bug#324643: symbolic link loop: /usr/src/linux-headers-2.6.12-1-386/arch/i386/Makefile

2005-08-23 Thread Kazuhiro NISHIYAMA
Package: linux-headers-2.6.12-1-386 Version: 2.6.12-5 Severity: important When make modules, error occured: /usr/src/linux-headers-2.6.12-1-386/arch/i386/Makefile: Too many levels of symbolic links -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500,

Bug#324643: symbolic link loop: /usr/src/linux-headers-2.6.12-1-386/arch/i386/Makefile

2005-08-23 Thread Kazuhiro NISHIYAMA
remove --purge linux-headers-2.6.12-1 linux-headers-2.6.12-1-386 # apt-get install linux-headers-2.6.12-1 linux-headers-2.6.12-1-386 and, 'make modules' works well. Thanks, -- Kazuhiro NISHIYAMA -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact

Bug#319315: tdiary: JVN#60776919 Cross Site Request Forgeries, CSRF

2005-07-21 Thread Kazuhiro NISHIYAMA
Package: tdiary Version: 2.0.1-1 Severity: grave Justification: user security hole Upstream security release against CSRF attack. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.9 Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP) Versions of

Bug#316296: libapache2-mod-python2.3: typo in debconf templates

2005-06-29 Thread Kazuhiro NISHIYAMA
Package: libapache2-mod-python2.3 Version: 3.1.3-3 Severity: minor /etc/apache2/mods_enabled/ should be /etc/apache2/mods-enabled/ in all languages. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.8-2-386 Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP

Bug#311317: apache2: The DocumentRoot should be specified without a trailing slash.

2005-05-31 Thread Kazuhiro NISHIYAMA
Package: apache2 Version: 2.0.54-4 Severity: normal http://httpd.apache.org/docs-2.0/en/mod/core.html#documentroot says: `The DocumentRoot should be specified without a trailing slash.' but the DocumentRoot in /etc/apache2/sites-available/default is with a trailing slash. -- System Information:

Bug#161842: ttyrec: Does not work with devfs/devpts

2005-05-23 Thread Kazuhiro NISHIYAMA
This bug fixed in upstream's cvs trunk. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Bug#302582: libgettext-ruby: new upstream version (0.8.1) available

2005-04-01 Thread Kazuhiro NISHIYAMA
Package: libgettext-ruby Severity: wishlist Please update new upstream version (0.8.1) which is bug fix release. -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.8-1-386 Locale: LANG=ja_JP.eucJP,

Bug#301768: racc: New upstream version 1.4.4

2005-03-28 Thread Kazuhiro NISHIYAMA
Package: racc Version: 1.4.3-2 Severity: normal Please update new upstream version. -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.9 Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Bug#301002: galternatives: priorities should be sorted by numeric order

2005-03-23 Thread Kazuhiro NISHIYAMA
Package: galternatives Version: 0.11 Severity: wishlist Tags: patch Priorities in options_tv should be sorted by numeric order, and I want to be right-justified. --- /usr/lib/python2.3/site-packages/galternatives/main.py 2004-12-08 10:55:37.0 +0900 +++ galternatives/main.py

Bug#293119: kazehakase: DSA is not a RSS folder

2005-02-01 Thread Kazuhiro NISHIYAMA
Package: kazehakase Version: 0.2.3-2 Severity: normal When I remove ~/.kazehakase and run kazehakase, DSA folder in bookmarkbar is made as a normal folder. -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux