Bug#1020283: leveldb-doc: fenced code blocks in Markdown are not converted

2022-09-19 Thread Nobuhiro Ban
Package: leveldb-doc
Version: 1.22-3
Severity: normal
Tags: patch

Dear Maintainer,

Some html files in the leveldb-doc package are converted from markdown files,
but fenced code blocks (``` code ```) are not converted.


These files are converted by 'markdown' command (from the discount package).
But this command doesn't handle fenced code blocks by default.

>From manpage of markdown:
> -f flags
>  Set or clear various translation flags.   The flags are in a
>  comma-delimited list, with an optional + (enable), - (disable),
>  or no (disable) lprefix on each flag.
(snip)
>  fencedcode  Allow fenced code blocks (not default).

Here is a patch to debian/rules:
---begin
@@ -45,7 +45,7 @@
echo "Convert md files to HTML"
for md in `ls debian/leveldb-doc/usr/share/doc/leveldb-doc/*.md`; do \
html=`echo $${md} | cut -d. -f1`.html; \
-   markdown $${md} >$${html}; \
+   markdown -f fencedcode $${md} >$${html}; \
done

 override_dh_auto_test:
---end


Regards,
Nobuhiro Ban



Bug#1014370: wordwarvi: shows wrong (negative) lines/sec value

2022-07-04 Thread Nobuhiro Ban
Package: wordwarvi
Version: 1.0.4-2
Severity: minor
Tags: patch

Dear Maintainer,

wordwarvi shows some metrics before quitting the game.
But the lines/sec value is negative, clearly wrong.

>ban@blackbox$ wordwarvi
(snip)
>363 frames / 12 seconds, 30.25 frames/sec
>Total lines = 476481, lines/sec = -1656883213.999712
>ban@blackbox$

This patch will fix it:
--- wordwarvi-1.0.4.orig/wordwarvi.c
+++ wordwarvi-1.0.4/wordwarvi.c
@@ -11340,7 +11340,7 @@ void really_quit()
  (0.0 + nframes) / (0.0 + end_time.tv_sec - start_time.tv_sec));
  printf("Total lines = %lu, lines/sec = %f\n", total_line_count,
  (double) total_line_count /
- (double) end_time.tv_sec - start_time.tv_sec);
+ (double) (end_time.tv_sec - start_time.tv_sec));
  destroy_event();
 }


Regards,
Nobuhiro Ban



Bug#1014331: wordwarvi: wrong manpage description about option --bw

2022-07-04 Thread Nobuhiro Ban
Package: wordwarvi
Version: 1.0.4-2
Severity: minor
Tags: patch

Dear Maintainer,

The manpage says:
>Options:
>   --bw   Render the game in black and white, as if on graph paper.

but this graph paper effect was removed.


The graph paper effect was introduced at [1].
And reverted the code later at [2], but the manpage was not reverted then.

[1] 
https://github.com/smcameron/wordwarvi/commit/7f0c6c661a14a416c1c6fabc70bd6a43c35eb49a
[2] 
https://github.com/smcameron/wordwarvi/commit/880a21f699b58c8aad10651cbd2a4461f8927a3e


This patch reverts wordwarvi.6 change in [1]:

--- wordwarvi-1.0.4.orig/wordwarvi.6
+++ wordwarvi-1.0.4/wordwarvi.6
@@ -26,7 +26,7 @@ in the cluster to do it all over again.
 .SH Options:
 .TP
 \fB\--bw\fR
-Render the game in black and white, as if on graph paper.
+No color, just black and white.
 .TP
 \fB\--blueprint\fR
 Render the game to look like a blueprint.



Regards,
Nobuhiro Ban



Bug#1008354: fossil: FTBFS: ./conftest__.c:3: undefined reference to `sqlite3_open'

2022-05-05 Thread Nobuhiro Ban
Thank you for your reply.
Understood.  I will wait for the next release.

2022年5月5日(木) 17:14 Barak A. Pearlmutter :
>
> Yes.
>
> I patched over the issue for now by just using the internal sqlite3
> library, so I think it can wait until the next official release to
> pick up the proper bug fix and go back to using the system sqlite3
> library.



Bug#1008354: fossil: FTBFS: ./conftest__.c:3: undefined reference to `sqlite3_open'

2022-05-04 Thread Nobuhiro Ban
Dear Maintainer,

This is a bug in the fossil configure tool, and fixed in upstream:
commit: https://fossil-scm.org/home/info/8af827342f4c4a77
forum: https://fossil-scm.org/forum/info/549da79dd9

cf. https://www.sqlite.org/src/info/4cbb3e3efeb40cc4


Regards,
Nobuhiro Ban



Bug#1003064: xshisen: cannot show the personal score

2022-01-03 Thread Nobuhiro Ban
Package: xshisen
Version: 1:1.51-7
Severity: normal
Tags: patch

Dear Maintainer,

xshisen (amd64) crashes when trying to show the personal score.


How to repeat
-

(1) If you have no ~/.xshisen.scores file, play the game once.
(2) Select Menu: Game -> Personal Score
or
hit Ctrl-t.


Analysis


It crashes in Score::PersonalStat(int) by segmentation fault.

>From the build log
>score.C: In member function ‘int Score::PersonalStat(int)’:
>score.C:622:1: warning: control reaches end of non-void function 
>[-Wreturn-type]
>  622 | }
>  | ^


According to the GCC manual, this causes undefined behavior.
So it may crash.

https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
> -Wreturn-type
(snip)
> Unlike in C, in C++, flowing off the end of a non-void function other than
> main results in undefined behavior even when the value of the function is
> not used.


How to fix
--

Inserting "return 0;" at the end of this function fixes this problem.

- Begin
--- xshisen-1.51.orig/score.C
+++ xshisen-1.51/score.C
@@ -619,6 +619,7 @@ Score::PersonalStat(int kind_of_game)
 bufp += strlen(bufp);
 *bufp = '\0';
 Popup(buf);
+    return 0;
 }

 int
- End


Regards,
Nobuhiro Ban



-- System Information:
Debian Release: bookworm/sid
  APT prefers testing-debug
  APT policy: (500, 'testing-debug'), (500, 'stable-security'), (500,
'stable-debug'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.15.0-2-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_FIRMWARE_WORKAROUND
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages xshisen depends on:
ii  libc6   2.33-1
ii  libgcc-s1   11.2.0-13
ii  libstdc++6  11.2.0-13
ii  libx11-62:1.7.2-2+b1
ii  libxm4  2.3.8-3
ii  libxpm4 1:3.5.12-1
ii  libxt6  1:1.2.0-1

xshisen recommends no packages.

xshisen suggests no packages.

-- debconf-show failed



Bug#977397: uim-el: missing *-uim in input-method-alist on Emacs 27

2020-12-14 Thread Nobuhiro Ban
Package: uim-el
Version: 1:1.8.8-6.1+b2
Severity: grave
Justification: renders package unusable
Tags: patch

Dear Maintainer,

I used the japanese-anthy-utf8-uim input-method on my Debian Emacs 26 env.
But after upgrading Emacs 27,
I cannot set input-method to japanese-anthy-utf8-uim.

(Same cause as #977257)

There is a problem at initializing uim-el.
So none of the input methods *-uim are prepared on startup.

>From *Message* buffer:
>Error while loading 50uim-el: Symbol’s function definition is void: 
>process-kill-without-query


How to fix:

Replace process-kill-without-query with set-process-query-on-exit-flag
in /usr/share/emacs/site-lisp/uim-el/*.el .
This patch fixes this problem.
- Begin
--- uim-1.8.8.orig/emacs/uim-helper.el
+++ uim-1.8.8/emacs/uim-helper.el
@@ -106,7 +106,7 @@
 (if (not proc)
 (error "uim.el: Couldn't invoke uim-el-helper-agent."))

-(process-kill-without-query proc)
+(set-process-query-on-exit-flag proc nil)

 ;; wait "OK"
 (let ((patience uim-startup-timeout) (ok nil))
--- uim-1.8.8.orig/emacs/uim.el
+++ uim-1.8.8/emacs/uim.el
@@ -488,7 +488,7 @@
 (error "uim.el: Couldn't invoke uim-el-agent."))

 ;; don't ask kill
-(process-kill-without-query proc)
+(set-process-query-on-exit-flag proc nil)

 ;; wait "OK"
 (let ((patience uim-startup-timeout) (ok nil))
- End


Regards,
Nobuhiro Ban




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

Kernel: Linux 5.9.0-4-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_FIRMWARE_WORKAROUND
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages uim-el depends on:
ii  emacs1:27.1+1-3
ii  emacs-gtk [emacsen]  1:27.1+1-3
ii  libc62.31-5
ii  libuim8  1:1.8.8-6.1+b2
ii  uim  1:1.8.8-6.1+b2
ii  uim-data 1:1.8.8-6.1

uim-el recommends no packages.

uim-el suggests no packages.

-- no debconf information



Bug#940884: anthy: garbled characters with anthy.el

2020-12-14 Thread Nobuhiro Ban
Package: anthy-el
Version: 1:0.4-2
Followup-For: Bug #940884

Hi,

> It seems that anthy-agent returns numerals and symbols with UTF-8
> and other characters with EUC-JP. Converting character encoding of
> src-util/rkhelper.c from UTF-8 to EUC-JP fixes the problem.

I think this bug has a major effect on the usability of this package.

(a) In UTF-8 env, most characters are broken
(b) In euc-jp env, numerals and symbols are broken

How to reproduce:
 a-1. Run emacs with LANG=ja_JP.UTF-8 or LANG=C.UTF-8
 a-2. Set input method to japanese-anthy (C-x RET C-\ japanese-anthy)
 a-3. Switch buffer to scratch (C-x b *scratch*)
 a-4. Enable input-method (C-\)
 a-5. Hit '1' 'a'
 a-6. It should show "|1あ", but you see broken characters "|1\244\242"

 b-1. Run emacs with LANG=ja_JP.eucJP
 (b-2 - b-5 : same as a-2 - a-5)
 b-6. It should show "|1あ", but you see broken characters "|鐚\221あ"


Regards,
Nobuhiro Ban



Bug#977258: libssreflect-coq: ABI break by coq binNMU

2020-12-13 Thread Nobuhiro Ban
Package: libssreflect-coq
Version: 1.11.0-2
Severity: grave
Justification: renders package unusable

Dear Maintainer,

I cannot use the ssreflect library in my Debian coq env (amd64 testing).

the code:
> Require Import mathcomp.ssreflect.ssreflect.

gets an error:

> Compiled library mathcomp.ssreflect.ssreflect (in file 
> /usr/lib/coq/user-contrib/mathcomp/ssreflect/ssreflect.vo) makes inconsistent 
> assumptions over library Coq.Init.Ltac



Additional information

libssreflect-coq 1.11.0-2 is built against coq 8.12.0-3+b2.
(buildd log: 
https://buildd.debian.org/status/fetch.php?pkg=ssreflect=all=1.11.0-2=1604474661=0
)

But the current coq version is 8.12.0-3+b3.

I think this package should depend on "libcoq-ocaml-",
because "coq-+" is insufficient for binNMUs.

I got the same issue before,
libssreflect-coq 1.11.0-1 (built against coq 8.12.0-3) + coq 8.12.0-3+b1.


Regards,
Nobuhiro Ban


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

Kernel: Linux 5.9.0-3-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_FIRMWARE_WORKAROUND
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libssreflect-coq depends on:
ii  coq [coq-8.12.0+4.11.1]  8.12.0-3+b3
ii  libcoq-ocaml 8.12.0-3+b3

libssreflect-coq recommends no packages.

libssreflect-coq suggests no packages.

-- debconf-show failed



Bug#977257: uim-el: "Active processes exist" prompt upon exiting emacs

2020-12-13 Thread Nobuhiro Ban
Package: uim-el
Version: 1:1.8.8-6.1+b2
Severity: normal

Dear Maintainer,

Emacs shows a confirmation message every time before exiting.

How to reproduce:
 1. Run "emacs -q" .
 2. Hit C-x C-c
 3. Then, you show the confirmation message like:
>Process [v] PID Status  BufferTTY  Thread  
>$
>uim-el-helpe... 100414  run  *uim-helper* /dev/pts/5   Main
>$
>
>-UUU:%%--F1  *Process List*   All L1 (Process Menu) 
>
>Active processes exist; kill them and exit anyway? (yes or no)


Additional information

>From *Message* buffer:
>Loading /etc/emacs/site-start.d/00debian.el (source)...done
>Loading /etc/emacs/site-start.d/50anthy-el.el (source)...done
>Loading /etc/emacs/site-start.d/50autoconf.el (source)...done
>Loading /etc/emacs/site-start.d/50cmake-data.el (source)...
>cmake-data removed but not purged, skipping setup
>Loading /etc/emacs/site-start.d/50cmake-data.el (source)...done
>Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
>Loading debian-ispell...
>Loading /var/cache/dictionaries-common/emacsen-ispell-default.el 
>(source)...done
>Loading debian-ispell...done
>Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...done
>Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...done
>Loading /etc/emacs/site-start.d/50emacs-mozc.el (source)...done
>Loading /etc/emacs/site-start.d/50python-docutils.el (source)...done
>Loading /etc/emacs/site-start.d/50riece.el (source)...done
>Loading /etc/emacs/site-start.d/50tcsh.el (source)...done
>Loading /etc/emacs/site-start.d/50uim-el.el (source)...
>../../usr/share/emacs/site-lisp/uim-el/uim-keymap.el: (lambda (y) ...) quoted 
>with ' rather than with #'
>../../usr/share/emacs/site-lisp/uim-el/uim-keymap.el: (lambda (x) ...) quoted 
>with ' rather than with #'
>../../usr/share/emacs/site-lisp/uim-el/uim-keymap.el: (lambda (w) ...) quoted 
>with ' rather than with #'
>../../usr/share/emacs/site-lisp/uim-el/uim-key.el: (lambda (x) ...) quoted 
>with ' rather than with #' [3 times]
>../../usr/share/emacs/site-lisp/uim-el/uim-preedit.el: (lambda (x) ...) quoted 
>with ' rather than with #'
>../../usr/share/emacs/site-lisp/uim-el/uim-candidate.el: (lambda (x) ...) 
>quoted with ' rather than with #' [5 times]
>../../usr/share/emacs/site-lisp/uim-el/uim-helper.el: (lambda (x) ...) quoted 
>with ' rather than with #' [2 times]
>../../usr/share/emacs/site-lisp/uim-el/uim.el: (lambda (x) ...) quoted with ' 
>rather than with #' [9 times]
>../../usr/share/emacs/site-lisp/uim-el/uim-leim.el: (lambda (x) ...) quoted 
>with ' rather than with #'
>uim.el: starting uim-el-helper-agent...
>Error while loading 50uim-el: Symbol’s function definition is void: 
>process-kill-without-query
>For information about GNU Emacs and the GNU system, type C-h C-a.


Regards,
Nobuhiro Ban



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

Kernel: Linux 5.9.0-3-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_FIRMWARE_WORKAROUND
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages uim-el depends on:
ii  emacs1:27.1+1-3
ii  emacs-gtk [emacsen]  1:27.1+1-3
ii  libc62.31-5
ii  libuim8  1:1.8.8-6.1+b2
ii  uim  1:1.8.8-6.1+b2
ii  uim-data 1:1.8.8-6.1

uim-el recommends no packages.

uim-el suggests no packages.

-- debconf-show failed



Bug#973544: www.debian.org: LTS Security Advisories RSS links to wrong locations

2020-11-01 Thread Nobuhiro Ban
Package: www.debian.org
Severity: normal

Dear Maintainer,

Debian LTS Security Advisories RSS (https://www.debian.org/lts/security/dla)
links to wrong locations.

For example:

> https://www.debian.org/security/2020/dla-2425; />

It should be https://www.debian.org/lts/security/2020/dla-2425 .


Regards,
Nobuhiro Ban



Bug#834053: openjdk-8: java.awt.Font#deriveFont(int style) corrupts font size

2019-02-17 Thread Nobuhiro Ban
Ping.

Or, should I send this report to upstream?


Regards,
Nobuhiro Ban



Bug#922525: procps: typo in sysctl.conf

2019-02-17 Thread Nobuhiro Ban
Package: procps
Version: 2:3.3.15-2
Severity: minor
Tags: patch

Dear Maintainer,

I found a (very) small typo in /etc/sysctl.conf.
Please apply this patch to fix.

--- procps/etc/sysctl.conf2018-04-10 20:49:54.0 +0900
+++ sysctl.conf2019-02-17 19:03:21.227782340 +0900
@@ -9,7 +9,7 @@
 # Uncomment the following to stop low-level messages on console
 #kernel.printk = 3 4 1 3

-##3
+###
 # Functions previously found in netbase
 #



Regards,
Nobuhiro Ban



Bug#922524: syslog-ng-core: warning message on start

2019-02-17 Thread Nobuhiro Ban
Package: syslog-ng-core
Version: 3.19.1-3
Severity: minor

Dear Maintainer,

syslog-ng (with default config files) warns on start.

/etc/syslog-ng/syslog-ng.conf:
># First, set some global options.
>options { chain_hostnames(off); flush_lines(0); use_dns(no); use_fqdn(no);
>  owner("root"); group("adm"); perm(0640); stats_freq(0);
>  bad_hostname("^gconfd$");
>};

Error message from /var/log/syslog (using systemd):
>Feb 18 01:10:07 blackbox syslog-ng[12242]: [2019-02-18T01:10:07.303183] 
>WARNING: With use-dns(no), dns-cache() will be forced to 'no' too!;



Adding "dns_cache(no);" into options { ... } resolves this matter.


Regards,
Nobuhiro Ban


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

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

Versions of packages syslog-ng-core depends on:
ii  libc6  2.28-6
ii  libcap21:2.25-2
ii  libcurl4   7.64.0-1
ii  libglib2.0-0   2.58.3-1
ii  libivykis0 0.42.3-1
ii  libjson-c3 0.12.1+ds-2
ii  libnet11.1.6+dfsg-3.1
ii  libpcre3   2:8.39-11
ii  libssl1.1  1.1.1a-1
ii  libsystemd0240-5
ii  libuuid1   2.33.1-0.1
ii  libwrap0   7.6.q-27
ii  lsb-base   10.2018112800
ii  syslog-ng-mod-journal  3.19.1-3
ii  util-linux 2.33.1-0.1

Versions of packages syslog-ng-core recommends:
ii  logrotate  3.14.0-4

Versions of packages syslog-ng-core suggests:
pn  syslog-ng-mod-add-contextual-data  
pn  syslog-ng-mod-amqp 
pn  syslog-ng-mod-examples 
pn  syslog-ng-mod-extra
pn  syslog-ng-mod-geoip
pn  syslog-ng-mod-geoip2   
pn  syslog-ng-mod-getent   
pn  syslog-ng-mod-graphite 
pn  syslog-ng-mod-map-value-pairs  
pn  syslog-ng-mod-mongodb  
pn  syslog-ng-mod-pacctformat  
pn  syslog-ng-mod-python   
pn  syslog-ng-mod-redis
pn  syslog-ng-mod-riemann  
pn  syslog-ng-mod-smtp 
pn  syslog-ng-mod-snmptrapd-parser 
pn  syslog-ng-mod-sql  
pn  syslog-ng-mod-stardate 
pn  syslog-ng-mod-stomp
pn  syslog-ng-mod-tag-parser   
pn  syslog-ng-mod-xml-parser   

-- no debconf information



Bug#845660: widelands: font-related error in options -> language

2017-03-07 Thread Nobuhiro Ban
Package: widelands
Version: 1:19+repack-2
Followup-For: Bug #845660

I think the location of amiri-font (symlink) is wrong.
This patch will fix the problem:

--- debian/rules.orig2017-03-08 00:30:00 +0900
+++ debian/rules2017-03-08 00:30:00 +0900
@@ -30,7 +30,7 @@
 # Take care of the fonts (use system-wide ones)
 # Not doing so would violate the Debian Policy, preventing the
package to enter the official repositories
 rm -r debian/tmp/usr/share/games/widelands/data/i18n/fonts/amiri
-ln -s /usr/share/fonts/opentype/fonts-hosny-amiri
debian/tmp/usr/share/games/widelands/data/i18n/fonts
+ln -s /usr/share/fonts/opentype/fonts-hosny-amiri
debian/tmp/usr/share/games/widelands/data/i18n/fonts/amiri
 rm -r debian/tmp/usr/share/games/widelands/data/i18n/fonts/DejaVu
 ln -s /usr/share/fonts/truetype/dejavu
debian/tmp/usr/share/games/widelands/data/i18n/fonts/DejaVu
 rm -r debian/tmp/usr/share/games/widelands/data/i18n/fonts/MicroHei



Bug#852342: java-package: make-jpkg strips binaries and breaks the work of Ops tools

2017-01-23 Thread Nobuhiro Ban
Package: java-package
Version: 0.55
Severity: important

In jessie (or later), you got stripped binary files with make-jpkg.
Stripping java binary breaks the work of Ops tools.
For example, you got an error to use the jmap command to dump heap.

I think this is a recurrence of #291238 (fixed in 0.20).


Before 0.55, make-jpkg directly calls dh_*; so minimum dh_* commands are used.

>From java-package-0.50+nmu2/lib/j2se.sh:
>echo "dh_testdir"
>dh_testdir
>echo "dh_testroot"
>dh_testroot
...(snip)

But 0.55 or after, make-jpkg calls dpkg-buildpackage;
so many other dh_* commands (including dh_strip) are called.


Regards,
Nobuhiro



Bug#834056: ansible: should suggest cowsay package

2016-08-11 Thread Nobuhiro Ban
Package: ansible
Version: 2.1.1.0-1
Severity: wishlist

Ansible has a cosmetic feature with cowsay,
so I think ansible package should suggest cowsay package.

>From /usr/share/doc/ansible/changelog.gz
>* cowsay is used by ansible-playbook if installed to improve output legibility 
>(try installing it)
>* you can set ANSIBLE_NOCOWS=1 if you want to disable cowsay if it is 
>installed.  Though no one should ever want to do this!  Cows are great!


Regards,
Nobuhiro



Bug#834053: openjdk-8: java.awt.Font#deriveFont(int style) corrupts font size

2016-08-11 Thread Nobuhiro Ban
Source: openjdk-8
Severity: normal
Tags: patch

Dear Maintainer,

Problem
===

java.awt.Font#deriveFont(int style) tries to create new Font instance
that has the same font size. But it uses rounded font size wrongly.
So derived font has different font size.
(openjdk-7 has a same problem.)


Sample code
===

import java.awt.Font;

public class DeriveFontProblem {
public static void main(String[] args) {
Font fontBase = new Font("Helvetica", Font.PLAIN, 1);
Font font105 = fontBase.deriveFont(10.5f);
System.out.println("font105 : size=" + font105.getSize2D());
Font font105Plain = font105.deriveFont(Font.PLAIN);
System.out.println("font105Plain: size=" + font105Plain.getSize2D());
}
}


Result of this code
===

Actual
>font105 : size=10.5
>font105Plain: size=11.0

Expected
>font105 : size=10.5
>font105Plain: size=10.5


Suggested fix
=

Font#deriveFont(int style) should use (float) "pointSize", not (int) "size".
Here is a patch to fix:

--- java/awt/Font.java.orig2016-08-12 01:03:10.703646834 +0900
+++ java/awt/Font.java2016-08-12 01:02:43.091646225 +0900
@@ -1933,7 +1933,7 @@
  */
 public Font deriveFont(int style){
 if (values == null) {
-   return new Font(name, style, size, createdFont, font2DHandle);
+   return new Font(name, style, pointSize, createdFont, font2DHandle);
 }
 AttributeValues newValues = getAttributeValues().clone();
 int oldStyle = (this.style != style) ? this.style : -1;


Reportbug output


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

Kernel: Linux 3.14-2-amd64 (SMP w/4 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: unable to detect



Bug#768066: rdesktop: does not handle Windows-Key

2014-11-04 Thread Nobuhiro Ban
Package: rdesktop
Version: 1.8.2-1
Severity: normal

Dear Maintainer,

Since 1.8.2-1, rdesktop does not send Windows-Key to remote machine.
(Old version 1.7.1-1 works well.)

This problem was fixed in upstream 1.8.3.
See: http://sourceforge.net/p/rdesktop/bugs/384/


Regards,
Nobuhiro


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



Bug#764118: wordwarvi: cannot start game (GTK+/GLib mutex problem)

2014-10-05 Thread Nobuhiro Ban
Package: wordwarvi
Version: 1.00+dfsg1-3
Severity: grave
Tags: patch
Justification: renders package unusable

Dear Maintainer,

Wordwarvi cannot start game.

$ LANG=C gdb -q wordwarvi
Reading symbols from wordwarvi...(no debugging symbols found)...done.
(gdb) r
Starting program: /usr/games/wordwarvi
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
No joystick...
(snip)
[New Thread 0x7fffe7567700 (LWP 3460)]
Decoding audio data...done.
Can't open /dev/input/event5: Permission denied
No rumble...
Attempt to unlock mutex that was not locked

Program received signal SIGABRT, Aborted.
0x75b8b077 in __GI_raise (sig=sig@entry=6)
at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
56../nptl/sysdeps/unix/sysv/linux/raise.c: No such file or directory.
(gdb) bt
#0  0x75b8b077 in __GI_raise (sig=sig@entry=6)
at ../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1  0x75b8c458 in __GI_abort () at abort.c:89
#2  0x75f8b95d in g_mutex_unlock_slowpath (mutex=optimized out,
prev=optimized out)
at /build/glib2.0-Dv_k6u/glib2.0-2.42.0/./glib/gthread-posix.c:1327
#3  0x7683ebbf in IA__gtk_main ()
at /build/gtk+2.0-zztKf7/gtk+2.0-2.24.24/gtk/gtkmain.c:1256
#4  0x00403934 in ?? ()
#5  0x75b77b45 in __libc_start_main (main=0x402b20, argc=1,
argv=0x7fffe3d8, init=optimized out, fini=optimized out,
rtld_fini=optimized out, stack_end=0x7fffe3c8) at libc-start.c:287
(snip)

This is caused by GLib's mutex implementation change.
See GNOME tracker about this [1].

Wordwarvi uses the wrong code (in [2]'s phrase),
so crashes in g_mutex_unlock_slowpath().


How to fix:
(a) Change gtk+2.0 to accept also wrong code (see [2] and Debian bug #763690)
or
(b) Change wordwarvi to use the correct way (in [2]'s phrase).

I wrote a patch for (b). Please apply attached patch.


[1] https://bugzilla.gnome.org/show_bug.cgi?id=735428
[2] https://github.com/GNOME/gtk/commit/79c3ff3c4ed74bbcc820dac2d5180fa4d48d55ec


-- System Information:
Debian Release: jessie/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'testing'), (500,
'stable'), (500, 'oldstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.14-2-amd64 (SMP w/4 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 wordwarvi depends on:
ii  libasound2   1.0.28-1
ii  libc62.19-11
ii  libglib2.0-0 2.42.0-1
ii  libgtk2.0-0  2.24.24-1
ii  libogg0  1.3.2-1
ii  libportaudio219+svn20140130-1
ii  libvorbis0a  1.3.2-1.4
ii  libvorbisfile3   1.3.2-1.4
ii  wordwarvi-sound  1.00+dfsg1-3

wordwarvi recommends no packages.

wordwarvi suggests no packages.

-- no debconf information


Regards,
Nobuhiro
--- wordwarvi-1.00+dfsg1.orig/wordwarvi.c
+++ wordwarvi-1.00+dfsg1/wordwarvi.c
@@ -14068,6 +14068,7 @@ int main(int argc, char *argv[])
g_thread_init(NULL);
 
 gdk_threads_init();
+gdk_threads_enter();
 
 gettimeofday(start_time, NULL);
 
@@ -14075,6 +14076,7 @@ int main(int argc, char *argv[])
  * and waits for an event to occur (like a key press or
  * mouse event). */
 gtk_main ();
+gdk_threads_leave();
 
 wwviaudio_stop_portaudio();
 free_debris_forms();


Bug#763899: jenkins: multiple security vulnerabilities

2014-10-03 Thread Nobuhiro Ban
Package: jenkins
Version: 1.565.2-2
Severity: grave
Tags: security

Dear Maintainer,

The upstream vendor announced a security advisory.
In this advisory, some vulnerabilities are rated critical severity.

https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2014-10-01
SECURITY-87/CVE-2014-3661 (anonymous DoS attack through CLI handshake)
SECURITY-110/CVE-2014-3662 (User name discovery)
SECURITY-127128/CVE-2014-3663 (privilege escalation in job configuration 
permission)
SECURITY-131/CVE-2014-3664 (directory traversal attack)
SECURITY-138/CVE-2014-3680 (Password exposure in DOM)
SECURITY-143/CVE-2014-3681 (XSS vulnerability in Jenkins core)
SECURITY-150/CVE-2014-3666 (remote code execution from CLI)
SECURITY-155/CVE-2014-3667 (exposure of plugin code)
SECURITY-159/CVE-2013-2186 (arbitrary file system write)
SECURITY-149/CVE-2014-1869 (XSS vulnerabilities in ZeroClipboard)

(SECURITY-113 is not about Jenkins core.)


Regards,
Nobuhiro


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



Bug#762323: openjdk-8-jre-headless: OpenJDK 8 returns incorrect TrueType font metrics

2014-09-27 Thread Nobuhiro Ban
Hi,

This problem was fixed in upstream of upstream, OpenJDK:
http://hg.openjdk.java.net/jdk9/client/jdk/rev/2559e1d816ae

The patch attached to #657854 will fix this problem.

Or, backporting above patch will also fix.


Regards,
Nobuhiro


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



Bug#762323: openjdk-8-jre-headless: OpenJDK 8 returns incorrect TrueType font metrics

2014-09-21 Thread Nobuhiro Ban
Package: openjdk-8-jre-headless
Version: 8u40~b04-2
Severity: normal
Tags: patch

Dear Maintainer,

In 2012, I reported #657854 (and #671443 for openjdk-6),
and this problem has been fixed for openjdk-7 package.

Now, Debian has a new openjdk-8 package, and this package has a same problem.

The result of sample code in #657854:

$ /usr/lib/jvm/java-8-openjdk-amd64/bin/java JavaApplication1
Ascent:  7.046875
Descent: 0.96875
$ /usr/lib/jvm/java-7-openjdk-amd64/bin/java JavaApplication1
Ascent:  7.0390625
Descent: 0.9609375
$ /usr/lib/jvm/java-6-openjdk-amd64/bin/java JavaApplication1
Ascent:  7.046875
Descent: 0.96875


The patch attached to #657854 will fix this problem.


-- System Information:
Debian Release: jessie/sid
  APT prefers stable
  APT policy: (500, 'stable'), (500, 'oldstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.14-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 openjdk-8-jre-headless depends on:
ii  ca-certificates-java  20140324
ii  java-common   0.52
ii  libc6 2.19-11
ii  libcups2  1.7.5-1
ii  libfreetype6  2.5.2-1.1
ii  libgcc1   1:4.9.1-14
ii  libjpeg8  8d1-1
ii  liblcms2-22.6-3
ii  libnss3   2:3.17-1
ii  libpcsclite1  1.8.11-3
ii  libstdc++64.9.1-14
ii  libx11-6  2:1.6.2-3
ii  libxext6  2:1.3.2-1
ii  libxi62:1.7.4-1
ii  libxrender1   1:0.9.8-1
ii  libxtst6  2:1.2.2-1
ii  multiarch-support 2.19-11
ii  tzdata-java   2014g-1
ii  zlib1g1:1.2.8.dfsg-2

openjdk-8-jre-headless recommends no packages.

Versions of packages openjdk-8-jre-headless suggests:
ii  fonts-dejavu-extra 2.34-1
pn  fonts-indicnone
ii  fonts-ipafont-gothic   00303-12
ii  fonts-ipafont-mincho   00303-12
ii  fonts-wqy-microhei [ttf-wqy-microhei]  0.2.0-beta-2
ii  fonts-wqy-zenhei [ttf-wqy-zenhei]  0.9.45-6
ii  libnss-mdns0.10-6
pn  openjdk-8-jre-jamvmnone

-- no debconf information


Regards,
Nobuhiro


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



Bug#759766: libnkf-perl: cannot load module on i386 arch

2014-08-29 Thread Nobuhiro Ban
Package: libnkf-perl
Version: 2.13-3+b1
Severity: grave

Dear Maintainer,

NKF module for perl doesn't work on i386 arch:
% perl -e 'use NKF'
Can't use an undefined value as a subroutine reference at 
/usr/lib/i386-linux-gnu/perl/5.20/DynaLoader.pm line 210.
END failed--call queue aborted at /usr/lib/i386-linux-gnu/perl5/5.20/NKF.pm 
line 210.
Compilation failed in require at -e line 1.
BEGIN failed--compilation aborted at -e line 1.

It works on amd64 arch.


Regards,
Nobuhiro


Versions of packages libnkf-perl depends on:
ii  libc6   2.19-10
ii  perl5.20.0-4
ii  perl-base [perlapi-5.20.0]  5.20.0-4


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



Bug#745897: closed by Hideki Yamane henr...@debian.org (Bug#745897: fixed in libstruts1.2-java 1.2.9-9)

2014-07-21 Thread Nobuhiro Ban
Hi all,

2014-06-16 20:27 GMT+09:00 Emmanuel Bourg ebo...@apache.org:
I got confirmation from the Struts developers that a new release using
commons-beanutils 1.9.2 is planned soon. So I'm going to prepare the
backport of commons-beanutils 1.9.2 in stable and wait for the new
release of Struts 1.x.

Security fix was committed over 1 month ago [1],
but not released (from upstream) yet.

So, I made a Debian fix using [1].


[1] http://svn.apache.org/r1603883


Regards,
Nobuhiro


745897.tar.gz
Description: GNU Zip compressed data


Bug#745897: fixed in libstruts1.2-java 1.2.9-9

2014-06-21 Thread Nobuhiro Ban
2014-06-15 15:35 GMT+09:00 Hideki Yamane henr...@debian.or.jp:
 This pattern will match to words other than class, eg. fooClass.
  Any class should be accepted, maybe it'd cause some
  trouble but non-class should not named as *class, IMHO.

That might be the case. This issue might be a very small problem.
Actually, Red Hat users do not seem to be troubled.

But I think users should be informed of it (in DSA, README.Debian
or somewhere).


Regards,
Nobuhiro


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



Bug#745897: closed by Hideki Yamane henr...@debian.org (Bug#745897: fixed in libstruts1.2-java 1.2.9-9)

2014-06-01 Thread Nobuhiro Ban
Hi,

- add struts-1.2.9-CVE-2014-0114.patch from Red Hat to fix CVE-2014-0114

http://sources.debian.net/src/libstruts1.2-java/1.2.9-9/debian/patches/struts-1.2.9-CVE-2014-0114.patch
+protected static final Pattern CLASS_ACCESS_PATTERN = Pattern
+.compile((.*\\.|^|.*|\\[('|\))class(\\.|('|\)]|\\[).*,
+Pattern.CASE_INSENSITIVE);

It's very strange regexp. Because we know (P1|.*|P2) == .* .
This pattern will match to words other than class, eg. fooClass.

I think this patch will cause a regression.


Regards,
Nobuhiro


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



Bug#745897: closed by Hideki Yamane henr...@debian.org (Bug#745897: fixed in libstruts1.2-java 1.2.9-9)

2014-06-01 Thread Nobuhiro Ban
Hi,

 Thanks for your comment, do you have any fix for it?

Security vendors (LAC Co.Ltd and Mitsui Bussan Secure Directions, Inc.)
suggest /(^|\W)[cC]lass\W/, so I'm personally using naive implementation
of this pattern: Pattern.compile(.*(^|\\W)[cC]lass\\W.*) .

But I'm not IT-security proofessional, so I can't say that this works
perfect, sorry.


Regards,
Nobuhiro


2014-06-01 15:40 GMT+09:00 Hideki Yamane henr...@debian.or.jp:
 Hi,

 On Sun, 1 Jun 2014 15:03:20 +0900
 Nobuhiro Ban ban.nobuh...@gmail.com wrote:
 It's very strange regexp. Because we know (P1|.*|P2) == .* .
 This pattern will match to words other than class, eg. fooClass.

 I think this patch will cause a regression.

  Thanks for your comment, do you have any fix for it?


 --
 Regards,

  Hideki Yamane henrich @ debian.or.jp/org
  http://wiki.debian.org/HidekiYamane


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



Bug#745897: libstruts1.2-java: CVE-2014-0094 affects Struts 1.x

2014-04-26 Thread Nobuhiro Ban
Package: libstruts1.2-java
Version: 1.2.9-8
Severity: grave
Tags: security

Dear Maintainer,

In https://security-tracker.debian.org/tracker/CVE-2014-0094 :

Notes
- libstruts1.2-java not-affected (Affects Struts 2.0.0 - Struts 2.3.16)

But CVE-2014-0094 is known to affect Struts 1.x.


Regards,
Nobuhiro


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



Bug#739068: Current package is unusable, but a few tricks can fix it

2014-03-01 Thread Nobuhiro Ban
Hi,

Megaglest wasn't starting because it couldn't find some files.

I think this bug should have grave severity,
because the megaglest binary is completely unusable to everyone.


Additional information:

dh_auto_configure in debhelper (= 9.20131213) sets -DCMAKE_BUILD_TYPE=None
for cmake (see: #701233), so some important make options (eg.
-DCUSTOM_DATA_INSTALL_PATH=...) are not passed to make command.

I tried rebuild this package with debhelper/stable (9.20120909),
and I confirmed that generated binary worked good.


Regards,
Nobuhiro


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



Bug#739067: jenkins: multiple security vulnerabilities

2014-02-15 Thread Nobuhiro Ban
Package: jenkins
Version: 1.509.2+dfsg-2
Severity: grave
Tags: security

Dear Maintainer,

The upstream vendor announced a security advisory.
In this advisory, some vulnerabilities are rated high severity.

https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2014-02-14
 SECURITY-105
   affected by CVE-2013-7285 reported against XStream
 SECURITY-76  SECURITY-88 / CVE-2013-5573
 SECURITY-109
 SECURITY-108
 SECURITY-106
 SECURITY-93
 SECURITY-89
 SECURITY-80
 SECURITY-79
 SECURITY-77
 SECURITY-75
 SECURITY-74
 SECURITY-73


Regards,
Nobuhiro


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



Bug#731204: jenkins: Watch file does not detect latest version correctly

2013-12-08 Thread Nobuhiro Ban
Hi,

I guess Debian adopted Jenkins LTS Release line (x.x.x) [1].
So, it seems unsuitable to watch mainline (x.x).

[1] https://wiki.jenkins-ci.org/display/JENKINS/LTS+Release+Line


Regards,
Nobuhiro


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



Bug#726125: wmtime: broken date display

2013-10-12 Thread Nobuhiro Ban
Package: wmtime
Version: 1.0b2-11
Severity: important

Dear Maintainer,

After updating wmtime to 1.0b2-11, its date-display is broken.
It only shows 2nd char of weekday-name and day-of-month,
i.e. it shows like  A|12-instead of SA|12-OCT.

See attached screenshot image:
  * (0,0)-(63,63): bad ( A|12-   )
  * (0,64)-(63,127): good (SA|12-OCT)

Workaround:
  (a) run with LANG=C
or
  (b) rebuild without debian/patches/wmtime-l10n.diff,
it shows collect date.

Additional info:
$ echo $LANG
ja_JP.UTF-8
$ date +'%^a|%d-%^b'
土|12-10月
$ LANG=C date +'%^a|%d-%^b'
SAT|12-OCT


Regards,
Nobuhiro



-- System Information:
Debian Release: jessie/sid
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'testing'), (500,
'stable'), (500, 'oldstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 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 wmtime depends on:
ii  libc6 2.17-93
ii  libx11-6  2:1.6.1-1
ii  libxext6  2:1.3.2-1
ii  libxpm4   1:3.5.10-1

wmtime recommends no packages.

wmtime suggests no packages.

-- no debconf information
attachment: wmtime.png

Bug#726125: wmtime: broken date display

2013-10-12 Thread Nobuhiro Ban
2013/10/13 Torrance, Douglas dtorra...@monmouthcollege.edu:
 What behavior would you prefer?  Should wmtime default to the English
 names when non-Latin characters are encountered?

Yes, it seems very reasonable behavior.


Regards,
Nobuhiro


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



Bug#719994: svn-all-fast-export: manpage still points to the old sample directory

2013-08-17 Thread Nobuhiro Ban
Package: svn-all-fast-export
Version: 1.0.10-2
Severity: minor

Dear Maintainer,

Sample rules-files were moved to /usr/share/doc/svn-all-fast-export/examples/.
But svn-all-fast-export(1) manpage still points to the old location.

   --rules
  The   rules   file   that   determines   what  goes  where.  See
  /usr/share/doc/svn-all-fast-export/samples



Regards,
Nobuhiro


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



Bug#706736: Acknowledgement (kFreeBSD users cannot know all options of running kernel)

2013-07-15 Thread Nobuhiro Ban
You can get options of FreeBSD kernel with config(8).
So full ('include'-expanded) config file can be made with this command.


CONFIG(8)   FreeBSD System Manager's Manual  CONFIG(8)

NAME
 config -- build system configuration files
(snip)
 -x kernelPrint kernel configuration file embedded into a kernel file.
  This option makes sense only if options INCLUDE_CONFIG_FILE
  entry was present in your configuration file.
(snip)


freebsd% config -x kfreebsd-9.0-2-amd64
options CONFIG_AUTOGENERATED
ident   Debian-amd64
machine amd64
cpu HAMMER
options ALTQ_PRIQ
options ALTQ_HFSC
options ALTQ_RIO
options ALTQ_RED
(snip)
options INCLUDE_CONFIG_FILE
(snip)



Regards,
Nobuhiro


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



Bug#706725: jenkins: multiple security vulnerabilities

2013-05-03 Thread Nobuhiro Ban
Package: jenkins
Version: 1.447.2+dfsg-3, 1.480.3+dfsg-1~exp2
Severity: grave
Tags: security

Dear Maintainer,

The upstream vendor announced a security advisory.
In this advisory, one vulnerability is rated critical severity,
two are high and one is medium.

https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2013-05-02
SECURITY-63 / CVE-2013-2034
SECURITY-67 / CVE-2013-2033
SECURITY-69 / CVE-2013-2034
SECURITY-71 / CVE-2013-1808

Regards,
Nobuhiro


Bug#706736: kFreeBSD users cannot know all options of running kernel

2013-05-03 Thread Nobuhiro Ban
Package: src:kfreebsd-8, src:kfreebsd-9
Severity: normal

Dear Maintainer,

FreeBSD kernel image (kfreebsd-image-*) packages ship with
/boot/config-* file. But this config file is incomplete;
many options are described in include'd files:
include GENERIC
include DEBIAN
and included config files are not shipped in the package.

So, users cannot know all options of running kernel.


Regards,
Nobuhiro


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



Bug#700761: jenkins: multiple security vulnerabilities

2013-02-16 Thread Nobuhiro Ban
Package: jenkins
Version: 1.447.2+dfsg-3
Severity: grave
Tags: security

Dear Maintainer,

The upstream vendor announced a security advisory.
In this advisory, three vulnerabilities are rated high severity,
one is medium and one is low.

See: 
https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2013-02-16


Regards,
Nobuhiro


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



Bug#697617: jenkins: remote code execution vulnerability

2013-01-07 Thread Nobuhiro Ban
Package: jenkins
Version: 1.447.2+dfsg-2
Severity: grave
Tags: security

Dear Maintainer,

The upstream vendor announced a security advisory, that is rated
critical severity.

See: 
https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2013-01-04


Regards,
Nobuhiro


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



Bug#696816: jenkins: Security issues were found in Jenkins core

2012-12-29 Thread Nobuhiro Ban
clone 696816 -1
reassign -1 jenkins-winstone 0.9.10-jenkins-37+dfsg-1
thanks

Dear Maintainer,

I found upstream SECURITY-44 (aka CVE-2012-6072) was from Winstone,
and it might be fixed in 0.9.10-jenkins-40.


https://github.com/jenkinsci/jenkins/commit/ad084edb571555e7c5a9bc5b27aba09aac8da98d
[FIXED SECURITY-44]
 Picked up a new version of Winstone

https://github.com/jenkinsci/winstone/commit/62e890b9589a844553d837d91b5f68eb3dba334e
[FIXED SECURITY-44]
 Do not allow the webapp to split HTTP header values into multiple lines. 
 Since there's no obvious escaping semantics here, we just drop those 
 characters, which is what Jetty does.


Regards,
Nobuhiro


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



Bug#696816: jenkins: Security issues were found in Jenkins core

2012-12-27 Thread Nobuhiro Ban
Package: jenkins
Version: 1.447.2+dfsg-2
Severity: grave
Tags: security

Dear Maintainer,

The upstream vendor announced a security advisory, that is rated high severity.

See: 
https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2012-11-20


Regards,
Nobuhiro


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



Bug#680632: jless: [regression] jless hangs if it reaches 524289 bytes

2012-10-08 Thread Nobuhiro Ban
Hi,

jless hangs if it reaches 524289 bytes. cpu is 100% and control-c
doesn't kill it. control-\ and kill(1) kill it. jless 382-iso262-2
works fine.

This is caused by an infinite loop in ch.c#fget_ch.
Internal list operation for cache buffers will not work well.

I guess there may be some build-env problems, perhaps GCC's optimizing
error, because:
  1. 382-iso262-2.1 binary (debian official) is broken,
  2. 382-iso262-2 binary (debian official) works well,
  3. 382-iso262-2 binary (that I rebuild from source) is broken,
and
  4. Setting -O1 instead of -O2 for compiling ch.c fixes this problem.

GCC version is:
ii  gcc-4.74.7.1-7  amd64GNU C compiler

Confirmed in both amd64 and i386.


Regards,
Nobuhiro


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



Bug#671443: Bug#657854: Acknowledgement (OpenJDK 6 and 7 returns incorrect TrueType font metrics)

2012-10-08 Thread Nobuhiro Ban
tags 671443 + patch
thanks

Hi,

I wrote patch for openjdk-7.

This patch (657854-openjdk7.patch) can also apply to openjdk-6 6b24-1.11.4-3.
So I add patch tag for issue #671443.


Regards,
Nobuhiro


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



Bug#680248: coq: please update README.Debian

2012-07-04 Thread Nobuhiro Ban
Package: coq
Version: 8.3.pl4+dfsg-2
Severity: minor

Dear Maintainer,

coq (8.3.pl4+dfsg-1) unstable; urgency=low
(snip)
   * Replace proofgeneral-coq by proofgeneral in dependencies

Package dependencies are replaced, but README.Debian still suggests
proofgeneral-coq. Please update this file too.


Coq frontends
-
For interactive use of coqtop, we suggest
 - a readline editor, such as ledit or rlwrap (or anything that provides the
   readline-editor virtual packages);
 - or the Proof-General (x)emacs mode, available in the proofgeneral-coq
   package.


Regards,
Nobuhiro



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



Bug#680258: smc: Wrong section in the menu setting

2012-07-04 Thread Nobuhiro Ban
Package: smc
Version: 1.9+git20120222-1+b1
Severity: normal

Dear Maintainer,

This game is classified as Games/Adventure in the Debian menu system [1].
But, shouldn't it be classified as Games/Action [2]?

[1]
$ cat /usr/share/menu/smc
?package(smc):needs=X11 section=Games/Adventure\
title=Secret Maryo Chronicles command=/usr/games/smc\
icon=/usr/share/pixmaps/smc/smc.xpm

[2] Debian Menu System Documentation:
file:///usr/share/doc/menu/html/ch3.html#s3.5
Games
  Games and recreations

  Action
Games that involve a lot of action and require fast reflexes.
  Examples: xsoldier, supertux, xmoto
  Adventure
Role playing and adventure games, interactive movies and stories, etc.
  Examples: beneath-a-steel-sky, egoboo, kq


Regards,
Nobuhiro



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



Bug#680279: projectl: does not display seven-segment alphabet

2012-07-04 Thread Nobuhiro Ban
Package: projectl
Version: 1.001.dfsg1-4
Severity: normal

Dear Maintainer,

Debian patch of projectl package disables seven-segment display of
alphabet letters, so no string is displayed. For example, the title
screen shows like 8 (or  ) instead of project l.

This problem was introduced by the patch for src/util/ascii.d (in
debian/patches/fixes.patch).

And I have a feeling of strangeness in many other parts of fixes.patch.
For example, low-information filename, adjusting the game speed, avoiding
import alias...


Minimal fix (not recommended):

Remove the patch block of Index: projectl-1.001.dfsg1/src/util/ascii.d
from debian/patches/fixes.patch.


Suggested fix:

Remove all patch blocks except Index: projectl-1.001.dfsg1/src/br/boot.d
from debian/patches/fixes.patch and rename this patch file.


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

Kernel: Linux 3.2.0-2-amd64 (SMP w/4 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 projectl depends on:
ii  libc6 2.13-33
ii  libgcc1   1:4.7.1-2
ii  libgl1-mesa-glx [libgl1]  8.0.3-1
ii  libsdl-mixer1.2   1.2.12-2
ii  libsdl1.2debian   1.2.15-5
ii  zlib1g1:1.2.7.dfsg-13

projectl recommends no packages.

projectl suggests no packages.

-- no debconf information


Regards,
Nobuhiro



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



Bug#671441: rdist invokes /usr/ucb/oldrdist, not /usr/bin/oldrdist

2012-05-03 Thread Nobuhiro Ban
Package: rdist
Version: 6.1.5-16+b1
Severity: normal

Dear Maintainer,

rdist of lenny invokes /usr/bin/oldrdist (from obsoleted 44bsd-rdist
package) for -Server, but rdist of squeeze invokes /usr/ucb/oldrdist.


Detail description:

rdist 6.1.5-13 (lenny version) invokes /usr/bin/oldrdist for -Server
(from 6.1.5-3, according to debian/changelog).

This was set by debian/rules:
build: patch build-stamp
build-stamp:
dh_testdir

DEFS_LOCAL=-D_PATH_OLDRDIST=\\\/usr/bin/oldrdist\\\ $(MAKE)

touch build-stamp

But rdist 6.1.5-16 (squeeze version) invokes /usr/ucb/oldrdist,
since env $DEFS_LOCAL is hidden by Makefile.local.

This problem was introduced by debian/patches/13-fedora-lfs.patch.
--- a/Makefile.local2009-07-03 13:08:33.0 +1000
+++ b/Makefile.local2009-07-03 13:20:40.0 +1000
@@ -20,7 +20,7 @@
 # Add any local definitions you want pass to the compiler to DEFS_LOCAL
 # below.  This includes those items found in config/config.h.
 #
-#DEFS_LOCAL= -DDIRECT_RCMD
+DEFS_LOCAL = -O2 -g -pipe -Wall -D_POSIX_SOURCE -D_GNU_SOURCE 
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64

 #
 # Add any local libraries that your system might need to LIBS_LOCAL below.


Suggested fix:

I attached modified version of 13-fedora-lfs.patch.

This changes 13-fedora-lfs.patch to move these options from DEFS_LOCAL (in
Makefile.local) to CFLAGS_OS (in config/mf.linux), because I think these
options are system-specific and DEFS shouldn't include non-defs option
like -O2 -g -pipe -Wall. And I confirmed kFreeBSD and Hurd is treated as
linux in build/os-type (by #415149), so these ports may use
config/mf.linux too.



Regards,
Nobuhiro


13-fedora-lfs.patch
Description: Binary data


Bug#671441: Acknowledgement (rdist invokes /usr/ucb/oldrdist, not /usr/bin/oldrdist)

2012-05-03 Thread Nobuhiro Ban
tags 671441 + patch



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



Bug#657854: Acknowledgement (OpenJDK 6 and 7 returns incorrect TrueType font metrics)

2012-05-03 Thread Nobuhiro Ban
clone 657854 -1
reassign 657854 openjdk-7-jre-headless
reassign -1 openjdk-6-jre-headless 6.26-0squeeze1
tags 657854 + patch
thanks

Hi,

I wrote patch for openjdk-7.


Regards,
Nobuhiro


657854-openjdk7.patch
Description: Binary data


Bug#668860: /usr/lib/os-probes/mounted/90bsd-distro: gawk: not found

2012-04-14 Thread Nobuhiro Ban
Package: os-prober
Version: 1.51
Severity: normal

Dear Maintainer,

I got the error in update-grub2:

% sudo update-grub2
Generating grub.cfg ...
(snip)
Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin
/usr/lib/os-probes/mounted/90bsd-distro: 17: 
/usr/lib/os-probes/mounted/90bsd-distro: gawk: not found
Found unknown Linux distribution on /dev/sda2
done


My debian selected mawk for awk.

un  awknone (no description available)
un  gawk   none (no description available)
ii  mawk   1.3.3-17   a pattern scanning and text processing langu



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

Kernel: Linux 3.2.0-2-amd64 (SMP w/4 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 os-prober depends on:
ii  libc6  2.13-27

os-prober recommends no packages.

os-prober suggests no packages.

-- debconf-show failed



Regards,
Nobuhiro



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



Bug#666174: criticalmass: Wrong section in the menu setting

2012-03-29 Thread Nobuhiro Ban
Package: criticalmass
Version: 1:1.0.0-1.4
Severity: normal

Dear Maintainer,

This game is classified as Games/Adventure in the Debian menu system [1].
But, shouldn't it be classified as Games/Action [2]?

[1]
$ cat /usr/share/menu/criticalmass
?package(criticalmass):needs=X11 section=Games/Adventure\
  title=Critical Mass command=/usr/games/critter

[2] Debian Menu System Documentation:
file:///usr/share/doc/menu/html/ch3.html#s3.5
Games
  Games and recreations

  Action
Games that involve a lot of action and require fast reflexes.
  Examples: xsoldier, supertux, xmoto
  Adventure
Role playing and adventure games, interactive movies and stories, etc.
  Examples: beneath-a-steel-sky, egoboo, kq


Regards,
Nobuhiro



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



Bug#657850: closed by David Prévot taf...@debian.org (Re: Bug#657850: typo of source package name in DSA-2335 (man2html/man2hhtml))

2012-02-05 Thread Nobuhiro Ban
reopen 657850
thanks

Dear maintainer,

Thank you for your quick response.
But the subject line is not fixed yet, so I reopen this bug.

not fixed DSA-2335-1 man2hhtml -- missing input sanitization
fixed man2hhtml [Link to http://packages.debian.org/src:man2hhtml]


Regards,
Nobuhiro



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



Bug#657866: freecol: cannot start the game with libwoodstox-java 1:4.1.2-2

2012-01-30 Thread Nobuhiro Ban
2012/1/30 Vincent Fourmond fourm...@gmail.com:
  Let's hope you were too late ;-)... I've just uploaded a fixed
 version. If you're impatient, you should be able to grab the new .deb
 in a few minutes/hours in

 http://incoming.debian.org

Thank you for uploading new version.

I tried freecol_0.10.0+dfsg-5_all.deb, and confirmed the problem is fixed.
Now I can start new game, load and save the .fsg files.


Regards,
Nobuhiro



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



Bug#657850: typo of source package name in DSA-2335 (man2html/man2hhtml)

2012-01-29 Thread Nobuhiro Ban
Package: www.debian.org
Severity: normal

Hi,

The web information of DSA-2335 contains some typos.
The right source package name is man2html.

http://www.debian.org/security/2011/dsa-2335
DSA-2335-1 man2hhtml -- missing input sanitization
(snip)
Affected Packages:
man2hhtml [Link to http://packages.debian.org/src:man2hhtml]

http://packages.debian.org/src:man2hhtml
Sorry, your search gave no results


Thanks,
Nobuhiro



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



Bug#657854: OpenJDK 6 and 7 returns incorrect TrueType font metrics

2012-01-29 Thread Nobuhiro Ban
Package: openjdk-7-jre
Version: 7~b147-2.0-1
Severity: normal

Dear Maintainer,

OpenJDK returns incorrect TrueType font height (greater than real value)
under some conditions, this makes JasperReports (Java reporting library)
not to work correctly on OpenJDK 6/7.


Problem
===

On OpenJDK JRE and using some TrueType font, JasperReports does not
display text element which height is just the same as the font size
eg. { height=8, size=8, font=IPA mincho }.

JasperReports checks the text size before drawing the text elements.
If (ascent + descent) of text is greater than the height of text
element, this text is not drawn.

In above case, Sun Java returns the same height (ascent + descent =
fontsize), but OpenJDK returns the text height greater than font size,
so not drawn.


Sample code (includes Japanese char)
===

import java.awt.Font;
import java.awt.font.FontRenderContext;
import java.awt.font.TextLayout;
public class JavaApplication1 {
public static void main(String[] args) throws Exception {
Font f = new Font(IPA明朝,Font.PLAIN, 8);
TextLayout layout = new TextLayout(IPA明朝, f,
new FontRenderContext(null, true, true));
System.out.println(Ascent:   + layout.getAscent());
System.out.println(Descent:  + layout.getDescent());
}
}


Result of this code
===

Sun Java 6 (sun-java6-jre 6.26-0squeeze1)
 Ascent:  7.0390625
 Descent: 0.9609375

OpenJDK 6 (openjdk-6-jre 6b24~pre2-1)
 Ascent:  7.046875
 Descent: 0.96875

OpenJDK 7 (openjdk-7-jre 7~b147-2.0-1)
 Ascent:  7.046875
 Descent: 0.96875

Sun Java returns correct height, but OpenJDK returns greater value
than Sun's.


Analysis of Source code
===

In OpenJDK6/7 native method sun.font.FreetypeFontScaler.getFontMetricsNative():

jdk/src/share/native/sun/font/freetypeScaler.c
JNIEXPORT jobject JNICALL
Java_sun_font_FreetypeFontScaler_getFontMetricsNative(
JNIEnv *env, jobject scaler, jobject font2D,
jlong pScalerContext, jlong pScaler) {
(snip)
/* ascent */
ax = 0;
ay = -(jfloat) FT26Dot6ToFloat(FT_MulFix(
   ((jlong) scalerInfo-face-ascender + bmodifier/2),
   (jlong) scalerInfo-face-size-metrics.y_scale));
/* descent */
dx = 0;
dy = -(jfloat) FT26Dot6ToFloat(FT_MulFix(
   ((jlong) scalerInfo-face-descender + bmodifier/2),
   (jlong) scalerInfo-face-size-metrics.y_scale));
(snip)
metrics = (*env)-NewObject(env,
sunFontIDs.strikeMetricsClass,
sunFontIDs.strikeMetricsCtr,
ax, ay, dx, dy, bx, by, lx, ly, mx, my);

return metrics;
}

This code uses FT_MulFix to convert size. But FT_MulFix sometimes rounds
up and loses precision.

In FreeType2's FT_MulFix:

freetype-2.4.8/src/base/ftcalc.c
   c = (FT_Long)( ( (FT_Int64)a * b + 0x8000L )  16 );

If both ascent and descent are rounded up, (ascent + descent) is greater
than original height.

In the sample case (IPA mincho font),
  bmodifier = 0
  scalerInfo-face-ascender = 1802L
  scalerInfo-face-descender = -246L
  scalerInfo-face-size-metrics.y_scale = 16384L

In this case, 1802 mod 4 = 2 and 246 mod 4 = 2, so both are rounded up.
This causes (ay + dy)  font-size.

(Note: (Sun) 1802.0/256.0 = 7.0390625, (OpenJDK) 1804.0/256.0 = 7.046875)


Suggested fix
=

 Fix to keep the precision in the font metrics conversion in
 Java_sun_font_FreetypeFontScaler_getFontMetricsNative().


Version of packages
===

OpenJDK:
  see below.

JasperReports:
  upstream 4.1.3 jar.

IPA TrueType fonts:
  ii  fonts-ipafont  00303-5
  ii  fonts-ipafont-gothic   00303-5
  ii  fonts-ipafont-mincho   00303-5


Reportbug output


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

Kernel: Linux 3.1.0-1-amd64 (SMP w/4 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 openjdk-7-jre depends on:
ii  libaccess-bridge-java-jni  1.26.2-8
ii  libasound2 1.0.24.1-4
ii  libatk1.0-02.2.0-2
ii  libc6  2.13-24
ii  libcairo2  1.10.2-6.2
ii  libcups2   1.5.0-13
ii  libfontconfig1 2.8.0-3
ii  libfreetype6   2.4.8-1
ii  libgdk-pixbuf2.0-0 2.24.0-2
ii  libgif44.1.6-9
ii  libglib2.0-0   2.30.2-4
ii  libgtk2.0-02.24.8-3
ii  libjpeg8   8c-2
ii  libpango1.0-0  1.29.4-2
ii  libpng12-0 1.2.46-4
ii  libpulse0  1.0-4
ii  libx11-6   2:1.4.4-4
ii  libxext6   2:1.3.0-3
ii  libxi6 2:1.4.5-1
ii  

Bug#657866: freecol: cannot start the game with libwoodstox-java 1:4.1.2-2

2012-01-29 Thread Nobuhiro Ban
Package: freecol
Version: 0.10.0+dfsg-4
Severity: important

Dear Maintainer,

After updating libwoodstox-java to 1:4.1.2-2,
FreeCol won't to start the game (new / load game).
(Tested JREs: OpenJDK6, 7, Sun Java 6).

Downgrading libwoodstox-java (to 1:3.9.2.dfsg-2) fixes this problem.


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

Kernel: Linux 3.1.0-1-amd64 (SMP w/4 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 freecol depends on:
ii  default-jre [java6-runtime]1:1.6-46
ii  fonts-liberation   1.07.0-2
ii  java-wrappers  0.1.24
ii  libcommons-cli-java1.2-3
ii  libcortado-java0.6.0-1
ii  libmiglayout-java  3.7.4-2
ii  libwoodstox-java   1:4.1.2-2
ii  openjdk-6-jre [java6-runtime]  6b24~pre2-1
ii  openjdk-7-jre [java6-runtime]  7~b147-2.0-1
ii  sun-java6-jre [java6-runtime]  6.26-0squeeze1

freecol recommends no packages.

freecol 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#635114: fixed in picosat 936-3

2012-01-29 Thread Nobuhiro Ban
(I sent previous email only to control@..., so I resend the message
body to 635114@...)

Dear maintainer,

picomus binary is still missing in 936-3. Only the man file is provided.
I think that the entry for picomus binary is missing in debian/install.

Regards,
Nobuhiro



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



Bug#657866: freecol: cannot start the game with libwoodstox-java 1:4.1.2-2

2012-01-29 Thread Nobuhiro Ban
2012/1/30 Vincent Fourmond fourm...@gmail.com:
 On Sun, Jan 29, 2012 at 3:33 PM, Vincent Fourmond fourm...@gmail.com wrote:
 On Sun, Jan 29, 2012 at 2:46 PM, Nobuhiro Ban ban.nobuh...@gmail.com wrote:
 After updating libwoodstox-java to 1:4.1.2-2,
 FreeCol won't to start the game (new / load game).
 (Tested JREs: OpenJDK6, 7, Sun Java 6).

 Downgrading libwoodstox-java (to 1:3.9.2.dfsg-2) fixes this problem.

  That's pretty annoying, since I had checked that everything was fine...

  Could you please post the contents of FreeCol.log ?  (it should be
 located in ~/.freecol)

  Could you please also try to run freecol from a terminal (just
 freecol) and post the terminal output once you've tried loading ?

  OK, I've got it right.

  I'm uploading a fixed version ASAP.

  Cheers,

      Vincent

Thank you for your prompt response.

I got the log files. While it might be too late, I'll attach it.
 * new/  : new game
 * load/ : load the saved game.

These files contain some multi-byte char (LANG=ja_JP.UTF-8),
because LANG=C freecol does not find any save files.


Regards,
Nobuhiro


freecol-log.tgz
Description: GNU Zip compressed data


Bug#636959: typo of source package name in DSA-2286 (phpmyadmin/phpymadmin)

2011-08-07 Thread Nobuhiro Ban
Package: www.debian.org
Severity: normal

Hi,

The web information of DSA-2286 contains some typos.
The right source package name is phpmyadmin.

http://www.debian.org/security/2011/dsa-2286
DSA-2286-1 phpymadmin -- several vulnerabilities
(snip)
Affected Packages:
phpymadmin [Link to http://packages.debian.org/src:phpymadmin]
(snip)
We recommend that you upgrade your phpymadmin packages.

http://packages.debian.org/src:phpymadmin returns:
Sorry, your search gave no results

Thanks,
Nobuhiro



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



Bug#631696: filezilla: crashes after downloading files

2011-06-26 Thread Nobuhiro Ban
Package: filezilla
Version: 3.3.5.1-1
Severity: important
Tags: patch

Filezilla often crashed after downloading files in my environment.

I found that locales/ja_JP.po contains %m$-format (c-format to change
the index of argument) and wxFormatConverter does not understand it.

So I fixed msgstrs in the po file not to use %m$-format.
Since I installed fixed version in my machine, Filezilla have not crashed.


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (120, 'testing'), (110, 'unstable')
Architecture: i386 (i686)

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

Versions of packages filezilla depends on:
ii  filezilla-common3.3.5.1-1Architecture independent files for
ii  libatk1.0-0 2.0.0-1  The ATK accessibility toolkit
ii  libc6   2.13-7   Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-6 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.4.12-2 simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.2generic font configuration library
ii  libfreetype62.4.4-1  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.6.0-10   GCC support library
ii  libgdk-pixbuf2.0-0  2.23.3-3 GDK Pixbuf library
ii  libglib2.0-02.28.6-1 The GLib library of C routines
ii  libgnutls26 2.10.5-1+b1  the GNU TLS library - runtime libr
ii  libgtk2.0-0 2.24.4-3 The GTK+ graphical user interface
ii  libidn111.20-1   GNU Libidn library, implementation
ii  libpango1.0-0   1.28.3-6 Layout and rendering of internatio
ii  libstdc++6  4.6.0-10 The GNU Standard C++ Library v3
ii  libwxbase2.8-0  2.8.10.1-3.1 wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-0   2.8.10.1-3.1 wxWidgets Cross-platform C++ GUI t

Versions of packages filezilla recommends:
ii  xdg-utils1.1.0~rc1-2 desktop integration utilities from

filezilla suggests no packages.

-- no debconf information


filezilla-3.3.5.1_locales_ja_JP.po.patch
Description: Binary data


Bug#631718: filezilla: passes non-UTF8 strings to D-Bus Message

2011-06-26 Thread Nobuhiro Ban
Package: filezilla
Version: 3.3.5.1-1
Severity: normal
Tags: patch

(I preliminarily applied the patch attached in #631696(another important bug).)

After finished downloading files, Filezilla emits a notify message to the
desktop. But this does not work well if LANG=ja_JP.eucJP. And the following
message is displayed to the terminal twice:
process 4283: arguments to dbus_message_iter_append_basic() were incorrect, 
assertion _dbus_check_is_valid_utf8 (*string_p) failed in file 
../../dbus/dbus-message.c line 2526.
This is normally a bug in some application using the D-Bus library.

The backtrace just before the warning (some Japanese chars are included):
Breakpoint 2, 0xb7f030b0 in dbus_message_iter_append_basic ()
   from /lib/libdbus-1.so.3
(gdb) bt
#0  0xb7f030b0 in dbus_message_iter_append_basic () from /lib/libdbus-1.so.3
#1  0x0821ca7c in wxDBusMessage::AddString (this=0x8a07340,
value=0x86fa8d0 転\301\367\275\252了) at wxdbusmessage.cpp:224
#2  0x08219132 in CDesktopNotificationImpl::EmitNotifications (this=0x8a79568)
at desktop_notification.cpp:126
#3  0x08219519 in CDesktopNotificationImpl::Notify (this=0x8a79568,
summary=..., body=..., category=...) at desktop_notification.cpp:101

value=0x86fa8d0 of #1 was encoded by EUC-JP, not UTF-8.
That is incorrect.


Here is a patch to fix this:

--- filezilla-3.3.5.1.orig/src/dbus/desktop_notification.cpp
+++ filezilla-3.3.5.1/src/dbus/desktop_notification.cpp
@@ -123,13 +123,13 @@ void CDesktopNotificationImpl::EmitNotif
call-AddString(FileZilla);
call-AddUnsignedInt(0);
call-AddString(filezilla);
-   call-AddString(notification.summary.mb_str());
-   call-AddString(notification.body.mb_str());
+   call-AddString(notification.summary.mb_str(wxConvUTF8));
+   call-AddString(notification.body.mb_str(wxConvUTF8));
call-AddArrayOfString(0, 0);

if (notification.category != _T())
{
-   const wxWX2MBbuf category = notification.category.mb_str();
+   const wxWX2MBbuf category = 
notification.category.mb_str(wxConvUTF8);
const char *hints[2];
hints[0] = category;
hints[1] = (const char*)category;


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (120, 'testing'), (110, 'unstable')
Architecture: i386 (i686)

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

Versions of packages filezilla depends on:
ii  filezilla-common3.3.5.1-1Architecture independent files for
ii  libatk1.0-0 2.0.0-1  The ATK accessibility toolkit
ii  libc6   2.13-7   Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-6 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.4.12-2 simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.2generic font configuration library
ii  libfreetype62.4.4-1  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.6.0-10   GCC support library
ii  libgdk-pixbuf2.0-0  2.23.3-3 GDK Pixbuf library
ii  libglib2.0-02.28.6-1 The GLib library of C routines
ii  libgnutls26 2.10.5-1+b1  the GNU TLS library - runtime libr
ii  libgtk2.0-0 2.24.4-3 The GTK+ graphical user interface
ii  libidn111.20-1   GNU Libidn library, implementation
ii  libpango1.0-0   1.28.3-6 Layout and rendering of internatio
ii  libstdc++6  4.6.0-10 The GNU Standard C++ Library v3
ii  libwxbase2.8-0  2.8.10.1-3.1 wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-0   2.8.10.1-3.1 wxWidgets Cross-platform C++ GUI t

Versions of packages filezilla recommends:
ii  xdg-utils1.1.0~rc1-2 desktop integration utilities from

filezilla 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#234470: os prober detects ufs partitions since 1.20

2011-01-25 Thread Nobuhiro Ban
I wrote:
please support *BSD
Subject: os prober detects ufs partitions since 1.20
Detecting UFS partitions is not the same as detecting *BSD.

but, in fact, os-prober does not detect UFS partitions.

In detail, mount -t ufs needs -o ufstype=XXX option, so
/usr/lib/os-probes/50mounted-tests fails to mount these partitions.

From /var/log/messages:
Jan 25 22:08:05 localhost os-prober: debug: os detected by 
/usr/lib/os-probes/50mounted-tests
Jan 25 22:08:05 localhost os-prober: debug: running 
/usr/lib/os-probes/50mounted-tests on /dev/sda6
Jan 25 22:08:05 localhost kernel: [ 2498.496128] You didn't specify the type 
of your ufs filesystem
Jan 25 22:08:05 localhost kernel: [ 2498.496131]
Jan 25 22:08:05 localhost kernel: [ 2498.496132] mount -t ufs -o 
ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|nextstep-cd|openstep ...
Jan 25 22:08:05 localhost kernel: [ 2498.496134]
Jan 25 22:08:05 localhost kernel: [ 2498.496135] WARNING Wrong ufstype 
may corrupt your filesystem, default is ufstype=old
Jan 25 22:08:05 localhost kernel: [ 2498.496449] ufs_read_super: bad magic 
number


Regards,
Nobuhiro



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



Bug#234470: os prober detects ufs partitions since 1.20

2011-01-23 Thread Nobuhiro Ban
reopen 234470
thanks

please support *BSD

Subject: os prober detects ufs partitions since 1.20

Detecting UFS partitions is not the same as detecting *BSD.

os-prober (~1.42) did not detect FreeBSD partitions,
so I had to write grub menu entries manually.

% sudo os-prober
/dev/sda1:Debian GNU/Linux (squeeze/sid):Debian:linux

os-prober detects the partition of old Debian only, no FreeBSD partition.
(I have two IDE hard disks on the PC, and use Debian on sdb1.)

% cat /etc/grub.d/08_otheros
#! /bin/sh

cat EOF
menuentry FreeBSD {
insmod part_bsd
set root=(hd1,msdos2,bsd1)
kfreebsd /boot/loader
}

menuentry FreeBSD chain {
set root=(hd1,msdos2)
chainloader +1
}

EOF


** version
ii  os-prober  1.42   utility to detect other OSes on a set of dri

** disk partitions
sda1 : EXT3 Debian GNU/Linux (old) squeeze
sda2 : FreeBSD 6
  sda6 : UFSv2 /
  sda7 : swap
  sda8 : UFSv2 /usr
  sda9 : UFSv2 /var
sda3 :
  sda5 : swap

sdb1 : EXT3 Debian GNU/Linux squeeze
sdb2 : FreeBSD 8
  sdb7 : UFSv2 /
  sdb8 : swap
  sdb9 : UFSv2 /var
  sdb10: UFSv2 /tmp
  sdb11: UFSv2 /usr
sdb3 :
  sdb5 : EXT2 data
  sdb6 : swap


Regards,
Nobuhiro



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



Bug#602579: xmms2-plugin-xspf: Typo in the short description

2010-11-05 Thread Nobuhiro Ban
Package: xmms2-plugin-xspf
Version: 0.5DrLecter-2
Severity: minor

Hi,

The short description of xmms2-plugin-xspf says:
 Description: XMMS2 - XSPF playist plugin

It says playist, but I think it should be playlist.

(This is found during the DDTSS translation process.)


Thanks,
Nobuhiro



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



Bug#601914: libisofs6: Incorrect package description

2010-10-30 Thread Nobuhiro Ban
Package: libisofs6
Version: 0.6.2.1-1
Severity: minor

Hi,

The short description of libisofs6 says:
 Description: library to create ISO9960 images

It says ISO9960, but I think it should be ISO9660.

(This is found during the DDTSS translation process.)


Thanks,
Nobuhiro



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



Bug#592058: libxqdbm3c2: Incorrect package description

2010-08-07 Thread Nobuhiro Ban
Package: libxqdbm3c2
Version: 1.8.77-1
Severity: minor

Hi,

The description of libxqdbm3c2 says:
 This is the runtime package for programs that use the DQBM
 database library.  This is only for programs which use the C++ interface.

It says DQBM, but I think it should be QDBM.

(This is found during the DDTSS translation process.)


Thanks,
Nobuhiro



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




Bug#588605: libgnomecanvas2-dbg: Incorrect package description

2010-07-10 Thread Nobuhiro Ban
Package: libgnomecanvas2-dbg
Version: 2.30.1-1
Severity: minor

Hi,

The short description of libgnomecanvas2-dbg says:
Description: A powerful object-oriented display - documentation files

But this is a *-dbg package, not *-doc package.


(This is found during the DDTSS translation process.)


Thanks,
Nobuhiro



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



Bug#587646: gir1.0-evince-2.30: Duplicated 'Description:' strings in the control file

2010-06-30 Thread Nobuhiro Ban
Package: gir1.0-evince-2.30
Version: 2.30.1-2
Severity: minor

Hi,

In the control file (debian/control.in), the Description line starts
with Description: Description::

Package: gir1.0-evince-2.30
(snip)
Description: Description: GObject introspection data for the libevince library
 This package contains introspection data for the libevince library.
 .
(snip)

I think that one of the duplicated tags should be removed.


Thanks,
Nobuhiro



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



Bug#587202: libdb4.6-java-gcj: Incorrect version string in the description

2010-06-25 Thread Nobuhiro Ban
Package: libdb4.6-java-gcj
Version: 4.6.21-11
Severity: minor

Hi,

The package description says:
This package provides the Java interface for the Berkeley v4.4 database
library.

But, I think that it should be 'Berkeley v4.6 database'.


P.S.
This is found during the DDTSS translation process.


Thanks,
Nobuhiro



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



Bug#587203: libdb4.5-java-gcj: Incorrect version string in the description

2010-06-25 Thread Nobuhiro Ban
Package: libdb4.5-java-gcj
Version: 4.5.20-13
Severity: minor

(similar to #587202)

Hi,

The package description says:
This package provides the Java interface for the Berkeley v4.4 database
library.

But, I think that it should be 'Berkeley v4.5 database'.


Thanks,
Nobuhiro



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



Bug#575468: armagetronad-common: The description is incorrect.

2010-03-25 Thread Nobuhiro Ban
Package: armagetronad-common
Version: 0.2.8.3.1-1
Severity: minor

Hi,

The package description says:
This package contains the common configuration files and documentation shared
between the armagetronad and armagetronad-server packages.

But there is no armagetronad-server package.
I think it menas the armagetronad-dedicated package.


Thanks,
Nobuhiro



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



Bug#568395: packages.debian.org: cannot see the 'squeeze' binary package information

2010-02-04 Thread Nobuhiro Ban
Package: www.debian.org
Severity: normal

I found a package which name is 'squeeze' (same as the name of next release)
and I got the src info from http://packages.debian.org/source/stable/squeeze:
Source Package: squeeze (0.2.3-5)

The following binary packages are built from this source package:

squeeze
modern and advanced archive manager for Xfce

But, I cannot follow the link to binary package 'squeeze'
(http://packages.debian.org/lenny/squeeze):
Forbidden

You don't have permission to access /lenny/squeeze on this server.


P.S.

I can get http://packages.debian.org/lenny/x11/squeeze from the x11
section list http://packages.debian.org/lenny/x11/ .

And I can get the pages of other releases,
http://packages.debian.org/squeeze/squeeze and
http://packages.debian.org/sid/squeeze .



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



Bug#567754: picosat: Shipped without core and proof support

2010-01-30 Thread Nobuhiro Ban
Package: picosat
Version: 913-1
Severity: normal

Dear maintainer,

The package description says:

Description: SAT solver with proof and core support

and the help message shows:

% picosat -h
usage: picosat [ option ... ] [ input ]
(snip)
  -t trace   generate compact proof trace file
  -T trace   generate extended proof trace file
  -r trace   generate reverse unit propagation proof file
  -c coregenerate clausal core file in DIMACS format
  -V coregenerate file listing core variables
  -U coregenerate file listing used variables

but I cannot get the proof or core.

% echo p cnf 1 2 1 0 -1 0 | picosat -c core.txt
(snip)
c writing clausal core to 'core.txt'
*** picosat: compiled without trace support
Abort


How to fix:

(a) Modify the configure file s/satcompetition=yes/satcompetition=no/
(this may be an upstream release bug that can not be disabled the
 satcompetition mode by any configure option).
  And
(b) Remove CFLAGS in debian/rules file not to pass this variable to the
configure script.


Additional comment:

Enabling trace support will cause some performance drop (so disabled
for SAT competition). It is a trade-off.
Could you please include two executable binary of both trace on and off
in the picosat package (or in the separated two packages) ?


Regards,
Nobuhiro



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



Bug#544190: nagios3-common: Junk bytes in apache2.conf

2009-08-29 Thread Nobuhiro Ban
Package: nagios3-common
Version: 3.0.6-4~lenny2
Severity: minor

My pager shows:

 % less /etc/nagios3/apache2.conf

# apache configuration for nagios 3.x
# note to users of nagios 1.x and 2.x:
#   throughout this file are commented out sections which preserve
#   backwards compatibility with bookmarks/config forEE8080older 
nagios versios.
(snip)

There are junk bytes (EE 80 80) in apache2.conf. Please remove them.



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



Bug#538398: coq: The description in README.Debian about proofgeneral is old.

2009-07-25 Thread Nobuhiro Ban
Package: coq
Version: 8.2.pl1+dfsg-2
Severity: minor

* A description of the incorrect behavior:

/usr/share/doc/coq/README.Debian says that there is no official Debian
package of Proof General yet.

Coq frontends
-
For interactive use of coqtop, we suggest
- either the Debian cle package
- or the Proof-General (x)emacs mode, which unfortunately can not be
distributed by Debian for copyright reasons. However, a Debian package
might become available at proof general home page in the future
(http://zermelo.dcs.ed.ac.uk/~proofgen)

But this information is old. The package proofgeneral-coq is available
now and coq recommends this package. Please update this section of
README.Debian.


* A suggested fix:

I found a diff in the net. See
https://gforge.inria.fr/plugins/scmsvn/viewcvs.php/trunk/distrib/debian/README.Debian?root=coqrev=3637r1=2288r2=3637


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


Versions of packages coq depends on:
ii  coq-theories  8.2.pl1+dfsg-2 proof assistant for higher-order l
ii  emacsen-common1.4.19 Common facilities for all emacsen
ii  libc6 2.9-21 GNU C Library: Shared libraries
ii  ocaml-base-nox [ocaml-bas 3.11.1-2   Runtime system for OCaml bytecode

Versions of packages coq recommends:
ii  coqide8.2.pl1+dfsg-2 proof assistant for higher-order l
ii  proofgeneral-coq  3.7-3  generic interface for proof assist

Versions of packages coq suggests:
ii  coq-doc   8.1-3  documentation for Coq in html form
pn  libcoq-ocaml-dev  none (no description available)
ii  ocaml-nox 3.11.1-2   ML implementation with a class-bas
ii  proofgeneral-coq  3.7-3  generic interface for proof assist
ii  rlwrap [readline-editor]  0.30-1.1   readline feature command line wrap



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