Bug#876426: java-package: Add support for Java 9

2017-09-21 Thread Sergey Korobitsin
Package: java-package
Version: 0.62
Severity: wishlist

Dear Maintainer,
Java 9 is officially released,
but java-package cannot handle it:

$ fakeroot make-jpkg jdk-9_linux-x64_bin.tar.gz 
Creating temporary directory: /tmp/make-jpkg.Sr6O9k8tZ2
Loading plugins: /usr/share/java-package/common.sh
/usr/share/java-package/javase.sh /usr/share/java-package/jdk-doc.sh
/usr/share/java-package/jdk.sh /usr/share/java-package/jre.sh
/usr/share/java-package/oracle-jdk-doc.sh
/usr/share/java-package/oracle-jdk.sh
/usr/share/java-package/oracle-jre.sh

Detected Debian build architecture: amd64
Detected Debian GNU type: x86_64-linux-gnu

No matching packaging method was found for jdk-9_linux-x64_bin.tar.gz.
Please make sure you are using a tar.gz or a self-extracting archive
Removing temporary directory: done

Please add support for Java 9.

-- System Information:
Debian Release: stretch
  APT prefers stable
  APT policy: (650, 'stable'), (500, 'stable-updates'), (500, 
'oldstable-updates'), (500, 'oldoldstable-updates'), (500, 'oldoldstable'), 
(500, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages java-package depends on:
ii  build-essential  12.3
ii  debhelper10.2.5
ii  dpkg-dev 1.18.24
ii  fakeroot 1.21-3.1
ii  libasound2   1.1.3-5
ii  libfontconfig1   2.11.0-6.7+b1
ii  libgl1-mesa-glx  13.0.6-1+b2
ii  libgtk2.0-0  2.24.31-2
ii  libx11-6 2:1.6.4-3
ii  libxslt1.1   1.1.29-2.1
ii  libxtst6 2:1.2.3-1
ii  libxxf86vm1  1:1.1.4-1+b2
ii  unzip6.0-21

java-package recommends no packages.

Versions of packages java-package suggests:
pn  openjdk-7-jre  

-- no debconf information



Bug#867032: jabberd2 allowing anyone to authenticate using SASL ANONYMOUS, even when the option is not enabled

2017-07-03 Thread Sergey Korobitsin
Package: jabberd2
Version: 2.4.0-3
Severity: grave
Tags: security
Justification: user security hole

During investigation of some issue on my local jabber server
I've found plenty of records like these in my c2s.log:

Mon Jul  3 20:06:21 2017 [notice] [150] ANONYMOUS authentication succeeded: 
bf719de629033bbf9c6c1aecec590aa8928c9...@my-server.com 195.208.220.171:55481 TLS
Mon Jul  3 20:07:01 2017 [notice] [166] ANONYMOUS authentication succeeded: 
bcb1ccc187a88c4d61f5ef14516fc6e69e94c...@my-server.com 62.76.74.249:51574 TLS
Mon Jul  3 20:08:20 2017 [notice] [169] ANONYMOUS authentication succeeded: 
4349fd92ecf35ac14cd71d9c5133f014a1cf3...@my-server.com 195.208.220.171:55722 TLS

and I did not allowed such auth type and usage scenario
for my server. Latest news on https://github.com/jabberd2/jabberd2/releases
told me that was a bug, and it's fixed:

https://github.com/jabberd2/jabberd2/commit/8416ae54ecefa670534f27a31db71d048b9c7f16.patch

This bug allows unauthorized usage of jabberd2 server installations
and can possibly lead to a DoS.

I've patched my version of jabberd2 from stable with the patch above,
and prepared one for Debian.

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

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968), LANGUAGE=C 
(charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages jabberd2 depends on:
ii  adduser  3.115
ii  init-system-helpers  1.48
ii  libc62.24-11+deb9u1
ii  libdb5.3 5.3.28-12+b1
ii  libexpat12.2.0-2+deb9u1
ii  libgsasl71.8.0-8+b2
ii  libhttp-parser2.12.1-2
ii  libidn11 1.33-1
ii  libldap-2.4-22.4.44+dfsg-5
ii  libmariadbclient18   10.1.23-9+deb9u1
ii  libpam0g 1.1.8-3.6
ii  libpq5   9.6.3-3
ii  libsqlite3-0 3.16.2-5
ii  libssl1.0.2  1.0.2l-2
ii  libudns0 0.4-1+b1
ii  zlib1g   1:1.2.8.dfsg-5

jabberd2 recommends no packages.

jabberd2 suggests no packages.

-- no debconf information
Fix a bug allowing anyone to authenticate using SASL ANONYMOUS,
even when sasl.anonymous c2s.xml option is not enabled.

Original patch: 
https://github.com/jabberd2/jabberd2/commit/8416ae54ecefa670534f27a31db71d048b9c7f16.patch
--- a/c2s/main.c
+++ b/c2s/main.c
@@ -562,6 +562,8 @@
 mechbuf[sizeof(mechbuf)-1]='\0';
 for(i = 0; mechbuf[i]; i++) mechbuf[i] = tolower(mechbuf[i]);
 
+log_debug(ZONE, "sx sasl callback: check mech (mech=%s)", mechbuf);
+
 /* get host for request */
 host = xhash_get(c2s->hosts, s->req_to);
 if(host == NULL) {
--- a/sx/sasl.c
+++ b/sx/sasl.c
@@ -328,7 +328,7 @@
 if(mech != NULL) {
 _sx_debug(ZONE, "auth request from client (mechanism=%s)", mech);
 
-if(!gsasl_server_support_p(ctx->gsasl_ctx, mech)) {
+if(!gsasl_server_support_p(ctx->gsasl_ctx, mech) || 
(ctx->cb)(sx_sasl_cb_CHECK_MECH, (void*)mech, NULL, s, ctx->cbarg) != 
sx_sasl_ret_OK) {
  _sx_debug(ZONE, "client requested mechanism (%s) that we didn't 
offer", mech);
  _sx_nad_write(s, _sx_sasl_failure(s, 
_sasl_err_INVALID_MECHANISM), 0);
  return;


Bug#824753: po4a: Please add full nowrap support for strict Text handling

2016-05-19 Thread Sergey Korobitsin
Package: po4a
Version: 0.47-2
Severity: wishlist

Dear Maintainer,
I'm trying to use po4a for translating text documents
written using Markdown markup. po4a has markdown support
in Text module, but I use pandoc flavour of Markdown 
language, and there are some cases where wrapping of
paragraphs in POT (and thus PO) breaks output.

So, I use `nobullets` option and patch I've found here:

https://alioth.debian.org/tracker/?func=detail=410622=314748_id=30267

In particular, this, the latest one: 

https://alioth.debian.org/tracker/download.php/30267/410622/314748/6576/Text-add-no-wrapoptions-2.patch

And my use case is fully covered: I get no changes to 
text formatting (unless translator will make ones).
It will be convenient for me and possibly others
to get it included to po4a.

P.S. I've already patched Text.pm on my system,
so debsums worries about that.

-- System Information:
Debian Release: jessie
  APT prefers stable
  APT policy: (650, 'stable'), (500, 'stable-updates'), (500, 
'oldstable-updates'), (500, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-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 po4a depends on:
ii  gettext0.18.1.1-9
ii  libsgmls-perl  1.03ii-32
ii  opensp 1.5.2-10
ii  perl   5.20.2-3+deb8u1
ii  perl-modules   5.20.2-3+deb8u1

Versions of packages po4a recommends:
ii  liblocale-gettext-perl 1.05-8+b1
ii  libterm-readkey-perl   2.32-1+b1
ii  libtext-wrapi18n-perl  0.06-7
ii  libunicode-linebreak-perl  0.0.20140601-2

po4a suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/perl5/Locale/Po4a/Text.pm (from po4a package)

-- 
Bright regards, Sergey Korobitsin,
Chief Research Officer
Arta Software, http://arta.kz/
xmpp:underta...@jabber.arta.kz

--
Information on Derby's internals is scattered over a number of locations:

  1. The code, describes exactly how it works. B)

  -- http://wiki.apache.org/db-derby/HowItWorks



Bug#818454: firefox: Incorrect build dependency for libvpx

2016-03-19 Thread Sergey Korobitsin
Package: firefox
Version: 45.0-1
Severity: does-not-build
Justification: fails to build from source (but built successfully in the past)

Dear Maintainer,
yesterday I tried to build a fresh new firefox
from sid for my jessie box and build failed with 
some error in libvpx library from jessie (1.3.0-3).

I took recent libvpx package from sid (1.5.0-2),
built and installed it, and then successfully built
firefox. Please consider correcting this build dependency.

-- Addons package information
ii  firefox45.0-1   amd64Mozilla Firefox web browser
ii  firefox-l10n-r 45.0-1   all  Russian language package for Fire
ii  sun-java6-bin  6.26-1   amd64Sun Java(TM) Runtime Environment 

-- System Information:
Debian Release: jessie
  APT prefers stable
  APT policy: (650, 'stable'), (500, 'stable-updates'), (500, 
'oldstable-updates'), (500, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-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 firefox depends on:
ii  debianutils   4.3.2
ii  fontconfig2.11.0-6.3
ii  libasound21.0.28-1
ii  libatk1.0-0   2.14.0-1
ii  libc6 2.19-18+deb8u2
ii  libcairo2 1.14.0-2.1
ii  libdbus-1-3   1.8.20-0+deb8u1
ii  libdbus-glib-1-2  0.102-1
ii  libevent-2.0-52.0.21-stable-2
ii  libffi6   3.1-2+b2
ii  libfontconfig12.11.0-6.3
ii  libfreetype6  2.5.2-3+deb8u1
ii  libgcc1   1:4.9.2-10
ii  libgdk-pixbuf2.0-02.31.1-2+deb8u4
ii  libglib2.0-0  2.42.1-1
ii  libgtk2.0-0   2.24.25-3
ii  libhunspell-1.3-0 1.3.3-3
ii  libnspr4  2:4.12-1
ii  libnss3   2:3.23-1
ii  libpango-1.0-01.36.8-3
ii  libsqlite3-0  3.11.1-1
ii  libstartup-notification0  0.12-4
ii  libstdc++64.9.2-10
ii  libvpx3   1.5.0-2
ii  libx11-6  2:1.6.2-3
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  procps1:3.3.3-3
ii  zlib1g1:1.2.7.dfsg-13

Versions of packages firefox recommends:
pn  gstreamer1.0-libav 
pn  gstreamer1.0-plugins-good  

Versions of packages firefox suggests:
pn  fonts-lmodern  
pn  fonts-stix | otf-stix  
ii  libcanberra0   0.30-2.1
ii  libgnomeui-0   2.24.5-3
ii  libgssapi-krb5-2   1.12.1+dfsg-19
pn  mozplugger 

-- no debconf information

-- 
Bright regards, Sergey Korobitsin,
Chief Research Officer
Arta Software, http://arta.kz/
xmpp:underta...@jabber.arta.kz

--
Эксперименты по спасению России от глобального потепления путем отключения 
тепла регулярно проводятся российским ЖКХ и неизменно вызывают у населения 
горячий протест.



Bug#738626: Depending on locale, xmlto creates wrong epub encoding

2014-06-04 Thread Sergey Korobitsin
Package: xmlto
Version: 0.0.25-2
Followup-For: Bug #738626

Dear Maintainer,
I would like to confirm the presence of bug. Using something like

$ LC_ALL=en_US.UTF-8 xmlto xhtml -m conf/html/settings.xsl -o bin/html all.xml

will work around the situation, but proper solution is more preferred.



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

Kernel: Linux 3.10-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/dash

Versions of packages xmlto depends on:
ii  debianutils4.0.2
ii  docbook-xml4.5-7
ii  docbook-xsl1.75.2+dfsg-5
ii  libc6  2.13-38+deb7u1
ii  libxml2-utils  2.7.8.dfsg-4
ii  sgml-base  1.26+nmu4
ii  xsltproc   1.1.26-6

Versions of packages xmlto recommends:
ii  dblatex 0.3.4-2
ii  fop 1:0.95.dfsg-11
ii  libpaper-utils  1.1.24+nmu1
ii  zip 3.0-3

Versions of packages xmlto suggests:
pn  w3m 0.5.3-3
pn  xmltex  none


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



Bug#539997: RFP: pohmelfs -- Parallel Optimized Host Message

2011-06-28 Thread Sergey Korobitsin
Hello,
Is there any progress on this RFP?

-- 
Bright regards, Sergey Korobitsin,
Chief Research Officer
Arta Software, http://arta.kz/
xmpp:underta...@jabber.arta.kz

--
Условно-бесплатная программа — это такая программа, 
которую ставишь бесплатно, а потом тебе за неё дают условно…
  -- aceler в 
http://lj.rossia.org/users/k001/659660.html?thread=4968140#t4968140



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



Bug#625281: openvpn: OpenVPN 2.2.0 released

2011-05-02 Thread Sergey Korobitsin
Package: openvpn
Severity: wishlist
Tags: upstream

Hello,
OpenVPN 2.2.0 released today:
http://openvpn.net/index.php/open-source/documentation/change-log/425-changelog-for-openvpn-22.html

It possibly have a fix for #623503:

 chantra (1):

   Fixes openssl-1.0.0 compilation warning

and also a bunch of new features.
Could you please package it?

Thank you very much for your work.

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

Kernel: Linux 2.6.32-5-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/dash

Versions of packages openvpn depends on:
ii  debconf [debconf-2.0] 1.5.33 Debian configuration management sy
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  liblzo2-2 2.03-2 data compression library
ii  libpam0g  1.1.1-3Pluggable Authentication Modules l
pn  libpkcs11-helper1 none (no description available)
ii  libssl0.9.8   0.9.8o-1   SSL shared libraries
ii  net-tools 1.60-23The NET-3 networking toolkit
pn  openssl-blacklist none (no description available)
pn  openvpn-blacklist none (no description available)

openvpn recommends no packages.

Versions of packages openvpn suggests:
ii  openssl   0.9.8o-1   Secure Socket Layer (SSL) binary a
pn  resolvconfnone (no description available)



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



Bug#587000: virt-manager: Missing dependency on python-pycurl

2010-06-24 Thread Sergey Korobitsin
Package: virt-manager
Version: 0.8.4-4
Severity: grave
Tags: sid
Justification: renders package unusable

I use Debian system installed without recommended packages, and after
installing the virt-manager and trying to launch it it get these:

Traceback (most recent call last):

[...]

ImportError: No module named pycurl.

Installing the python-pycurl package resolves the problem.

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

Kernel: Linux 2.6.32-5-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



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



Bug#578873: dh_pysupport: better python default version detection

2010-04-23 Thread Sergey Korobitsin
Package: debhelper
Version: 7.4.17
Severity: minor
Tags: patch

The current check for default version fails if we use alternatives
method for /usr/bin/python.

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

Kernel: Linux 2.6.32-trunk-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 debhelper depends on:
ii  binutils  2.20.1-7   The GNU assembler, linker and bina
ii  dpkg-dev  1.15.7 Debian package development tools
ii  file  5.04-2 Determines file type using magic
ii  html2text 1.3.2a-14  advanced HTML to text converter
ii  man-db2.5.7-2on-line manual pager
ii  perl  5.10.1-12  Larry Wall's Practical Extraction 
ii  perl-base 5.10.1-12  minimal Perl system
ii  po-debconf1.0.16 tool for managing templates file t

debhelper recommends no packages.

Versions of packages debhelper suggests:
pn  dh-make   none (no description available)

-- no debconf information
--- /usr/bin/dh_pysupport   2010-04-21 00:10:40.0 +0600
+++ /tmp/dh_pysupport   2010-04-23 14:28:48.0 +0600
@@ -123,8 +123,9 @@
 }
 
 # The current default python version
-my $default=`readlink /usr/bin/python`;
-$default =~ s/^python//;
+my $default=`/usr/bin/python --version 21`;
+$default =~ s/^Python //;
+$default =~ s/\.[0-9]$//;
 chomp $default;
 
 # Versions supported by python-defaults


Bug#573413: guake: Missing dependency against python-gconf

2010-03-11 Thread Sergey Korobitsin
Package: guake
Version: 0.4.1-2
Severity: normal

After installing the fresh squeeze and guake I've got such an error:

$ guake

Traceback (most recent call last):

[ ... skipped ... ]

ImportError: No module named gconf

# aptitude install python-gconf resolves the problem.

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

Kernel: Linux 2.6.32-trunk-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 guake depends on:
ii  gconf2   2.28.0-1GNOME configuration database syste
ii  libatk1.0-0  1.28.0-1The ATK accessibility toolkit
ii  libc62.10.2-6Embedded GNU C Library: Shared lib
ii  libcairo21.8.10-2The Cairo 2D vector graphics libra
ii  libfontconfig1   2.8.0-2 generic font configuration library
ii  libfreetype6 2.3.11-1FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.22.4-1The GLib library of C routines
ii  libgtk2.0-0  2.18.7-1The GTK+ graphical user interface 
ii  libpango1.0-01.26.2-1Layout and rendering of internatio
ii  libx11-6 2:1.3.3-1   X11 client-side library
ii  notification-daemon  0.4.0-2 a daemon that displays passive pop
ii  python   2.5.4-9 An interactive high-level object-o
ii  python-central   0.6.14+nmu2 register and build utility for Pyt
ii  python-dbus  0.83.1-1simple interprocess messaging syst
ii  python-glade22.16.0-2GTK+ bindings: Glade support
ii  python-notify0.1.1-2+b2  Python bindings for libnotify
ii  python-vte   1:0.22.5-2  Python bindings for the VTE widget
ii  python2.52.5.5-2 An interactive high-level object-o

guake recommends no packages.

guake suggests no packages.

-- no debconf information



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



Bug#573119: libmenu-cache1: dpkg --unpack failed: package tries to overwrite files of libmenu-cache0

2010-03-08 Thread Sergey Korobitsin
Package: libmenu-cache1
Severity: grave
Justification: renders package unusable

I've tried to install libmenu-cache1, and the install fails:

Unpacking libmenu-cache1 (from .../libmenu-cache1_0.3.2-1_i386.deb) ...
dpkg: error processing
/var/cache/apt/archives/libmenu-cache1_0.3.2-1_i386.deb (--unpack):
 trying to overwrite '/usr/lib/libmenu-cache/libexec/menu-cache-gen',
 which is also in package libmenu-cache0 0:0.2.6-1
 Errors were encountered while processing:
  /var/cache/apt/archives/libmenu-cache1_0.3.2-1_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)


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

Kernel: Linux 2.6.32-trunk-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 libmenu-cache1 depends on:
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

libmenu-cache1 recommends no packages.

libmenu-cache1 suggests no packages.



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



Bug#559718: dovecot-common: Dovecot's initscript and inetd

2009-12-06 Thread Sergey Korobitsin
Package: dovecot-common
Version: 1:1.0.15-2.3+lenny1
Severity: minor
Tags: patch

Dovecot's initscript assumes that inetd is installed in system (sed-ding the 
/etc/inetd.conf). 
I've patched it, now it checks whether /etc/inetd.conf exists or not.

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (800, 'stable'), (700, 'testing'), (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-openvz-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages dovecot-common depends on:
ii  adduser 3.110add and remove users and groups
ii  libc6   2.10.1-3 GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  libldap-2.4-2   2.4.11-1 OpenLDAP libraries
ii  libmysqlclient1 5.0.51a-24+lenny2MySQL database client library
ii  libpam-runtime  1.0.1-5+lenny1   Runtime support for the PAM librar
ii  libpam0g1.0.1-5+lenny1   Pluggable Authentication Modules l
ii  libpq5  8.4.1-1  PostgreSQL C client library
ii  libsqlite3-03.6.19-3 SQLite 3 shared library
ii  libssl0.9.8 0.9.8g-15+lenny5 SSL shared libraries
ii  openssl 0.9.8g-15+lenny5 Secure Socket Layer (SSL) binary a
ii  ucf 3.0016   Update Configuration File: preserv
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

dovecot-common recommends no packages.

dovecot-common suggests no packages.

-- no debconf information
--- /etc/init.d/dovecot.dist2009-12-06 20:03:41.0 +0600
+++ /etc/init.d/dovecot 2009-12-06 20:17:17.0 +0600
@@ -53,17 +53,22 @@
 # The init script should do nothing if dovecot or another imap/pop3 server
 # is being run from inetd, and dovecot is configured to run as an imap or
 # pop3 service
-for p in `sed -r s/^ *(([^:]+|\[[^]]+]|\*):)?(pop3s?|imaps?)[ \t].*/\3/;t;d \
-  /etc/inetd.conf`
-do
-  for q in `sed -r s/^[ \t]*protocols[ \t]*=[ 
\t]*(([^\]*)|\(.*)\)/\2\3/;t;d \
-${CONF}`
+
+# It's only sense when inetd is installed 
+
+if [ -e /etc/inetd.conf ]; then
+  for p in `sed -r s/^ *(([^:]+|\[[^]]+]|\*):)?(pop3s?|imaps?)[ 
\t].*/\3/;t;d \
+/etc/inetd.conf`
   do
-if [ $p = $q ]; then
-  exit 0
-fi
+for q in `sed -r s/^[ \t]*protocols[ \t]*=[ 
\t]*(([^\]*)|\(.*)\)/\2\3/;t;d \
+  ${CONF}`
+do
+  if [ $p = $q ]; then
+exit 0
+  fi
+done
   done
-done
+fi
 
 # determine the location of the PID file
 # overide by setting base_dir in conf file or PIDBASE in /etc/defaults/$NAME


Bug#550318: gforge-common: Docman admin fails with PHP Fatal Error

2009-10-09 Thread Sergey Korobitsin
Package: gforge-common
Version: 4.8.1-1
Severity: normal

Hello! I've found this problem on one of my projects in FusionForge:
When I try to do admin things on that URL:

 https://myffhost/docman/admin/index.php?group_id=20

I get nothing in the list, except '* active'. The apache2's error log
says:

 PHP Fatal error:  Call to a member function hasDocuments() on a
 non-object in /usr/share/gforge/common/docman/DocumentGroup.class.php
 on line 272, referer: https://myffhost/docman/?group_id=20

Well, see there:

 if ($nested_groups[$doc_group_id][$i]-hasDocuments($nested_groups, 
$document_factory, $stateid))

which is a part of 

 // this group doesn't have documents... check recursively on the childs
 if (is_array($nested_groups[$doc_group_id])) {
 $count = count($nested_groups[$doc_group_id]);
 for ($i=0; $i  $count; $i++) {
if 
($nested_groups[$doc_group_id][$i]-hasDocuments($nested_groups, 
$document_factory, $stateid)) {
// child has documents
$result[$stateid][$doc_group_id] = true;
return true;
}
}
// no child has documents, then this group 
doesn't have associated documents
$result[$stateid][$doc_group_id] = false;
return false;
} else {

// this group doesn't have childs
$result[$stateid][$doc_group_id] = false;
return false; 
}

This problem only appears on one project, which has 4 and more levels of
document grouping hierarchy. Other projects are ok. This is very
unpleasant bug, i don't have enough PHP experience to fix it (there is a
recursive function which is hard to debug).


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

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



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



Bug#548898: gvfs: Bug seems to be not resolved

2009-10-02 Thread Sergey Korobitsin
Thu, Oct 01, 2009 at 09:59 +0200 Josselin Mouette воздействовал на энтропию:
 Have you restarted your session since the gvfs upgrade?

I've restarted my X session, now it's ok.

-- 
Best regards, Sergey Korobitsin
Arta Software, Astana, KZ
mailto:undertaker{at}arta.kz
xmpp:underta...@jabber.arta.kz

--
Мужики, я уже 5 лет на ЛОРе и до сих пор не могу понять, кто же круче - Патрик 
или Тео ?
--vasya_pupkin(linux.org.ru)



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



Bug#548898: gvfs: Bug seems to be not resolved

2009-10-01 Thread Sergey Korobitsin
Package: gvfs
Version: 1.4.0-2
Severity: normal

I use Iceweasel, Midori and some other GTK applications crashing now
when I open Save or Open dialog. The commandline output is:
process 29773: type array 97 not a basic type
process 29773: type array 97 not a basic type
process 29773: type invalid 0 not a basic type
process 29773: type invalid 0 not a basic type
process 29773: type struct 114 not a basic type
I'ts very unpleasant and discourages using any GTK software now.
I'll supply any additional data to resolve this, if needed.


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

Kernel: Linux 2.6.30-1-686 (SMP w/2 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 gvfs depends on:
ii  libc6 2.9-26 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.16-2   simple interprocess messaging syst
ii  libgconf2-4   2.26.2-3   GNOME configuration database syste
ii  libglib2.0-0  2.22.1-1   The GLib library of C routines
ii  libhal1   0.5.13-3   Hardware Abstraction Layer - share
ii  libudev0  146-3  libudev shared library
ii  x11-utils 7.4+1  X11 utilities

Versions of packages gvfs recommends:
ii  dbus  1.2.16-2   simple interprocess messaging syst
ii  exo-utils 0.3.102-1  Utility files for libexo
ii  gnome-mount   0.8-2  wrapper for (un)mounting and eject
ii  hal   0.5.13-3   Hardware Abstraction Layer

Versions of packages gvfs suggests:
pn  gvfs-backends 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#548898: gvfs: Bug seems to be not resolved

2009-10-01 Thread Sergey Korobitsin
Thu, Oct 01, 2009 at 09:59 +0200 Josselin Mouette воздействовал на энтропию:
 Have you restarted your session since the gvfs upgrade?

Do you mean X session? No. I can check state of the bug some time later
only, if it requires restarting X session.

-- 
Best regards, Sergey Korobitsin
Arta Software, Astana, KZ
mailto:undertaker{at}arta.kz
xmpp:underta...@jabber.arta.kz

--
 что кроме твоей занюханной 1с и офисных задач 

У меня в офисе девки прикормили 2 бродячих программистов 1С, предлагаешь их 
пристрелить?
--Sun-ch(linux.org.ru)



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



Bug#528112: [Pkg-xmpp-devel] Bug#528112: jabberd2: should also replace 'jabber'

2009-05-12 Thread Sergey Korobitsin
On Вторник 12 мая 2009 21:02:16 Jorge Salamero Sanz wrote:
 On Tuesday 12 May 2009 06:37:22 Sergey Korobitsin wrote:
  I think that replacing 'jabber' is wrong because many legacy transports
  uses jabber package to operate, jabber-muc for example.

 actually, only jabberd2 support is included in jabber-muc debian packages.

 i'll be glad to merge jabberd1 support in jabber-muc but as i'm a jabberd2
 user i'm not interested in working on it.

Thank you, I've just updated jabber-muc, and jabber1 does not need for me now, 
but I see there may be other old extensions that use jabber1 to run, or may be 
a situation of using 2 different jabber servers on different ports etc.

--
Best regards, Sergey Korobitsin
Arta Software
xmpp: underta...@jabber.arta.kz



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



Bug#528112: jabberd2: should also replace 'jabber'

2009-05-11 Thread Sergey Korobitsin
I think that replacing 'jabber' is wrong because many legacy transports
uses jabber package to operate, jabber-muc for example.

-- 
Best regards, Sergey Korobitsin
Arta Software, Astana, KZ
mailto:undertaker{at}arta.kz
xmpp:underta...@jabber.arta.kz




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



Bug#528321: jabberd2-s2s segfaults

2009-05-11 Thread Sergey Korobitsin
Package: jabberd2
Version: 2.2.8-1
Severity: normal


After updating to last version i've got this line in syslog:

 May 12 11:19:30 srv kernel: [2864112.188685] jabberd2-s2s[2748]: segfault at c 
ip 0804e72f sp bf984f20 error 4 in jabberd2-s2s[8048000+1b000]

This does not repeat, and not seem to affect workability, but I see that vcard 
does not transfer to muc chat at other servers. I'll provide additional 
information if needed.

-- System Information:
Debian Release: 5.0.1
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (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/bash

Versions of packages jabberd2 depends on:
ii  adduser  3.110   add and remove users and groups
ii  libc62.9-12  GNU C Library: Shared libraries
ii  libcomerr2   1.41.3-1common error description library
ii  libdb4.7 4.7.25-6Berkeley v4.7 Database Libraries [
ii  libexpat12.0.1-4 XML parsing C library - runtime li
ii  libgsasl70.2.26-2GNU SASL library
ii  libgssapi-krb5-2 1.6.dfsg.4~beta1-13 MIT Kerberos runtime libraries - k
ii  libidn11 1.12-1  GNU Libidn library, implementation
ii  libk5crypto3 1.6.dfsg.4~beta1-13 MIT Kerberos runtime libraries - C
ii  libkrb5-31.6.dfsg.4~beta1-13 MIT Kerberos runtime libraries
ii  libldap-2.4-22.4.11-1OpenLDAP libraries
ii  libmysqlclient15off  5.0.51a-24+lenny1   MySQL database client library
ii  libntlm0 0.3.13-1NTLM authentication library
ii  libpam0g 1.0.1-5+lenny1  Pluggable Authentication Modules l
ii  libpq5   8.3.7-0lenny1   PostgreSQL C client library
ii  libsqlite3-0 3.6.13-1SQLite 3 shared library
ii  libssl0.9.8  0.9.8g-15+lenny1SSL shared libraries
ii  libudns0 0.0.9-2 async-capable DNS stub resolver li
ii  zlib1g   1:1.2.3.3.dfsg-12   compression library - runtime

jabberd2 recommends no packages.

jabberd2 suggests no packages.

-- no debconf information



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



Bug#515214: hal for Recommends: , not Depends:

2009-04-29 Thread Sergey Korobitsin
I support demoting hal to Recommends. The reason is that Debian was
always the most flexible solution among the binary-based distros for me,
and if we can install less packages to get nessesary functionality, we
better install less. I've read the discussion and I think that using
workaround like equivs is not good, because equivs is usually used in very
special cases. Also, adding a xserver-xorg-nohal may cause unnessesary
maintaing issues. The solution in Subject is the most painless, I think.

-- 
Best regards, Sergey Korobitsin
Arta Software, Astana, KZ
mailto:undertaker{at}arta.kz
xmpp:underta...@jabber.arta.kz




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



Bug#383695: subversion segfault

2009-02-15 Thread Sergey Korobitsin
Package: subversion
Version: 1.5.1dfsg1-2
Followup-For: Bug #383695

I've got subversion segfaulting after update to the Lenny version.
They look like:
 
 kernel: [ 3666.793488] svnserve[15431]: segfault at 9d0 ip b7d3b7fd sp 
bf81eae0 error 4 in libc-2.7.so[b7ccb000+155000]

I've returned back to etch version.
What additional info is need?

-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (700, 'stable'), (500, 'oldstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.26-1-686-bigmem
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to ru_RU.UTF-8)

Versions of packages subversion depends on:
ii  libapr1 1.2.7-8.2The Apache Portable Runtime Librar
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libsvn1 1.4.2dfsg1-2 Shared libraries used by Subversio

subversion recommends no packages.

-- no debconf information



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



Bug#425218: flashplugin-nonfree: [INTL] Russian po-debconf translation

2007-05-20 Thread Sergey Korobitsin
Package: flashplugin-nonfree
Version: 9.0.31.0.1
Severity: wishlist


Russian po-debconf translation

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

Versions of packages flashplugin-nonfree depends on:
ii  debconf [debconf-2.0] 1.5.11 Debian configuration management sy
ii  fontconfig2.4.2-1.2  generic font configuration library
ii  libatk1.0-0   1.12.4-3   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-13   GNU C Library: Shared libraries
ii  libcairo2 1.2.4-4The Cairo 2D vector graphics libra
ii  libexpat1 1.95.8-3.4 XML parsing C library - runtime li
ii  libfontconfig12.4.2-1.2  generic font configuration library
ii  libfreetype6  2.2.1-5FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.12.4-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-7   The GTK+ graphical user interface 
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange library
ii  libpango1.0-0 1.14.8-5   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libsm61:1.0.1-3  X11 Session Management library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxau6   1:1.0.1-2  X11 authorisation library
ii  libxcursor1   1.1.7-4X cursor management library
ii  libxdmcp6 1:1.0.1-2  X11 Display Manager Control Protoc
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxfixes31:4.0.1-5  X11 miscellaneous 'fixes' extensio
ii  libxi61:1.0.1-4  X11 Input extension library
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxrandr22:1.1.0.2-5X11 RandR extension library
ii  libxrender1   1:0.9.1-3  X Rendering Extension client libra
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  wget  1.10.2-2   retrieves files from the web
ii  zlib1g1:1.2.3-13 compression library - runtime

Versions of packages flashplugin-nonfree recommends:
pn  xfs   none (no description available)

-- debconf information excluded

-- 
||
| Best regards, Sergey Korobitsin,   |
| the young Free  OpenSource software and Debian enthusiast |
| from Kazakhstan|
||
# Russian translation of PACKAGE.
# Copyright (C) 2007 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Sergey Korobitsin [EMAIL PROTECTED], 2007.
# 
# 
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-10-28 10:40+0200\n
PO-Revision-Date: 2007-05-20 14:47+0600\n
Last-Translator: Sergey Korobitsin [EMAIL PROTECTED]\n
Language-Team: Russian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit

#. Type: string
#. Description
#: ../templates:1001
msgid Location to the local file:
msgstr Локальное местоположение файла:

#. Type: string
#. Description
#: ../templates:1001
msgid 
Have you already downloaded the .tar.gz package from Adobe? If so, please 
enter the directory you downloaded it into. Do not include the filename 
here. If you have not already downloaded it, leave this blank and the 
package will be downloaded automatically.
msgstr 
Вы уже скачали пакет.tar.gz с сайта Adobe? Если это так, введите путь к 
каталогу, в который вы его загрузили. Не включайте имя файла. Если вы не 
загружали пакет,то оставьте поле пустым, и пакет будет загружен автоматически.

#. Type: error
#. Description
#: ../templates:2001
msgid File not found
msgstr Файл не найден

#. Type: error
#. Description
#: ../templates:2001
msgid 
The .tar.gz file does not exist in the directory you entered. Please try 
again. Enter the path of the directory that the package is in (don't type 
the filename at the end of the path).
msgstr 
Файл .tar.gz не существует в том каталоге, который вы ввели. Попытайтесь еще 
раз. Введите путь к каталогу с пакетом (не вводите имя файла в конце пути).

#. Type: boolean
#. Description
#: ../templates:3001
msgid 
Do you accept the license and do you want to download the flash plugin now?
msgstr Хотите ли вы принять условия лицензии и скачать flash plugin сейчас?

#. Type: boolean
#. Description
#: ../templates:3001
msgid 
The Adobe