Bug#664764: [PATCH] Re: lxc-execute fails to start, because lxc-init is in wrong dir

2012-05-11 Thread Dmitry Azhichakov
Here is the patch that actually works for me.

-- 
Dmitry
--- lxc-0.8.0~rc1.orig/configure.ac
+++ lxc-0.8.0~rc1/configure.ac
@@ -62,7 +62,7 @@ AS_AC_EXPAND(LXC_GENERATE_DATE, $(date)
 
 AC_SUBST(LXCPATH, ${with_config_path})
 AC_SUBST(LXCROOTFSMOUNT, ${with_rootfs_path})
-AC_SUBST(LXCINITDIR, ['${libexecdir}'])
+AC_SUBST(LXCINITDIR, ['${libexecdir}/lxc'])
 AC_SUBST(LXCTEMPLATEDIR, ['/usr/share/lxc/templates'])
 
 AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h],


signature.asc
Description: Digital signature


Bug#669354: golang: godoc doesn't display package list correctly

2012-04-19 Thread Dmitry Azhichakov
Package: golang
Version: 2:1-6
Severity: normal

Symlink /usr/lib/go/src confuses it.
There is already a bug in Go's issue tracker: 
http://code.google.com/p/go/issues/detail?id=1540 even with a patch. Ondřej 
promised to apply that patch a year ago but either forgot to do that or it's 
broken again.

So, I have another patch. I think, it's a little less intrusive. And more 
general either: with this patch godoc should support symlinks everywhere as if 
they are normal directories/files.

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

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

Versions of packages golang depends on:
ii  golang-doc  2:1-6
ii  golang-go   2:1-6
ii  golang-src  2:1-6

golang recommends no packages.

golang suggests no packages.

-- no debconf information
diff -r bad5895b4270 src/cmd/godoc/filesystem.go
--- a/src/cmd/godoc/filesystem.go	Sat Jan 21 21:31:21 2012 -0800
+++ b/src/cmd/godoc/filesystem.go	Thu Apr 19 14:27:33 2012 +0400
@@ -66,5 +66,20 @@
 }
 
 func (osFS) ReadDir(path string) ([]os.FileInfo, error) {
-	return ioutil.ReadDir(path) // is sorted
+	fis, err := ioutil.ReadDir(path) // is sorted
+	if err != nil {
+		return nil, err
+	}
+	// Replace symlinks with what they are pointing to
+	dirPrefix := path + /
+	for i, fi := range fis {
+		if fi.Mode()  os.ModeSymlink != 0 {
+			fi, err = os.Stat(dirPrefix + fi.Name())
+			if err != nil {
+return nil, err
+			}
+		}
+		fis[i] = fi
+	}
+	return fis, nil
 }


Bug#609176: chromium-browser: Developer tools don't work

2011-02-04 Thread Dmitry Azhichakov
Now, the problem is fixed for me.

I think, the problem was in version mismatch of chromium-browser and
chromium-browser-inpector. Probably, their dependencies should be
changed to allow only [more] strict equivalence. Currently it's
possible to have a very outdated inspector with a fresh browser.

-- 
Dmitry



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



Bug#609176: chromium-browser: Developer tools don't work

2011-01-30 Thread Dmitry Azhichakov
Hi again, after some delay.

2011/1/13 Jonathan Nieder jrnie...@gmail.com:
 Thanks, Dmitry.  If it is not too much to ask, could you visit

  http://code.google.com/p/chromium/issues/entry?template=Defect%20on%20Linux

 and provide this information, ideally attaching a screenshot, and then
 send the issue number to here?  If something goes wrong e.g. creating
 an account, please feel free to just send the screenshot here, but it
 would be better to be in direct touch with the upstream developers,
 anyway.

I've downloaded and built upstream sources for 9.0.597.45. Works fine.
So, I don't think I should ticket an upstream.

Right now I'm downloading source package to check.

-- 
Dmitry



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



Bug#609176: chromium-browser: Developer tools don't work

2011-01-11 Thread Dmitry Azhichakov
On Tue, Jan 11, 2011 at 06:18:46PM -0600, Jonathan Nieder wrote:
 Any hints for reproducing it?
No. I can't find any solution to get it working, so have no idea how it can be
reproduced.

 Have you tried with LC_ALL=C and with ~/.config/chromium, ~/.cache/chromium
 moved out of the way?
Tried, the same.
Even created a new user, logged in and tried chromium-browser, the same.
Started chromium-browser from command line, no messages.

 Could you say a little more about what it means that it is dead?
After I hit ctrl-shit-I, the panes show, but empty. I can switch Elements to
Resources to Scripts etc. But they are empty: no html tree displayed, no
scripts etc. On Resources I can see a selection: Only enable for this
session or Always enable, but Enable resource tracking button does
absolutely nothing, even the selection stays. Every other button on every pane
acts the same -- does nothing.

-- 
Dmitry



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



Bug#609176: chromium-browser: Developer tools don't work

2011-01-06 Thread Dmitry Azhichakov
Package: chromium-browser
Version: 9.0.597.19~r68937-1
Severity: normal
Tags: experimental

Ctrl-Shift-I shows the 'Developer tools' frame but nothing is working in it.
It's just dead. I've checked it with clean user-data-dir also.

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.36-dsa (SMP w/8 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 chromium-browser depends on:
ii  chromium-browser-ins 6.0.472.63~r59945-4 page inspector for the chromium-br
ii  libasound2   1.0.23-2.1  shared library for ALSA applicatio
ii  libbz2-1.0   1.0.5-6 high-quality block-sorting file co
ii  libc62.11.2-7Embedded GNU C Library: Shared lib
ii  libcairo21.8.10-6The Cairo 2D vector graphics libra
ii  libcups2 1.4.5-2 Common UNIX Printing System(tm) - 
ii  libdbus-1-3  1.2.24-4simple interprocess messaging syst
ii  libdbus-glib-1-2 0.88-2.1simple interprocess messaging syst
ii  libevent-1.4-2   1.4.13-stable-1 An asynchronous event notification
ii  libexpat12.0.1-7 XML parsing C library - runtime li
ii  libfontconfig1   2.8.0-2.1   generic font configuration library
ii  libfreetype6 2.4.2-2.1   FreeType 2 font engine, shared lib
ii  libgcc1  1:4.4.5-10  GCC support library
ii  libgconf2-4  2.28.1-6GNOME configuration database syste
ii  libgcrypt11  1.4.5-2 LGPL Crypto library - runtime libr
ii  libglib2.0-0 2.24.2-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-2The GTK+ graphical user interface 
ii  libicu44 4.4.2-2 International Components for Unico
ii  libjpeg626b1-1   The Independent JPEG Group's JPEG 
ii  libnspr4-0d  4.8.6-1 NetScape Portable Runtime Library
ii  libnss3-1d   3.12.8-1Network Security Service libraries
ii  libpango1.0-01.28.3-1Layout and rendering of internatio
ii  libpng12-0   1.2.44-1PNG library - runtime
ii  libspeex11.2~rc1-1   The Speex codec runtime library
ii  libstdc++6   4.4.5-10The GNU Standard C++ Library v3
ii  libvpx0  0.9.1-2 VP8 video codec (shared library)
ii  libx11-6 2:1.3.3-4   X11 client-side library
ii  libxdamage1  1:1.1.3-1   X11 damaged region extension libra
ii  libxext6 2:1.1.2-1   X11 miscellaneous extension librar
ii  libxml2  2.7.8.dfsg-2GNOME XML library
ii  libxrender1  1:0.9.6-1   X Rendering Extension client libra
ii  libxslt1.1   1.1.26-6XSLT 1.0 processing library - runt
ii  libxss1  1:1.2.1-1   X11 Screen Saver extension library
ii  libxtst6 2:1.2.0-1   X11 Testing -- Record extension li
ii  xdg-utils1.0.2+cvs20100307-3 desktop integration utilities from
ii  zlib1g   1:1.2.3.4.dfsg-3compression library - runtime

chromium-browser recommends no packages.

Versions of packages chromium-browser suggests:
pn  chromium-browser-l10n none (no description available)

-- no debconf information



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



Bug#601896: python-django: django_bash_completion is not working and breaks command line

2010-10-30 Thread Dmitry Azhichakov
Package: python-django
Version: 1.2.3-1
Severity: normal

If commandline looks like (_ for cursor position):
$ ./manage.py _
and you hit TAB, a message is written by manage.py to stderr, which breaks 
commandline completely:
$ ./manage.py Type 'manage.py help' for usage._

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/8 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 python-django depends on:
ii  python  2.6.6-3+squeeze1 interactive high-level object-orie
ii  python-support  1.0.11   automated rebuilding support for P

Versions of packages python-django recommends:
ii  libjs-jquery  1.4.2-2JavaScript library for dynamic web

Versions of packages python-django suggests:
ii  python-flup   1.0.2-1Implements Python Web Server Gatew
pn  python-mysqldbnone (no description available)
pn  python-psycopgnone (no description available)
pn  python-psycopg2   none (no description available)
pn  python-sqlite none (no description available)
ii  python-yaml   3.09-5 YAML parser and emitter for Python

-- no debconf information



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



Bug#601896: python-django: django_bash_completion is not working and breaks command line

2010-10-30 Thread Dmitry Azhichakov
2010/10/31 Raphael Hertzog hert...@debian.org

 tag 601896 unreproducible
 thanks

Ah, my fault, sorry. Some pretty old manually installed Django 1.1.2 in the way.

--
Dmitry



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



Bug#571237: iceweasel: Crashes on closing a tab

2010-02-24 Thread Dmitry Azhichakov
Package: iceweasel
Version: 3.5.8-1
Severity: grave
Justification: renders package unusable

Steps to reproduce:
1. Open a new tab
2. Open http://ya.ru
3. Open http://google.com in the same new tab
4. Close the tab
5. CRASH!

'iceweasel -g' gives no bt, but error message on stderr may be useful
(attached).

-- Package-specific info:

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

Name: Russian (RU) Language Pack
Location: /usr/lib/iceweasel/extensions/langpack...@firefox.mozilla.org
Package: iceweasel-l10n-ru
Status: enabled

-- Plugins information
Name: Silverlight Plug-In
Location: /usr/lib/moon/plugin/libmoonloader.so
Package: moonlight-plugin-core
Status: enabled

Name: Java(TM) Plug-in 1.6.0_17
Location: /usr/lib/jvm/java-6-sun-1.6.0.17/jre/lib/amd64/libnpjp2.so
Package: sun-java6-bin
Status: enabled

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


-- Addons package information
ii  iceweasel  3.5.8-1Web browser based on Firefox
ii  iceweasel-l10n 1:3.5.6+debian Russian language package for Iceweasel
ii  moonlight-plug 1.0.1-3+b1 Free Software clone of Silverlight 1.0 - plu
ii  sun-java6-bin  6-17-1 Sun Java(TM) Runtime Environment (JRE) 6 (ar

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

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages iceweasel depends on:
ii  debianutils   3.2.2  Miscellaneous utilities specific t
ii  fontconfig2.8.0-2generic font configuration library
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libglib2.0-0  2.22.4-1   The GLib library of C routines
ii  libgtk2.0-0   2.18.7-1   The GTK+ graphical user interface 
ii  libnspr4-0d   4.8.3-1NetScape Portable Runtime Library
ii  libstdc++64.4.3-2The GNU Standard C++ Library v3
ii  procps1:3.2.8-7  /proc file system utilities
ii  psmisc22.10-1utilities that use the proc file s
ii  xulrunner-1.9.1   1.9.1.8-3  XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  libgssapi-krb5-2   1.8+dfsg~alpha1-7 MIT Kerberos runtime libraries - k
pn  mozplugger none(no description available)
ii  ttf-lyx1.6.5-1   TrueType versions of some TeX font
pn  ttf-mathematica4.1 none(no description available)
pn  xfonts-mathml  none(no description available)
pn  xprint none(no description available)

Versions of packages xulrunner-1.9.1 depends on:
ii  libasound2  1.0.22-2 shared library for ALSA applicatio
ii  libatk1.0-0 1.28.0-1 The ATK accessibility toolkit
ii  libbz2-1.0  1.0.5-4  high-quality block-sorting file co
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.20-2 simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.3-2GCC support library
ii  libglib2.0-02.22.4-1 The GLib library of C routines
ii  libgtk2.0-0 2.18.7-1 The GTK+ graphical user interface 
ii  libhunspell-1.2-0   1.2.8-6  spell checker and morphological an
ii  libjpeg62   6b-16.1  The Independent JPEG Group's JPEG 
ii  libmozjs2d  1.9.1.8-3The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d 4.8.3-1  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.5-2 Network Security Service libraries
ii  libpango1.0-0   1.26.2-1 Layout and rendering of internatio
ii  libpng12-0  1.2.42-2 PNG library - runtime
ii  libreadline66.1-1GNU readline and history libraries
ii  libsqlite3-03.6.22-1 SQLite 3 shared library
ii  libstartup-notification 0.10-1   library for program launch feedbac
ii  libstdc++6  4.4.3-2  The GNU Standard C++ Library v3
ii  libx11-62:1.3.3-1X11 client-side library
ii  libxrender1 1:0.9.5-1X Rendering Extension client libra
ii  libxt6  1:1.0.7-1X11 toolkit intrinsics library
ii  zlib1g

Bug#571237: iceweasel: Crashes on closing a tab

2010-02-24 Thread Dmitry Azhichakov
2010/2/24 Mike Hommey m...@glandium.org
 The bug is plugin-related. That doesn't make the package totally
 unusable.
This same thing happens also with every plugin disabled and with
-safe-mode switch.

2010/2/24 Mike Hommey m...@glandium.org
 What version of that plugin do you use ? (check about:plugins)
Shockwave Flash 10.0 r32

Package: flashplugin-nonfree
State: installed
Version: 1:2.8

--
Dmitry



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



Bug#571237: Bug#571138: iceweasel: random crashes at page/tab close of Iceweasel and iceape

2010-02-24 Thread Dmitry Azhichakov
2010/2/24 Mike Hommey m...@glandium.org:
 Can you all try to downgrade libcairo2 to the version in testing ?
 http://packages.debian.org/source/testing/cairo
It helped. Browser doesn't crash anymore.

-- 
Dmitry



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



Bug#571312: aptitude: Doesn't obey pinning

2010-02-24 Thread Dmitry Azhichakov
Package: aptitude
Version: 0.6.1.5-2
Severity: important

/etc/apt/preferences.d/cairo2:
Package: libcairo2
Pin: release a=testing
Pin-Priority: 1001

$ apt-cache policy libcairo2
libcairo2:
  Installed: 1.8.8-2
  Candidate: 1.8.8-2
  Package pin: 1.8.8-2
  Version table:
 1.8.10-1 1001
990 http://ftp.debian.org sid/main Packages
 *** 1.8.8-2 1001
500 http://ftp.debian.org squeeze/main Packages
100 /var/lib/dpkg/status
 1.6.4-7 1001
500 http://ftp.debian.org lenny/main Packages

$ sudo aptitude dist-upgrade
SKIPPED
The following packages will be upgraded:
  libcairo2 [1.8.8-2 - 1.8.10-1]  
1 packages upgraded, 0 newly installed, 21 to remove and 0 not upgraded.

As you can see, aptitude wants upgrading libcairo2 to unstable version.

-- Package-specific info:
aptitude 0.6.1.5 compiled at Feb  3 2010 06:34:23
Compiler: g++ 4.4.3
Compiled against:
  apt version 4.8.0
  NCurses version 5.7
  libsigc++ version: 2.2.4.2
  Ept support enabled.
  Gtk+ support disabled.

Current library versions:
  NCurses version: ncurses 5.7.20090803
  cwidget version: 0.5.16
  Apt version: 4.8.0
linux-vdso.so.1 =  (0x7fff419ff000)
libapt-pkg-libc6.9-6.so.4.8 = /usr/lib/libapt-pkg-libc6.9-6.so.4.8 
(0x7f2fcc3a5000)
libncursesw.so.5 = /lib/libncursesw.so.5 (0x7f2fcc154000)
liblog4cxx.so.10 = /usr/lib/liblog4cxx.so.10 (0x7f2fcbd66000)
libsigc-2.0.so.0 = /usr/lib/libsigc-2.0.so.0 (0x7f2fcbb61000)
libcwidget.so.3 = /usr/lib/libcwidget.so.3 (0x7f2fcb895000)
libept.so.0 = /usr/lib/libept.so.0 (0x7f2fcb61d000)
libxapian.so.15 = /usr/lib/libxapian.so.15 (0x7f2fcb2cc000)
libz.so.1 = /usr/lib/libz.so.1 (0x7f2fcb0b5000)
libsqlite3.so.0 = /usr/lib/libsqlite3.so.0 (0x7f2fcae27000)
libboost_iostreams.so.1.40.0 = /usr/lib/libboost_iostreams.so.1.40.0 
(0x7f2fcac1c000)
libpthread.so.0 = /lib/libpthread.so.0 (0x7f2fcaa0)
libstdc++.so.6 = /usr/lib/libstdc++.so.6 (0x7f2fca6ef000)
libm.so.6 = /lib/libm.so.6 (0x7f2fca46d000)
libgcc_s.so.1 = /lib/libgcc_s.so.1 (0x7f2fca257000)
libc.so.6 = /lib/libc.so.6 (0x7f2fc9f02000)
libutil.so.1 = /lib/libutil.so.1 (0x7f2fc9cff000)
libdl.so.2 = /lib/libdl.so.2 (0x7f2fc9afb000)
libaprutil-1.so.0 = /usr/lib/libaprutil-1.so.0 (0x7f2fc98d7000)
libdb-4.8.so = /usr/lib/libdb-4.8.so (0x7f2fc955d000)
libapr-1.so.0 = /usr/lib/libapr-1.so.0 (0x7f2fc9325000)
libbz2.so.1.0 = /lib/libbz2.so.1.0 (0x7f2fc9114000)
librt.so.1 = /lib/librt.so.1 (0x7f2fc8f0c000)
/lib64/ld-linux-x86-64.so.2 (0x7f2fcc687000)
libuuid.so.1 = /lib/libuuid.so.1 (0x7f2fc8d07000)
libcrypt.so.1 = /lib/libcrypt.so.1 (0x7f2fc8ad)
libexpat.so.1 = /usr/lib/libexpat.so.1 (0x7f2fc88a8000)
Terminal: screen
$DISPLAY is set.
`which aptitude`: /usr/bin/aptitude
aptitude version information:

aptitude linkage:

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

Kernel: Linux 2.6.32-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.9 0.7.25.3 Advanced front-end for dpkg
ii  libboost-iostreams1.40. 1.40.0-6+b1  Boost.Iostreams Library
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libcwidget3 0.5.16-3 high-level terminal interface libr
ii  libept0 0.5.30   High-level library for managing De
ii  libgcc1 1:4.4.3-2GCC support library
ii  liblog4cxx100.10.0-1.1   A logging library for C++
ii  libncursesw55.7+20090803-2   shared libraries for terminal hand
ii  libsigc++-2.0-0c2a  2.2.4.2-1type-safe Signal Framework for C++
ii  libsqlite3-03.6.22-1 SQLite 3 shared library
ii  libstdc++6  4.4.3-2  The GNU Standard C++ Library v3
ii  libxapian15 1.0.18-1 Search engine library
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages aptitude recommends:
pn  apt-xapian-index  none (no description available)
ii  aptitude-doc-en [aptitude-doc 0.6.1.5-2  English manual for aptitude, a ter
pn  libparse-debianchangelog-perl none (no description available)
ii  sensible-utils0.0.2  Utilities for sensible alternative

Versions of packages aptitude suggests:
ii  debtags   1.7.9+b2   Enables support for package tags
ii  tasksel   2.81   Tool for selecting tasks for insta

-- no debconf information



-- 
To UNSUBSCRIBE, email 

Bug#448358: apt-file: bash_completion does not complete filename after search command

2007-10-28 Thread Dmitry Azhichakov
Package: apt-file
Version: 2.0.8.2
Severity: normal
Tags: patch

After entering 'apt-file search' completion suggests a list of actions
instead of file names.

I've modified completion script and it works fine for me.

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

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

Versions of packages apt-file depends on:
ii  curl  7.17.0-1   Get a file from an HTTP, HTTPS or 
ii  gzip  1.3.12-3.2 The GNU compression utility
ii  libapt-pkg-perl   0.1.21+b1  Perl interface to libapt-pkg
ii  libconfig-file-perl   1.41-1 Parses simple configuration files
ii  perl  5.8.8-11.1 Larry Wall's Practical Extraction 
ii  wget  1.10.2-3   retrieves files from the web

apt-file recommends no packages.

-- no debconf information

-- 
Dmitry
--- apt-file.orig	2007-10-28 15:45:12.0 +0300
+++ apt-file	2007-10-28 15:51:33.0 +0300
@@ -8,32 +8,34 @@
 	prev=${COMP_WORDS[COMP_CWORD-1]}
 
 	for (( i=0; i  ${#COMP_WORDS}-1; i++ )); do
-		if [[ ${COMP_WORDS[i]} == @(list) ]]; then
-			special=${COMP_WORDS[i]}
-		fi
+		case ${COMP_WORDS[i]} in
+		update|search|list|show|purge)
+		special=${COMP_WORDS[i]}
+			break
+			;;
+		esac
 	done
 
-	if [ -n $special ]; then
-COMPREPLY=( $( apt-cache pkgnames $cur 2 /dev/null ) )
-return 0
-fi
-
 	if [[ $cur == -* ]]; then
 
 		COMPREPLY=( $( compgen -W '-c -v -V -a -s -l -F -y -H \
 --cache --verbose --version --architecture \
 --sources-list --package-only --fixed-string \
 --dummy --help' -- $cur ) )
+	elif [ -n $special ]; then
+		case $special in
+		list|show)
+			COMPREPLY=( $( apt-cache pkgnames $cur 2 /dev/null ) )
+			;;
+		search)
+			_filedir
+			;;
+		esac
 	else
 
 		COMPREPLY=( $( compgen -W 'update search list \
 show purge' -- $cur ) )
 
 	fi
-
-
-	return 0
-
 }
-complete -F _apt-file apt-file
-
+complete -F _apt-file $filenames apt-file


signature.asc
Description: Digital signature


Bug#414973: roundup: Install problem: groupmod: 114 is not a unique GID

2007-03-15 Thread Dmitry Azhichakov
Package: roundup
Version: 1.2.1-5
Severity: grave
Justification: renders package unusable

aptitude install roundup fails with the following messages:

Unpacking roundup (from .../roundup_1.2.1-8_all.deb) ...
groupmod: 114 is not a unique GID
dpkg: error processing /var/cache/apt/archives/roundup_1.2.1-8_all.deb
(--unpack):
 subprocess pre-installation script returned error exit status 4
Errors were encountered while processing:
 /var/cache/apt/archives/roundup_1.2.1-8_all.deb

I have the followin line in /etc/group:
fuse:x:114:

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages roundup depends on:
ii  python2.4.4-2An interactive high-level object-o
ii  python-central0.5.12 register and build utility for Pyt

roundup recommends no packages.


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



Bug#414973: A patch

2007-03-15 Thread Dmitry Azhichakov
Hello,

Here is a patch for that bug that works for me.

Actually, I don't see the reason why GID should be exactly the same as
UID of roundup user.

-- 
Dmitry
diff -ru roundup-1.2.1/debian/roundup.dirs roundup-1.2.1-9/debian/roundup.dirs
--- roundup-1.2.1/debian/roundup.dirs	2007-03-15 12:05:28.0 +0300
+++ roundup-1.2.1-9/debian/roundup.dirs	2007-03-15 11:48:24.0 +0300
@@ -6,3 +6,4 @@
 etc/roundup/service/log
 etc/init.d
 usr/share/doc/roundup
+usr/bin
diff -ru roundup-1.2.1/debian/roundup.preinst roundup-1.2.1-9/debian/roundup.preinst
--- roundup-1.2.1/debian/roundup.preinst	2007-03-15 12:05:28.0 +0300
+++ roundup-1.2.1-9/debian/roundup.preinst	2007-03-15 11:40:08.0 +0300
@@ -15,7 +15,7 @@
 	if [ ! `getent passwd roundup` ]; then
 		adduser --quiet --system --ingroup roundup --home /var/lib/roundup --no-create-home roundup
 	fi
-	groupmod -g `id -u roundup` roundup
+	#groupmod -g `id -u roundup` roundup
 	usermod -g `getent group roundup | sed -e 's/^.*x//' -e 's/://g'` roundup
 }
 


signature.asc
Description: Digital signature


Bug#400867: cppunit: TextTestProgressListener fails to display progress

2006-11-29 Thread Dmitry Azhichakov
Package: cppunit
Severity: normal
Tags: patch

TextTestProgressListener doesn't flush output, so progress messages
appear after all tests has been completed.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

-- 
Dmitry
diff -ru cppunit-1.12.0-2/src/cppunit/TextTestProgressListener.cpp 
cppunit-1.12.0/src/cppunit/TextTestProgressListener.cpp
--- cppunit-1.12.0-2/src/cppunit/TextTestProgressListener.cpp   2006-11-29 
12:24:08.0 +0300
+++ cppunit-1.12.0/src/cppunit/TextTestProgressListener.cpp 2006-11-29 
12:26:15.0 +0300
@@ -20,6 +20,7 @@
 TextTestProgressListener::startTest( Test *test )
 {
   stdCOut()  .;
+  stdCOut().flush();
 }
 
 
@@ -27,6 +28,7 @@
 TextTestProgressListener::addFailure( const TestFailure failure )
 {
   stdCOut()  ( failure.isError() ? E : F );
+  stdCOut().flush();
 }
 
 


signature.asc
Description: Digital signature


Bug#367717: dpkg: update-alternatives --all asks about alternatives with zero choices

2006-05-17 Thread Dmitry Azhichakov
Package: dpkg
Version: 1.13.19-1.dazh
Severity: minor
Tags: patch

There are some alternatives with no choices and
update-alternatives --all asks about them though skipping alternatives
with the only choice. There is a one-line patch for this problem.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages dpkg depends on:
ii  coreutils [textutils] 5.94-1 The GNU core utilities
ii  libc6 2.3.6-7GNU C Library: Shared libraries

dpkg recommends no packages.

-- no debconf information

-- 
Dmitry
diff -ru dpkg-1.13.19/scripts/update-alternatives.pl 
dpkg-1.13.19-1.dazh/scripts/update-alternatives.pl
--- dpkg-1.13.19/scripts/update-alternatives.pl 2006-01-19 03:24:22.0 
+0300
+++ dpkg-1.13.19-1.dazh/scripts/update-alternatives.pl  2006-05-18 
01:17:27.0 +0400
@@ -155,6 +155,7 @@
for ($j=0; $j=$#slavenames; $j++) {
$slavepath{$i,$j}= gl(spath);
}
+   $dataread=1;
} else {
# File not found - remove
pr(Alternative for $name points to $version - which wasn't found. 
 Removing from list of alternatives.)
@@ -166,7 +167,6 @@
}
 }
 close(AF);
-$dataread=1;
 } elsif ($! != ENOENT) {
 quit(failed to open $admindir/$name: $!);
 }


signature.asc
Description: Digital signature


Bug#316969: xmms: problems with UTF-8 in ID3v2 tags

2005-07-05 Thread Dmitry Azhichakov
Package: xmms
Version: 1.2.10+cvs20050209-2
Severity: normal

Russian characters displayed incorrectly in main window, playlist and in
id3 tag edit dialog. id3v1 tags displayed ok in dialog and after ID3v1
to ID3v2 pressed iv3v2 is ok also until dialog is closed.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.4.27-dazh
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages xmms depends on:
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libglib1.2   1.2.10-10   The GLib library of C routines
ii  libgtk1.21.2.10-17   The GIMP Toolkit set of widgets fo
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libssl0.9.7  0.9.7g-1SSL shared libraries
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  libxi6   4.3.0.dfsg.1-14 X Window System Input extension li
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu

Versions of packages xmms recommends:
ii  libasound2   1.0.9-2 ALSA library
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libesd0  0.2.35-2.1  Enlightened Sound Daemon - Shared 
ii  libmikmod2   3.1.11-a-6  A portable sound library
ii  libogg0  1.1.2-1 Ogg Bitstream Library
ii  libvorbis0a  1.1.0-1 The Vorbis General Audio Compressi
ii  libvorbisfile3   1.1.0-1 The Vorbis General Audio Compressi
ii  unzip5.52-3  De-archiver for .zip files
ii  xlibmesa-gl [libgl1] 4.3.0.dfsg.1-14 Mesa 3D graphics library [XFree86]
ii  zlib1g   1:1.2.2-4   compression library - runtime

Versions of packages xmms is related to:
ii  reportbug 3.13   reports bugs in the Debian distrib
pn  totem-gstreamer   none (no description available)

-- no debconf information


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