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

2022-03-23 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));
  printf("isinf(nan)=%d\n", isinf(nan));
  printf("isnan(inf)=%d\n", isnan(inf));
  printf("isnan(nan)=%d\n", isnan(nan));
  printf("inf=%f nan=%f\n", inf, nan);
  return 0;
}
user@m68k-sid:~$ gcc n.c
user@m68k-sid:~$ ./a.out
isinf(inf)=1
isinf(nan)=1
isnan(inf)=0
isnan(nan)=1
inf=inf nan=nan
user@m68k-sid:~$ gcc -O1 n.c
user@m68k-sid:~$ ./a.out
isinf(inf)=1
isinf(nan)=0
isnan(inf)=0
isnan(nan)=1
inf=inf nan=nan
user@m68k-sid:~$ gcc -O2 n.c
user@m68k-sid:~$ ./a.out
isinf(inf)=1
isinf(nan)=0
isnan(inf)=0
isnan(nan)=1
inf=inf nan=nan
user@m68k-sid:~$ gcc -O3 n.c
user@m68k-sid:~$ ./a.out
isinf(inf)=1
isinf(nan)=0
isnan(inf)=0
isnan(nan)=1
inf=inf nan=nan
user@m68k-sid:~$


-- System Information:
Debian Release: bookworm/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: m68k

Kernel: Linux 5.13.0-37-generic (SMP w/4 CPU threads)
Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gcc-11 depends on:
ii  binutils   2.38-2
ii  cpp-11 11.2.0-18
ii  gcc-11-base11.2.0-18
ii  libc6  2.33-2+qemu1
ii  libcc1-0   12-20220319-1
ii  libgcc-11-dev  11.2.0-18
ii  libgcc-s2  12-20220319-1
ii  libgmp10   2:6.2.1+dfsg-3
ii  libisl23   0.24-2
ii  libmpc31.2.1-1
ii  libmpfr6   4.1.0-3
ii  libstdc++6 12-20220319-1
ii  libzstd1   1.4.9+dfsg-1
ii  zlib1g 1:1.2.11.dfsg-3

Versions of packages gcc-11 recommends:
ii  libc6-dev  2.33-2+qemu1

Versions of packages gcc-11 suggests:
pn  gcc-11-doc  
pn  gcc-11-locales  

-- no debconf information



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 
modes no IPv4 support is required. See -nopiv4
./x11vnc/help.c:"   all usage modes no IPv4 support is 
required. See -nopiv4.\n"
./x11vnc/README:   all usage modes no IPv4 support is 
required. See -nopiv4
./x11vnc/x11vnc.1:all usage modes no IPv4 support is required. See 
\fB-nopiv4.\fR

I think there should be ipv4.

-- System Information:
Debian Release: 9.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-7-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages x11vnc depends on:
ii  libavahi-client3  0.6.32-2
ii  libavahi-common3  0.6.32-2
ii  libc6 2.24-11+deb9u3
ii  libjpeg62-turbo   1:1.5.1-2
ii  libssl1.1 1.1.0f-3+deb9u2
ii  libvncclient1 0.9.11+dfsg-1+deb9u1
ii  libvncserver1 0.9.11+dfsg-1+deb9u1
ii  libx11-6  2:1.6.4-3
ii  libxdamage1   1:1.1.4-2+b3
ii  libxext6  2:1.3.3-1+b2
ii  libxfixes31:5.0.3-1
ii  libxinerama1  2:1.1.3-1+b3
ii  libxrandr22:1.5.1-1
ii  libxtst6  2:1.2.3-1
ii  openssl   1.1.0f-3+deb9u2
ii  tk8.6.0+9
ii  x11vnc-data   0.9.13-2
ii  zlib1g1:1.2.8.dfsg-5

x11vnc recommends no packages.

x11vnc suggests no packages.

-- no debconf information



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 think 'RandomizedDelaySec' is not supported by jessie's systemd.

-- System Information:
Debian Release: 8.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages certbot depends on:
ii  dialog   1.2-20140911-1
ii  init-system-helpers  1.22
ii  python   2.7.9-1
ii  python-certbot   0.9.3-1~bpo8+1
pn  python:any   

certbot recommends no packages.

Versions of packages certbot suggests:
pn  python-certbot-apache  
pn  python-certbot-doc 

-- no debconf information



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
/path/to/rbenv/versions/git/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in
 `require': cannot load such file -- lolcat/version (LoadError)
from 
/path/to/rbenv/versions/git/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in
 `require'
from /usr/games/lolcat:21:in `'
%

Expected result:
% /usr/bin/ruby $(which lolcat) /dev/null
%

-- System Information:
Debian Release: 8.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages lolcat depends on:
ii  ruby1:2.1.5+deb8u2
ii  ruby-paint  0.8.6-1
ii  ruby-trollop2.0-2
ii  ruby2.1 [ruby-interpreter]  2.1.5-2+deb8u2

lolcat recommends no packages.

lolcat suggests no packages.

-- no debconf information



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: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages php5-common depends on:
ii  dpkg1.16.8
ii  libc6   2.13-35
ii  psmisc  22.19-1
ii  sed 4.2.1-10
ii  ucf 3.0025+nmu3

php5-common recommends no packages.

php5-common suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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`.
- `dbconfig-generate-include` calls chown with zabbix.
-  `chown` says "chown: invalid user: `zabbix'".

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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
  LDSHARED = ccache gcc -shared
  CFLAGS = -O3 -g -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long 
-Wno-missing-field-initializers -Werror=pointer-arith -Werror=write-strings 
-Werror=declaration-after-statement -Werror=implicit-function-declaration
  XCFLAGS = -include ruby/config.h -include ruby/missing.h -fvisibility=hidden 
-DRUBY_EXPORT
  CPPFLAGS =   -I. -I.ext/include/i686-kfreebsd8.1-gnu -I./include -I.
  DLDFLAGS =
  SOLIBS =
compiling process.c
process.c: In function 'p_sys_issetugid':
process.c:4455: error: implicit declaration of function 'issetugid'
make: *** [process.o] Error 1
$


-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: kfreebsd-i386 (i686)

Kernel: kFreeBSD 8.1-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages libc0.1-dev depends on:
ii  kfreebsd-kernel-headers 0.53 kernel of FreeBSD headers for deve
ii  libc-dev-bin2.11.2-10+b1 Embedded GNU C Library: Developmen
ii  libc0.1 2.11.2-10+b1 Embedded GNU C Library: Shared lib

Versions of packages libc0.1-dev recommends:
ii  gcc [c-compiler]  4:4.4.5-1  The GNU C compiler
ii  gcc-4.4 [c-compiler]  4.4.5-8The GNU C compiler

Versions of packages libc0.1-dev suggests:
pn  glibc-doc  (no description available)
ii  manpages-dev  3.27-1 Manual pages about using GNU/Linux

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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 checks
any uid from 1000 to 2.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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

2010-04-18 Thread Kazuhiro NISHIYAMA
Sorry for missing detail informations.
I reported it first to ruby, and it filed in 
,
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 is built.

Binary compiled with gcc-snapshot-20100414 does not cause SEGV.

> - please try to combine/bisect object files built with -O0/-O2 to
>   identify the maybe miscompiled file.
>   then split the file to identify a miscompiled function ...

Miscompiled function may be rb_f_catch in vm_eval.c.

I checked when memory overwrote using gdb,
but it occured unrelated codes.
Log of gdb is in .

On the ticket in ruby's BTS, Yusuke Endoh says that
inlined callee overwrites caller's stack, and he marked
it as Third Party's issue.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-3-amd64 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages elscreen depends on:
ii  apel   10.7+0.20080906-2 portable library for emacsen

elscreen recommends no packages.

Versions of packages elscreen suggests:
pn  speedbar   (no description available)
ii  w3m-el-snapshot [w3 1.4.392+0.20100329-1 simple Emacs interface of w3m (dev
ii  wl-beta [wl]2.15.9+0.20100303-1  mail/news reader supporting IMAP f

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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
 ./miniruby -e 'catch(:foo){throw :foo}'

Ruby does not abort when use `./configure optflags=-O0`,
`./configure optflags=-O1`, or `./configure optflags=-O3`.
Then it seems gcc optimization bug.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

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

Versions of packages gcc-4.4 depends on:
ii  binutils  2.20.1-5   The GNU assembler, linker and bina
ii  cpp-4.4   4.4.3-7The GNU C preprocessor
ii  gcc-4.4-base  4.4.3-7The GNU Compiler Collection (base 
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.3-7  GCC support library
ii  libgomp1  4.4.3-7GCC OpenMP (GOMP) support library

Versions of packages gcc-4.4 recommends:
ii  libc6-dev 2.10.2-6   Embedded GNU C Library: Developmen

Versions of packages gcc-4.4 suggests:
pn  gcc-4.4-doc(no description available)
pn  gcc-4.4-locales(no description available)
pn  gcc-4.4-multilib   (no description available)
pn  libcloog-ppl0  (no description available)
pn  libgcc1-dbg(no description available)
pn  libgomp1-dbg   (no description available)
pn  libmudflap0-4.4-dev(no description available)
pn  libmudflap0-dbg(no description available)
pn  libppl-c2  (no description available)
pn  libppl7(no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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) を設定しています ...
update-initramfs: deferring update (trigger activated)
update-rc.d: warning: open-vm-tools stop runlevel arguments (0 6) do not match 
LSB Default-Stop values (0 1 6)
insserv: warning: current stop runlevel(s) (0 6) of script `open-vm-tools' 
overwrites defaults (0 1 6).
insserv: There is a loop between service open-vm-tools and mountnfs if started
insserv:  loop involving service mountnfs at depth 9
insserv:  loop involving service nfs-common at depth 8
insserv: There is a loop between service open-vm-tools and mountnfs if started
insserv:  loop involving service ifupdown at depth 6
insserv:  loop involving service open-vm-tools at depth 5
insserv:  loop involving service mountall at depth 4
insserv:  loop involving service mountnfs-bootclean at depth 5
insserv:  loop involving service mountoverflowtmp at depth 6
insserv: There is a loop between service umountnfs and open-vm-tools if stopped
insserv:  loop involving service open-vm-tools at depth 4
insserv:  loop involving service networking at depth 3
insserv: There is a loop between service umountnfs and open-vm-tools if stopped
insserv:  loop involving service umountnfs at depth 2
insserv:  loop involving service anacron at depth 1
insserv: There is a loop between service mountnfs and nfs-common if started
insserv:  loop involving service portmap at depth 21
insserv:  loop involving service networking at depth 20
insserv:  loop involving service umountfs at depth 6
insserv:  loop involving service portmap at depth 3
insserv:  loop involving service rsyslog at depth 2
insserv:  loop involving service nfs-common at depth 4
insserv: There is a loop between service portmap and networking if started
insserv:  loop involving service ifupdown at depth 6
insserv:  loop involving service sendsigs at depth 8
insserv: There is a loop between service nfs-common and portmap if started
insserv: exiting now without changing boot order!
update-rc.d: error: insserv rejected the script header
dpkg: open-vm-tools の処理中にエラーが発生しました (--configure):
 サブプロセス installed post-installation script はエラー終了ステータス 1 を返しました
initramfs-tools のトリガを処理しています ...
update-initramfs: Generating /boot/initrd.img-2.6.32-3-amd64
.: 4: Can't open /scripts/functions
以下のパッケージの処理中にエラーが発生しました:
 open-vm-tools


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-3-amd64 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages open-vm-tools depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libfuse2  2.8.1-1.2  Filesystem in USErspace library
ii  libgcc1   1:4.4.3-7  GCC support library
ii  libglib2.0-0  2.24.0-1   The GLib library of C routines
ii  libicu42  4.2.1-3International Components for Unico
ii  libstdc++64.4.3-7The GNU Standard C++ Library v3

Versions of packages open-vm-tools recommends:
ii  ethtool  1:2.6.33-1  display or change Ethernet device 
ii  open-vm-source   2010.03.20-243334-3 Source for VMware guest systems dr
ii  zerofree 1.0.1-2 zero free blocks from ext2/3 file-

Versions of packages open-vm-tools suggests:
pn  open-vm-toolbox(no description available)

-- no debconf information



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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 f...@bar
svn status
% LANG=C sh -x ./t.sh
+ pwd
+ TEST_ROOT=/tmp/test
+ mkdir -p /tmp/test
+ cd /tmp/test
+ svnadmin create /tmp/test/testrepo
+ svn co file:///tmp/test/testrepo testwc
Checked out revision 0.
+ cd testwc
+ touch f...@bar
+ svn add f...@bar
svn: warning: 'foo' not found
+ svn status
?   f...@bar
%


On lenny, it works.

% LANG=C sh -x ./t.sh
+ pwd
+ TEST_ROOT=/tmp/test
+ mkdir -p /tmp/test
+ cd /tmp/test
+ svnadmin create /tmp/test/testrepo
+ svn co file:///tmp/test/testrepo testwc
Checked out revision 0.
+ cd testwc
+ touch f...@bar
+ svn add f...@bar
A f...@bar
+ svn status
A  f...@bar
% LANG=C svn --version | head -n1
svn, version 1.5.1 (r32289)
%

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-2-amd64 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages subversion depends on:
ii  libapr1   1.4.2-3The Apache Portable Runtime Librar
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libsasl2-22.1.23.dfsg1-5 Cyrus SASL - authentication abstra
ii  libsvn1   1.6.9dfsg-1Shared libraries used by Subversio

subversion recommends no packages.

Versions of packages subversion suggests:
pn  db4.8-util (no description available)
ii  patch 2.6-2  Apply a diff file to an original
pn  subversion-tools   (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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

-- Package-specific info:

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-2-amd64 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages live-helper depends on:
ii  debootstrap   1.0.22 Bootstrap a basic Debian system

Versions of packages live-helper recommends:
ii  cpio  2.10-1 GNU cpio -- a program to manage ar
ii  gettext-base  0.17-10GNU Internationalization utilities

Versions of packages live-helper suggests:
ii  dosfstools 3.0.9-1   utilities for making and checking 
ii  fakeroot   1.14.4-1  Gives a fake root environment
ii  genisoimage9:1.1.10-1Creates ISO-9660 CD-ROM filesystem
pn  memtest86+ | memtest86 (no description available)
ii  mtools 4.0.12-1  Tools for manipulating MSDOS files
pn  parted (no description available)
pn  squashfs-tools | genext2fs (no description available)
ii  sudo   1.7.2p1-1.2   Provide limited super user privile
ii  syslinux   2:3.85+dfsg-1 utilities for the syslinux bootloa
ii  uuid-runtime   2.16.2-0  runtime components for the Univers
pn  win32-loader   (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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)

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

Versions of packages etckeeper depends on:
ii  debconf [debconf-2.0] 1.5.28 Debian configuration management sy
ii  git-core  1:1.7.0-1  fast, scalable, distributed revisi
ii  mercurial 1.4.3-1scalable distributed version contr

Versions of packages etckeeper recommends:
ii  cron  3.0pl1-106 process scheduling daemon

etckeeper suggests no packages.

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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 STRING

Listen for incoming HTTP requests

Options:
-i  Inetd mode
-f  Do not daemonize
-v[v]   Verbose
-c FILE Configuration file (default httpd.conf)
-p [IP:]PORTBind to ip:port (default *:80)
-r REALMAuthentication Realm for Basic Authentication
-h HOME Home directory (default .)
-e STRING   HTML encode STRING
-d STRING   URL decode STRING

$


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

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

Versions of packages busybox depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib

busybox recommends no packages.

busybox suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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:
Use of uninitialized value $config{"defaultMaxPasswordAge"} in string at 
/usr/sbin/smbldap-passwd line 277,  line 2.
Failed to modify UNIX password: shadowMax: value #0 invalid per syntax at 
/usr/sbin/smbldap-passwd line 285,  line 2.
%

In /usr/sbin/smbldap-passwd,
checking defined $config{defaultMaxPasswordAge} when changing smb passwords,
but updating 'userPassword' field uses $config{defaultMaxPasswordAge}
without checking.

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages smbldap-tools depends on:
ii  libcrypt-smbhash-perl0.12-2  generate LM/NT hash of a password 
ii  libdigest-sha1-perl  2.11-2+b1   NIST SHA-1 message digest algorith
ii  libio-socket-ssl-perl1.16-1+lenny1   Perl module implementing object or
ii  libnet-ldap-perl 1:0.36-1A Client interface to LDAP servers
ii  libunicode-maputf8-perl  1.11-2  Perl module for conversing between
ii  perl 5.10.0-19lenny2 Larry Wall's Practical Extraction 

smbldap-tools recommends no packages.

smbldap-tools suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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 is specified that Sendmail is
> recommended package. If --without-recommends option isn't specified,
> Sendmail is installed and Postfix is removed.


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

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



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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:
>   AC_INIT
>   AS_MKDIR_P([some/directory])
> 
> For use in generated files, use can instead use @mkdi...@.  See the
> manual for more information.

This information forwarded to Ruby BTS and fixed in trunk and ruby_1_8 branch.

* http://redmine.ruby-lang.org/issues/show/1923
* http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=24525



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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
AC_INIT()
if $as_mkdir_p; then
  MAKEDIRS='mkdir -p'
else
  MAKEDIRS='install -d'
fi
% autoconf
% ./configure
% \ls
"$as_dir"  autom4te.cache  config.log  configure  configure.in
%


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages autoconf depends on:
ii  debianutils   3.2Miscellaneous utilities specific t
ii  m41.4.13-1   a macro processing language
ii  perl  5.10.0-24  Larry Wall's Practical Extraction 

Versions of packages autoconf recommends:
ii  automake [automaken]  1:1.10.2-1 A tool for generating GNU Standard

Versions of packages autoconf suggests:
pn  autobook   (no description available)
pn  autoconf-archive   (no description available)
pn  autoconf-doc   (no description available)
pn  autoconf2.13   (no description available)
ii  gettext   0.17-6 GNU Internationalization utilities
pn  gnu-standards  (no description available)
ii  libtool   2.2.6a-4   Generic library support script

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages zsh depends on:
ii  libc6 2.9-23 GNU C Library: Shared libraries
ii  libcap2   1:2.16-5   support for getting/setting POSIX.
ii  libncursesw5  5.7+20090613-1 shared libraries for terminal hand

Versions of packages zsh recommends:
ii  libc6 2.9-23 GNU C Library: Shared libraries
ii  libpcre3  7.8-2+b1   Perl 5 Compatible Regular Expressi

Versions of packages zsh suggests:
pn  zsh-doc(no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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 -c 'echo aトb' | od -c
000   a 343 203 210   b  \n
006
$ dash -c 'echo >aトb'
$ ls a*b | od -c
000   a 343 203   b  \n
005
$ rm a*b
$ bash -c 'echo >aトb'
$ ls a*b | od -c
000   a 343 203 210   b  \n
006
$ rm a*b
$

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dash depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries

dash recommends no packages.

dash suggests no packages.

-- debconf information:
* dash/sh: true



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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
  unix password sync = Yes
  passwd program = /usr/sbin/smbldap-passwd -u %u
  passwd chat = *New*password* %n\n *Retype*new*password* %n\n *all*authenticati
on*tokens*updated*

but smbldap-passwd does not print anything after password changed.

It should be:
  passwd chat = *New*password* %n\n *Retype*new*password* %n\n

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages smbldap-tools depends on:
ii  libcrypt-smbhash-perl 0.12-2 generate LM/NT hash of a password 
ii  libdigest-sha1-perl   2.11-2+b1  NIST SHA-1 message digest algorith
ii  libio-socket-ssl-perl 1.16-1 Perl module implementing object or
ii  libnet-ldap-perl  1:0.36-1   A Client interface to LDAP servers
ii  libunicode-maputf8-perl   1.11-2 Perl module for conversing between
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

smbldap-tools recommends no packages.

smbldap-tools suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



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,

   _cache_invalid cache_identifier
  This  function returns status zero if the completions cache cor-
  responding to the given cache identifier needs  rebuilding.   It
  determines  this  by  looking  up the cache-policy style for the
  current context.  This should provide a function name  which  is
  run  with  the  full path to the relevant cache file as the only
  argument.

  Example:

 _example_caching_policy () {
 # rebuild if cache is more than a week old
 oldp=( "$1"(Nmw+1) )
 (( $#oldp ))
 }

It should be include a following line:
 local oldp

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages zsh depends on:
ii  libc6 2.7-15 GNU C Library: Shared libraries
ii  libcap2   2.11-2 support for getting/setting POSIX.
ii  libncursesw5  5.6+20081025-1 shared libraries for terminal hand

Versions of packages zsh recommends:
ii  libpcre3  7.8-2  Perl 5 Compatible Regular Expressi

Versions of packages zsh suggests:
pn  zsh-doc(no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages postfix-ldap depends on:
ii  libc62.7-10  GNU C Library: Shared libraries
ii  libldap-2.4-22.4.10-2+lenny1 OpenLDAP libraries
ii  postfix  2.5.2-2 High-performance mail transport ag

postfix-ldap recommends no packages.

postfix-ldap suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 aptitude install open-vm-tools
 * sudo reboot

If open-vm-tools recommends open-vm-source,
it will resolve to run module-assistant only.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 PROTECTED]



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.

And I confirm in lenny.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages emacs22-gtk depends on:
ii  emacs22-bin-common  22.1+1-2.3   The GNU Emacs editor's shared, arc
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-6GNU C Library: Shared libraries
ii  libcairo2   1.4.14-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libglib2.0-02.14.5-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.5-2 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libncurses5 5.6+20080105-1   Shared libraries for terminal hand
ii  libpango1.0-0   1.18.4-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) libra
ii  libungif4g  4.1.4-5  shared library for GIF images
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxpm4 1:3.5.7-1X11 pixmap library
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

emacs22-gtk recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gdm depends on:
ii  adduser3.105 add and remove users and groups
ii  debconf [debconf-2.0]  1.5.17Debian configuration management sy
ii  gksu   2.0.0-4   graphical frontend to su
ii  gnome-session  2.18.3-1  The GNOME 2 Session Manager
ii  gnome-terminal [x-terminal 2.18.2-1  The GNOME 2 terminal emulator appl
ii  libart-2.0-2   2.3.19-3  Library of functions for 2D graphi
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libattr1   1:2.4.39-1Extended attribute shared library
ii  libc6  2.6.1-1+b1GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1  The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libdmx11:1.0.2-2 X11 Distributed Multihead extensio
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.3-1  The GLib library of C routines
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgtk2.0-02.12.1-1  The GTK+ graphical user interface 
ii  libpam-modules 0.99.7.1-5Pluggable Authentication Modules f
ii  libpam-runtime 0.99.7.1-5Runtime support for the PAM librar
ii  libpam0g   0.99.7.1-5Pluggable Authentication Modules l
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  librsvg2-2 2.18.2-1  SAX-based renderer library for SVG
ii  librsvg2-common2.18.2-1  SAX-based renderer library for SVG
ii  libselinux12.0.15-2+b1   SELinux shared libraries
ii  libwrap0   7.6.dbs-14Wietse Venema's TCP wrappers libra
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxau61:1.0.3-2 X11 authorisation library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxdmcp6  1:1.0.2-2 X11 Display Manager Control Protoc
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  lsb-base   3.1-24Linux Standard Base 3.1 init scrip
ii  metacity [x-window-manager 1:2.20.1-1A lightweight GTK2 based Window Ma
ii  mlterm [x-terminal-emulato 2.9.3-6+b1MultiLingual TERMinal
ii  twm [x-window-manager] 1:1.0.3-2 Tab window manager
ii  xbase-clients  1:7.2.ds2-2   miscellaneous X clients
ii  xterm [x-terminal-emulator 229-1 X terminal emulator

Versions of packages gdm recommends:
pn  gdm-themes (no description available)
ii  whiptail 0.52.2-11.1 Displays user-friendly dialog boxe
pn  xserver-xephyr | xnest (no description available)
ii  zenity   2.20.0-2Display graphical dialog boxes fro

-- debconf information:
  gdm/daemon_name: /usr/bin/gdm
* shared/default-x-display-manager: gdm



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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?

When I use ttf-sazanami-mincho, it looks good.

At first I found problems when I see HTML such as "キーボード" in iceweasel.
After I change serif font of iceweasel to sazanami-mincho,
the problem is solved.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 HALFWIDTH KATAKANA LETTER SI
* U+FF8D HALFWIDTH KATAKANA LETTER HE
* U+FF9D HALFWIDTH KATAKANA LETTER N

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-4-686
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)

Versions of packages ttf-kochi-mincho depends on:
ii  defoma   0.11.10-0.1 Debian Font Manager -- automatic f

ttf-kochi-mincho recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 LETTERs (BA,PA,HI,BI) of Clean font look like small arrows
and vertical borders in gucharmap.

regards,


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-4-686
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)

Versions of packages xfonts-base depends on:
ii  xfonts-utils  1:1.0.1-1  X Window System font utility progr

xfonts-base recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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
Package Name: hoge
Version : 0.0.0
License : bsd
Type of Package : Single
Hit  to confirm:
Currently there is no top level Makefile. This may require additional tuning.
Done. Please edit the files in the debian/ subdirectory now. You should also
check that the hoge Makefiles install into $DESTDIR and not in / .
% cat debian/copyright 
This is hoge, written and maintained by Kazuhiro NISHIYAMA <[EMAIL PROTECTED]>
on Thu, 10 Aug 2006 21:08:27 +0900.

The original source can always be found at:
ftp://ftp.debian.org/dists/unstable/main/source/

Copyright (C) 2005  Kazuhiro NISHIYAMA

License:

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this package; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.

On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
%

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (105, 'testing'), (90, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages dh-make depends on:
ii  debhelper  4.2.32helper programs for debian/rules
ii  dpkg-dev   1.10.28   Package building tools for Debian
ii  make   3.80-9The GNU version of the "make" util
ii  perl   5.8.4-8sarge4 Larry Wall's Practical Extraction 

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages quickml depends on:
ii  ruby1.81.8.2-7sarge2 Interpreter of object-oriented scr

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 disable after installation.

but can not enable or disable with running "dpkg-reconfigure iptables".

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (105, 'testing'), (90, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages iptables depends on:
ii  libc6 2.3.2.ds1-22sarge3 GNU C Library: Shared libraries an

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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

2005-08-23 Thread Kazuhiro NISHIYAMA
>>>>> On Tue, 23 Aug 2005 11:23:02 +0200
>>>>> [EMAIL PROTECTED](Sven Luther)  said:
> This was caused by a bug in 2.6.12-1, which persisted during an upgrade to -5.
> 
> Can you try uninstalling all the linux-headers-2.6.12-1* packages, and
> reinstall the m ? This should solve the problem.

I tried
# apt-get 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 [EMAIL PROTECTED]



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, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-386
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages linux-headers-2.6.12-1-386 depends on:
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  linux-headers-2.6.12-12.6.12-5   Common architecture-specific heade

linux-headers-2.6.12-1-386 recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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

2005-07-20 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 packages tdiary depends on:
ii  libdpkg-ruby1.8   0.3.1  modules/classes for dpkg on ruby 1
ii  libuconv-ruby1.8  0.4.12-1   Unicode/EUC-JP translation module 
ii  rdtool0.6.16-3   RD document formatter
ii  ruby  1.8.2-1An interpreter of object-oriented 

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 (charmap=EUC-JP)

Versions of packages libapache2-mod-python2.3 depends on:
ii  apache2 2.0.54-4 next generation, scalable, extenda
ii  apache2-common  2.0.54-4 next generation, scalable, extenda
ii  apache2-mpm-worker [apache2 2.0.54-4 high speed threaded model for Apac
ii  debconf 1.4.30.13Debian configuration management sy
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  python2.3   2.3.5-3  An interactive high-level object-o

-- debconf information:
* libapache2-mod-python/enable_module: true


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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

2005-05-30 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:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-386
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages apache2 depends on:
ii  apache2-mpm-worker2.0.54-4   high speed threaded model for Apac

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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#308301: _subversion: cannot complete the first option of subcmds

2005-05-09 Thread Kazuhiro NISHIYAMA
Package: zsh
Version: 4.2.5-7
Severity: normal
Tags: patch

For example, `svn info -' does not include `--targets':
% svn info -
--config-dir  --recursive   -R

And, `svnadmin create --' does not include `--bdb-txn-nosync':
% svnadmin create --
--bdb-log-keep  --config-dir--fs-type


--- /usr/share/zsh/4.2.5/functions/Completion/Unix/_subversion  2005-04-27 
09:31:08.0 +0900
+++ _subversion 2005-05-09 18:00:29.630884507 +0900
@@ -92,7 +92,7 @@
   _svn_subcmd_usage=${${(M)${(f)"$(LC_MESSAGES=C _call_program options svn 
help $1)"}:#usage:*}#usage: $1 }
 
   _svn_subcmds=(
-${${=${${${(M)${(f)"$(LC_MESSAGES=C _call_program options svn help 
$1)"##*Valid options:}:#* :*}%% #:*}/ arg/:arg:}/(#b)-([[:alpha:]]) 
\[--([a-z-]##)\](:arg:)#/(--$match[2])-$match[1]$match[3] 
(-$match[1])--$match[2]$match[3]}[2,-1]}
+${=${${${(M)${(f)"$(LC_MESSAGES=C _call_program options svn help 
$1)"##*Valid options:}:#* :*}%% #:*}/ arg/:arg:}/(#b)-([[:alpha:]]) 
\[--([a-z-]##)\](:arg:)#/(--$match[2])-$match[1]$match[3] 
(-$match[1])--$match[2]$match[3]}
   )
 
   case $1 in;
@@ -169,7 +169,7 @@
   _svnadmin_subcmd_usage=${${(M)${(f)"$(LC_MESSAGES=C _call_program options 
svnadmin help $1)"}:#$1: usage:*}#$1: usage: svnadmin $1 }
 
   _svnadmin_subcmds=(
-${${=${${${(M)${(f)"$(LC_MESSAGES=C _call_program options svnadmin help 
$1)"##*Valid options:}:#*:*}%% #:*}/ arg/:arg:}/(#b)-([[:alpha:]]) 
\[--([a-z-]##)\](:arg:)#/(--$match[2])-$match[1]$match[3] 
(-$match[1])--$match[2]$match[3]}[2,-1]}
+${=${${${(M)${(f)"$(LC_MESSAGES=C _call_program options svnadmin help 
$1)"##*Valid options:}:#*:*}%% #:*}/ arg/:arg:}/(#b)-([[:alpha:]]) 
\[--([a-z-]##)\](:arg:)#/(--$match[2])-$match[1]$match[3] 
(-$match[1])--$match[2]$match[3]}
   )
 
   [[ "$_svnadmin_subcmd_usage" == *REPOS_PATH* ]] &&


-- 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, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages zsh depends on:
ii  debconf 1.4.30.13Debian configuration management sy
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libncurses5 5.4-4Shared libraries for terminal hand
ii  passwd  1:4.0.3-31sarge3 change and administer password and

-- debconf information:
  zsh/rcmove:


-- 
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, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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)

Versions of packages racc depends on:
ii  libruby1.8 [libracc-runtime-r 1.8.2-3Libraries necessary to run Ruby 1.
ii  ruby1.8   1.8.2-3Interpreter of object-oriented scr

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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   2005-03-23 17:23:00.782119753 +0900
@@ -99,7 +99,7 @@
 # tree for options for each alternative
 self.options_tv = self.gui.get_widget ('options_tv')
 self.options_model = gtk.TreeStore (gobject.TYPE_BOOLEAN,
-gobject.TYPE_STRING,
+gobject.TYPE_INT,
 gobject.TYPE_STRING)
 self.options_model.set_sort_column_id (self.PRIORITY,
gtk.SORT_DESCENDING)
@@ -319,6 +319,7 @@
 self.options_tv.append_column (column)
 
 cell_renderer = gtk.CellRendererText ()
+cell_renderer.set_property ('xalign', 0.9)
 column = gtk.TreeViewColumn (_('Priority'), cell_renderer,
  text=self.PRIORITY)
 column.set_sort_order (gtk.SORT_DESCENDING)
@@ -394,7 +395,7 @@
 iter = self.options_model.append (None)
 self.options_model.set (iter,
 self.CHOICE, is_chosen,
-self.PRIORITY, option['priority'],
+self.PRIORITY, int(option['priority']),
 self.OPTIONS, option['path'])
 
 # selects the first alternative on the list


-- 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)

Versions of packages galternatives depends on:
ii  python2.3.5-1An interactive high-level object-o
ii  python-glade2 2.4.1-2GTK+ bindings: Glade support

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



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 2.6.8-1-386
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages kazehakase depends on:
ii  libatk1.0-0 1.8.0-4  The ATK accessibility toolkit
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-6GCC support library
ii  libglib2.0-02.6.1-3  The GLib library of C routines
ii  libgtk2.0-0 2.4.14-2 The GTK+ graphical user interface
ii  libpango1.0-0   1.6.0-3  Layout and rendering of internatio
ii  libstdc++5  1:3.3.5-5The GNU Standard C++ Library v3
ii  mozilla-browser 2:1.7.5-1The Mozilla Internet application s

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#290696: libgtk-trayicon-ruby1.8: Segmentation fault when require "gtktrayicon"

2005-01-15 Thread Kazuhiro NISHIYAMA
Package: libgtk-trayicon-ruby1.8
Version: 0.1.0-1
Severity: important

Please rebuild this package.

Because I rebuild this package and
``ruby1.8 /usr/share/doc/libgtk-trayicon-ruby1.8/examples/hello.rb''
works well.


% ruby1.8 -e 'require "gtktrayicon"'
/usr/lib/ruby/1.8/i386-linux/gtktrayicon.so: [BUG] Segmentation fault
ruby 1.8.2 (2004-12-23) [i386-linux]

%


-- 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, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages libgtk-trayicon-ruby1.8 depends on:
ii  libatk1.0-01.8.0-4   The ATK accessibility toolkit
ii  libc6  2.3.2.ds1-20  GNU C Library: Shared libraries an
ii  libglib2.0-0   2.4.8-1   The GLib library of C routines
ii  libgtk2.0-02.4.14-2  The GTK+ graphical user interface 
ii  libpango1.0-0  1.6.0-3   Layout and rendering of internatio
ii  libruby1.8 1.8.1+1.8.2pre4-1 Libraries necessary to run the Rub

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]