Bug#850070: Processed: reassign 850070 to pylint

2017-01-05 Thread Oleksandr Gavenko
On Thu, Jan 5, 2017 at 1:07 AM, Sandro Tosi  wrote:

> I'm not convinced we should change anything in pylint to support
> emacs21, which has been removed from debian since 2009
>
> I like keeping Emacs 21 in order to test features instead of scanning
through  NEWS files.

And you are wrong in assumption that the only way to install package is
from official Debian repository.

The right way to write install file is to check supported feature and not
to reject unsupported feature.

So in some way you are right that adding case for Emacs 21 is wrong thing.
But most of /usr/lib/emacsen-common/packages/install/* written in a broken
way for my second point.  They SHOULD check for emacs24/emacs25 $FLAVOR
instead of rejecting xemacs, emacs22 etc.


Bug#850072: ilisp: Fail to intall into emacs25.

2017-01-03 Thread Oleksandr Gavenko
Package: ilisp
Version: 5.12.0+cvs.2004.12.26-22
Severity: normal

  $ cat /var/log/apt/term.log
  + emacs25 -q -batch -l path.el
  + test -f /tmp/fileUOrU5E
  + mv -f /tmp/fileUOrU5E /usr/share/emacs25/site-lisp/ilisp/install.log
  + chmod 644 /usr/share/emacs25/site-lisp/ilisp/install.log
  ERROR: install script from ilisp package failed
  dpkg: error processing package ilisp (--configure):
   subprocess installed post-installation script returned error exit status 1
  Errors were encountered while processing:
   ilisp

It is related to:

  $ cat /usr/lib/emacsen-common/packages/install/ilisp
  ...
  LOG=$(tempfile);
  trap "test -f $LOG && mv -f $LOG  $ELCDIR/install.log > /dev/null 2>&1 && 
chmod 644 $ELCDIR/install.log" exit

  cat << EOF > path.el
  (setq load-path (cons "." load-path) byte-compile-warnings nil)
  (load "ilisp-mak.el")
  EOF
  ${FLAVOR} ${FLAGS} >> $LOG  2>&1;

and:

  $ cat /usr/share/emacs25/site-lisp/ilisp/install.log

  ILISP Compilation: starting.
  Loading /usr/share/emacs25/site-lisp/ilisp/ilcompat.el (source)...
  Loading /usr/share/emacs25/site-lisp/ilisp/ilfsf18.el (source)...
  Symbol’s value as variable is void: comint-version


-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages ilisp depends on:
ii  common-lisp-controller  7.10
ii  debconf [debconf-2.0]   1.5.59
ii  emacsen-common  2.0.8

Versions of packages ilisp recommends:
ii  ilisp-doc  5.12.0+cvs.2004.12.26-22

Versions of packages ilisp suggests:
pn  cltl   
ii  emacs  46.1
ii  emacs2121.4a+1-5.6
ii  emacs2222.2+2-5
ii  emacs2323.2+1-7+squeeze1
ii  hyperspec  1.30+nmu2

-- debconf information:
* ilisp/fsf-compliant: true

-- 
http://defun.work/



Bug#850071: tuareg-mode: Fail to install if emacs21 is installed.

2017-01-03 Thread Oleksandr Gavenko
Package: tuareg-mode
Version: 1:2.0.10-1
Severity: normal

  $ cat /var/log/apt/term.log

  While compiling toplevel forms in file 
/usr/share/emacs21/site-lisp/tuareg-mode/ocamldebug-tuareg.el:
!! Symbol's function definition is void ((derived-mode-p))
  Wrote /usr/share/emacs21/site-lisp/tuareg-mode/tuareg-light.elc
  Wrote /usr/share/emacs21/site-lisp/tuareg-mode/tuareg-site-file.elc
  Wrote /usr/share/emacs21/site-lisp/tuareg-mode/tuareg.elc
  While compiling toplevel forms in file 
/usr/share/emacs21/site-lisp/tuareg-mode/tuareg_indent.el:
!! Symbol's function definition is void ((locate-file))
  Done
  ERROR: install script from tuareg-mode package failed
  dpkg: error processing package tuareg-mode (--configure):
   subprocess installed post-installation script returned error exit status 1

To fix replace:

  $ cat /usr/lib/emacsen-common/packages/install/tuareg-mode
  ...
  if [ ${FLAVOR} = emacs ]; then exit 0; fi
  ...

with:

  case $FLAVOR in emacs|emacs21) exit 0;; esac


-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages tuareg-mode depends on:
ii  emacs46.1
ii  emacs21 [emacsen]21.4a+1-5.6
ii  emacs22 [emacsen]22.2+2-5
ii  emacs23 [emacsen]23.2+1-7+squeeze1
ii  emacs24 [emacsen]24.5+1-7.1
ii  emacs25 [emacsen]25.1+1-3
ii  emacsen-common   2.0.8
ii  xemacs21-mule [emacsen]  21.4.24-4

Versions of packages tuareg-mode recommends:
ii  ocaml-interp  4.02.3-9
ii  ocaml-mode4.02.3-9

tuareg-mode suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/lib/emacsen-common/packages/install/tuareg-mode 
(from tuareg-mode package)

-- 
http://defun.work/



Bug#850070: pyli: Fail to install if emacs21 is installed.

2017-01-03 Thread Oleksandr Gavenko
Package: pyli
Severity: normal

To fix replace:

  $ cat /usr/lib/emacsen-common/packages/install/pylint
  ...
  if [ ${FLAVOR} = emacs ]; then exit 0; fi
  ...

with:

  case $FLAVOR in emacs|emacs21) exit 0;; esac

Setting up pylint (1.5.6-1) ...
Install pylint for emacs21
install/pylint: Handling install for emacsen flavor emacs21
While compiling toplevel forms in file 
/usr/share/emacs21/site-lisp/pylint/pylint.el:
  !! File error (("Cannot open load file" "tramp"))
Done
ERROR: install script from pylint package failed
dpkg: error processing package pylint (--configure):
 subprocess installed post-installation script returned error exit status 1


-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

-- 
http://defun.work/



Bug#850056: dash-el: Fail to install if Emacs 21 installed.

2017-01-03 Thread Oleksandr Gavenko
Package: dash-el
Version: 2.13.0-1
Severity: normal

  $ cat /var/log/apt/term.log
  ...
  Install dash-el for emacs21
  install/dash-el: Handling install for emacsen flavor emacs21
  ...
  Loading 50dash-el (source)...
  Error while loading 50dash-el: Wrong number of arguments: #, 3
  ...
  While compiling toplevel forms in file 
/usr/share/emacs21/site-lisp/dash-el/dash-functional.el:
!! Wrong number of arguments ((# 3))
  Wrote /usr/share/emacs21/site-lisp/dash-el/dash.elc
  Done
  ERROR: install script from dash-el package failed
  dpkg: error processing package dash-el (--configure):
   subprocess installed post-installation script returned error exit status 1
  ...

To fix replace:

  $ cat /usr/lib/emacsen-common/packages/install/dash-el
  ...
  if [ ${FLAVOR} = emacs ]; then exit 0; fi
  if [ ${FLAVOR} = xemacs21 ]; then exit 0; fi
  ...

with:

  case ${FLAVOR} in emacs|*xemacs*|emacs2[1-3]) exit 0;; esac

-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages dash-el depends on:
ii  emacs   46.1
ii  emacsen-common  2.0.8

dash-el recommends no packages.

dash-el suggests no packages.

-- no debconf information

-- 
http://defun.work/



Bug#850043: ghc-mod-el: Fail to install if Emacs 21/22 present.

2017-01-03 Thread Oleksandr Gavenko
Package: ghc-mod-el
Version: 5.6.0.0-2
Severity: normal

  $ cat /var/log/apt/term.log
  ...
  Install ghc-mod-el for emacs21
  install/ghc-mod: Handling install for emacsen flavor emacs21
  ...
  ERROR: install script from ghc-mod-el package failed

Solution to change /usr/lib/emacsen-common/packages/install/ghc-mod-el to:

  case $FLAVOR in
  emacs|*xemacs*|mule2|emacs2[1-3]) # not support xemacs
  exit 0
  ;;
  esac


-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages ghc-mod-el depends on:
ii  emacsen-common  2.0.8
ii  ghc-mod 5.6.0.0-2

Versions of packages ghc-mod-el recommends:
ii  haskell-mode  13.14.2-1

ghc-mod-el suggests no packages.

-- no debconf information

-- 
http://defun.work/



Bug#850041: ess: Installation broken if emacs21 package installed.

2017-01-03 Thread Oleksandr Gavenko
Package: ess
Version: 16.10-1
Severity: normal

  $ cat /var/log/apt/term.log
  ...
  install/ess: Handling install for emacsen flavor emacs21
  ERROR: install script from ess package failed
  dpkg: error processing package ess (--configure):
   subprocess installed post-installation script returned error exit status 1

The reason for an error is a file:

  $ cat /usr/lib/emacsen-common/packages/install/ess

  if [ ${FLAVOR} = emacs ]; then exit 0; fi

  if [ ${FLAVOR} = xemacs21 ]; then exit 0; fi

  if [ ${FLAVOR} = emacs22 ]; then exit 0; fi

  if [ ${FLAVOR} = emacs23 ]; then exit 0; fi

It's better to have:

  case ${FLAVOR} in xemacs*|emacs|emacs2[1-3]) exit 0;; esac

instead of those lines.

-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages ess depends on:
ii  dpkg1.18.10
ii  emacsen-common  2.0.8
ii  install-info6.0.0.dfsg.1-3

Versions of packages ess recommends:
ii  r-base-core  3.3.2-1

Versions of packages ess suggests:
pn  jags   
pn  julia  
ii  pspp   0.8.5-4
pn  xlispstat  

-- no debconf information

-- 
http://defun.work/



Bug#850036: elpa-sml-mode: Removal script fail if XEmacs or Emacs 21/22/24 is installed.

2017-01-03 Thread Oleksandr Gavenko
Package: elpa-sml-mode
Version: 6.7-1
Severity: normal

  $ cat /usr/lib/emacsen-common/packages/remove/elpa-sml-mode
  ...
FLAVOR=$1
case $FLAVOR in
...
emacs23)
echo remove/${ELPA_DIR}: Skipping obsolete emacs ${FLAVOUR}
exit 0
;;
xemacs*)
echo remove/${ELPA_DIR}: Skipping unsupported emacs ${FLAVOUR}
;;
...


There is no

exit 0

command in "case" for xemacs, there are no emacs21|emacs22 in "case" condition
and script fail on line:

  find ${elc_dir} -type l -delete

because of previous::

  set -e

I suggest such modifications:

emacs21|emacs22|emacs23)
echo remove/${ELPA_DIR}: Skipping obsolete emacs ${FLAVOUR}
exit 0
;;
xemacs*)
  echo 
echo remove/${ELPA_DIR}: Skipping unsupported emacs ${FLAVOUR}
exit 0
;;

and:

if ! test -d ${elc_dir}; then
  echo dh-elpa: skipping pruning flavor specific files for ${FLAVOR}
  exit 0
fi
echo dh-elpa: purging flavor specific files for ${FLAVOR}


-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages elpa-sml-mode depends on:
ii  emacsen-common  2.0.8

elpa-sml-mode recommends no packages.

elpa-sml-mode suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/lib/emacsen-common/packages/install/elpa-sml-mode 
(from elpa-sml-mode package)
debsums: changed file /usr/lib/emacsen-common/packages/remove/elpa-sml-mode 
(from elpa-sml-mode package)

-- 
http://defun.work/



Bug#849589: ardour: undefined symbol: fftwf_make_planner_thread_safe

2016-12-30 Thread Oleksandr Gavenko
On Thu, Dec 29, 2016 at 2:30 AM, James Cowgill <jcowg...@debian.org> wrote:

> On 29/12/16 00:02, Oleksandr Gavenko wrote:
> > Application is being crashing constantly with:
> >
> > bash# ardour5
> > /usr/lib/ardour5/ardour-5.5.0: symbol lookup error:
> /usr/lib/ardour5/ardour-5.5.0: undefined symbol:
> fftwf_make_planner_thread_safe
> [...]
> > Versions of packages ardour depends on:
> [...]
> > ii  libfftw3-single3 3.3.4-2
>
> This package is the problem. The fftwf_make_planner_thread_safe
> function is only present in fftw3 3.3.5 (so upgrading your package
> would fix this). fftw3 should generate a stricter dependency so that
> this doesn't happen.
>
> Thanks, this resolve issue!


Bug#849589: ardour: undefined symbol: fftwf_make_planner_thread_safe

2016-12-28 Thread Oleksandr Gavenko
Package: ardour
Version: 1:5.5.0~dfsg-1
Severity: important

Application is being crashing constantly with:

bash# ardour5
/usr/lib/ardour5/ardour-5.5.0: symbol lookup error: 
/usr/lib/ardour5/ardour-5.5.0: undefined symbol: fftwf_make_planner_thread_safe


-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages ardour depends on:
ii  ardour-data  1:5.5.0~dfsg-1
ii  jackd5
ii  libarchive13 3.1.2-11+b1
ii  libasound2   1.1.0-1
ii  libatk1.0-0  2.18.0-1
ii  libatkmm-1.6-1v5 2.24.1-1
ii  libaubio50.4.3-4
ii  libbluetooth35.33-1
ii  libc62.23-4
ii  libcairo21.14.2-2
ii  libcairomm-1.0-1v5   1.12.0-1
ii  libcurl3-gnutls  7.50.1-1
ii  libcwiid10.6.00+svn201-3.2
ii  libfftw3-single3 3.3.4-2
ii  libflac8 1.3.1-4
ii  libfluidsynth1   1.1.6-3
ii  libfontconfig1   2.11.0-6.3
ii  libfreetype6 2.6.1-0.1
ii  libgcc1  1:6.2.0-13
ii  libgdk-pixbuf2.0-0   2.36.0-1
ii  libglib2.0-0 2.50.0-1
ii  libglibmm-2.4-1v52.50.0-1
ii  libgtk2.0-0  2.24.28-1
ii  libgtkmm-2.4-1v5 1:2.24.4-2+b1
ii  libjack-jackd2-0 1.9.10+20150825git1ed50c92~dfsg-1
ii  liblilv-0-0  0.22.0~dfsg0-1
ii  liblo7   0.28-5
ii  liblrdf0 0.4.0-5
ii  libltc11 1.1.4-1
ii  libogg0  1.3.2-1
ii  libpango-1.0-0   1.38.1-1
ii  libpangocairo-1.0-0  1.38.1-1
ii  libpangoft2-1.0-01.38.1-1
ii  libpangomm-1.4-1v5   2.40.1-3
ii  libqm-dsp0   1.7.1-2
ii  librubberband2   1.8.1-6+b1
ii  libsamplerate0   0.1.8-8
ii  libserd-0-0  0.22.0~dfsg0-2
ii  libsigc++-2.0-0v52.9.3-1
ii  libsndfile1  1.0.25-9.1
ii  libsord-0-0  0.14.0~dfsg0-1
ii  libsratom-0-00.4.6~dfsg0-1
ii  libstdc++6   6.2.0-13
ii  libsuil-0-0  0.8.2~dfsg0-1
ii  libtag1v51.9.1-2.4
ii  libusb-1.0-0 2:1.0.20-1
ii  libvamp-hostsdk3v5   2.6~repack0-2
ii  libvamp-sdk2v5   2.6~repack0-2
ii  libx11-6 2:1.6.3-1
ii  libxml2  2.9.3+dfsg1-1

Versions of packages ardour recommends:
ii  ardour-video-timeline1:5.5.0~dfsg-1
ii  chromium [www-browser]   52.0.2743.116-2
ii  conkeror [www-browser]   1.0.3-1
ii  elinks [www-browser] 0.12~pre6-11+b2
ii  firefox [www-browser]49.0~b1-1
ii  lynx [www-browser]   2.8.9dev8-4
ii  w3m [www-browser]0.5.3-29
ii  xemacs21-mule [www-browser]  21.4.24-3

Versions of packages ardour suggests:
pn  jamin 
ii  qjackctl  0.4.0-1

-- no debconf information

-- 
http://defun.work/



Bug#840774: Acknowledgement (silversearcher-ag: Man page lack of REGEX flavour description (and even do not say anything related).)

2016-10-14 Thread Oleksandr Gavenko
I filed upstream:

  https://github.com/ggreer/the_silver_searcher/issues/993

-- 
http://defun.work/



Bug#840774: silversearcher-ag: Man page lack of REGEX flavour description (and even do not say anything related).

2016-10-14 Thread Oleksandr Gavenko
Package: silversearcher-ag
Version: 0.32.0-1
Severity: normal

Man page lack of REGEX flavour description (and even do not say anything
related).

Is it GNU regex or Perl or POSIX?

Please update man page.

-- 
http://defun.work/



Bug#840334: ring-daemon: Fix client package name in man page.

2016-10-10 Thread Oleksandr Gavenko
Package: ring-daemon
Version: 20160901.1.204c604~dfsg2-2+b1
Severity: normal

dring(1) has sentence:

  You need to install a client to use the daemon, for instance GTK+ client,
  ring-client-gnome.

Debian package archive uses ``gnome-ring`` name for GUI client (from ``ring``
package).

Please fix name in order to point to actual executable/package.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.5.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

-- 
http://defun.work/



Bug#840321: emacs24: Error running timer `tooltip-timeout': (void-variable v)

2016-10-10 Thread Oleksandr Gavenko
Package: emacs24
Version: 24.5+1-7
Severity: normal

Can you apply trivial fix described in upstream:

  https://debbugs.gnu.org/cgi/bugreport.cgi?bug=19966

to Emacs24?

-- 
http://defun.work/



Bug#833953: Upgrading libharfbuzz0b:amd64 1.0.1-1+b1 -> 1.2.7-1+b1 fixed issue.

2016-09-04 Thread Oleksandr Gavenko
Both Chromium 43.x.x.x and 52.x.x.x crashed with libharfbuzz0b:amd64
1.0.1-1+b1.

Updating to 1.2.7-1+b1 fixed issue.

Chromium package description should bump requirement:

   Depends: libharfbuzz0b (>= 1.2.7)

-- 
http://defun.work/



Bug#805797: #805797 - connman: Utility to flush DNS cache?

2016-09-03 Thread Oleksandr Gavenko
On 2016-09-02, Alexander Sack wrote:

> does this bug still hurt you? Any chance you could try the sid version
> of connman?
>

I install connman in VirtualBox and after initial ``nslookup`` query change my
DNS record.

After:

  $ sudo service connman restart

nslookup starts show update address.

Issue fixed, thanks!

-- 
http://defun.work/



Bug#835232: mailman: /usr/lib/mailman/bin/check_perms found 88 permission problems after clean install

2016-08-23 Thread Oleksandr Gavenko
Package: mailman
Version: 1:2.1.22-1
Severity: normal

  bash# sudo apt-get install mailman

  bash# sudo /usr/lib/mailman/bin/check_perms 
  directory must be at least 02775: /var/lib/mailman/logs
  /var/lib/mailman/Mailman bad group (has: root, expected list)
  /var/lib/mailman/scripts bad group (has: root, expected list)
  /var/lib/mailman/bin bad group (has: root, expected list)
  /var/lib/mailman/cron bad group (has: root, expected list)
  /var/lib/mailman/icons bad group (has: root, expected list)
  /var/lib/mailman/cgi-bin bad group (has: root, expected list)
  /var/lib/mailman/logs bad group (has: root, expected list)
  directory permissions must be 02775: /var/lib/mailman/messages
  /var/lib/mailman/locks bad group (has: root, expected list)
  /var/lib/mailman/mail bad group (has: root, expected list)
  /var/lib/mailman/templates bad group (has: root, expected list)
  directory permissions must be 02775: /var/lib/mailman/messages/zh_CN
  directory permissions must be 02775: /var/lib/mailman/messages/ia
  directory permissions must be 02775: /var/lib/mailman/messages/ca
  directory permissions must be 02775: /var/lib/mailman/messages/ja
  directory permissions must be 02775: /var/lib/mailman/messages/vi
  directory permissions must be 02775: /var/lib/mailman/messages/hr
  directory permissions must be 02775: /var/lib/mailman/messages/da
  directory permissions must be 02775: /var/lib/mailman/messages/et
  directory permissions must be 02775: /var/lib/mailman/messages/pt
  directory permissions must be 02775: /var/lib/mailman/messages/fi
  directory permissions must be 02775: /var/lib/mailman/messages/fa
  directory permissions must be 02775: /var/lib/mailman/messages/sk
  directory permissions must be 02775: /var/lib/mailman/messages/ko
  directory permissions must be 02775: /var/lib/mailman/messages/tr
  directory permissions must be 02775: /var/lib/mailman/messages/he
  directory permissions must be 02775: /var/lib/mailman/messages/gl
  directory permissions must be 02775: /var/lib/mailman/messages/uk
  directory permissions must be 02775: /var/lib/mailman/messages/ar
  directory permissions must be 02775: /var/lib/mailman/messages/de
  directory permissions must be 02775: /var/lib/mailman/messages/zh_TW
  directory permissions must be 02775: /var/lib/mailman/messages/hu
  directory permissions must be 02775: /var/lib/mailman/messages/ru
  directory permissions must be 02775: /var/lib/mailman/messages/no
  directory permissions must be 02775: /var/lib/mailman/messages/sl
  directory permissions must be 02775: /var/lib/mailman/messages/eu
  directory permissions must be 02775: /var/lib/mailman/messages/sv
  directory permissions must be 02775: /var/lib/mailman/messages/pl
  directory permissions must be 02775: /var/lib/mailman/messages/lt
  directory permissions must be 02775: /var/lib/mailman/messages/pt_BR
  directory permissions must be 02775: /var/lib/mailman/messages/ro
  directory permissions must be 02775: /var/lib/mailman/messages/sr
  directory permissions must be 02775: /var/lib/mailman/messages/el
  directory permissions must be 02775: /var/lib/mailman/messages/ast
  directory permissions must be 02775: /var/lib/mailman/messages/cs
  directory permissions must be 02775: /var/lib/mailman/messages/fr
  directory permissions must be 02775: /var/lib/mailman/messages/it
  directory permissions must be 02775: /var/lib/mailman/messages/nl
  directory permissions must be 02775: /var/lib/mailman/messages/es
  directory permissions must be 02775: 
/var/lib/mailman/messages/zh_CN/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/ia/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/ca/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/ja/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/vi/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/hr/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/da/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/et/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/pt/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/fi/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/fa/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/sk/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/ko/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/tr/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/he/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/gl/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/uk/LC_MESSAGES
  directory permissions must be 02775: /var/lib/mailman/messages/ar/LC_MESSAGES
  directory permissions must be 02775: 

Bug#834451: mplayer: Switching audio tracks causes de-synchronisation of audio on some files.

2016-08-15 Thread Oleksandr Gavenko
Package: mplayer
Version: 2:1.3.0-3
Severity: normal

For some files switching audio tracks causes de-synchronisation of audio.

The more times I switched audio track the more delay between audio and video.

In console output after switching audio track several times I got

  error decoding the audio block

and "A-V:" field value increased with each switching:

  A:4254.9 V: 155.4 A-V:4099.461 ct:  0.443 3728/3728  2%  4%  2.7% 17 0 

After seeking through the media (LEFT/RIGHT keyboard command) playback become
synced (and "A-V" parameter changes to almost zero).

Example of output:

  Playing /video/some.avi.
  libavformat version 57.41.100 (external)
  Mismatching header version 57.25.100
  AVI file format detected.
  [aviheader] Video stream found, -vid 0
  [aviheader] Audio stream found, -aid 1
  [aviheader] Audio stream found, -aid 2
  [aviheader] Audio stream found, -aid 3
  VIDEO:  [XVID]  720x400  24bpp  23.976 fps  1578.7 kbps (192.7 kbyte/s)
  ==
  Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family
  libavcodec version 57.48.101 (external)
  Mismatching header version 57.24.102
  Selected video codec: [ffodivx] vfm: ffmpeg (FFmpeg MPEG-4)
  ==
  Clip info:
   Software: VirtualDubMod 1.5.10.2 (build 2542/release)
  ==
  Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
  AUDIO: 48000 Hz, 2 ch, floatle, 192.0 kbit/6.25% (ratio: 24000->384000)
  Selected audio codec: [ffac3] afm: ffmpeg (FFmpeg AC-3)
  ==
  AO: [pulse] Init failed: Connection refused
  Failed to initialize audio driver 'pulse'
  AO: [alsa] 48000Hz 2ch floatle (4 bytes per sample)
  [Mixer] No hardware mixing, inserting volume filter.
  Starting playback...
  Movie-Aspect is undefined - no prescaling applied.
  VO: [vdpau] 720x400 => 720x400 Planar YV12 
  [mpeg4 @ 0x7fbef3f7a0a0]Video uses a non-standard and wasteful way to store 
B-frames ('packed B-frames'). Consider using the mpeg4_unpack_bframes bitstream 
filter without encoding but stream copy to fix it.
  Movie-Aspect is 1.80:1 - prescaling to correct movie aspect.
  VO: [vdpau] 720x400 => 720x400 Planar YV12 
  A:   2.1 V:   2.1 A-V: -0.007 ct: -0.024  52/ 52  3%  2%  0.5% 0 0 
  ==
  Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
  AUDIO: 48000 Hz, 2 ch, floatle, 192.0 kbit/6.25% (ratio: 24000->384000)
  Selected audio codec: [ffac3] afm: ffmpeg (FFmpeg AC-3)
  ==
  AO: [pulse] Init failed: Connection refused
  Failed to initialize audio driver 'pulse'
  AO: [alsa] 48000Hz 2ch floatle (4 bytes per sample)
  A:   2.5 V:   2.5 A-V:  0.035 ct:  0.006  60/ 60  3%  3%  0.5% 1 0 
  [ac3 @ 0x7fbef3f7a0a0]exponent 25 is out-of-range
  [ac3 @ 0x7fbef3f7a0a0]error decoding the audio block
  A:   3.7 V:   3.7 A-V:  0.004 ct:  0.027  89/ 89  3%  3%  0.5% 1 0 
  ==
  Opening audio decoder: [mpg123] MPEG 1.0/2.0/2.5 layers I, II, III
  AUDIO: 44100 Hz, 2 ch, s16le, 160.0 kbit/11.34% (ratio: 2->176400)
  Selected audio codec: [mpg123] afm: mpg123 (MPEG 1.0/2.0/2.5 layers I, II, 
III)
  ==
  AO: [pulse] Init failed: Connection refused
  Failed to initialize audio driver 'pulse'
  AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
  A:2619.4 V:   9.2 A-V:2610.216 ct:  0.578 221/221  3%  2%  0.5% 2 0 
  ==
  Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
  [ac3 @ 0x7fbef3f7a0a0]frame sync error
  AUDIO: 48000 Hz, 2 ch, floatle, 192.0 kbit/6.25% (ratio: 24000->384000)
  Selected audio codec: [ffac3] afm: ffmpeg (FFmpeg AC-3)
  ==
  AO: [pulse] Init failed: Connection refused
  Failed to initialize audio driver 'pulse'
  AO: [alsa] 48000Hz 2ch floatle (4 bytes per sample)
  A:   6.3 V:  11.2 A-V: -4.892 ct:  0.378 269/269  3%  2%  0.5% 3 0 
  ==
  Opening audio decoder: [ffmpeg] FFmpeg/libavcodec audio decoders
  [ac3 @ 0x7fbef3f7a0a0]exponent 25 is out-of-range
  [ac3 @ 0x7fbef3f7a0a0]error decoding the audio block
  AUDIO: 48000 Hz, 2 ch, floatle, 192.0 kbit/6.25% (ratio: 24000->384000)
  Selected audio codec: [ffac3] afm: ffmpeg (FFmpeg AC-3)
  ==
  AO: [pulse] Init failed: Connection refused
  Failed to initialize audio driver 'pulse'
  AO: [alsa] 48000Hz 2ch floatle (4 

Bug#821943: usbmount: Ejected external storage is mounted again.

2016-04-20 Thread Oleksandr Gavenko
Package: usbmount
Version: 0.0.22
Severity: normal

After:

  bash# sudo umount /dev/sde1
  bash# sudo scsi-spin -d /dev/sde

external HDD (USB 2.0 Western Digital) stop rotating and led blinking.

But during one second it again is mounted.

I don't understand if it is possible to distinct stopped device from newly
attached but I like to have parking command work and not just unplug USB power
when disc still rotating.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages usbmount depends on:
ii  lockfile-progs  0.1.17
ii  udev228-6
ii  util-linux  2.27.1-3

Versions of packages usbmount recommends:
ii  pmount  0.9.23-3+b1

usbmount suggests no packages.

-- Configuration Files:
/etc/usbmount/usbmount.conf changed:
ENABLED=1
MOUNTPOINTS="/media/usb0 /media/usb1 /media/usb2 /media/usb3
 /media/usb4 /media/usb5 /media/usb6 /media/usb7"
FILESYSTEMS="vfat ext2 ext3 ext4 hfsplus ntfs"
MOUNTOPTIONS="async,noexec,nodev,noatime,nodiratime"
FS_MOUNTOPTIONS="-fstype=vfat,rw,shortname=winnt,utf8,quiet,gid=user,dmask=002,fmask=111
 \
-fstype=ntfs,rw,noatime,nls=utf8,gid=user,dmask=002,fmask=111"
VERBOSE=no


-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/usbmount/usbmount (from usbmount package)

-- 
http://defun.work/



Bug#821770: eject: sudo eject does not remove mount point from /proc/mounts

2016-04-19 Thread Oleksandr Gavenko
Package: eject
Version: 2.1.5+deb1+cvs20081104-13.1
Severity: normal

I use "eject" because with it possible to continue charging Kindle reader
without re-plugging.

Recently I see that mount points doesn't removed after unplugging external
storage (WD hard disk), like:

  bash# mount
  /dev/sdd1 on /media/wd type fuseblk 
(rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user)
  /dev/sde1 on /media/wd type fuseblk 
(rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user)

That sad if I try to eject such storage:

  bash# sudo eject wd
  eject: tried to use `/dev/sdd1' as device name but it is no block device
  eject: tried to use `/mnt/wd' as device name but it is no block device
  eject: tried to use `./wd' as device name but it is no block device
  eject: unable to find or open device for: `wd'


On other hand two subsequent calls to umount remove two duplicated entries:

  bash# sudo umount wd

  bash# mount
  /dev/sdd1 on /media/wd type fuseblk 
(rw,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,user)

  bash# sudo umount wd

  bash# mount

Seems kernel/udev goes faster then eject project...

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages eject depends on:
ii  libc6   2.19-22
ii  libdevmapper1.02.1  2:1.02.110-1

eject recommends no packages.

Versions of packages eject suggests:
pn  cdtool  
pn  setcd   

-- no debconf information

-- 
http://defun.work/



Bug#803165: But still present in 45.0~b5-1 from experimental

2016-03-03 Thread Oleksandr Gavenko
But still present in 45.0~b5-1 from experimental.

-- 
http://defun.work/



Bug#814524: python-mode: up-list: Scan error: "Unbalanced parentheses", 1, 1

2016-02-12 Thread Oleksandr Gavenko
Package: python-mode
Version: 1:6.1.3-2
Severity: normal

With

  emacs -q

and empty .py file on C-x C-f (py-sort-imports) I get:

  Debugger entered--Lisp error: (scan-error "Unbalanced parentheses" 1 1)
signal(scan-error ("Unbalanced parentheses" 1 1))
up-list(-1)
py-sort-imports()
call-interactively(py-sort-imports nil nil)
command-execute(py-sort-imports)

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE= (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages python-mode depends on:
ii  emacs  46.1
ii  emacs23 [emacsen]  23.4+1-4.1+b1
ii  emacs24 [emacsen]  24.5+1-3
ii  python 2.7.9-1

Versions of packages python-mode recommends:
ii  pychecker  0.8.19-11
ii  pymacs 0.25-1

Versions of packages python-mode suggests:
ii  pylint   1.5.2-1
ii  python-ropemacs  0.7-1

-- no debconf information

-- 
http://defun.work/



Bug#814520: python-mode: ERROR: python-mode is broken - called emacs-package-install as a new-style add-on, but has no compat file.

2016-02-12 Thread Oleksandr Gavenko
Package: python-mode
Version: 1:6.1.3-2
Severity: normal

Setting up python-mode (1:6.1.3-2) ...
ERROR: python-mode is broken - called emacs-package-install as a new-style 
add-on, but has no compat file.
Install python-mode for emacs
Install python-mode for emacs23
install/python-mode: Handling install for emacsen flavor emacs23
Wrote /usr/share/emacs23/site-lisp/python-mode/doctest-mode.elc
Wrote /usr/share/emacs23/site-lisp/python-mode/python-mode.elc
Wrote /usr/share/emacs23/site-lisp/python-mode/completion/pycomplete.elc
Install python-mode for emacs24
install/python-mode: Handling install for emacsen flavor emacs24
Wrote /usr/share/emacs24/site-lisp/python-mode/doctest-mode.elc
Wrote /usr/share/emacs24/site-lisp/python-mode/python-mode.elc
Wrote /usr/share/emacs24/site-lisp/python-mode/completion/pycomplete.elc
Setting up python-rope (0.10.2-1) ...
Setting up python-ropemode (0.2-1) ...
Setting up python-ropemacs (0.7-1) ...


-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE= (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages python-mode depends on:
ii  emacs  46.1
ii  emacs23 [emacsen]  23.4+1-4.1+b1
ii  emacs24 [emacsen]  24.5+1-3
ii  python 2.7.9-1

Versions of packages python-mode recommends:
ii  pychecker  0.8.19-11
ii  pymacs 0.25-1

Versions of packages python-mode suggests:
ii  pylint   1.5.2-1
ii  python-ropemacs  0.7-1

-- no debconf information

-- 
http://defun.work/



Bug#812444: aptitude: REQUEST: operator to version order test in "aptitude search" query syntax.

2016-02-03 Thread Oleksandr Gavenko
On 2016-02-03, Manuel A. Fernandez Montecelo wrote:

> I think that indeed the way to get this list of newer packages Kali than
> in Debian is using ?upgradable, if pinning of the repositories (man
> apt_preferences) is done correctly and if Kali's versions indeed show
> higher numbers than Debian.  Is this not working properly?
>
I know about pinning solution. Just keep text short.

This require modifying system files in order to make desired query.

Doing so in chroot environments after debootstrap also looks complicated.

> Another way to get such a list would be to produce a list of packages
> and versions of both Kali an Debian, and post-process it using "dpkg
> --compare-versions".
>
I think that "python-apt" is better way to do such task because parsing output
from:

  $ aptitude versions '...'
  $ apt-cache policy '...'
  ...

isn't pleasure. But I haven't worked with "python-apt".

> In general, I don't know if the requested operator is very useful,
> because aptitude and apt have different concept of how the system should
> work, based on apt pinning.  Packages in Debian experimental or unstable
> might have bigger version numbers than the ones in testing or stable,
> but still the ones in testing and stable used by default, because the
> user prefers to maintain most packages in the stable or testing version.
>
One important question when you work with mixed sources - what is the
difference.

With "?narrow(X,Y)" you get it.

But you don't know how they are different. List of newer/older packages gives
better picture.

But anyway I don't know easy way to display and process list of packages with
versions. "apt-cache policy" output is not in machine readable format.

"aptitude" formatting is not so rich to show several versions for single
package:

  https://www.debian.org/doc/manuals/aptitude/ch02s05s01.en.html

I was not aware about formatting issue. I don't need list of packages without
origin/version association.

I think that request should be closed. Any advanced querying should be done
with "python-apt" or other programming interfaces.

-- 
http://defun.work/



Bug#812444: Info received (aptitude: REQUEST: operator to version order test in "aptitude search" query syntax.)

2016-02-03 Thread Oleksandr Gavenko
I make script that scans for Kali packages that have version newer that in
Debian:

  import apt_pkg

  def main():
  apt_pkg.init()
  cache = apt_pkg.Cache()
  for pkg in cache.packages:
  vkali = []
  vdeb = []
  for ver in pkg.version_list:
  for fl, _ in ver.file_list:
  if fl.origin == 'Kali':
  vkali.append(ver.ver_str)
  elif fl.origin == 'Debian':
  vdeb.append(ver.ver_str)
  if len(vdeb) == 0:
  continue
  diff = set(vkali) - set(vdeb)
  if len(diff) == 0:
  continue
  ver0 = vkali[0]
  if all(apt_pkg.version_compare(x, ver0) < 0 for x in vdeb):
  print pkg.name, vkali, vdeb

  if __name__ == '__main__':
  main()

-- 
http://defun.work/



Bug#812444: aptitude: REQUEST: operator to version order test in "aptitude search" query syntax.

2016-01-23 Thread Oleksandr Gavenko
Package: aptitude
Version: 0.7.2-1
Severity: normal

Package: aptitude
Version: 0.7.2-1
Severity: normal

I have Debian and Kali origins. Kali based on Debian stable.

So Kali follow Debian package naming schema but differ in version numbers.

They also respect Debian version numbering.

So it is possible to make queries to list difference between Debian and Kali
with "aptitude search".

For example to find command packages with same version:

  $ aptitude search '?narrow(?origin(Kali),?origin(Debian))'
  ...

To find packages that in Kali but not in Debian:

  $ aptitude search '?origin(Kali),!?origin(Debian)'
  ...

I would like to find packages that have newer version in Kali than in Debian.

Docs:

  https://www.debian.org/doc/manuals/aptitude/ch02s04s05.html

say nothing about direct version comparing.

Some indirect comparing possible via ?upgradable and setting priorities in
debootstrap'ed environment and chrooting and installing packages.

'?narrow' is equal operator for package version.

I need a strict greater operator:

  aptitude search '?gt(?origin(Kali),?origin(Debian))'

- any package version that greater.

Origins of my question come from (Russian text):

  http://permalink.gmane.org/gmane.linux.debian.user.russian/123271



Bug#622205: sudo service alsa-utils restart?

2016-01-09 Thread Oleksandr Gavenko
I believe that channel levels restored by:

  $ sudo service alsa-utils restart

Another thing that you should have in mind that script:

  /usr/share/alsa/init/default 

may override what stored in:

  /var/lib/alsa/asound.state

But that is another story.

Internally /etc/init.d/alsa-utils uses:

  alsactl -F restore

Man page say:

   restore loads driver state for the selected soundcard from the
   configuration file. If restoring fails (eventually partly), the init
   action is called.

If you does not satisfied by content of:

  /var/lib/alsa/asound.state

you may use tip from:

  http://askubuntu.com/questions/50067/howto-save-alsamixer-settings

which recommend to change settings in alsamixer and without living alsamixer
run:

  $ sudo alsactl store

in another terminal.

Do you like this ideas?

-- 
http://defun.work/



Bug#808384: debian-el: Report include authentication info.

2015-12-19 Thread Oleksandr Gavenko
Package: debian-el
Version: 35.12
Severity: grave

My bug report via "M-x debian-bug" include authentication info:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808378

because I edit package supplied file /etc/tomcat8/tomcat-users.xml.

That come from

  (defun debian-bug-compose-report
...
  (debian-bug-prefill-report package severity) ;; <=== HERE

`debian-bug-prefill-report' function call external program:

  $ reportbug --template -T none -s none -S normal -b --list-cc=none 
--no-bug-script -q tomcat8

In interactive mode reportbug ask you for reviewing any modified files 
explicitly.

"M-x debian-bug" shown files content also but I see usual text like at top:

  -- System Information:

and didn't mind to scroll to part hidden bellow:

  -- Configuration Files:

I would like to see basic handler that looks for reasonable selected keywords:

  user, password, passwd, pass, 123456, host, port <== any other welcome!

and warn user that there are possible authentication data leak!

I think that this help bite 90% of authentication info data leaks.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (200, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages debian-el depends on:
ii  bzip2  1.0.6-8
ii  dpkg   1.18.3
ii  emacs  46.1
ii  emacs23 [emacsen]  23.4+1-4.1+b1
ii  emacs24 [emacsen]  24.5+1-3
ii  file   1:5.25-2
ii  install-info   6.0.0.dfsg.1-3
ii  reportbug  6.6.5

Versions of packages debian-el recommends:
ii  dlocate 1.02+nmu3
ii  groff-base  1.22.3-1
ii  wget1.16.3-3

Versions of packages debian-el suggests:
pn  gnus  

-- no debconf information

-- 
Best regards!



Bug#808342: iceweasel: HTML5 youtube video crash Iceweasel from experimental.

2015-12-19 Thread Oleksandr Gavenko
On 2015-12-19, Mike Hommey wrote:

> On Sat, Dec 19, 2015 at 12:23:37PM +0200, Oleksandr Gavenko wrote:
>> media.fragmented-mp4.gmp.enabled: true
>
> Try unsetting this.

With setting:

  media.fragmented-mp4.gmp.enabled: true

Firefox x43.0-1 fail.

With

  media.fragmented-mp4.gmp.enabled: false

and preserving to "true":

  media.fragmented-mp4.exposed
  media.fragmented-mp4.ffmpeg.enabled
  media.mediasource.enabled
  media.mediasource.webm.enabled

browser shown video fine.

Note that 42.0/44.0 works fine with all to true.

-- 
Best regards!



Bug#808378: tomcat8: WARNING: A context path must either be an empty string or start with a '/' and do not end with a '/'. The path [/] does not meet these criteria and has been changed to []

2015-12-19 Thread Oleksandr Gavenko
Package: tomcat8
Version: 8.0.28-1
Severity: normal

During Tomcat 8 restart I get warning:

  org.apache.catalina.core.StandardContext setPath
  WARNING: A context path must either be an empty string or start with a '/' 
and do not end with a '/'. The path [/] does not meet these criteria and has 
been changed to []

I filed bug in upstream with wrong assumption:

  https://bz.apache.org/bugzilla/show_bug.cgi?id=58754

and got response that shown that Debian packagers make mistake in

  /usr/share/tomcat8-root/default_root/META-INF/context.xml 

file:



Docs say:

  https://tomcat.apache.org/tomcat-8.0-doc/config/context.html

  If the context path is the empty string them the base name will be ROOT
  (always in upper case) otherwise the base name will be the context path with
  the leading '/' removed and any remaining '/' characters replaced with '#'.

Using "/" as path may result that context will not be deployed:

  
http://stackoverflow.com/questions/7276989/howto-set-the-context-path-of-a-web-application-in-tomcat-7-0

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (200, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages tomcat8 depends on:
ii  adduser3.113+nmu3
ii  debconf [debconf-2.0]  1.5.57
ii  tomcat8-common 8.0.28-1
ii  ucf3.0030

Versions of packages tomcat8 recommends:
ii  authbind  2.1.1+nmu1

Versions of packages tomcat8 suggests:
pn  libtcnative-1 
ii  tomcat8-admin 8.0.28-1
ii  tomcat8-docs  8.0.28-1
pn  tomcat8-examples  
ii  tomcat8-user  8.0.28-1

-- Configuration Files:
/etc/tomcat8/logging.properties changed:
handlers = 1catalina.org.apache.juli.FileHandler, 
2localhost.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
.handlers = 1catalina.org.apache.juli.FileHandler, 
java.util.logging.ConsoleHandler
1catalina.org.apache.juli.FileHandler.level = FINE
1catalina.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
1catalina.org.apache.juli.FileHandler.prefix = catalina
1catalina.org.apache.juli.FileHandler.rotatable = false
2localhost.org.apache.juli.FileHandler.level = FINE
2localhost.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
2localhost.org.apache.juli.FileHandler.prefix = localhost
2localhost.org.apache.juli.FileHandler.rotatable = false
trunk.org.apache.juli.FileHandler.level = FINE
trunk.org.apache.juli.FileHandler.directory = ${catalina.base}/logs
trunk.org.apache.juli.FileHandler.prefix = lombard-trunk
trunk.org.apache.juli.FileHandler.rotatable = false
java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 
2localhost.org.apache.juli.FileHandler
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/rsnetlombard-orig].level
 = INFO
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/rsnetlombard-orig].handlers
 = trunk.org.apache.juli.FileHandler

/etc/tomcat8/server.xml changed:




  
  
  
  
  
  
  
  
  
  


  
  
  













  
  
  
  


  
  




  

  


/etc/tomcat8/tomcat-users.xml changed:


http://tomcat.apache.org/xml;
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
  xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
  version="1.0">



  



-- debconf information:
* tomcat8/javaopts: -Djava.awt.headless=true -Xmx512m -XX:+UseConcMarkSweepGC 
-XX:MaxPermSize=256m
* tomcat8/groupname: user
* tomcat8/username: user

-- 
Best regards!



Bug#808292: fvwm: Replace fvwm-menu-desktop with upstream version (they rewrite from Perl to Python XDG library).

2015-12-18 Thread Oleksandr Gavenko
Package: fvwm
Version: 1:2.6.5.ds-4
Severity: normal

I build menu by my own scripts:

  http://hg.defun.work/skel/file/tip/.fvwm/xdg2fvwm.py

because package included `fvwm-menu-desktop' have problems (see my post and
followups):

  http://thread.gmane.org/gmane.comp.window-managers.fvwm.general/8341

Upstream developers say that `fvwm-menu-desktop' was rewritten in Python and
resolve my problem (with icons).

I check upstream version and confirm that newer version satisfy my needs.

There are also issues this package provided man page.

So I strongly recommend to include upstream version of `fvwm-menu-desktop'.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

-- 
Best regards!



Bug#808342: iceweasel: HTML5 youtube video crash Iceweasel from experimental.

2015-12-18 Thread Oleksandr Gavenko
Package: iceweasel
Version: 43.0-1
Severity: normal

Dear Maintainer,

-- Package-specific info:

-- Extensions information
Name: Adblock Plus
Location: ${PROFILE_EXTENSIONS}/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}.xpi
Status: enabled

Name: All Tabs Helper
Location: ${PROFILE_EXTENSIONS}/alltabshel...@alltabshelper.org
Status: enabled

Name: Default theme
Location: 
/usr/lib/iceweasel/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
Package: iceweasel
Status: enabled

Name: Element Hiding Helper for Adblock Plus
Location: 
/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/elemhidehel...@adblockplus.org
Package: xul-ext-adblock-plus-element-hiding-helper
Status: app-disabled

Name: Greasemonkey
Location: ${PROFILE_EXTENSIONS}/{e4a8a97b-f2ed-450b-b12d-ee082ba24781}.xpi
Status: enabled

Name: PDF Viewer
Location: 
/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/uriloa...@pdf.js
Package: xul-ext-pdf.js
Status: app-disabled

Name: Space Next
Location: ${PROFILE_EXTENSIONS}/{c71ff04d-f001-1fc1-1fc1-c71ff04df005}.xpi
Status: enabled

-- Plugins information
Name: IcedTea-Web Plugin (using IcedTea-Web 1.5.2 (1.5.2-1.1))
Location: /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/IcedTeaPlugin.so
Package: icedtea-7-plugin:amd64
Status: enabled

Name: MozPlugger 1.14.5 handles QuickTime and Windows Media Player Plugin 
(1.14.5)
Location: /usr/lib/mozilla/plugins/mozplugger.so
Package: mozplugger
Status: enabled

Name: Shockwave Flash (11.2.202.521)
Location: /usr/lib/flashplugin-nonfree/libflashplayer.so
Status: enabled


-- Addons package information
ii  icedtea-7-plug 1.5.2-1.1amd64web browser plugin based on OpenJ
ii  iceweasel  43.0-1   amd64Web browser based on Firefox
ii  mozplugger 1.14.5-2 amd64Plugin allowing external viewers 
ii  xul-ext-adbloc 1.3.2-2  all  companion for Adblock Plus to cre
ii  xul-ext-pdf.js 1.1.366+dfsg all  Portable Document Format (PDF) vi

Any HTML5 youtube video permanently crash Iceweasel from experimental v43.0-1.

v42.0-1 works fine for 2 weeks (or more I forget when install it).

As I forget about http://snapshot.debian.org/ I discover:

  http://mozilla.debian.net/

  $ cat /etc/apt/sources.list.d/mozilla.debian.net.list
  deb [arch=amd64] http://mozilla.debian.net/ unstable iceweasel-aurora

  $ sudo apt-get install pkg-mozilla-archive-keyring
  $ sudo apt-get update
  $ sudo apt-get install iceweasel/unstable

Newer version 44.0~a2+20151204004006-1 also works fine.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages iceweasel depends on:
ii  debianutils   4.5.1
ii  fontconfig2.11.0-6.3
ii  libasound21.0.29-1
ii  libatk1.0-0   2.18.0-1
ii  libc6 2.19-22
ii  libcairo2 1.14.2-2
ii  libdbus-1-3   1.10.0-3
ii  libdbus-glib-1-2  0.102-1
ii  libevent-2.0-52.0.21-stable-2
ii  libffi6   3.2.1-3
ii  libfontconfig12.11.0-6.3
ii  libfreetype6  2.6.1-0.1
ii  libgcc1   1:5.2.1-22
ii  libgdk-pixbuf2.0-02.32.1-1
ii  libglib2.0-0  2.46.1-1
ii  libgtk2.0-0   2.24.28-1
ii  libhunspell-1.3-0 1.3.3-3+b1
ii  libnspr4  2:4.10.9-2
ii  libnss3   2:3.20-1
ii  libpango-1.0-01.38.1-1
ii  libsqlite3-0  3.8.11.1-1
ii  libstartup-notification0  0.12-4
ii  libstdc++65.2.1-22
ii  libvpx2   1.4.0-4
ii  libx11-6  2:1.6.3-1
ii  libxcomposite11:0.4.4-1
ii  libxdamage1   1:1.1.4-2+b1
ii  libxext6  2:1.3.3-1
ii  libxfixes31:5.0.1-2+b2
ii  libxrender1   1:0.9.8-1+b1
ii  libxt61:1.1.4-1+b1
ii  procps2:3.3.10-2
ii  zlib1g1:1.2.8.dfsg-2+b1

Versions of packages iceweasel recommends:
ii  gstreamer1.0-libav 1.6.0-2
ii  gstreamer1.0-plugins-good  1.6.0-1

Versions of packages iceweasel suggests:
ii  fonts-lmodern  2.004.5-1
ii  fonts-stix [otf-stix]  1.1.1-4
ii  libcanberra0   0.30-2.1
ii  libgnomeui-0   2.24.5-3
ii  libgssapi-krb5-2   1.13.2+dfsg-3
ii  mozplugger 1.14.5-2

-- no debconf information

-- 
Best regards!


Bug#807504: androidsdk-ddms: java.lang.RuntimeException: Failed to load /images/heap.png

2015-12-09 Thread Oleksandr Gavenko
Package: androidsdk-ddms
Version: 22.2+git20130830~92d25d6-2
Severity: critical

  $ ddms
  09:07:18 E/ddms: shutting down due to uncaught exception
  09:07:18 E/ddms: Failed to load /images/heap.png
  java.lang.RuntimeException: Failed to load /images/heap.png
  at com.android.ddmuilib.ImageLoader.loadImage(ImageLoader.java:147)
  at com.android.ddmuilib.ImageLoader.loadImage(ImageLoader.java:174)
  at 
com.android.ddms.UIThread.createDevicePanelToolBar(UIThread.java:1082)
  at com.android.ddms.UIThread.createLeftPanel(UIThread.java:1429)
  at com.android.ddms.UIThread.createTopPanel(UIThread.java:1200)
  at com.android.ddms.UIThread.createWidgets(UIThread.java:1002)
  at com.android.ddms.UIThread.runUI(UIThread.java:535)
  at com.android.ddms.Main.main(Main.java:117)

With 22.2+git20130830~92d25d6-1 from ``stable`` there are no such problem!

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages androidsdk-ddms depends on:
ii  eclipse-rcp3.8.1-8
ii  libandroidsdk-ddmlib-java  22.2+git20130830~92d25d6-2
ii  libandroidsdk-ddmuilib-java22.2+git20130830~92d25d6-2
ii  libandroidsdk-sdkstats-java22.2+git20130830~92d25d6-2
ii  libandroidsdk-swtmenubar-java  22.2+git20130830~92d25d6-2

androidsdk-ddms recommends no packages.

androidsdk-ddms suggests no packages.

-- no debconf information

-- 
Best regards!



Bug#807508: qemu-system-x86: Black screen on -enable-kvm

2015-12-09 Thread Oleksandr Gavenko
Package: qemu-system-x86
Version: 1:2.4+dfsg-5
Severity: important

I able to run quest with "-enable-kvm" by previous version of qemu-system-x86
(1:2.1+dfsg-12):

  $ apt-cache policy qemu-system-x86
qemu-system-x86:
Installed: 1:2.4+dfsg-5
Candidate: 1:2.4+dfsg-5
Version table:
   *** 1:2.4+dfsg-5 0
  990 http://ftp.us.debian.org/debian/ testing/main amd64 Packages
  200 http://ftp.us.debian.org/debian/ unstable/main amd64 Packages
  100 /var/lib/dpkg/status
   1:2.1+dfsg-12 0
   50 http://ftp.us.debian.org/debian/ stable/main amd64 Packages

But on 1:2.4+dfsg-5 running:

  $ qemu-system-x86_64 -m 1048 -cdrom 
/iso/debian/debian-live-7.6.0-amd64-standard.iso -enable-kvm

produce black screen while

  $ qemu-system-x86_64 -m 1048 -cdrom 
/iso/debian/debian-live-7.6.0-amd64-standard.iso

shown boot process and menu, etc.

I try strace, during "black screen" there are a lot of quoted lines:

  $ strace -f -o ~/tmp/qemu.log qemu-system-x86_64 -m 1048 -cdrom 
/iso/debian/debian-live-7.6.0-amd64-standard.iso -vga vmware -enable-kvm

  $ cat ~/tmp/qemu.log
  ...
  25745 select(13, [12], NULL, NULL, {0, 0}) = 0 (Timeout)
  25745 ppoll([{fd=4, events=POLLIN|POLLERR|POLLHUP}, {fd=5, events=POLLIN}, 
{fd=6, events=POLLIN}], 3, {0, 0}, NULL, 8) = 0 (Timeout)
  25745 ppoll([{fd=4, events=POLLIN|POLLERR|POLLHUP}, {fd=5, events=POLLIN}, 
{fd=6, events=POLLIN}], 3, {0, 29358716}, NULL, 8) = 0 (Timeout)
  ...
  25745 recvmsg(12, 0x7ffe20e20370, 0)= -1 EAGAIN (Resource temporarily 
unavailable)
  ...
  25745 recvmsg(12, 0x7ffe20e20370, 0)= -1 EAGAIN (Resource temporarily 
unavailable)
  25745 select(13, [12], NULL, NULL, {0, 0}) = 0 (Timeout)
  ...


So currently I use ``stable`` version as workaround.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages qemu-system-x86 depends on:
ii  ipxe-qemu   1.0.0+git-20150424.a25a16d-1
ii  libaio1 0.3.110-2
ii  libasound2  1.0.29-1
ii  libbluetooth3   5.33-1
ii  libbrlapi0.65.2~20141018-5+b2
ii  libc6   2.19-22
ii  libfdt1 1.4.0+dfsg-2
ii  libgcc1 1:5.2.1-22
ii  libglib2.0-02.46.1-1
ii  libgnutls-deb0-28   3.3.18-1
ii  libjpeg62-turbo 1:1.4.1-2
ii  libncurses5 6.0+20150810-1
ii  libnettle6  3.1.1-4
ii  libnspr42:4.10.9-2
ii  libnss3 2:3.20-1
ii  libpixman-1-0   0.33.2-2
ii  libpng12-0  1.2.50-2+b2
ii  libpulse0   7.0-1
ii  libsasl2-2  2.1.26.dfsg1-14
ii  libsdl1.2debian 1.2.15-11
ii  libseccomp2 2.2.3-2
ii  libspice-server10.12.6-3
ii  libtinfo5   6.0+20150810-1
ii  libusb-1.0-02:1.0.20-1
ii  libusbredirparser1  0.7-1
ii  libuuid12.27-3
ii  libvdeplug2 2.3.2+r586-2
ii  libx11-62:1.6.3-1
ii  libxen-4.6  4.6.0-1
ii  libxenstore3.0  4.4.1-9+deb8u1
ii  qemu-system-common  1:2.4+dfsg-5
ii  seabios 1.8.2-1
ii  zlib1g  1:1.2.8.dfsg-2+b1

Versions of packages qemu-system-x86 recommends:
ii  qemu-utils  1:2.4+dfsg-5

Versions of packages qemu-system-x86 suggests:
ii  kmod  21-1
pn  ovmf  
ii  qemu-block-extra  1:2.4+dfsg-5
ii  samba 2:4.1.17+dfsg-4
pn  sgabios   
pn  vde2  

-- no debconf information

-- 
Best regards!



Bug#806977: john: Provide build with "jumbo" patch.

2015-12-04 Thread Oleksandr Gavenko
On 2015-12-03, Oleksandr Gavenko wrote:

> Package: john
> Version: 1.8.0-2
> Severity: normal
>
> I trapped into same issue as described at:
>
>   
> http://www.governmentsecurity.org/forum/topic/33177-john-the-ripper-and-md5-hashes/
>
> I try to audit passwords in MD5 hashes by:
>
>   $ john.exe --format=raw-md5 pass.txt
>
> and get:
>
>   Unknown ciphertext format name requested
>
> Note that upstream provide officially signed sources of so called
> "community-enhanced version" named "jumbo" at main page:
>
>   http://openwall.com/john/
>
> with a lot of enhancement like NTLM, raw MD5, etc.
>
For those who can't wait for "jumbo" patch:

  $ /etc/apt/sources.list.d/kali.list
  deb [arch=amd64] http://http.kali.org/kali kali-current main contrib non-free

  $ cat /etc/apt/preferences.d/kali
  Package: *
  Pin: release o=Kali
  Pin-Priority: 50

  $ sudo apt-get update

  $ apt-cache policy john
  john:
Installed: 1.8.0.6-jumbo-1-0kali2
Candidate: 1.8.0.6-jumbo-1-0kali2
Version table:
   *** 1.8.0.6-jumbo-1-0kali2 0
   50 http://http.kali.org/kali/ kali-current/main amd64 Packages
  100 /var/lib/dpkg/status
   1.8.0-2 0
  400 http://ftp.us.debian.org/debian/ testing/main amd64 Packages
  200 http://ftp.us.debian.org/debian/ unstable/main amd64 Packages

According to:

  http://docs.kali.org/policy/kali-linux-relationship-with-debian

Kali intends to contribute those packages back to Debian and to maintain
them directly within Debian.

it is possible to contact to Kali developers for backposting improvements.

-- 
Best regards!



Bug#806977: john: Provide build with "jumbo" patch.

2015-12-03 Thread Oleksandr Gavenko
Package: john
Version: 1.8.0-2
Severity: normal

I trapped into same issue as described at:

  
http://www.governmentsecurity.org/forum/topic/33177-john-the-ripper-and-md5-hashes/

I try to audit passwords in MD5 hashes by:

  $ john.exe --format=raw-md5 pass.txt

and get:

  Unknown ciphertext format name requested

Note that upstream provide officially signed sources of so called
"community-enhanced version" named "jumbo" at main page:

  http://openwall.com/john/

with a lot of enhancement like NTLM, raw MD5, etc.

Versions of packages john depends on:
ii  john-data  1.8.0-2
ii  libc6  2.19-22

Versions of packages john suggests:
ii  wamerican [wordlist]  7.1-1

-- 
Best regards!



Bug#800698: How to find bad process.

2015-12-01 Thread Oleksandr Gavenko
I trapped into this issue and ask help on:

  http://thread.gmane.org/gmane.linux.debian.user.russian/122511

where pointed to:

  
http://askubuntu.com/questions/692825/how-to-fix-graphical-issues-with-skype-gdk-warning

where found:

  https://bugs.launchpad.net/ubuntu/+source/openjdk-7/+bug/1512760

So on my host I do:

  $ ipcs -m -l
  -- Shared Memory Limits 
  max number of segments = 4096  <== THIS
  max seg size (kbytes) = 18014398509465599
  max total shared memory (kbytes) = 18014398442373116
  min seg size (bytes) = 1

  $ ipcs -m -u
  -- Shared Memory Status 
  segments allocated 4096 <=== LIMIT EXCEEDED
  pages allocated 1118115 <== about 4 GiB
  pages resident  14194
  pages swapped   71
  Swap performance: 0 attempts   0 successes

I see that some process have a lot of occurrence:

  $ ipcs -m -p

and search for it:

  $ ps -e | grep $PID

This was NemBeans on Java 7u85-2.6.1-5. This help:

  [UPGRADE] openjdk-7-jdk:amd64 7u85-2.6.1-5 -> 7u91-2.6.3-1

-- 
Best regards!



Bug#803165: Iceweasel icon are cropped instead of resized.

2015-11-28 Thread Oleksandr Gavenko

  $ dpkg -S iceweasel.png

  iceweasel: /usr/share/icons/hicolor/32x32/apps/iceweasel.png
  iceweasel: /usr/share/pixmaps/iceweasel.png
  iceweasel: /usr/share/icons/hicolor/48x48/apps/iceweasel.png
  iceweasel: /usr/share/icons/hicolor/64x64/apps/iceweasel.png
  iceweasel: /usr/share/icons/hicolor/128x128/apps/iceweasel.png
  iceweasel: /usr/share/icons/hicolor/16x16/apps/iceweasel.png

Only /usr/share/icons/hicolor/128x128/apps/iceweasel.png shown full. Other
smaller pictures are just cropped version of 128x128.

Previous to "Version: 42.0-1" have properly sized small icons:

  $ wget 
http://security.debian.org/debian-security/pool/updates/main/i/iceweasel/iceweasel_38.4.0esr-1~deb8u1_amd64.deb

-- 
Best regards!



Bug#805984: inetutils-ftp: netrc(5) symlink isn't created.

2015-11-24 Thread Oleksandr Gavenko
Package: inetutils-ftp
Version: 2:1.9.4-1
Severity: normal

I use ftp from ftp package and install fto from inetutils-ftp package.

Previously I have netrc(5) man page, now it absents.

I think that postinstall script forget add alternatives for man page, because
corresponding file exists:

  bash# dpkg -S netrc.5
  ftp: /usr/share/man/man5/netkit-netrc.5.gz
  inetutils-ftp: /usr/share/man/man5/inetutils-netrc.5.gz

Versions of packages inetutils-ftp depends on:
ii  libc6 2.19-22
ii  libreadline6  6.3-8+b3
ii  netbase   5.3

-- 
Best regards!



Bug#763628: It is possible to override such behavior.

2015-11-23 Thread Oleksandr Gavenko
I trapped to inability to flush built-in connman DNS cache:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=805797

Solution to run connman with:

  $ cat /etc/default/connman
  DAEMON_OPTS='--nodnsproxy'

See CONNMAN(8).

-- 
Best regards!



Bug#805797: connman: Utility to flush DNS cache?

2015-11-22 Thread Oleksandr Gavenko
Package: connman
Version: 1.21-1.2
Severity: normal

I configure sub-domains in registrar and web-server and like to test setup.

With connnman DNS caching enabled I can't do this:

  $ cat /etc/resolv.conf
  # Generated by Connection Manager
  nameserver 127.0.0.1
  nameserver ::1

Restarting:

  $ sudo service connman restart

doesn't flush DNS cache. I can't find any command for flushing cache in
connmanctl(1). Also connman.conf(5) say nothing about DNS caching.

With help of CONNMAN(8) and /etc/init.d/connman I managed to write:

  $ cat /etc/default/connman
  DAEMON_OPTS='--nodnsproxy'

and after:

  $ sudo service connman restart

I able to get updates for new entries.

Please add command to connmanctl to flush/invalidate cache!

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (400, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages connman depends on:
ii  dbus 1.10.0-3
ii  init-system-helpers  1.24
ii  libc62.19-22
ii  libdbus-1-3  1.10.0-3
ii  libglib2.0-0 2.46.1-1
ii  libgnutls-deb0-283.3.18-1
ii  libreadline6 6.3-8+b3
ii  libxtables10 1.4.21-2+b1
ii  lsb-base 9.20150917

Versions of packages connman recommends:
ii  bluez  5.33-1
ii  ofono  1.15-3
ii  wpasupplicant  2.3-2.1

Versions of packages connman suggests:
pn  indicator-network  

-- no debconf information

-- 
Best regards!



Bug#802923: mercurial-common: Rename of bash-completion file broke completion autoloading mechanism.

2015-10-25 Thread Oleksandr Gavenko
Package: mercurial-common
Version: 3.5.2-1
Severity: normal
New version move

  /usr/share/bash-completion/completions/hg

to:

  /usr/share/bash-completion/completions/mercurial

Newer bash-completion project moved to autoloading on demand schema with
"completion -D" trick.

This means that completion file only loaded during first time pressing TAB on
"hg ... TAB" expression in interactive session.

As for now we have no "hg" completion it wasn't loaded. As a trick I type:

  $ mercurial cloTAB

and:

  complete -o bashdefault -o default -o nospace -F _hg hg \
  || complete -o default -o nospace -F _hg hg

from /usr/share/bash-completion/completions/mercurial, loaded and starting
from that time I able to use completion for hg.

I don't understand reason for such renames even if look to
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799052

Note that old cache show right file name:

  bash# apt-file search -x bash.*hg
  mercurial-common: /usr/share/bash-completion/completions/hg

If your desire to hold completion fine under name "mercurial" consider making
symlink to "hg" to fix issue.

As temporary solution it is possible to load "hg" completion in personal
configuration file.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (400, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.2.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages mercurial-common depends on:
ii  libjs-excanvas  0.r3-4
ii  python  2.7.9-1
pn  python:any  

Versions of packages mercurial-common recommends:
ii  ca-certificates  20150426
ii  mercurial3.5.2-1

Versions of packages mercurial-common suggests:
ii  python-mysqldb   1.2.3-2.1
ii  python-openssl   0.15.1-2
ii  python-pygments  2.0.1+dfsg-1.1
ii  tk [wish]8.6.0+8

-- no debconf information

-- 
Best regards!



Bug#802611: subversion: Core dump of "svn diff -c 102".

2015-10-22 Thread Oleksandr Gavenko
On 2015-10-21, James McCoy wrote:

> On Oct 21, 2015 12:00 PM, "Oleksandr Gavenko" <gaven...@gmail.com> wrote:
>>
>> 100% reproduced.
>>
>>   bash# svn diff -c 109
>
> Is this a public repository?
>
Sorry, no. Even "core" dump have authorisation info.

I gather another data.

On some random SVN project checkout from sf.net and gna.org I can't reproduce
bug.

http://svn.gna.org/svn/aae/trunk/ SVN server have same version as my private:

  Powered by Apache Subversion version 1.8.10 (r1615264).

and:

bash# curl -vvv --user XXX:YYY http://example.ua/

  * Hostname was NOT found in DNS cache
% Total% Received % Xferd  Average Speed   TimeTime Time  
Current
   Dload  Upload   Total   SpentLeft  Speed
0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 
0*   Trying 108.61.198.53...
  * Connected to example.ua (xx.xx.xxx.xx) port 80 (#0)
  * Server auth using Basic with user 'XXX'
  > GET / HTTP/1.1
  > Authorization: Basic YYY
  > User-Agent: curl/7.38.0
  > Host: example.ua
  > Accept: */*
  >
  < HTTP/1.1 200 OK
  < Date: Thu, 22 Oct 2015 10:26:22 GMT
  * Server Apache/2.4.10 (Debian) is not blacklisted
  < Server: Apache/2.4.10 (Debian)
  < Last-Modified: Wed, 21 Oct 2015 20:29:50 GMT
  < ETag: W/"113//"
  < Accept-Ranges: bytes
  < Vary: Accept-Encoding
  < Content-Length: 434
  < Content-Type: text/html; charset=UTF-8
  <
  { [data not shown]
  100   434  100   4340 0   1122  0 --:--:-- --:--:-- --:--:--  1124
  * Connection #0 to host example.ua left intact
   - Revision 113: /
  
- Revision 113: /
   
pom.xml
src/
   
   Powered by http://subversion.apache.org/;>Apache 
Subversion version 1.8.10 (r1615264).
  

Also I try checkout from sub-leaf. In that save and get assertion error (which
are absent in case of root checkout):

  $ svn co http://example.ua/src/main/
  $ cd main
  $ diff -c 10
  svn: 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/util.c:1734:
 svn_ra_serf__get_relative_path: Assertion `! ((session)->me_resource != ((void 
*)0))' failed.
  Aborted (core dumped)

Corresponding back-trace:

  Reading symbols from /usr/bin/svn...Reading symbols from 
/usr/lib/debug//usr/bin/svn...done.
  done.
  [New LWP 13691]
  [Thread debugging using libthread_db enabled]
  Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
  Core was generated by `svn diff -c 10'.
  Program terminated with signal SIGABRT, Aborted.
  #0  0x7ff4bd5c6107 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  0x7ff4bd5c6107 in __GI_raise (sig=sig@entry=6) at 
../nptl/sysdeps/unix/sysv/linux/raise.c:56
  #1  0x7ff4bd5c74e8 in __GI_abort () at abort.c:89
  #2  0x7ff4bd5bf226 in __assert_fail_base (fmt=0x7ff4bd6f5d08 "%s%s%s:%u: 
%s%sAssertion `%s' failed.\n%n", assertion=assertion@entry=0x7ff4bc48ac70 "! 
((session)->me_resource != ((void *)0))",
  file=file@entry=0x7ff4bc48aae8 
"/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/util.c", 
line=line@entry=1734,
  function=function@entry=0x7ff4bc48aeb0 <__PRETTY_FUNCTION__.13090> 
"svn_ra_serf__get_relative_path") at assert.c:92
  #3  0x7ff4bd5bf2d2 in __GI___assert_fail 
(assertion=assertion@entry=0x7ff4bc48ac70 "! ((session)->me_resource != ((void 
*)0))",
  file=file@entry=0x7ff4bc48aae8 
"/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/util.c", 
line=line@entry=1734,
  function=function@entry=0x7ff4bc48aeb0 <__PRETTY_FUNCTION__.13090> 
"svn_ra_serf__get_relative_path") at assert.c:101
  #4  0x7ff4bc485f40 in svn_ra_serf__get_relative_path 
(rel_path=0x7fffd5be3560, orig_path=orig_path@entry=0x7ff4b5827770 
"/src/main/webapp/WEB-INF/views/bail/add.jsp", 
session=session@entry=0x7ff4bee11ce8,
  pool=pool@entry=0x7ff4b5826028) at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/util.c:1734
  #5  0x7ff4bc47bd7b in svn_ra_serf__get_stable_url 
(stable_url=stable_url@entry=0x7fffd5be35c0, 
latest_revnum=latest_revnum@entry=0x0, session=session@entry=0x7ff4bee11ce8,
  url=0x7ff4b5827770 "/src/main/webapp/WEB-INF/views/bail/add.jsp", 
revision=revision@entry=9, result_pool=result_pool@entry=0x7ff4b5826028, 
scratch_pool=0x7ff4b5826028)
  at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/property.c:861
  #6  0x7ff4bc4744cc in svn_ra_serf__get_file (ra_session=, 
path=, revision=9, stream=0x7ff4b58276d0, fetched_rev=0x0, 
props=0x7ff4b58260c8, pool=0x7ff4b5826028)
  at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/

Bug#802611: Updating from 1.9.2-1 to 1.9.2-2 doesn't help, downgrading to stable 1.8.10-6+deb8u1 does.

2015-10-21 Thread Oleksandr Gavenko
Updating from 1.9.2-1 to 1.9.2-2 doesn't help, downgrading to stable
1.8.10-6+deb8u1 does.

On 1.9.2-2 get same error:

(gdb) bt
#0  strlen () at ../sysdeps/x86_64/strlen.S:106
#1  0x7fe07c0da786 in svn_path_join_internal (base=0x0, 
component=0x7fe07d060148 
"src/main/java/net/lombard/rsnetlombard/domain/Bail.java", pool=0x7fe07d060028)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_subr/path.c:115
#2  0x7fe07c0dba9f in svn_path_url_add_component2 (url=, 
component=, pool=)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_subr/path.c:1085
#3  0x7fe07a75d3f6 in svn_ra_serf__get_file (ra_session=, 
path=, revision=108, 
stream=0x7fe07d0616e0, fetched_rev=0x0, props=0x7fe07d0600c8, 
pool=0x7fe07d060028)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/get_file.c:334
#4  0x7fe07ccdf03c in get_file_from_ra (fb=fb@entry=0x7fe07d0600a0, 
scratch_pool=scratch_pool@entry=0x7fe07d060028, props_only=0)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_client/repos_diff.c:334
#5  0x7fe07ccdf60b in get_file_from_ra (scratch_pool=, 
props_only=0, fb=0x7fe07d0600a0)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_client/repos_diff.c:958
#6  apply_textdelta (file_baton=0x7fe07d0600a0, base_md5_digest=0x7fe07d0c00a0 
"443d586ac513f84d4947c6edcd0cb6ae", 
pool=, handler=0x7fe07d064128, handler_baton=0x7fe07d064130)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_client/repos_diff.c:917
#7  0x7fe07a76b32b in fetch_for_file (scratch_pool=0x7fe07d0c0028, 
file=0x7fe07d0640a0)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:1376
#8  update_closed (xes=, baton=, 
leaving_state=, cdata=, 
attrs=, scratch_pool=0x7fe07d0c0028)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2011
#9  0x7fe07a76fd4d in xml_cb_end (raw_name=, 
xmlctx=0x7fe07d0f40f8)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:832
#10 expat_end (userData=0x7fe07d0f4188, raw_name=)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:965
#11 0x7fe07a314d53 in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#12 0x7fe07a31566c in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#13 0x7fe07a3139b9 in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#14 0x7fe07a314135 in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#15 0x7fe07a3176d0 in XML_ParseBuffer () from 
/lib/x86_64-linux-gnu/libexpat.so.1
#16 0x7fe07a77077e in parse_xml (ectx=0x7fe07d0f4188, ectx=0x7fe07d0f4188, 
is_final=0, len=, data=)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:893
#17 expat_response_handler (request=, response=0x7fe07d0e4138, 
baton=0x7fe07d0f4188, scratch_pool=)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:1061
#18 0x7fe07a76c10d in process_buffer (request=request@entry=0x7fe07d09f038, 
data=, len=, 
at_eof=at_eof@entry=0, alloc=0x7fe07d0c40a0, pool=0x7fe07d09a028, 
udb=0x7fe07d0f4298, udb=0x7fe07d0f4298)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2400
#19 0x7fe07a76c2cf in update_delay_handler (request=0x7fe07d09f038, 
response=0x7fe07d0e37b8, handler_baton=0x7fe07d0f4298, 
scratch_pool=0x7fe07d0ba028) at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2460
#20 0x7fe07a76e930 in handle_response (scratch_pool=0x7fe07d0ba028, 
serf_status=0x7ffe82160d34, handler=0x7fe07d0f41b8, 
response=, request=0x7fe07d09f038)
---Type  to continue, or q  to quit---
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/util.c:1415
#21 handle_response_cb (request=0x7fe07d09f038, response=0x7fe07d0e37b8, 
baton=0x7fe07d0f41b8, response_pool=0x7fe07d0ba028)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/util.c:1449
#22 0x7fe0785b545e in serf.process_connection () from 
/usr/lib/x86_64-linux-gnu/libserf-1.so.1
#23 0x7fe0785b3cee in serf_event_trigger () from 
/usr/lib/x86_64-linux-gnu/libserf-1.so.1
#24 0x7fe0785b3e0c in serf_context_run () from 
/usr/lib/x86_64-linux-gnu/libserf-1.so.1
#25 0x7fe07a76de61 in svn_ra_serf__context_run 
(sess=sess@entry=0x7fe07d0f6248, 
waittime_left=waittime_left@entry=0x7ffe82160f90, 
scratch_pool=scratch_pool@entry=0x7fe07d0bc028) at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/util.c:866
#26 0x7fe07a76c6b1 in process_editor_report (scratch_pool=0x7fe07d0f4028, 
handler=0x7fe07d0f41b8, ctx=0x7fe07d0ac308)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2614
#27 finish_report (report_baton=0x7fe07d0ac308, pool=)
at 
/build/subversion-BTY2MX/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2682
#28 0x7fe07ccb73a6 in diff_repos_repos 

Bug#802611: subversion: Core dump of "svn diff -c 102".

2015-10-21 Thread Oleksandr Gavenko
Package: subversion
Version: 1.9.2-1
Severity: serious

100% reproduced.

  bash# svn diff -c 109

Segmentation fault (core dumped)

  bash# gdb /usr/bin/svn core

GNU gdb (Debian 7.10-1) 7.10
This GDB was configured as "x86_64-linux-gnu".
Reading symbols from /usr/bin/svn...Reading symbols from 
/usr/lib/debug//usr/bin/svn...done.
done.
[New LWP 32211]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `svn diff -c 109'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  strlen () at ../sysdeps/x86_64/strlen.S:106
106 ../sysdeps/x86_64/strlen.S: No such file or directory.
(gdb) bt
#0  strlen () at ../sysdeps/x86_64/strlen.S:106
#1  0x7fb7e0eb9786 in svn_path_join_internal (base=0x0, 
component=0x7fb7e1e3f148 "src/main/java/net/domain/Bail.java", 
pool=0x7fb7e1e3f028) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_subr/path.c:115
#2  0x7fb7e0ebaa9f in svn_path_url_add_component2 (url=, 
component=, pool=) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_subr/path.c:1085
#3  0x7fb7df53c3f6 in svn_ra_serf__get_file (ra_session=, 
path=, revision=108, stream=0x7fb7e1e406e0, fetched_rev=0x0, 
props=0x7fb7e1e3f0c8, pool=0x7fb7e1e3f028)
at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/get_file.c:334
#4  0x7fb7e1abe03c in get_file_from_ra (fb=fb@entry=0x7fb7e1e3f0a0, 
scratch_pool=scratch_pool@entry=0x7fb7e1e3f028, props_only=0) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_client/repos_diff.c:334
#5  0x7fb7e1abe60b in get_file_from_ra (scratch_pool=, 
props_only=0, fb=0x7fb7e1e3f0a0) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_client/repos_diff.c:958
#6  apply_textdelta (file_baton=0x7fb7e1e3f0a0, base_md5_digest=0x7fb7e1e9f0a0 
"443d586ac513f84d4947c6edcd0cb6ae", pool=, 
handler=0x7fb7e1e43128, handler_baton=0x7fb7e1e43130)
at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_client/repos_diff.c:917
#7  0x7fb7df54a32b in fetch_for_file (scratch_pool=0x7fb7e1e9f028, 
file=0x7fb7e1e430a0) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:1376
#8  update_closed (xes=, baton=, 
leaving_state=, cdata=, attrs=, 
scratch_pool=0x7fb7e1e9f028) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2011
#9  0x7fb7df54ed4d in xml_cb_end (raw_name=, 
xmlctx=0x7fb7e1ed30f8) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:832
#10 expat_end (userData=0x7fb7e1ed3188, raw_name=) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:965
#11 0x7fb7df0f3d53 in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#12 0x7fb7df0f466c in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#13 0x7fb7df0f29b9 in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#14 0x7fb7df0f3135 in ?? () from /lib/x86_64-linux-gnu/libexpat.so.1
#15 0x7fb7df0f66d0 in XML_ParseBuffer () from 
/lib/x86_64-linux-gnu/libexpat.so.1
#16 0x7fb7df54f77e in parse_xml (ectx=0x7fb7e1ed3188, ectx=0x7fb7e1ed3188, 
is_final=0, len=, data=) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:893
#17 expat_response_handler (request=, response=0x7fb7e1e91138, 
baton=0x7fb7e1ed3188, scratch_pool=) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/xml.c:1061
#18 0x7fb7df54b10d in process_buffer (request=request@entry=0x7fb7e1e99038, 
data=, len=, at_eof=at_eof@entry=0, 
alloc=0x7fb7e1ec20a0, pool=0x7fb7e1e79028, udb=0x7fb7e1ed3298, 
udb=0x7fb7e1ed3298)
at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2400
#19 0x7fb7df54b2cf in update_delay_handler (request=0x7fb7e1e99038, 
response=0x7fb7e1e907b8, handler_baton=0x7fb7e1ed3298, 
scratch_pool=0x7fb7e1e8e028) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/update.c:2460
#20 0x7fb7df54d930 in handle_response (scratch_pool=0x7fb7e1e8e028, 
serf_status=0x7ffc021784d4, handler=0x7fb7e1ed31b8, response=, 
request=0x7fb7e1e99038) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/util.c:1415
#21 handle_response_cb (request=0x7fb7e1e99038, response=0x7fb7e1e907b8, 
baton=0x7fb7e1ed31b8, response_pool=0x7fb7e1e8e028) at 
/build/subversion-Ld6m6I/subversion-1.9.2/subversion/libsvn_ra_serf/util.c:1449
#22 0x7fb7dd39445e in serf.process_connection () from 
/usr/lib/x86_64-linux-gnu/libserf-1.so.1
#23 0x7fb7dd392cee in serf_event_trigger () from 
/usr/lib/x86_64-linux-gnu/libserf-1.so.1
#24 0x7fb7dd392e0c in serf_context_run () from 
/usr/lib/x86_64-linux-gnu/libserf-1.so.1
#25 0x7fb7df54ce61 in svn_ra_serf__context_run 
(sess=sess@entry=0x7fb7e1ed5248, 
waittime_left=waittime_left@entry=0x7ffc02178730, 
scratch_pool=scratch_pool@entry=0x7fb7e1e9b028) at 

Bug#768042: We still have transitional package "gnunet-server" as dependency.

2015-10-21 Thread Oleksandr Gavenko
We still have transitional package "gnunet-server" as dependency.

I am on stretch/sid

Package: gnunet-gtk
Version: 0.10.1-1
Suggests: gnunet-server

-- 
Best regards!



Bug#801806: emacs24: Update man pages for emacs usage.

2015-10-14 Thread Oleksandr Gavenko
Package: emacs24
Version: 24.5+1-2
Severity: normal

As usually I run "man emacs" to examine command line options usage.

That I see:

  --script file
  Run file as an Emacs Lisp script.
  -l file, --load file
  Load the lisp code in the file file.

or:

  --batch Edit in batch mode.  The editor will send messages to stderr.  This
  option must be the first in the argument list.

>From this text it is hard to say difference between --script and --load
options and --batch may be non-first argument according to "info emacs".

Also man page doesn't point to "The Emacs Editor" Info manual which is
canonical reference to Emacs. Please add information about "info emacs" and
"CTRL-h i" - as a primary reference for Emacs usage.

I even asked question at:

  
http://emacs.stackexchange.com/questions/17346/what-is-the-difference-between-load-vs-script-options

as thought that man page is correct.

-- 
Best regards!



Bug#800935: pandoc: Possible dependency issue on pandoc-data?

2015-10-05 Thread Oleksandr Gavenko
Package: pandoc
Version: 1.12.4.2~dfsg-1+b14
Severity: normal

  $ apt-cache show pandoc
  Package: pandoc (Installed)
  ...
  Depends: pandoc-data, libc6 (>= 2.14), libffi6 (>= 3.0.4), libgmp10,
 liblua5.1-0, libpcre3 (>= 1:8.35), libyaml-0-2, zlib1g (>= 1:1.1.4)

I you see there are no exact match for 'pandoc-data' version. Is that correct?

When I update 'pandoc' package aptitude doesn't force to update 'pandoc-data'.

-- 
Best regards!



Bug#799351: chm2pdf: cp1251 text doesn't shown in PDF.

2015-09-18 Thread Oleksandr Gavenko
Package: chm2pdf
Version: 0.9.1-1.2
Severity: normal

Resulted PDF file properly formatted but every position of Cyrillic letter
shown empty:

  $ chm2pdf --webpage --charset cp-1251 WINASM.CHM WINASM.pdf

Selecting text and pasting into editor show proper Cyrillic text.

Versions of packages chm2pdf depends on:
ii  htmldoc 1.8.27-8+b1
ii  libchm-bin  2:0.40a-3+b1
ii  python  2.7.9-1
ii  python-chm  0.8.4.1-1
pn  python:any  

-- 
Best regards!



Bug#799302: Acknowledgement (xchm: ../src/common/unichar.cpp(65): assert "Assert failure" failed in ToHi8bit(): character cannot be converted to single byte)

2015-09-17 Thread Oleksandr Gavenko
Downgrading to xchm_1.20-1_amd64.deb from
https://packages.debian.org/wheezy/amd64/xchm/download resolve my issue.

-- 
Best regards!



Bug#798988: Other packages affected by "g_slice_set_config: assertion 'sys_page_size == 0' failed".

2015-09-17 Thread Oleksandr Gavenko
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789955

Script open local HTML file and topic warning showed.

-- 
Best regards!



Bug#799302: xchm: ../src/common/unichar.cpp(65): assert "Assert failure" failed in ToHi8bit(): character cannot be converted to single byte

2015-09-17 Thread Oleksandr Gavenko
Package: xchm
Version: 2:1.23-2+b1
Severity: normal
When I open file with non-ascii name I get error message widget and xchm exited
with core dump.

Widget has stack trace text:

  ASSERT INFO:
  ../src/common/unichar.cpp(65): assert "Assert failure" failed in ToHi8bit(): 
character cannot be converted to single byte

  BACKTRACE:
  [1] wxUniChar::ToHi8bit(unsigned int)
  [2] wxURI::Unescape(wxString const&)
  [3] wxFileSystem::URLToFileName(wxString const&)
  [4] wxNavigationEnabled::AcceptsFocusRecursively() const
  [5] wxFileSystem::OpenFile(wxString const&, int)
  [6] void std::__cxx11::basic_string::_M_construct(wchar_t const*, wchar_t 
const*, std::forward_iterator_tag)
  [7] wxEntry(int&, wchar_t**)
  [8] __libc_start_main

If I rename file to ASCII only symbols problem doesn't occur.

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (400, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages xchm depends on:
ii  libc6 2.19-18
ii  libchm1   2:0.40a-3+b1
ii  libgcc1   1:4.9.2-10
ii  libstdc++65.2.1-16
ii  libwxbase3.0-0v5  3.0.2+dfsg-1.2
ii  libwxgtk3.0-0v5   3.0.2+dfsg-1.2

-- no debconf information

-- 
Best regards!



Bug#799302: xchm: ../src/common/unichar.cpp(65): assert "Assert failure" failed in ToHi8bit(): character cannot be converted to single byte

2015-09-17 Thread Oleksandr Gavenko
On 2015-09-17, Oleksandr Gavenko wrote:

> When I open file with non-ascii name I get error message widget and xchm 
> exited
> with core dump.

By non ASCII I use Cyrillic letters, for example rename file to:

  Привет.chm

-- 
Best regards!



Bug#789955: devscripts: [bts] GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed

2015-09-17 Thread Oleksandr Gavenko
I got same warning. After checking with:

  $ strace -f -o ~/tmp/bts.log bts show emacs   


 

  (process:20399): GLib-CRITICAL **: g_slice_set_config: assertion 
'sys_page_size == 0' failed

  $ grep "/tmp/bts" ~/tmp/bts.log

   open("/tmp/bts7lmU9D.html", O_RDWR|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 5
   chmod("/tmp/bts7lmU9D.html", 0600) = 0
   lstat("/tmp/bts7lmU9D.html", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
   stat("/tmp/bts7lmU9D.html", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
   execve("/sbin/sensible-browser", ["sensible-browser", 
"file:///tmp/bts7lmU9D.html"], [/* 53 vars */]) = -1 ENOENT (No such file or 
directory)
   execve("/usr/sbin/sensible-browser", ["sensible-browser", 
"file:///tmp/bts7lmU9D.html"], [/* 53 vars */]) = -1 ENOENT (No such file or 
directory)
   execve("/home/user/usr/bin/sensible-browser", ["sensible-browser", 
"file:///tmp/bts7lmU9D.html"], [/* 53 vars */]) = -1 ENOENT (No such file or 
directory)
   execve("/usr/local/bin/sensible-browser", ["sensible-browser", 
"file:///tmp/bts7lmU9D.html"], [/* 53 vars */]) = -1 ENOENT (No such file or 
directory)
   execve("/usr/bin/sensible-browser", ["sensible-browser", 
"file:///tmp/bts7lmU9D.html"], [/* 53 vars */]) = 0
   execve("/usr/bin/x-www-browser", ["/usr/bin/x-www-browser", 
"file:///tmp/bts7lmU9D.html"], [/* 53 vars */]) = 0
   stat("/tmp/bts7lmU9D.html",  
   chmod("/tmp/bts7lmU9D.html", 0600 
   lstat("/tmp/bts7lmU9D.html",  
   unlink("/tmp/bts7lmU9D.html" 

So I run:

  $ sensible-browser file:///tmp/bts7lmU9D.html

and get:

  (process:20426): GLib-CRITICAL **: g_slice_set_config: assertion 
'sys_page_size == 0' failed

Same with:

  $ iceweasel file:///tmp/bts7lmU9D.html

Corresponding iceweasel bug:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=798988
 g_slice_set_config: assertion 'sys_page_size == 0' failed

-- 
Best regards!



Bug#798305: Old Yuandaocn N101-II table also doesn't recognised by version 1.0.31

2015-09-09 Thread Oleksandr Gavenko

  bash# adb --help
  Android Debug Bridge version 1.0.31

  bash# adb devices
  * daemon not running. starting it now on port 5037 *
  * daemon started successfully *
  List of devices attached 

  bash# pkill adb

  bash# /opt/android-sdk-linux/platform-tools/adb
  Android Debug Bridge version 1.0.32
  Revision 57224c5cff69-android

  bash# /opt/android-sdk-linux/platform-tools/adb devices
  List of devices attached
  * daemon not running. starting it now on port 5037 *
  * daemon started successfully *
  0123456789ABCDEFdevice

My device uses CyanogenMod 10.1 on Android 4.2.2 (September 2013).

Package updating is very suggested.

-- 
Best regards!



Bug#738128: I believe that newer version of adb resolve this issue.

2015-09-09 Thread Oleksandr Gavenko
When compare:

  $ strace -o ~/tmp/adb.log adb devices

and:

  $ strace -f -o ~/tmp/adb2.log /opt/android-sdk-linux/platform-tools/adb 
devices

the difference:

  socket(PF_LOCAL, SOCK_STREAM, 0)  = 3
  connect(3, {sa_family=AF_LOCAL, sun_path="/tmp/5037"}, 12) = 0
  write(3, "000c", 4)   = 4
  write(3, "host:version", 12)  = 12
  read(3, "OKAY", 4)= 4
  read(3, "0004", 4)= 4
  read(3, "001f", 4)= 4
  close(3)  = 0

and:

  write(1, "List of devices attached\n", 25) = 25
  socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 3
  connect(3, {sa_family=AF_INET, sin_port=htons(5037), 
sin_addr=inet_addr("127.0.0.1")}, 16) = 0
  write(3, "000c", 4)   = 4
  write(3, "host:version", 12)  = 12
  read(3, "OKAY", 4)= 4
  read(3, "0004", 4)= 4
  read(3, "0020", 4)= 4
  close(3)  = 0

So newer version doesn't used file sockets for awaiting client connection.

I believe that newer version of adb resolve this issue. Waiting for new
version.

-- 
Best regards!



Bug#797273: Packaging new version is necessary.

2015-09-09 Thread Oleksandr Gavenko
Nikolai Lusan wrote:

> There is a new upstream version that is required for some newer devices.

Some devices are not detected by old version, see:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=798305

Packaging new version is necessary.

-- 
Best regards!



Bug#798468: gthumb-data: Remove dependency on scrollkeeper.

2015-09-09 Thread Oleksandr Gavenko
Package: gthumb-data
Version: 3:3.4.0-2
Severity: normal

I don't understand necessity for dependency on scrollkeeper.

  $ apt-get download gthumb-data

  $ cat control
  ...
  Depends: dconf-gsettings-backend | gsettings-backend, scrollkeeper
  ...

Previously scrollkeeper dependency was on gthumb but moved due to:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=508709
 gthumb: please move scrollkeeper dependency to gthumb-data

postinst script of gthumb has no calls to scrollkeeper/rarian updates.

gthumb-data has no postinst script.

Previously I have experience with very slow scrollkeeper database update when
packages were installed. I ever found some blog posts to disable slowness by
``dpkg-divert``:

  http://mapopa.blogspot.com/2008/09/disable-scrollkeeper-on-any-linux.html
  http://www.gleenn.com/2008/12/some-useful-stuff-ive-been-learning.html
  http://helmi-blebe.blogspot.com/2008/11/disable-scrollkeeper-on-ubuntu.html
  
http://expertsxchange.blogspot.com/2009/02/install-ubuntu-intrepid-ibex-810-on.html

When packages installed you see:

  Processing triggers for doc-base (0.10.6) ...
  Processing 2 added doc-base files...
  Registering documents with dhelp...
  Registering documents with scrollkeeper...

which on non-SSD HDD may take a long time.

gthumb-data is most notable package which have scrollkeeper dependency:

  bash# apt-rdepends -r scrollkeeper
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  scrollkeeper
Reverse Depends: bless (0.6.0-4)
Reverse Depends: conduit (0.3.17-1.1)
Reverse Depends: gnotime (2.4.1-1)
Reverse Depends: grdesktop (0.23+d040330-3)
Reverse Depends: gthumb-data (3:3.4.0-2)

While

  $ dpkg -S Scrollkeeper.pm
  doc-base: /usr/share/perl5/Debian/DocBase/Programs/Scrollkeeper.pm

when scrollkeeper uninstalled ``doc-base`` package doesn't run corresponding 
trigger.

Versions of packages gthumb-data depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.22.0-1
ii  rarian-compat [scrollkeeper] 0.8.1-6
ii  scrollkeeper 0.8.1-6

-- 
Best regards!



Bug#797638: connman: Incorrect "Conflicts" dependencies.

2015-09-01 Thread Oleksandr Gavenko
Package: connman
Version: 1.21-1.2
Severity: normal
Because of bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=772996 I look
to alternatives and install `connman`:

  bash# dpkg -l | grep 'wicd\|connman'
  269:ii  connman  1.21-1.2 
   amd64   Intel Connection 
Manager daemon
  270:ii  connman-doc  1.21-1.2 
   all ConnMan 
documentation
  271:ii  connman-ui   
0~20130115-1amd64   
Full-featured GTK-based tray icon UI for ConnMan
  3690:ii  python-wicd  
1.7.2.4-4.1 all wired 
and wireless network manager - Python module
  4194:ii  wicd-cli 
1.7.2.4-4.1 all wired 
and wireless network manager - scriptable console client
  4195:ii  wicd-curses  
1.7.2.4-4.1 all wired 
and wireless network manager - Curses client
  4196:ii  wicd-daemon  
1.7.2.4-4.1 all wired 
and wireless network manager - daemon
  4197:ii  wicd-gtk 
1.7.2.4-4.1 all wired 
and wireless network manager - GTK+ client

If look to declared dependencies:

  $ apt-cache show connman | grep -C2 Conflicts:

  Recommends: bluez, wpasupplicant, ofono
  Suggests: indicator-network
  Conflicts: network-manager, wicd
  Description-en: Intel Connection Manager daemon
   The Linux Connection Manager project provides a daemon for managing

As you can see from above diagnostics I have no `wicd` package but
`wicd-daemon` is still present and conflict with `connman`.

Fix dependency to `wicd-daemon`!

As work-around it is possible to:

  $ sudo service wicd stop
  $ sudo update-rc.d disable wicd

or:

  $ sudo apt-get remove wicd-daemon

-- 
Best regards!



Bug#772996: further details

2015-08-31 Thread Oleksandr Gavenko
I live with this issue 2 year.

Problem reproduced with two identical TL-WN722N external USB adapter.

Network connection lost at random time or mostly 100% if re-attach adapter
from USB port.

Machine reboot help.

These attempts didn't help:

  $ sudo service wicd restart
  $ sudo pkill wpa_supplicant

wicd try to establish connection without success in loop.

If I try to set link manually it success:

  $ iwlist wlan0 scan  | grep ESSID
  $ /usr/bin/wpa_passphrase $SSID $PASS >~/tmp/wpa.pass
  $ ip link set wlan0 up
  $ sudo wpa_supplicant -d -Dwext -i wlan0 -c ~/tmp/wpa.pass &

  $ sudo pump -i wlan0 -h desktop &

After all I decide to switch to another network manager:

  $ sudo apt-get install connman
  
  $  connmanctl 
  connmanctl> 
  connmanctl> scan wifi 
  Scan completed for wifi

  connmanctl> services 
  $SSIDwifi_f8d111090ed6_6d617269636f6e5f64655f6d6965726461_managed_psk

  connmanctl> agent on
  Agent registered

  connmanctl> connect 
wifi_f8d111090ed6_6d617269636f6e5f64655f6d6965726461_managed_psk 
  Agent RequestInput 
wifi_f8d111090ed6_6d617269636f6e5f64655f6d6965726461_managed_psk
  Passphrase = [ Type=psk, Requirement=mandatory, Alternates=[ WPS ] ]
  WPS = [ Type=wpspin, Requirement=alternate ]
  Passphrase? $PASS
  Connected wifi_f8d111090ed6_6d617269636f6e5f64655f6d6965726461_managed_psk

  connmanctl> quit

With `wicd` adapted re-attaching cause error, with `connman` this is no longer
an issue.

`wicd` become broken near kernel v3.2 update. For now I have different
versions for firmware-atheros/linux-image/wicd.

-- 
Best regards!



Bug#795136: grub-common: Possibility to prevent effect from GRUB_TIMEOUT=0 by keyboard during boot.

2015-08-10 Thread Oleksandr Gavenko
Package: grub-common
Version: 2.02~beta2-22
Severity: normal

I like GRUB_TIMEOUT=0 setting as always think that holding SHIFT or ESC key
during boot stop GRUB2 from automatically selecting menu entry.

Shift key come in mind from https://help.ubuntu.com/community/Grub2 article.

But holding shift does not stop GRUB from loading, this may be achieved by
config like (I test it):

  $ cat /sudo:root@deblaptop:/etc/grub.d/50_shift_key

  #!/bin/sh
  cat EOF
  if keystatus --shift ; then
  set timeout=-1
  fi
  EOF

I have filling that keystatus --shift check I already have seen in GRUB
configs (in more complicated condition check), but it was removed in newer
package versions.

I don't know proper number for script but /etc/grub.d/00_header and
/etc/grub.d/30_os-prober have assignment to $timeout so must come after them.

It is possible to rewrite condition into somewhat safer variant - change
behavior only when timeout too small (not tested for syntax correctness):

  if [ $timeout -ge 0 -a $timeout -le 2 ] ; then
if keystatus --shift ; then
set timeout=-1
fi
  fi

-- 
Best regards!


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



Bug#783035: fglrx-driver: (EE) AIGLX error: failed to open /usr/X11R6/lib/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or direc

2015-04-20 Thread Oleksandr Gavenko
Source: fglrx-driver
Severity: normal

I help my brother upgrade Debian from 7.0 to sid (i686) which come with:

  Package: fglrx-driver
  Version: 1:14.12-1

After upgrading we run:

  $ sudo aticonfig --initial

to create xorg.conf with fglrx driver. In /var/log/Xorg.0.log:

(EE) AIGLX error: failed to open /usr/X11R6/lib/modules/dri/fglrx_dri.so, 
error[/usr/X11R6/lib/modules/dri/fglrx_dri.so: cannot open shared object file: 
No such file or directory]

This file present on system, but on another location:

  $ ls -l /usr/lib/dri/fglrx_dri.so
  lrwxrwxrwx 1 root root 34 Oct 22 00:40 /usr/lib/dri/fglrx_dri.so - 
../i386-linux-gnu/dri/fglrx_dri.so
  $ ls -l  /usr/lib/i386-linux-gnu/dri/fglrx_dri.so
  -rw-r--r-- 1 root root 38388704 Oct 22 00:41 
/usr/lib/i386-linux-gnu/dri/fglrx_dri.so

After:

  sudo mkdir -p /usr/X11R6/lib/modules
  sudo ln -s /usr/lib/i386-linux-gnu/dri  /usr/X11R6/lib/modules/dri
  ls  /usr/X11R6/lib/modules/dri/fglrx_dri.so

we able to xinit  and error go away!

I suggest to extend search path to /usr/lib/dri/ to avoid such error.

-- 
Best regards!


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



Bug#775153: wesnoth-1.12-tools: Replace data/tools/wmlxgettext with utils/wmlxgettext.

2015-01-16 Thread Oleksandr Gavenko
On 2015-01-15, Vincent Cheng wrote:

 Upstream for gettext uses Perl utils/wmlxgettext.

 Please replace this script by Perl version.

 Will do, thanks for the bug report! Incidentally, do you know if there
 are any other obsolete scripts shipped in wesnoth-1.12-tools, or any
 scripts that should be shipped but are not?

Sorry I not ((. Just discover issue and ask on IRC what used for gettext for
WML scripts.

during investigation I check this page:

 * http://wiki.wesnoth.org/Maintenance_tools

Seems that /usr/share/games/wesnoth/1.12/data/tools miss
srv/data/tools/GUI.pyw which is GUI for running wmllint/wmlscope and look nice
for non-tech people. It is good candidate for shipping.

In:

 * 
http://wiki.wesnoth.org/Translation_Maintainance_Commands#translation_related_utils

many utils that I don't understand that they do but most from src/wesnoth/utils
are in wesnoth-1.12-tools.

If you do this nice job it will be good to place wmllint, wmlscope,
wmlxgettext to PATH though Debian alternatives system which is done by

postinst scripts like:

  PRIORITY=27
  FLAVOR=1.12
  ALTERNATIVES=wmllint wmlscope wmlxgettext

  for i in ${ALTERNATIVES}; do
update-alternatives --install /usr/bin/$i $i /usr/bin/$i-${FLAVOR} 
${PRIORITY}
  done

and prerm scripts like:

  FLAVOR=1.12
  ALTERNATIVES=wmllint wmlscope wmlxgettext

  update-alternatives --remove $i /usr/bin/$i-${FLAVOR}

So you always install scripts to /usr/bin/wmllint-1.12, /usr/bin/wmllint-1.11,
/usr/bin/wmllint-1.10 and Debian alternatives system allow user select which
is better. But this require maintaining PRIORITY thought version upgrades...

-- 
Best regards!


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



Bug#775153: wesnoth-1.12-tools: Replace data/tools/wmlxgettext with utils/wmlxgettext.

2015-01-11 Thread Oleksandr Gavenko
Package: wesnoth-1.12-tools
Version: 1:1.12.0-1
Severity: normal

Python data/tools/wmlxgettext script isn't useful and experimental and still
dated at 2007.

That script shown on run:


  You probably want to use 'utils/wmlxgettext' instead
  This script was intended as a replacement but is not currently used
  It does not generate the same results as the perl version anymore
  This is not the wmlxgettext script you're looking for


Upstream for gettext uses Perl utils/wmlxgettext.

Please replace this script by Perl version.

From IRC chatting:

shadowm That's utils/wmlxgettext.
gavenkoa yes, I see that Perl script in checkouted sources. Debian
   wesnoth-1.12-tools package instead ships Python version, which
   is not useful...
gavenkoa What I do wrong - don't update my PATH... Instead experiment with
   xgettext. Seems that xgettext --language=Lua do job well.
shadowm Well, you are on your own there. We use wmlxgettext for mainline and
  Wescamp and we can't recommend or support anything else even if it
  works by sheer coincidence.

-- 
Best regards!


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



Bug#746017: /usr/share/maven/man is good when 2 packages have same man.

2015-01-07 Thread Oleksandr Gavenko
During movement from maven2 to maven3 it is not possible to store 2 man
page at same location.

For this purpose used Debian alternatives:

  desktop+bash# ls -l /usr/share/man/man1/mvn*
  lrwxrwxrwx 1 root root 26 2013-10-05 18:33 /usr/share/man/man1/mvn.1.gz - 
/etc/alternatives/mvn.1.gz
  lrwxrwxrwx 1 root root 31 2013-10-05 18:33 /usr/share/man/man1/mvnDebug.1.gz 
- /etc/alternatives/mvnDebug.1.gz

This bug may be closed.

-- 
Best regards!


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



Bug#677989: Where is mainstream for bash-completion?

2015-01-07 Thread Oleksandr Gavenko
 When I type mvn dependency:resolve -D and
 press tab, I get an error message bash: -D: command not found.

I already provide fix for that:

  https://bugs.debian.org/cgi-bin/bugreport.cgi?archive=yesbug=688696

But I debug only one case.

Just grep:

  $ grep -C 1 '^[[:blank:]]*-D' /etc/bash_completion.d/maven

  551-__mvncomp archetypeArtifactId= archetypeCatalog= archetypeGroupId= 
archetypeRepository= archetypeVersion= basedir= goals= interactiveMode= \
  552:-D ${cur}
  553-}
  --
  581-overWriteReleases=true overWriteSnapshots=true 
silent=true type= 
  582:-D ${cur}
  583-;;
  --
  598-$(__mvnlist_prefix 'resolutionFuzziness=' 
${fuzziness}) 
  599:-D ${cur}
  600-;;
  --
  629-$(__mvnlist_prefix 'tokens=' ${tokens}) 
  630:-D ${cur}
  631-;;

All those lines incorrect except first (which is my fix - continuation of
command by escaping \ new-line).

Header say that script author is:

  # Copyright (C) 2009, Ludovic Claude ludovic.cla...@laposte.net

Where is origin/mainstream of this bash-completion script?

I already do some local improvements based on Debian variant like adding new
options and handling completion based on pom.xml content.

Do package maintainer have interest in improvements and fixed?

Fill free to contact me - gaven...@gmail.com

-- 
Best regards!


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



Bug#741195: gzip: stdin has more than one entry--rest ignored for zip file

2014-12-21 Thread Oleksandr Gavenko
I download Tomcat distribution and MC can't enter to archive. On Enter key
just nothing happen.

If press F3 I get error:

  gzip: stdin has more than one entry--rest ignored

and next:

  Can not open ... in parse mode. No such file or directory.

If I issue command:

  cd /path/to/archive.zip/unzip://

I can browse content.

-- 
Best regards!


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



Bug#741195: Sorry, my fault with outdated configs.

2014-12-21 Thread Oleksandr Gavenko
Sorry, my fault with outdated configs.

See https://www.midnight-commander.org/ticket/2772#comment:3

I build ~/.config/mc/mc.ext as:

  $ cat $skelproj/.config/mc/mc.ext /etc/mc/mc.ext  ~/.config/mc/mc.ext

and seems that /etc/mc/mc.ext part outdated after MC updates.

-- 
Best regards!


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



Bug#732561: npm: Error: Cannot find module 'readable-stream'

2013-12-18 Thread Oleksandr Gavenko
Package: npm
Version: 1.3.10~dfsg-1
Severity: normal

bash# npm install -local bower
npm ERR! Error: Cannot find module 'readable-stream'
npm ERR! at Function._resolveFilename (module.js:337:11)
npm ERR! at Function._load (module.js:279:25)
npm ERR! at Module.require (module.js:359:17)
npm ERR! at require (module.js:375:17)
npm ERR! at Object.anonymous (/usr/lib/nodejs/sha/index.js:3:48)
npm ERR! at Module._compile (module.js:446:26)
npm ERR! at Object..js (module.js:464:10)
npm ERR! at Module.load (module.js:353:32)
npm ERR! at Function._load (module.js:311:12)
npm ERR! at Module.require (module.js:359:17)
npm ERR! If you need help, you may report this log at:
npm ERR! http://github.com/isaacs/npm/issues
npm ERR! or email it to:
npm ERR! n...@googlegroups.com

npm ERR! System Linux 3.10-3-686-pae
npm ERR! command /usr/bin/nodejs /usr/bin/npm install -local bower
npm ERR! cwd /home/user/tmp
npm ERR! node -v v0.6.19
npm ERR! npm -v 1.3.10
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR! /home/user/tmp/npm-debug.log
npm ERR! not ok code undefined
npm ERR! not ok code 1

After grepping I found:

  $ cd /usr/lib/
  $ ack-grep readable-stream
nodejs/sha/index.js
3:var Transform = require('stream').Transform || 
require('readable-stream').Transform

and change that line to:

  var Transform = require('stream').Transform // || 
require('readable-stream').Transform

and error goes out!

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (400, 'testing'), (200, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.10-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages npm depends on:
ii  node-abbrev   1.0.4-2
ii  node-ansi 0.2.1-1
ii  node-archy0.0.2-1
ii  node-block-stream 0.0.7-1
ii  node-fstream  0.1.24-1
ii  node-fstream-ignore   0.0.6-2
ii  node-github-url-from-git  1.1.1-1
ii  node-glob 3.2.6-1
ii  node-graceful-fs  2.0.0-2
ii  node-gyp  0.10.10-2
ii  node-inherits 2.0.0-1
ii  node-ini  1.1.0-1
ii  node-lockfile 0.4.1-1
ii  node-lru-cache2.3.1-1
ii  node-minimatch0.2.12-1
ii  node-mkdirp   0.3.5-1
ii  node-nopt 2.1.2-1
ii  node-npmlog   0.0.4-1
ii  node-once 1.1.1-1
ii  node-osenv0.0.3-1
ii  node-read 1.0.4-1
ii  node-read-package-json1.1.3-1
ii  node-request  2.26.1-1
ii  node-retry0.6.0-1
ii  node-rimraf   2.2.2-2
ii  node-semver   2.1.0-2
ii  node-sha  1.2.3-1
ii  node-slide1.1.4-1
ii  node-tar  0.1.18-1
ii  node-which1.0.5-2
ii  nodejs0.10.22~dfsg1-2

-- 
Best regards!


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



Bug#623488: Iceweasel already built with gstreamer support!

2013-12-14 Thread Oleksandr Gavenko
To enable H.264 in Debian Firefox 24/25 (Iceweasel) build you must install

apt-get install gstreamer0.10-plugins-good gstreamer0.10-ffmpeg

and enable gstream support in about:config  media.gstreamer.enabled according 
to
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=682917

-- 
Best regards!


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



Bug#726581: libreadline6-dev: Missing docs in info format!

2013-10-16 Thread Oleksandr Gavenko
Package: libreadline6-dev
Version: 6.2+dfsg-0.1
Severity: normal

$ apt-cache show libreadline6-dev
 .
 This package contains development files and the readline documentation
 in info format.

But there are no any info files in package!!!

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (400, 'testing'), (200, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.10-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libreadline6-dev depends on:
ii  dpkg  1.17.1
ii  install-info  5.2.0.dfsg.1-1
ii  libreadline6  6.2+dfsg-0.1
ii  libtinfo-dev  5.9+20130608-1

-- 
Best regards!


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



Bug#725398: installation-guide-amd64: Missing instruction to prevent: /sbin/MAKEDEV: warning: can't read /proc/devices

2013-10-05 Thread Oleksandr Gavenko
Package: installation-guide-amd64
Version: 20130503
Severity: normal

I perform instruction in order to install fresh Debian by debootstrap. The
D.3.4.1. Create device files say:

# apt-get install makedev
# cd /dev
# MAKEDEV generic

After MAKEDEV generic I get a lot of:

  /sbin/MAKEDEV: warning: can't read /proc/devices
  ...

Also I read https://wiki.debian.org/Debootstrap and this page guide to mount
/proc and /sys:

  main # echo proc $MY_CHROOT/proc proc defaults 0 0  /etc/fstab
  main # mount proc $MY_CHROOT/proc -t proc
  main # echo sysfs $MY_CHROOT/sys sysfs defaults 0 0  /etc/fstab
  main # mount sysfs $MY_CHROOT/sys -t sysfs

Instead I create /etc/fstab:

  proc  /proc  proc  defaults  0 0
  sysfs  /sys  sysfs  defaults  0 0

and mount in chroot:

  root@desktop:/dev# mount /proc
  root@desktop:/dev# mount /sys

so MAKEDEV generic no longer warn about can't read...

Please clarify D.3.4.1. Create device files section to avoid error printing
from MAKEDEV.

-- 
Best regards!


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



Bug#725400: installation-guide-amd64: Add notes about 'ncurses-term' into D.3.4. Configure The Base System section.

2013-10-05 Thread Oleksandr Gavenko
Package: installation-guide-amd64
Version: 20130503
Severity: normal

D.3.4. Configure The Base System say:

  After chrooting you may need to set the terminal definition to be compatible
  with the Debian base system, for example:

  # export TERM=xterm-color

In Emacs M-x term RET I have TERM=eterm-color.

In main system I search:

  desktop+bash# apt-file search eterm-color
  ncurses-term: /usr/share/terminfo/e/eterm-color

So after installing:

  # apt-get install ncurses-term

in chroot I can run mc and dpkg-reconfigure ncurses menus without problems!

Please add notes about 'ncurses-term' for better user experience for making
Debian installation in Emacs and possibly another non-usual terminals...

-- 
Best regards!


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



Bug#502184: Completely agree.

2013-07-25 Thread Oleksandr Gavenko
 Also the -S servername option is not clear enough, IMHO. How to specify the
 port number? I used an undocumented ip:port scheme for the server name.
 And what should be the server name, if it is not his IP? A DNS name? An
 entry in the freetds.conf file? Naturally one can find out by trial and
 error

This option lead us to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650005
where '-S' option cause some frustration...

-- 
Best regards!


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



Bug#650005: Have 'Server name not found in configuration files.' error.

2013-07-25 Thread Oleksandr Gavenko

  $ sqsh -U xxx -P yyy -D 1.2.3.4:
sqsh-2.1.7 Copyright (C) 1995-2001 Scott C. Gray
Portions Copyright (C) 2004-2010 Michael Peppler
This is free software with ABSOLUTELY NO WARRANTY
For more information type '\warranty'
Open Client Message
Layer 0, Origin 0, Severity 78, Number 44
Server name not found in configuration files.
Open Client Message
Layer 0, Origin 0, Severity 78, Number 45
Unknown host machine name.


After filling /etc/freetds/freetds.conf with:

[vitrina]
host = 1.2.3.4
port = 
tds version = 5.0

I able to connect by:

  $ sqsh -U opereta -P sybase -S vitrina


My question is it possible to connect to DB without editing
``/etc/freetds/freetds.conf`` with -D option?

Connection setting MUST live out of /etc/* hierarchy... You definitely need no
root permission just for connecting to DB.

-- 
Best regards!


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



Bug#717870: sqsh: Please, update epackage/ New upstream version (2.3) available.

2013-07-25 Thread Oleksandr Gavenko
Package: sqsh
Version: 2.1.7-2
Severity: normal

Home page list sqsh with 2.3 version:

  http://sourceforge.net/projects/sqsh/files/sqsh/sqsh-2.3/

Please update package, between releases are 3 yeasr...

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (400, 'testing'), (200, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.9-1-amd64 (SMP w/2 CPU cores)

Versions of packages sqsh depends on:
ii  lesstif2  1:0.95.2-1.1
ii  libc6 2.17-3
ii  libct40.91-4
ii  libreadline6  6.2-8
ii  libxt61:1.1.3-1

-- 
Best regards!


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



Bug#711753: gforth: gforth.el:742:18:Error: Don't know how to compile nil

2013-06-09 Thread Oleksandr Gavenko
Package: gforth
Version: 0.7.0+ds2-0.1
Severity: normal

  Install gforth for emacs24
  install/gforth: Byte-compiling for emacsen flavour emacs24

  In toplevel form:
  gforth.el:742:18:Error: Don't know how to compile nil
  gforth.el:742:18:Error: Don't know how to compile nil
  gforth.el:742:18:Error: Don't know how to compile nil
  gforth.el:742:18:Error: Don't know how to compile nil
  gforth.el:742:18:Error: Don't know how to compile nil
  ERROR: install script from gforth package failed
  dpkg: error processing emacs24 (--configure):
   subprocess installed post-installation script returned error exit status 1

For Emacs 21.x-23.x I have no such problem...


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (400, 'testing'), (200, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages gforth depends on:
ii  dpkg   1.16.9
ii  gforth-common  0.7.0+ds2-0.1
ii  gforth-lib 0.7.0+ds2-0.1
ii  install-info   4.13a.dfsg.1-10
ii  libc6  2.17-3
ii  libffcall1 1.10+cvs20100619-2
ii  libltdl7   2.4.2-1.1

gforth recommends no packages.

gforth suggests no packages.

-- no debconf information

-- 
Best regards!


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



Bug#699771: xpp: Crash when selece and deselect item in Option dialog.

2013-02-04 Thread Oleksandr Gavenko
Package: xpp
Version: 1.5-cvs20050828-1.2
Severity: normal
I run:

  $ xpp

and select Option dialog where click on reverse output option 2 times.
Second time crash xpp:

*** glibc detected *** xpp: free(): invalid pointer: 0x0138ea74 ***
=== Backtrace: =
/lib/x86_64-linux-gnu/libc.so.6(+0x76d76)[0x7f7038e68d76]
/lib/x86_64-linux-gnu/libc.so.6(cfree+0x6c)[0x7f7038e6daac]
xpp[0x40f617]
xpp[0x405045]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(_ZN9Fl_Button6handleEi+0xed)[0x7f7039954dcd]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(+0x3325e)[0x7f703994e25e]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(_ZN2Fl6handleEiP9Fl_Window+0x39e)[0x7f703994f16e]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(_Z9fl_handleRK7_XEvent+0x9b)[0x7f7039990cdb]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(+0x76c83)[0x7f7039991c83]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(_Z7fl_waitd+0x3e5)[0x7f70399920f5]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(_ZN2Fl4waitEd+0x128)[0x7f703994fed8]
/usr/lib/x86_64-linux-gnu/libfltk.so.1.1(_ZN2Fl3runEv+0x1d)[0x7f703995000d]
xpp[0x4047cb]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfd)[0x7f7038e10ead]
xpp[0x404831]
=== Memory map: 
0040-00419000 r-xp  08:11 4040053
/usr/bin/xpp
00618000-00619000 r--p 00018000 08:11 4040053
/usr/bin/xpp
00619000-0061b000 rw-p 00019000 08:11 4040053
/usr/bin/xpp
0061b000-0061c000 rw-p  00:00 0 
0137f000-01443000 rw-p  00:00 0  [heap]
7f703000-7f7030021000 rw-p  00:00 0 
7f7030021000-7f703400 ---p  00:00 0 
7f7034fa4000-7f7034fb3000 r--p  08:11 520268 
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraBd.ttf
7f7034fb3000-7f7034fc4000 r--p  08:11 520271 
/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf
7f7034fc4000-7f7034fd4000 r--p  08:11 520272 
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraBI.ttf
7f7034fd4000-7f7034fd5000 r--s  08:11 616741 
/var/cache/fontconfig/e84cc8772afc13d73edb530dfff88300-le64.cache-3
7f7034fd5000-7f7034fd6000 r--s  08:11 618344 
/var/cache/fontconfig/c05880de57d1f5e948fdfacc138775d9-le64.cache-3
7f7034fd6000-7f7034fdf000 r--s  08:11 617902 
/var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-le64.cache-3
7f7034fdf000-7f7034fe3000 r--s  08:11 618342 
/var/cache/fontconfig/99e8ed0e538f840c565b6ed5dad60d56-le64.cache-3
7f7034fe3000-7f7034fe6000 r--s  08:11 618341 
/var/cache/fontconfig/f24b2111ab8703b4e963115a8cf14259-le64.cache-3
7f7034fe6000-7f7034fec000 r--s  08:11 618340 
/var/cache/fontconfig/e25ca923d7a08ab6b0777bd7eb77ea77-le64.cache-3
7f7034fec000-7f7034ff5000 r--s  08:11 616927 
/var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-le64.cache-3
7f7034ff5000-7f7035007000 r-xp  08:11 1849627
/usr/lib/x86_64-linux-gnu/pkcs11/gnome-keyring-pkcs11.so
7f7035007000-7f7035207000 ---p 00012000 08:11 1849627
/usr/lib/x86_64-linux-gnu/pkcs11/gnome-keyring-pkcs11.so
7f7035207000-7f7035209000 rw-p 00012000 08:11 1849627
/usr/lib/x86_64-linux-gnu/pkcs11/gnome-keyring-pkcs11.so
7f7035209000-7f7035214000 r-xp  08:11 2839305
/lib/x86_64-linux-gnu/libnss_files-2.13.so
7f7035214000-7f7035413000 ---p b000 08:11 2839305
/lib/x86_64-linux-gnu/libnss_files-2.13.so
7f7035413000-7f7035414000 r--p a000 08:11 2839305
/lib/x86_64-linux-gnu/libnss_files-2.13.so
7f7035414000-7f7035415000 rw-p b000 08:11 2839305
/lib/x86_64-linux-gnu/libnss_files-2.13.so
7f7035415000-7f703541f000 r-xp  08:11 2839301
/lib/x86_64-linux-gnu/libnss_nis-2.13.so
7f703541f000-7f703561e000 ---p a000 08:11 2839301
/lib/x86_64-linux-gnu/libnss_nis-2.13.so
7f703561e000-7f703561f000 r--p 9000 08:11 2839301
/lib/x86_64-linux-gnu/libnss_nis-2.13.so
7f703561f000-7f703562 rw-p a000 08:11 2839301
/lib/x86_64-linux-gnu/libnss_nis-2.13.so
7f703562-7f7035635000 r-xp  08:11 2839299
/lib/x86_64-linux-gnu/libnsl-2.13.so
7f7035635000-7f7035834000 ---p 00015000 08:11 2839299
/lib/x86_64-linux-gnu/libnsl-2.13.so
7f7035834000-7f7035835000 r--p 00014000 08:11 2839299
/lib/x86_64-linux-gnu/libnsl-2.13.so
7f7035835000-7f7035836000 rw-p 00015000 08:11 2839299
/lib/x86_64-linux-gnu/libnsl-2.13.so
7f7035836000-7f7035838000 rw-p  00:00 0 
7f7035838000-7f703583f000 r-xp  08:11 2839289
/lib/x86_64-linux-gnu/libnss_compat-2.13.so
7f703583f000-7f7035a3e000 

Bug#696338: dhelp: JavaDoc HTML is not shown (empty page).

2012-12-19 Thread Oleksandr Gavenko
Package: dhelp
Version: 0.6.20
Severity: normal

I open URL:

  
http://localhost/cgi-bin/dhelp_fetcher?file=%2Fusr%2Fshare%2Fdoc%2Fgradle-doc%2Fapi

which refered from:

  http://localhost/doc/HTML/Programming/Java/index.html

and it is empty (Firefox source viewer also shown nothing)!

From /var/log/lighttpd/error.log (no errors):

  2012-12-19 21:32:27: (response.c.300) -- splitting Request-URI 
  2012-12-19 21:32:27: (response.c.301) Request-URI  :  
/cgi-bin/dhelp_fetcher?file=%2Fusr%2Fshare%2Fdoc%2Fgradle-doc%2Fapi 
  2012-12-19 21:32:27: (response.c.302) URI-scheme   :  http 
  2012-12-19 21:32:27: (response.c.303) URI-authority:  localhost 
  2012-12-19 21:32:27: (response.c.304) URI-path :  /cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.305) URI-query:  
file=%2Fusr%2Fshare%2Fdoc%2Fgradle-doc%2Fapi 
  2012-12-19 21:32:27: (response.c.349) -- sanatising URI 
  2012-12-19 21:32:27: (response.c.350) URI-path :  /cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (mod_access.c.135) -- mod_access_uri_handler called 
  2012-12-19 21:32:27: (response.c.470) -- before doc_root 
  2012-12-19 21:32:27: (response.c.471) Doc-Root : /srv/www 
  2012-12-19 21:32:27: (response.c.472) Rel-Path : /cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.473) Path :  
  2012-12-19 21:32:27: (response.c.521) -- after doc_root 
  2012-12-19 21:32:27: (response.c.522) Doc-Root : /srv/www 
  2012-12-19 21:32:27: (response.c.523) Rel-Path : /cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.524) Path : 
/srv/www/cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.541) -- logical - physical 
  2012-12-19 21:32:27: (response.c.542) Doc-Root : /srv/www 
  2012-12-19 21:32:27: (response.c.543) Rel-Path : /cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.544) Path : 
/usr/lib/cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.561) -- handling physical path 
  2012-12-19 21:32:27: (response.c.562) Path : 
/usr/lib/cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.569) -- file found 
  2012-12-19 21:32:27: (response.c.570) Path : 
/usr/lib/cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (response.c.719) -- handling subrequest 
  2012-12-19 21:32:27: (response.c.720) Path : 
/usr/lib/cgi-bin/dhelp_fetcher 
  2012-12-19 21:32:27: (mod_access.c.135) -- mod_access_uri_handler called 
  2012-12-19 21:32:27: (mod_compress.c.719) -- handling file as static file 
  2012-12-19 21:32:27: (response.c.128) Response-Header: 
  HTTP/1.1 200 OK
  Content-Type: text/plain
  Transfer-Encoding: chunked
  Date: Wed, 19 Dec 2012 19:32:27 GMT
  Server: lighttpd/1.4.31


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages dhelp depends on:
ii  doc-base   0.10.4
ii  libcommandline-ruby1.8 0.7.10-12
ii  libdata-page-perl  2.02-1
ii  libdb-ruby1.8  0.6.5-7
ii  libgettext-ruby1.8 2.2.1-3
ii  libhtml-parser-perl3.69-2
ii  liblocale-gettext-perl 1.05-7+b1
ii  libtemplate-perl   2.24-1
ii  liburi-perl1.60-1
ii  perl-modules   5.14.2-14
ii  poppler-utils  0.18.4-3
ii  pstotext   1.9-6
ii  ruby-bdb [libdb-ruby1.8]   0.6.5-7
ii  ruby-commandline [libcommandline-ruby1.8]  0.7.10-12
ii  ruby-gettext [libgettext-ruby1.8]  2.2.1-3
ii  ruby1.81.8.7.358-6
ii  swish++6.1.5-2.2
ii  ucf3.0025+nmu3

Versions of packages dhelp recommends:
ii  iceweasel [www-browser]  16.0.2-1
ii  w3m [www-browser]0.5.3-8

Versions of packages dhelp suggests:
pn  catdvinone
ii  html2text 1.3.2a-15
ii  info2www  1.2.2.9-24
ii  lighttpd [httpd]  1.4.31-3
ii  man2html  1.6g-6
ii  w3m   0.5.3-8

-- no debconf information

-- 
Best regards!


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



Bug#696347: solr-jetty: Symlink in /var/lib/jetty/webapps point to non-existen dir.

2012-12-19 Thread Oleksandr Gavenko
Package: solr-jetty
Version: 3.6.0+dfsg-1
Severity: normal

  $ ls -l /var/lib/jetty/webapps/solr
  lrwxrwxrwx 1 root root  /var/lib/jetty/webapps/solr - 
/usr/share/solr/webapps/

I fix symlink to:

  solr - /usr/share/solr/web/

and successfully open http://localhost:8086/solr/admin/

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages solr-jetty depends on:
ii  jetty6.1.26-1
ii  libjetty-extra-java  6.1.26-1
ii  solr-common  3.6.0+dfsg-1

solr-jetty recommends no packages.

solr-jetty suggests no packages.

-- no debconf information

-- 
Best regards!


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



Bug#696046: bzr: Broken bash completion.

2012-12-16 Thread Oleksandr Gavenko
Package: bzr
Version: 2.6.0~bzr6526-1
Severity: normal

/etc/bash_completion.d/bzr have code:

  eval $(bzr bash-completion)

if you issue command:

  $ bzr bash-completion ~/.bash_completion.d/bzr

and then try to:

  $ . ~/.bash_completion.d/bzr

you get errors:

  desktop+bash# . ~/.bash_completion.d/bzr 
  bash: /home/user/.bash_completion.d/bzr:125: syntax error near unexpected 
token `;'
  bash: /home/user/.bash_completion.d/bzr:125: `  commit|ci|checkin|; commit)'
  desktop+bash# . ~/.bash_completion.d/bzr 
  bash: /home/user/.bash_completion.d/bzr:137: syntax error near unexpected 
token `;'
  bash: /home/user/.bash_completion.d/bzr:137: `  diff|di|dif|; diff)'
  desktop+bash# . ~/.bash_completion.d/bzr 
  bash: /home/user/.bash_completion.d/bzr:213: syntax error near unexpected 
token `;'
  bash: /home/user/.bash_completion.d/bzr:213: `  log|; log10)'


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages bzr depends on:
ii  python 2.7.3~rc2-1
ii  python-bzrlib  2.6.0~bzr6526-1

Versions of packages bzr recommends:
ii  python-gpgme  0.2-2

Versions of packages bzr suggests:
pn  bzr-doc  none
pn  bzr-gtk  none
pn  bzr-svn  none
pn  bzrtools none
pn  python-bzrlib.tests  none

-- no debconf information

-- 
Best regards!


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



Bug#684395: I am interesting in Fvwm in Debian.

2012-11-26 Thread Oleksandr Gavenko
On 2012-11-26, Vincent W. Chen wrote:

 On Sat, Nov 24, 2012 at 2:34 PM, Oleksandr Gavenko gaven...@gmail.com wrote:
 This evening I compiled latest Fvwm sources (1.7.0) and tested it. Next I
 checked that bugs about new version did not updated. I gather info about
 previous maintainer in order to contact him about Fvwm.
 Latest 1.7.0? The latest _stable_ release of FVWM at www.fvwm.org is
 2.6.5, which is the version I submitted.

I play with CVS sources:

  $ cvs rlog -l -h -b $(cat CVS/Repository) | grep 2_7
 ...
 branch-2_7
 version-2_7_0

But yes I don't hear about 2.7.0 release...

 And I found that you (Vincent W. Chen) start working on this:

   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684395
 newer upstream releases
   http://lists.debian.org/debian-devel/2012/10/msg00061.html
 Out of Date Package and Maintainer Absence
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689941
 RFS: fvwm/1:2.6.5.ds-1 [ITA]

 But I didn't found new Fvwm package in Experimental by today.
 Sorry about that, I should have kept this bug updated. For current
 status, see #690101 and #689941. In short, I am currently looking for
 sponsor. As Debian is currently under freeze, no one has the time yet
 to review, mentor, and push the new package to Experimental.

Ok. It is sadly that currently there are no sponsors that interesting in
uploading...

 As I am interesting in newest Fvwm version in Debian I may help you in
 packaging and testing.

 Currently I just complete read debian-faq, debian-reference-en,
 developers-reference, maint-guide, debian-policy and have about free 2-4 
 hours
 each week.

 Please, keep me informed on your progress (feel free to write private mail).
 I'll take all the help I can get. If you are a DD, you may help with
 sponsoring.

Oh, no! I am not DD. I mention that in middle paragraph...

 If you want to play/review/test, see the above bugs or
 find it at http://mentors.debian.net/package/fvwm. All criticisms
 welcome.

I will try to test you build. Especially I am interesting in
'fvwm-menu-desktop' script...

Also new Fvwm have fixes for buggy Java 7 focus behaviour...

-- 
Best regards!


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



Bug#100188: Status of 'debian-glossary'?

2012-11-25 Thread Oleksandr Gavenko
Hi!

I found excellent resource with list of Debian acronyms:

  http://www.witch.westfalen.de/debian/dicts/

and:

  http://wiki.debian.org/Glossary

and bug:

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=100188
 collect often-used acronyms somewhere

Most frustrating thins is why Debian have no 'debian-glossary' package??

I will be glad if we have package with dictionaries in Dict format. Most
dictionaries software understand this format.

Also it is good to host those files at official resource (like
alioth.debian.org) in case of inclusion to Debian package.

For me unclear copyright status of acronyms collection. As I understand some
string - just copied from one of:

  debian-faq
  sysadmin-guide
  debian-reference-en
  developers-reference
  maint-guide
  debian-policy
  packaging-tutorial
  debian-refcard

which are covered by GPL2, GPL2+, FDL, and other conditions.

International copyright low (Berne copyright convention) seems doesn't provide
concepts of extracting parts for dictionaries and encyclopedias. Some analogs
of fair use spread in most countries but with non-equal conditions...

Also I would be glad add Russian translation but only when get better
understand of copyright status of:

  http://www.witch.westfalen.de/debian/ddict/dicts/debian/html/

-- 
Best regards!


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



Bug#684395: I am interesting in Fvwm in Debian.

2012-11-24 Thread Oleksandr Gavenko
4 months ago I configure my ~/.fvwm/config and found that Debian package quite
outdated and there are a lot of 'please update' bugs.

Most sad thing is missing upstream 'fvwm-menu-desktop' script. I get know
about this at f...@fvwm.org :

  http://thread.gmane.org/gmane.comp.window-managers.fvwm.general/7490

This evening I compiled latest Fvwm sources (1.7.0) and tested it. Next I
checked that bugs about new version did not updated. I gather info about
previous maintainer in order to contact him about Fvwm.

And I found that you (Vincent W. Chen) start working on this:

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684395
newer upstream releases
  http://lists.debian.org/debian-devel/2012/10/msg00061.html
Out of Date Package and Maintainer Absence
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689941
RFS: fvwm/1:2.6.5.ds-1 [ITA]

But I didn't found new Fvwm package in Experimental by today.

As I am interesting in newest Fvwm version in Debian I may help you in
packaging and testing.

Currently I just complete read debian-faq, debian-reference-en,
developers-reference, maint-guide, debian-policy and have about free 2-4 hours
each week.

Please, keep me informed on your progress (feel free to write private mail).

-- 
Best regards!


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



Bug#692895: debian-faq: Missing quotes for wildcard in example.

2012-11-10 Thread Oleksandr Gavenko
Package: debian-faq
Version: 5.0.1
Severity: normal

during reading:

  /usr/share/doc/debian/FAQ/debian-faq.txt.gz

in section 8.1.1. dpkg I found text:

* Extract a single file named blurf (or a group of files named
  blurf* from a Debian archive: `dpkg --fsys-tarfile
  foo_VVV-RRR.deb | tar -xf - blurf*'

Last command unsafe and blurf* text must be quoted. All other examples use
quotes, like:

  `dpkg --list 'foo*''

a few paragraph below.

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

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

debian-faq depends on no packages.

debian-faq recommends no packages.

Versions of packages debian-faq suggests:
ii  ghostscript [postscript-viewer]  9.05~dfsg-6.2
ii  gv [postscript-viewer]   1:3.7.3-1
ii  iceweasel [www-browser]  16.0.2-1
ii  w3m [www-browser]0.5.3-8

-- no debconf information

-- 
Best regards!


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



Bug#692896: dlocate: Typo in man 1 dlocate.

2012-11-10 Thread Oleksandr Gavenko
Package: dlocate
Version: 1.02
Severity: normal

This sentence have typo (I selectet duplicate word):

  This contains the reformatted output **output** of 'dpkg -l'.

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

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

Versions of packages dlocate depends on:
ii  dctrl-tools [grep-dctrl]  2.22.2
ii  dpkg  1.16.9
ii  perl  5.14.2-14

dlocate recommends no packages.

dlocate suggests no packages.

-- no debconf information

-- 
Best regards!


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



Bug#692218: libmsv-java: Exception in thread main java.lang.NoClassDefFoundError: org/iso_relax/dispatcher/SchemaProvider

2012-11-03 Thread Oleksandr Gavenko
Package: libmsv-java
Version: 2009.1+dfsg1-3
Severity: normal
When I try convert xsd schema to rnc I got:

  $ java -jar /usr/share/java/msv-core.jar maven-v4_0_0.xsd maven-v4_0_0.rnc

  Exception in thread main java.lang.NoClassDefFoundError: 
org/iso_relax/dispatcher/SchemaProvider
  at java.lang.Class.getDeclaredMethods0(Native Method)
  at java.lang.Class.privateGetDeclaredMethods(Class.java:2442)
  at java.lang.Class.getMethod0(Class.java:2685)
  at java.lang.Class.getMethod(Class.java:1620)
  at sun.launcher.LauncherHelper.getMainMethod(LauncherHelper.java:488)
  at 
sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:480)
  Caused by: java.lang.ClassNotFoundException: 
org.iso_relax.dispatcher.SchemaProvider
  at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
  at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
  at java.security.AccessController.doPrivileged(Native Method)
  at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
  at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
  at java.lang.ClassLoader.loadClass(ClassLoader.java:356)


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

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

-- no debconf information

-- 
Best regards!


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



Bug#692219: libmsv-java: Please add commandline.html and developer.html to package.

2012-11-03 Thread Oleksandr Gavenko
Package: libmsv-java
Version: 2009.1+dfsg1-3
Severity: normal

Home page:

  http://msv.java.net/

say:

  See the included commandline.html file for details on how to use MSV from
  the command line. See the included developer.html file for details on how to
  use it as a library.

but libmsv-java package doesn't provide them...

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

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

-- no debconf information

-- 
Best regards!


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



Bug#692218: libmsv-java: Exception in thread main java.lang.NoClassDefFoundError: org/iso_relax/dispatcher/SchemaProvider

2012-11-03 Thread Oleksandr Gavenko
On 2012-11-03, Oleksandr Gavenko wrote:

 When I try convert xsd schema to rnc I got:

   $ java -jar /usr/share/java/msv-core.jar maven-v4_0_0.xsd maven-v4_0_0.rnc

   Exception in thread main java.lang.NoClassDefFoundError: 
 org/iso_relax/dispatcher/SchemaProvider
   at java.lang.Class.getDeclaredMethods0(Native Method)

I confused by http://relaxng.org/ page and decide that libmsv-java for
schema conversion. But problem exist if you use it as schema validator:

  $ java -jar /usr/share/java/msv-core.jar --help

  Exception in thread main java.lang.NoClassDefFoundError: 
org/iso_relax/dispatcher/SchemaProvider
at java.lang.Class.getDeclaredMethods0(Native Method)

  $ java -cp 
/usr/share/java/msv-core.jar:/usr/share/maven-repo/com/sun/msv/datatype/xsd/xsdlib/2009.1/xsdlib-2009.1.jar:/usr/share/java/xsdlib-2009.1.jar:/usr/share
/maven-repo/isorelax/isorelax/debian/isorelax-debian.jar:/usr/share/maven-repo/relaxngDatatype/relaxngDatatype/debian/relaxngDatatype-debian.jar:/usr/share/java/msv-testharnes
s-2009.1.jar:/usr/share/maven-repo/net/java/dev/msv/msv-testharness/2009.1/msv-testharness-2009.1.jar:/usr/share/maven-repo/xerces/xercesImpl/debian/xercesImpl-debian.jar:/usr
/share/maven-repo/xml-apis/xml-apis-1.4/debian/xml-apis-1.4-debian.jar:/usr/share/maven-repo/org/apache/ant/ant/debian/ant-debian.jar:/usr/share/maven-repo/org/apache/maven/ma
ven-script-ant/debian/maven-script-ant-debian.jar:/usr/share/maven-repo/org/apache/maven/plugin-tools/maven-plugin-tools-ant/debian/maven-plugin-tools-ant-debian.jar:/usr/shar
e/maven-repo/org/apache/ant/ant-launcher/debian/ant-launcher-debian.jar:/usr/share/maven-repo/xml-resolver/xml-resolver/debian/xml-resolver-debian.jar
 com.sun.msv.driver.textu
i.Driver --help

  unrecognized option: --help
  usage: java -jar msv.jar opts grammar instance1 [instance2 ...]

-- 
Best regards!


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



Bug#679503: libgif4 block from installing 32-bit Java on 64-bit host.

2012-09-30 Thread Oleksandr Gavenko
I just notice that recently libcap2 (with required by libpulse0, which
required by openjdk-7-jre) become with multiarch support.

So latest dependency to run 32-bit Java on 64-bit host is libgif4!!

-- 
Best regards!


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



Bug#689186: dhelp: /usr/share/dhelp/index-deferred: 46: /usr/share/dhelp/index-deferred: cannot create : Directory nonexistent

2012-09-29 Thread Oleksandr Gavenko
Package: dhelp
Version: 0.6.20
Severity: normal

I got errors:

  mktemp: failed to create file via template 
`/var/lib/dhelp/tmp/2012-09-27.index-log.': No such file or directory
  /usr/share/dhelp/index-deferred: 46: /usr/share/dhelp/index-deferred: cannot 
create : Directory nonexistent

when dhep trigger was executed.

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

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

Versions of packages dhelp depends on:
ii  doc-base   0.10.4
ii  libcommandline-ruby1.8 0.7.10-12
ii  libdata-page-perl  2.02-1
ii  libdb-ruby1.8  0.6.5-7
ii  libgettext-ruby1.8 2.2.1-2
ii  libhtml-parser-perl3.69-2
ii  liblocale-gettext-perl 1.05-7+b1
ii  libtemplate-perl   2.24-1
ii  liburi-perl1.60-1
ii  perl-modules   5.14.2-13
ii  poppler-utils  0.18.4-3
ii  pstotext   1.9-6
ii  ruby-bdb [libdb-ruby1.8]   0.6.5-7
ii  ruby-commandline [libcommandline-ruby1.8]  0.7.10-12
ii  ruby-gettext [libgettext-ruby1.8]  2.2.1-2
ii  ruby1.81.8.7.358-4
ii  swish++6.1.5-2.2
ii  ucf3.0025+nmu3

Versions of packages dhelp recommends:
ii  conkeror [www-browser]   1.0~~pre+git120527-1
ii  iceweasel [www-browser]  10.0.7esr-2
ii  w3m [www-browser]0.5.3-8

Versions of packages dhelp suggests:
pn  catdvinone
ii  html2text 1.3.2a-15
ii  info2www  1.2.2.9-24
ii  lighttpd [httpd]  1.4.31-1+b1
ii  man2html  1.6g-6
ii  w3m   0.5.3-8

-- no debconf information

-- 
Best regards!


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



Bug#688696: maven: [PATCH] Typo in maven bash completion file.

2012-09-24 Thread Oleksandr Gavenko
Package: maven
Version: 3.0.4-3
Severity: normal

When I try completion after last chars in expr:

  $ mvn archetype:generate -D

I got error:

  bash: -D: команда не найдена

After debugging issue I found typo - missing back slash. See patch below for
debian/bash_completion.d/maven file:

--- maven   2012-02-06 23:42:07.0 +0200
+++ maven-fixed 2012-09-24 23:49:49.0 +0300
@@ -548,7 +548,7 @@
 {
local cur=${COMP_WORDS[COMP_CWORD]}
cur=${cur#-D}
-   __mvncomp archetypeArtifactId= archetypeCatalog= archetypeGroupId= 
archetypeRepository= archetypeVersion= basedir= goals= interactiveMode= 
+   __mvncomp archetypeArtifactId= archetypeCatalog= archetypeGroupId= 
archetypeRepository= archetypeVersion= basedir= goals= interactiveMode= \
-D ${cur}
 }
 

Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

-- 
Best regards!


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



Bug#687808: virtualenvwrapper: Bash completion perform additional actions on script loading.

2012-09-15 Thread Oleksandr Gavenko
Package: virtualenvwrapper
Version: 3.4-2
Severity: normal

Hi! When I start xterm with bash I get such lines in xterm console:

  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/initialize
  virtualenvwrapper.user_scripts creating 
/home/user/.virtualenvs/premkvirtualenv
  virtualenvwrapper.user_scripts creating 
/home/user/.virtualenvs/postmkvirtualenv
  virtualenvwrapper.user_scripts creating 
/home/user/.virtualenvs/prermvirtualenv
  virtualenvwrapper.user_scripts creating 
/home/user/.virtualenvs/postrmvirtualenv
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/predeactivate
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/postdeactivate
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/preactivate
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/postactivate
  virtualenvwrapper.user_scripts creating 
/home/user/.virtualenvs/get_env_details
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/premkproject
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/postmkproject
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/prermproject
  virtualenvwrapper.user_scripts creating /home/user/.virtualenvs/postrmproject

They appear one time but if I delete ~/.virtualenvs directory (with it
content) this output appear again and ~/.virtualenvs hierarchy recreated.

So what is wrong with this behaviour?

I think that any active actions (like creating directory in non /tmp hierarchy
and files under it without asking user) in bash-completion are danger. Ever on
loading stage!!

I don't see any warnings about this behaviour in:

  $ apt-cache show virtualenvwrapper

and in:

  /usr/share/doc/virtualenvwrapper/README.Debian

My suggestion is to move init action from loading stage to first time calling
of virtualenvwrapper completion.

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

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

Versions of packages virtualenvwrapper depends on:
ii  bash-completion1:2.0-1
ii  libjs-sphinxdoc1.1.3+dfsg-4
ii  python 2.7.3~rc2-1
ii  python-virtualenv  1.7.1.2-2

virtualenvwrapper recommends no packages.

virtualenvwrapper suggests no packages.

-- no debconf information

-- 
Best regards!


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



Bug#669041: dhelp: Also have 404 for /doc hierarchy.

2012-08-31 Thread Oleksandr Gavenko
Package: dhelp
Version: 0.6.20
Severity: normal
Under /var/log/apache2/error.log I have errors:

  [Fri Aug 31 13:44:48 2012] [error] [client 127.0.0.1] File does not exist: 
/var/www/doc, referer: http://localhost/cgi-bin/dsearch?search=apt-cache%20tag
  [Fri Aug 31 13:44:49 2012] [error] [client 127.0.0.1] File does not exist: 
/var/www/favicon.ico

which quickly fixed by:

ln -s /usr/share/doc /var/www/doc

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

Versions of packages dhelp depends on:
ii  doc-base   0.10.4
ii  libcommandline-ruby1.8 0.7.10-12
ii  libdata-page-perl  2.02-1
ii  libdb-ruby1.8  0.6.5-7
ii  libgettext-ruby1.8 2.2.1-2
ii  libhtml-parser-perl3.69-2
ii  liblocale-gettext-perl 1.05-7+b1
ii  libtemplate-perl   2.24-1
ii  liburi-perl1.60-1
ii  perl-modules   5.14.2-12
ii  poppler-utils  0.18.4-3
ii  pstotext   1.9-6
ii  ruby-bdb [libdb-ruby1.8]   0.6.5-7
ii  ruby-commandline [libcommandline-ruby1.8]  0.7.10-12
ii  ruby-gettext [libgettext-ruby1.8]  2.2.1-2
ii  ruby1.81.8.7.358-4
ii  swish++6.1.5-2.2
ii  ucf3.0025+nmu3

Versions of packages dhelp suggests:
ii  apache2-mpm-worker [httpd]  2.2.22-11
ii  catdvi  0.14-12.1
ii  html2text   1.3.2a-15
ii  info2www1.2.2.9-24
ii  man2html1.6g-6
ii  w3m 0.5.3-8

-- 
Best regards!


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



Bug#685844: libgphoto2-2: /usr/lib/i386-linux-gnu/libgphoto2/print-camera-list udev-rules generate non-working entries PROGRAM=check-ptp-camera 06/01/01.

2012-08-25 Thread Oleksandr Gavenko

Package: libgphoto2-2
Version: 2.4.14-2
Severity: normal

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

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

Versions of packages libgphoto2-2 depends on:
ii  dpkg   1.16.8
ii  libc6  2.13-35
ii  libexif12  0.6.20-3
ii  libgd2-xpm 2.0.36~rc1~dfsg-6.1
ii  libgphoto2-port0   2.4.14-2
ii  libjpeg8   8d-1
ii  libltdl7   2.4.2-1.1
ii  multiarch-support  2.13-35

Versions of packages libgphoto2-2 recommends:
ii  libgphoto2-l10n  2.4.14-2
ii  udev 175-3.1


When I perform:

  $ /usr/lib/i386-linux-gnu/libgphoto2/print-camera-list udev-rules mode 0660 
group camera | sudo sh -c cat x/etc/udev/rules.d/90-my-libgphoto2.rules

I get '/etc/udev/rules.d/90-my-libgphoto2.rules' with line:

  PROGRAM=check-ptp-camera 06/01/01, MODE=0660, GROUP=camera

which on boot take error:

  $ cat /var/log/daemon.log
  ...
  Aug 25 12:02:24 laptop udevd[11129]: failed to execute 
'/lib/udev/check-ptp-camera' 'check-ptp-camera 06/01/01': No such file or 
directory
  ...

I try search:

  $ apt-file search check-ptp-camera

and found that Debian does not provide check-ptp-camera file.

so I suggest remove this entry from output of 'print-camera-list' utility. For
example this line also generated:

  # not working yet: PROGRAM=check-mtp-device, , ENV{ID_MEDIA_PLAYER}=1, 
MODE=0660, GROUP=camera

-- 
Best regards!


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



Bug#685772: www.debian.org: Please clarify official/unofficial status of resources under http://www.debian.org/support

2012-08-24 Thread Oleksandr Gavenko
Package: www.debian.org
Severity: serious
As I don't familiar with Debian mail lists hierarchy I previously ask for
right place at:

  debian-de...@lists.debian.org
  http://permalink.gmane.org/gmane.linux.debian.devel.general/175739

  debian-...@lists.debian.org
  http://permalink.gmane.org/gmane.linux.debian.devel.www/37994

But next pointed to this bug list:

  http://www.debian.org/Bugs/pseudo-packages

So...



I think that page:

  http://www.debian.org/support

MUST be reorganised in this way:

 * Make clarification on difference between official and non-official support
   resources.
 * Split page on two part: first list official resources, second -
   non-official.
 * Remove some non-official resources.
 * Add link to http://wiki.debian.org/DebianResources

If my arguments non-valuable or my vote value low I ask only for:

 * Make clarification on difference between official and non-official support
   resources.

I try to take arguments why doing so.



I think that page:

  http://www.debian.org/support

describe two things:

 1) how to get help on Debian topic
 2) channels of interaction between regular users and Debian project

While 1) goal is currently completed by this page 2) goal is partially broken
- this page doesn't take easy distinct what belong to Debian project.

Personally I think that all under *.debian.org are official. But this is my
assumption. Where I can find this kind of info?

I believe that most of people associate Debian with DFSG so I believe that
most of these people think that official Debian resources consistent with DFSG
(like avoiding discrimination, priorities on Debian users and free software,
and other parts from DFSG).



I don't know where stated official information about what are official Debian
resources for human interaction.

As I understand official resources are:

 * Debian documentation (txt, html, pdf)
 * Debian Wiki (wiki.debian.org)
 * Debian mailing lists (accessed from Google Groups (HTTP) or Gmane (NNTP))
 * Package Maintainers (package name@packages.debian.org, where I can find
   archive of these mails??)
 * Bug Tracking System (mail, HTTP)
 * IRC (irc.debian.org)

I think that http://www.debian.org/support is only one right place for such
king of info in current hierarchy of http://www.debian.org/...



Compare with this page:

  http://www.debian.org/

which have column:

Support
Debian International
Security Information
Bug reports
Mailing Lists
Mailing List Archives
Ports/Architectures

There are no links to non-official resources.



While some resources have term of use like:

  http://www.debian.org/MailingLists/disclaimer

but I don't find terms under another pages:

  http://wiki.debian.org/
  http://wiki.debian.org/DebianWiki/Contact
  http://www.debian.org/support#irc
  http://wiki.debian.org/IRC#Official_Debian_IRC_channels
  http://www.debian.org/Bugs/

I try to look these keywords without success:

  term licence statement agreement FAQ contract

I don't discuss about legality of communication, licence issues or disclaimers
on these resources (but it is essential!! for example if wiki permission too
restrictive I can't copy example of configs, etc).

My point in that if page http://www.debian.org/support achieve goal:

 * Make clarification on difference between official and non-official support
   resources.

we have sentences that describe what mean to be official resources.

This text must be harmonised with term of use of official resources.



When I say that goal

 1) how to get help on Debian topic

completed I miss one thing. http://www.debian.org/support point to 2 forums.
But:

  http://wiki.debian.org/DebianResources

point to another 10x or so forums. I don't have statistics how often forums
are visited and how helpful they are but I think that non-listened forums
discriminated (they miss promotion from Debian home page, while other get).

Another point that http://www.debian.org/support is not editable (this is
good) but anyone who setup new Debian resource have difficulties (I can be
wrong) in adding it to http://www.debian.org/support (note that
wiki.debian.org is editable by anyone who interesting in changes).

If take together these two thought I think it is right make one of:

 * remove info about unnecessary non-official resources

or

 * state that These resources ... are proved to be useful to Debian
   community. Also there are exist another {forums, wiki, etc. - select one},
   you can browse full list at:
   http://wiki.debian.org/DebianResources#TAG-TO-XXX;.

This resolve two 

Bug#685815: wiki.debian.org: Disable double click handling in Web-browser.

2012-08-24 Thread Oleksandr Gavenko
Package: wiki.debian.org
Severity: normal

I use double and triple click to select word/words and paragraph/paragraphs.
Behaviour for these actions are common for a lot of applications and GUI
libraries.

If I perform double click - Debian wiki redirect me to edit page. That is not
I want.

I look preference in my profile in order to disable this feature but do not
found any appropriate settings...

I suggest to disable such behaviour (JavaScript or CSS action for double
click in Web browser).

-- 
Best regards!


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



Bug#685815: Acknowledgement (wiki.debian.org: Disable double click handling in Web-browser.)

2012-08-24 Thread Oleksandr Gavenko
I inspect code and found this JavaScript function:

  // This is the function that registers double clicks.
  // isPreview is true if the current page is an edit draft preview
  function setCallback(node, line, isPreview) {
  ...
  node.addEventListener('dblclick',doActionEdit,false);
  ...
  node.attachEvent('ondblclick',doActionEdit);

  // walk part of DOM and add doubleclick function to all nodes with tagNames
  function walkDom (someNode, lineNbr, isPreview, nextId, topId) { 

in:

  http://wiki.debian.org/htdocs/common/js/common.js

I am not experienced in JS or MoinMoin to say how disable harm from double
clicks. May be just comment all 'walkDom' calls...

-- 
Best regards!


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



Bug#682900: mime-support: File renamed and copied to /tmp if contain Russian letters...

2012-07-26 Thread Oleksandr Gavenko
Package: mime-support
Version: 3.52-1
Severity: normal

From 'htop' utility:

28077 user   20   0  122M  2584  1736 S  0.0  0.1  0:00.04 ├─ /usr/bin/perl 
/usr/bin/see /home/user/net/васильева_007.jpg
28081 user   20   0  4164   584   492 S  0.0  0.0  0:00.00 │  └─ sh -c 
gthumb '/tmp/filemVzMYj'
28082 user   20   0  623M 92168 18772 S  0.0  2.3  0:02.35 │ └─ gthumb 
/tmp/filemVzMYj

As you can see 'gthumb' called with file from '/tmp' dir.

When file name does not contain Russian letters 'gthumb' start from current
directory with original file name.

Why such behaviour is wrong?

Most viewers allow:

 1) show files which lays in current directory (like you start one foto and
can look to another by press SPACE)
 2) edit files... (not only content but important metainfo file foto author,
dates, etc!!)

As non English people I am discriminated by losing functionality available for
EN people... ((

Man page does not say about such transformation...

I think path name handling must relay on libc and kernel, not on perl
scripts...

I use 'see' intensively in '~/.config/mc/ms.ext' and does not know any
alternative under Debian...

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

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

mime-support depends on no packages.

-- Configuration Files:
/etc/mailcap.order changed:
vlc:audio/*
vlc:video/*

-- 
Best regards!


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



Bug#682902: mime-support: Performance issue. Unnecessery resource consumption from 'see' utility...

2012-07-26 Thread Oleksandr Gavenko
Package: mime-support
Version: 3.52-1
Severity: normal

I found such picture in 'htop' utility:

28077 user   20   0  122M  2584  1736 S  0.0  0.1  0:00.04 ├─ /usr/bin/perl 
/usr/bin/see /home/user/net/васильева_007.jpg
28081 user   20   0  4164   584   492 S  0.0  0.0  0:00.00 │  └─ sh -c 
gthumb '/tmp/filemVzMYj'
28082 user   20   0  623M 92168 18772 S  0.0  2.3  0:02.35 │ └─ gthumb 
/tmp/filemVzMYj

I strongly suggest remove 'system' call to avoid 'sh -c' execution. Instead
use 'exec' without 'fork' to free CPU and memory from '/usr/bin/perl 
/usr/bin/see'.

I don't look to another utility from mime-support, but think that they also
have such issue...

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

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

-- 
Best regards!


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



  1   2   >