Bug#864474: unbound anchor key

2017-06-09 Thread Ognyan Kulev
Additionally, unbound package doesn't use upstream location 
/etc/unbound/root.key but uses /var/lib/unbound/root.key instead. So as 
a minimum, the Debian location should be specified in manpages and used 
in the utilities.




Bug#864474: use dns-root-data

2017-06-09 Thread Ognyan Kulev

Package: ldnsutils
Version: 1.7.0-1

According to their manpages, the following utilities use 
/etc/unbound/root.key by default: drill, ldns-dane, ldns-verify-zone. 
Instead, ldnsutils should depend on dns-root-data package and if no key 
file is provided on command line, use /usr/share/dns/root.key. There are 
alternatives, like trying both /etc/unbound/root.key and 
/usr/share/dns/root.key (in this order). In the latter alternative, 
dns-root-data package could just be suggested, not depended on.


Best regards,
Ognyan



Bug#846145: php7.0 sock path

2016-12-10 Thread Ognyan Kulev

Hi,

Actually the path is /run/php/php7.0-fpm.sock (without /var). You can 
see it in 
https://anonscm.debian.org/cgit/pkg-php/php.git/tree/debian/rules.d/prepare-fpm-pools.mk


/var/run is symlinked to /run but it is better if it's the real path.

Best regards,
Ognyan



Bug#846946: luks+lvm warnings

2016-12-07 Thread Ognyan Kulev

Hi,

It looks like this is an old issue: 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=544651


Best regards,
Ognyan



Bug#846946: debian-stretch-DI-alpha8: guided encrypted lvm: WARNING: Failed to connect to lvmetad

2016-12-04 Thread Ognyan Kulev

Package: installation-reports

I used the guided encrypted LVM option of 
debian-stretch-DI-alpha8-amd64-netinst.iso . The installation works 
fine, it asks for password on boot and continues to login prompt. But 
the following warning messages appear before and after entering password 
and I think it would be good if these are avoided (by some changes in 
initrd generation?):


WARNING: Failed to connect to lvmetad. Falling back to device scanning.
Volume group "vg" not found
Cannot process volume group vg
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
Volume group "vg" not found
Cannot process volume group vg
Please unlock disk sda5_crypt:
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
Reading all physical volumes. This may take a while...
Found volume group "vg" using metadata type lvm2
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
2 logical volumes in volume group "vg" now active
cryptsetup: sda5_crypt setup successfully

Best regards,
Ognyan



Bug#846256: failure on boot

2016-11-29 Thread Ognyan Kulev

Package: console-setup
Version: 1.154

On a Debian testing inside virt-manager, console-setup always fails on 
boot with the following error messages:


Unit console-screen.service could not be found.

● console-setup.service - Set console font and keymap
   Loaded: loaded (/lib/systemd/system/console-setup.service; enabled; 
vendor preset: enabled)
   Active: failed (Result: exit-code) since Tue 2016-11-29 11:28:36 
EET; 6h ago

 Main PID: 428 (code=exited, status=1/FAILURE)

ное 29 11:28:36 miranda systemd[1]: Starting Set console font and keymap...
ное 29 11:28:36 miranda console-setup.sh[428]: /bin/setupcon: 866: 
/bin/setupcon: cannot open /tmp/tmpkbd.xTd9cX: No such file
ное 29 11:28:36 miranda systemd[1]: console-setup.service: Main process 
exited, code=exited, status=1/FAILURE
ное 29 11:28:36 miranda systemd[1]: Failed to start Set console font and 
keymap.
ное 29 11:28:36 miranda systemd[1]: console-setup.service: Unit entered 
failed state.
ное 29 11:28:36 miranda systemd[1]: console-setup.service: Failed with 
result 'exit-code'.


Around line 866 is the following code that fails "gzip -9n <$TMPFILE":

if [ "$savekbdfile" ]; then
case "$kernel" in
linux)
tempfile || { echo setupcon: Can not create temporary file 
>&2; exit 1; }

{
$installdir/bin/ckbcomp -backspace "$backspace" 
$acm_option \

$rules_option -model "$XKBMODEL" \
"$XKBLAYOUT" "$XKBVARIANT" "$XKBOPTIONS" >$TMPFILE \
&& gzip -9n <$TMPFILE >"$savekbdfile"
} || exit 1
;;
freebsd)
$installdir/bin/ckbcomp -freebsd -backspace "$backspace" \
$acm_option $rules_option -model "$XKBMODEL" \
"$XKBLAYOUT" "$XKBVARIANT" "$XKBOPTIONS" >"$savekbdfile" \
|| exit 1
;;
esac
fi

I didn't try to investigate further.

Just starting the service later works but on boot it always fails.

Best regards,
Ognyan



Bug#841488: about index index.php

2016-10-23 Thread Ognyan Kulev

Hello,

I prepared a patch and it is attached.

The problem with PATH_INFO is explained in 
https://nealpoole.com/blog/2011/04/setting-up-php-fastcgi-and-nginx-dont-trust-the-tutorials-check-your-configuration/ 
and 
http://serverfault.com/questions/627903/is-the-php-option-cgi-fix-pathinfo-really-dangerous-with-nginx-php-fpm 
. Debian already has protection against this problem by having 
"try_files $uri =404;" in the fastcgi snippet and also default value 
".php" for "security.limit_extensions". So I think it is safe to allow 
path info after php url.


About the index directive, I'm not talking about moving the directive 
itself, only moving the comment, so that everything about enabling php 
is in one section of the file.


php7.0-fpm and php7.0-cgi are package names and ".0" shouldn't be dropped.

Best regards,
Ognyan
--- default.orig	2016-10-23 09:12:14.0 +0300
+++ default	2016-10-23 09:19:03.478261829 +0300
@@ -40,7 +40,6 @@
 
 	root /var/www/html;
 
-	# Add index.php to the list if you are using PHP
 	index index.html index.htm index.nginx-debian.html;
 
 	server_name _;
@@ -52,13 +51,14 @@
 	}
 
 	# pass PHP scripts to FastCGI server
+	# (usually you also need to add index.php to the index directive above)
 	#
-	#location ~ \.php$ {
+	#location ~ \.php($|/) {
 	#	include snippets/fastcgi-php.conf;
 	#
-	#	# With php5-fpm (or other unix sockets):
+	#	# With php7.0-fpm (or other unix sockets):
 	#	fastcgi_pass unix:/var/run/php7.0-fpm.sock;
-	#	# With php5-cgi (or other tcp sockets):
+	#	# With php7.0-cgi (or other tcp sockets):
 	#	fastcgi_pass 127.0.0.1:9000;
 	#}
 


Bug#841488: about index index.php

2016-10-21 Thread Ognyan Kulev
I think it would be clearer if the following line is removed from 
sites-available/default:


# Add index.php to the list if you are using PHP

And the following lines is added after "# pass PHP scripts to FastCGI 
server":


# (usually you also need to add index.php to the index directive above)

And related to #841230, please replace "php5" with "php7.0" also in the 
comments :-)


Best regards,
Ognyan



Bug#841488: improve suggested php config

2016-10-21 Thread Ognyan Kulev

Package: nginx-common
Version: 1.10.1-3
Severity: wishlist
Tags: patch

Hello,

In snippets/fastcgi-php.conf, url:s like /index.php/some/path are 
correctly split into /index.php and /some/path. But the suggested php 
config in sites-available/default has the following line that can't 
match /index.php/some/path:


location ~ \.php$ {

Please change that line to:

location ~ \.php($|/) {

It would also be nice to mention adding index.php to index directive in 
the FastCGI section. There is comment above the index directive but I 
didn't see it at first and probably many others are also too focused on 
the fastcgi section and expect their php application to just work after 
commenting out the fastcgi directives.


Best regards,
Ognyan



Bug#827723: gnome-software: always crashes on Downloading updates

2016-06-20 Thread Ognyan Kulev
Package: gnome-software
Version: 3.20.2-2
Severity: normal

Dear Maintainer,

On two Debian testing systems, I have run "apt update" and then when I try to 
refresh update info/download updates, gnome-software crashes. This was working 
fine until like one-two weeks ago. Perhaps some dependancy is making problems 
but all I got from running gnome-software in terminal is SIGSEGV message.

Best regards,
Ognyan Kulev

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these template lines ***


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

Kernel: Linux 4.6.0-1-686-pae (SMP w/4 CPU cores)
Locale: LANG=bg_BG.UTF-8, LC_CTYPE=bg_BG.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gnome-software depends on:
ii  appstream0.9.6-1
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-1
ii  gnome-software-common3.20.2-2
ii  gsettings-desktop-schemas3.20.0-3
ii  libappstream-glib8   0.5.14-3
ii  libatk1.0-0  2.20.0-1
ii  libc62.22-11
ii  libcairo-gobject21.14.6-1+b1
ii  libcairo21.14.6-1+b1
ii  libenchant1c2a   1.6.0-11+b1
ii  libfwupd10.7.0-1
ii  libgdk-pixbuf2.0-0   2.34.0-1
ii  libglib2.0-0 2.48.1-1
ii  libgnome-desktop-3-123.20.2-1
ii  libgtk-3-0   3.20.6-1
ii  libgtkspell3-3-0 3.0.8-1
ii  libjson-glib-1.0-0   1.2.0-1
ii  liblimba00.5.6-1
ii  libpackagekit-glib2-18   1.1.1-1
ii  libpango-1.0-0   1.40.1-1
ii  libpangocairo-1.0-0  1.40.1-1
ii  libpolkit-gobject-1-00.105-15
ii  libsoup2.4-1 2.54.1-1
ii  libsqlite3-0 3.13.0-1
ii  packagekit   1.1.1-1

gnome-software recommends no packages.

Versions of packages gnome-software suggests:
pn  fwupd  
pn  limba  

-- no debconf information



Bug#819846: still happens

2016-05-09 Thread Ognyan Kulev
Hello,

After last upgrade of gnome-music 3.20.0-3, similar error happened to me
at startup, making gnome-music unusable:

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/gnomemusic/playlists.py", line
139, in callback self.update_static_playlist(playlist)
  File "/usr/lib/python3/dist-packages/gnomemusic/playlists.py", line
176, in update_static_playlist while cursor.next():
GLib.Error: tracker-db-interface-error-quark: Invalid child (0)

I fixed the error by running the following commands:

tracker reset -r
tracker daemon -s

Best regards,
Ognyan



Bug#823841: virt-manager: cannot exit fullscreen with the small menu after last upgrade

2016-05-09 Thread Ognyan Kulev
Package: virt-manager
Version: 1:1.3.2-4
Severity: important

Dear Maintainer,

I just upgraded my Debian stretch/testing and while virt-manager itself wasn't
updated, a new undesired behavior appeared.

I start a VM (another Debian testing but it's not relevant). I enter
fullscreen. Releasing mouse lock with Ctrl-Alt is successful.

Now I expect the small menu in top center to appear but it didn't. This is the
bug.

Fortunately, with mouse released I can do Alt-Tab and thus switch to other
application.

I attach virt-manager.log but there is nothing interesting there. On console,
additionally there are several Gtk warnings:

(virt-manager:10128): Gtk-WARNING **: Drawing a gadget with negative
dimensions. Did you forget to allocate a size? (node box owner
virtManager+autodrawer+AutoDrawer)

My guess is that Gtk or other Gtk-related library got upgraded and this led to
this behavior.

Best regards,
Ognyan



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

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

Versions of packages virt-manager depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-1
ii  gconf2   3.2.6-3
ii  gir1.2-gtk-3.0   3.20.3-2
ii  gir1.2-gtk-vnc-2.0   0.5.3-1.3+b1
ii  gir1.2-libosinfo-1.0 0.2.12-2
ii  gir1.2-libvirt-glib-1.0  0.2.3-2
ii  gir1.2-vte-2.91  0.44.1-1
ii  librsvg2-common  2.40.15-1
ii  python-dbus  1.2.4-1
ii  python-gi3.20.1-1
ii  python-gi-cairo  3.20.1-1
ii  python-libvirt   1.3.3-1
ii  python-requests  2.9.1-3
pn  python2.7:any
pn  python:any   
ii  virtinst 1:1.3.2-4

Versions of packages virt-manager recommends:
ii  gir1.2-spice-client-gtk-3.0  0.30-1
ii  gnome-icon-theme 3.12.0-1
ii  libvirt-daemon-system1.3.3-2

Versions of packages virt-manager suggests:
ii  gnome-keyring3.18.3-1
pn  python-gnomekeyring  
pn  python-guestfs   
pn  ssh-askpass  
ii  virt-viewer  3.1-1



Bug#822657: gnome-music: Crash at launch

2016-04-26 Thread Ognyan Kulev

Package: gnome-music
Version: 3.20.0-2
Justification: renders package unusable
Severity: grave

After upgrading gnome-music from 3.18 to 3.20 in my Debian testing,  
gnome-music crashes at launch. The error is:


Traceback (most recent call last):
  File "/usr/bin/gnome-music", line 84, in 
app = Application()
  File "/usr/lib/python3/dist-packages/gnomemusic/application.py", line 60, in
__init__
cssProvider.load_from_file(cssProviderFile)
GLib.Error: gtk-css-provider-error-quark: application.css:23:21'-gtk-key-
bindings' is not a valid property name (3)



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

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

Versions of packages gnome-music depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-1
ii  gir1.2-glib-2.0  1.48.0-2
ii  gir1.2-grilo-0.3 0.3.0-1.1
ii  gir1.2-gst-plugins-base-1.0  1.8.1-1
ii  gir1.2-gstreamer-1.0 1.8.1-1
ii  gir1.2-gtk-3.0   3.18.9-1
ii  gir1.2-mediaart-2.0  1.9.0-2
ii  gir1.2-notify-0.70.7.6-2
ii  gir1.2-totem-plparser-1.03.10.6-4
ii  gir1.2-tracker-1.0   1.8.0-2+b1
ii  gnome-settings-daemon3.18.2-1
ii  grilo-plugins-0.30.3.0-1.1
ii  libatk1.0-0  2.20.0-1
ii  libc62.22-7
ii  libcairo-gobject21.14.6-1+b1
ii  libcairo21.14.6-1+b1
ii  libgdk-pixbuf2.0-0   2.34.0-1
ii  libglib2.0-0 2.48.0-1
ii  libgtk-3-0   3.18.9-1
ii  libpango-1.0-0   1.40.1-1
ii  libpangocairo-1.0-0  1.40.1-1
ii  python3  3.5.1-3
ii  python3-dbus 1.2.4-1
ii  python3-gi   3.20.0-2
ii  python3-gi-cairo 3.20.0-2
ii  python3-requests 2.9.1-3
pn  python3:any  
ii  tracker  1.8.0-2+b1

gnome-music recommends no packages.

gnome-music suggests no packages.

-- no debconf information



Bug#803375: python-csvkit: No command-line tools

2015-10-29 Thread Ognyan Kulev

Package: python-csvkit
Version: 0.9.1-2
Severity: grave

None of the command-line tools described in  
https://csvkit.readthedocs.org/en/0.9.1/cli.html is present in the  
package as executable in /usr/bin.


Best wishes,
Ognyan



Bug#798100: ufw: rsyslog warning: ~ action is deprecated, consider using the 'stop' statement instead

2015-09-05 Thread Ognyan Kulev

Package: ufw
Version: 0.33-2
Severity: minor
Tags: patch

Hello,

The following explanation is included in /etc/rsyslog.d/20-ufw.conf:

# Uncomment the following to stop logging anything that matches the last 
rule.

# Doing this will stop logging kernel generated UFW log messages to the file
# normally containing kern.* messages (eg, /var/log/kern.log)
#& ~

When the last line is uncommented, the following warning is reported by 
rsyslog:


warning: ~ action is deprecated, consider using the 'stop' statement 
instead [try http://www.rsyslog.com/e/2307 ]


Trivial patch is attached for using stop statement. Please apply it.

All the best,
Ognyan
--- 20-ufw.conf.orig	2015-09-05 19:28:13.537919120 +0300
+++ 20-ufw.conf	2015-09-05 19:28:41.954029257 +0300
@@ -4,4 +4,4 @@
 # Uncomment the following to stop logging anything that matches the last rule.
 # Doing this will stop logging kernel generated UFW log messages to the file
 # normally containing kern.* messages (eg, /var/log/kern.log)
-#& ~
+#& stop


Bug#798139: spampd: Syslog level NOTICE should be INFO instead

2015-09-05 Thread Ognyan Kulev

Package: spampd
Version: 2.30-22.2
Severity: minor

Spampd uses syslog level 2 (NOTICE) for all it's logging and now that we 
are using systemd and journald, these notices are in bold and attract 
unneeded attention. I solved the problem by replacing


$self->log(2, ...)

with

$self->log(3, ...)

All the best,
Ognyan



Bug#749315: Found solution

2015-07-18 Thread Ognyan Kulev

Hi,

I had the same solution when I use external monitor on my Thinkpad. 
http://gregcor.com/2011/05/07/fix-dual-monitors-in-gnome-3-aka-my-workspaces-are-broken/ 
had the solution for me. The magic configuration command is:


gsettings set org.gnome.shell.overrides workspaces-only-on-primary false

All the best,
Ognyan


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



Bug#785457: cloud.debian.org: AMI don't need getty

2015-05-18 Thread Ognyan Kulev

На 18.05.2015 в 17:17, Emmanuel Kasper написа:

My understanding of that applied to Xen virtualization platform that
Amazon uses, is that systemd will *always* start a getty on the default
system console,  which  for Xen will be /dev/hvc0 instead of /dev/tty1
Actually you *want* to have this one getty started, as this is where
your rescue console will be.


I'm new to Amazon EC2 but I don't see any way to access Xen console 
(hvc0). Quick googling didn't find anything.


All the best,
Ognyan



signature.asc
Description: OpenPGP digital signature


Bug#785457: cloud.debian.org: AMI don't need getty

2015-05-18 Thread Ognyan Kulev

На 18.05.2015 в 17:17, Emmanuel Kasper написа:

Can you please post a a process list of the getty processes you see in
the Amazon hvm ?



Now if you have more than one getty started, then there is indeed room
for improvement.


I already fixed my EC2 instance, so just now I artificially unmasked 
these services to show what processes are in current 8.0.0 HVM AMI:


26510 tty1 Ss+0:00  232 15595  1948  0.0 /sbin/agetty 
--noclear tty1 linux
26512 tty6 Ss+0:00  032 15595  1916  0.0 /sbin/agetty 
--noclear tty6 linux
26513 tty5 Ss+0:00  032 15595  1912  0.0 /sbin/agetty 
--noclear tty5 linux
26514 tty4 Ss+0:00  032 15595  1988  0.0 /sbin/agetty 
--noclear tty4 linux
26515 tty3 Ss+0:00  032 15595  1912  0.0 /sbin/agetty 
--noclear tty3 linux
26516 tty2 Ss+0:00  032 15595  1908  0.0 /sbin/agetty 
--noclear tty2 linux
26546 hvc0 Ss+0:00  032 12623  1772  0.0 /sbin/agetty 
--keep-baud 115200 38400 9600 hvc0 vt102
26548 ttyS0Ss+0:00  032 12623  1716  0.0 /sbin/agetty 
--keep-baud 115200 38400 9600 ttyS0 vt102


All the best,
Ognyan



signature.asc
Description: OpenPGP digital signature


Bug#785457: cloud.debian.org: AMI don't need getty

2015-05-18 Thread Ognyan Kulev
I'm a little confused, we should already be doing that for AWS images: 
https://github.com/andsens/bootstrap-vz/blob/f3be3e4543a37ef1af7b2b5193a8bb7b590d1b79/bootstrapvz/common/tasks/boot.py#L31 



systemd does not use the /etc/inittab file.



signature.asc
Description: OpenPGP digital signature


Bug#785457: cloud.debian.org: AMI don't need getty

2015-05-18 Thread Ognyan Kulev

На 18.05.2015 в 16:43, Ognyan Kulev написа:

I'm a little confused, we should already be doing that for AWS images:
https://github.com/andsens/bootstrap-vz/blob/f3be3e4543a37ef1af7b2b5193a8bb7b590d1b79/bootstrapvz/common/tasks/boot.py#L31


systemd does not use the /etc/inittab file.


Oh, actually it has code for jessie and =jessie. Probably it sets 
NAutoVTs=0 and ReserveVT=0 (I haven't checked the content of source 
logind.conf) but the reality is that getty processes exist in the 
official Jessie HVM AMI.


All the best,
Ognyan



signature.asc
Description: OpenPGP digital signature


Bug#785457: cloud.debian.org: AMI don't need getty

2015-05-18 Thread Ognyan Kulev

На 18.05.2015 в 17:29, Ognyan Kulev написа:

I'm new to Amazon EC2 but I don't see any way to access Xen console
(hvc0). Quick googling didn't find anything.


The only tty thing that I found is ec2-get-console-output command 
http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/ApiReference-cmd-GetConsoleOutput.html. 
And it is only output, no interactive session that would justify getty 
process. So it looks to me that hvc0 getty could be disabled as well, if 
it is impossible to use it (on EC2 instance). Correct me if I'm wrong.


All the best,
Ognyan




signature.asc
Description: OpenPGP digital signature


Bug#785457: cloud.debian.org: AMI don't need getty

2015-05-16 Thread Ognyan Kulev

Package: cloud.debian.org
Severity: wishlist
User: cloud.debian@packages.debian.org
Usertags: image
Usertags: aws

Hi,

While fine-tuning the Debian 8.0.0 HVM AMI, I noticed that getty 
processes fill up space in the otherwise short default process list, so 
I disabled these with:


systemctl mask getty@tty{1,2,3,4,5,6}.service
systemctl mask serial-getty@{hvc0,ttyS0}.service
systemctl mask getty-static.service

I don't see any reason for having getty support in AMI. I think these 
should be disabled.


All the best,
Ognyan



signature.asc
Description: OpenPGP digital signature


Bug#706305: Amazon AMI HVM images already available

2015-05-16 Thread Ognyan Kulev
I think this bug should be closed. There are official HVM images: 
https://aws.amazon.com/marketplace/pp/B00WUNJIEE/


All the best,
Ognyan



signature.asc
Description: OpenPGP digital signature


Bug#766321: ITP: fastaq -- FASTA and FASTQ file manipulation tools

2014-10-23 Thread Ognyan Kulev

(Why #766321 is not included in this mail thread?)

На 23.10.2014 г. в 11:54 ч., Jorge Sebastião Soares написа:

On Thu, Oct 23, 2014 at 7:25 AM, Johannes Schauer j.scha...@email.de wrote:
Also, the name might be too general. The program name is the same as
the format
it reads. This makes it look as if this program is the somehow
*official* way
to read, write and manipulate fasta/fastaq files.


I'm not sure I agree with this statement.
If we called it fastaq-tools, this could also be seen as the *official*
way to deal with fasta or fastq files.

But you don't see programs
called jpeg or odt or avi in Debian either. Maybe you should
convince upstream
to use a more unique name than the file format it operates on.


I know exactly what you mean and I agree to a certain extent.
I had actually mentioned it at the Debian Med sprint meeting as
packaging fastaq was one of the actions that came out of the sprint.

However we (me and upstream that sits behind me) believe this is a short
name that expresses, along with a proper description, what the software
does.
Nowhere will we say that fastaq is the ultimate way to manipulate,
write, read, season, cook or serve fasta or fastq files. We will,
however, think it. :)


There is no file format fastaq, only fasta and fastq. And there is 
a very popular package already with one-letter difference compared to 
file format name: fastqc. So I think fastaq as package name is OK.


All the best,
Ognyan Kulev


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



Bug#742005: ECDSA as a reason for packaging new upstream

2014-04-03 Thread Ognyan Kulev
ECDSA key support is added in 1.12 and is desirable too. It adds new
dependancy on python-ecdsa.

Best regards,
Ognyan Kulev


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



Bug#742961: cannot open /var/cache/spampd/auto-whitelist: Access denied

2014-03-29 Thread Ognyan Kulev

Package: spampd
Version: 2.30-22

The error in /var/log/mail.log is:

Mar 29 12:59:48 server spampd[658]: auto-whitelist: open of 
auto-whitelist file failed: auto-whitelist: cannot open 
auto_whitelist_path /var/cache/spampd/auto-whitelist: Access denied#012


# ls -l /var/cache/spampd/
-rw--- 1 root spampd 12288 Mar 29 14:06 auto-whitelist

I removed the file and restarted spampd, the permissions of newly 
created auto-whitelist is the same.


I set AUTOWHITELIST=0 in /etc/default/spampd and removed the file but 
after restarting it's re-created again, with same permissions.


I'm not sure if this error has any negative effect but anyway it's 
disturbing that such message shows up.


Best regards,
Ognyan Kulev


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



Bug#724386: gwaterfall: diff for NMU version 0.1-5.1

2014-03-08 Thread Ognyan Kulev

Thank you for your efforts.

-Ognyan

На 8.3.2014 г. 09:31 ч., Eric Dorland написа:

tags 724386 + pending
thanks

Dear maintainer,

I've prepared an NMU for gwaterfall (versioned as 0.1-5.1) and
uploaded it to DELAYED/10. Please feel free to tell me if I
should delay it longer.

Regards.




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



Bug#733352: [Debian-med-packaging] Bug#733352: Bowtie and tophat fail to build with seqan = 1.4

2014-02-25 Thread Ognyan Kulev

На 25.2.2014 г. 15:30 ч., Andreas Tille написа:

since we uploaded seqan 1.4.x packages to Debian the packages bowtie and
tophat failed to build while the build went fine with seqan 1.3.



Please also let us know if you have no idea how to fix this.  In this
case we would use a last fallback and reinject a versioned seqan1.3
package in addition to the latest version of seqan.


bowtie package uses seqan 1.2 and I made series of patches to build it 
against seqan 1.3 
http://anonscm.debian.org/viewvc/debian-med/trunk/packages/bowtie/trunk/debian/patches/. 
This weekend I'll work on patching bowtie to work with 1.4.


Best regards,
Ognyan Kulev


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



Bug#729571: Crash with fasta.gz file

2013-11-14 Thread Ognyan Kulev

Package: bowtie2
Version: 2.1.0-2

Hi,

When running bowtie2-build on reference fasta downloaded from 
ftp://ftp.ensemblgenomes.org/pub/release-20/plants/fasta/arabidopsis_thaliana/cdna/Arabidopsis_thaliana.TAIR10.20.cdna.all.fa.gz 
, bowtie2-build crashes in ugly way. After gunzip and running again, 
it's OK. Programs should not just crash when invalid input is given to them.


Best regards,
Ognyan Kulev


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



Bug#710682: [Debian-med-packaging] Bug#710682: New upstream version bwa 0.7.5a

2013-06-02 Thread Ognyan Kulev
На  2.06.2013 04:04, Charles Plessy написа:
 Le Sat, Jun 01, 2013 at 04:35:52PM +0300, Ognyan Kulev a écrit :
 Package: bwa
 Version: 0.6.2-1
 Severity: wishlist

 I've updated bwa from 0.7.0 to 0.7.5a in git repository using
 git-import-orig. README is renamed to README.md by upstream and I
 committed a fix. git-buildpackage successfully builds the package after
 these changes.

 Why bwa package was updated to 0.7.0 but not uploaded?

 I'm interested in maintaining bwa package. Can I upload 0.7.5a and
 maintain the package?
 
 Hi,
 
 I did not upload bwa during the Freeze, and then I become very busy
 at work...
 
 Your help is very much appreciated !  Go ahead with uploads !
 
 Have a nice Sunday,
 

Thank you. I'll upload today.

Best regards,
Ognyan Kulev


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



Bug#710682: New upstream version bwa 0.7.5a

2013-06-01 Thread Ognyan Kulev
Package: bwa
Version: 0.6.2-1
Severity: wishlist

I've updated bwa from 0.7.0 to 0.7.5a in git repository using
git-import-orig. README is renamed to README.md by upstream and I
committed a fix. git-buildpackage successfully builds the package after
these changes.

Why bwa package was updated to 0.7.0 but not uploaded?

I'm interested in maintaining bwa package. Can I upload 0.7.5a and
maintain the package?

Best regards,
Ognyan Kulev


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



Bug#706000: clustalo: RNA/DNA support should be mentioned in description

2013-04-23 Thread Ognyan Kulev
Package: clustalo
Version: 1.1.0-1
Severity: minor

ClustalO support RNA/DNA in addition to protein sequences since version 1.1.0. 
Description of package should reflect this change.

Regards,
Ognyan Kulev


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



Bug#705616: New upstream version bowtie 1.0.0

2013-04-18 Thread Ognyan Kulev
On Wed, Apr 17, 2013 at 09:47:39PM +0200, Andreas Tille wrote:
  @@ -2,7 +2,7 @@
   # Makefile for bowtie, bowtie-build, bowtie-inspect
   #
   
  -SEQAN_DIR = SeqAn-1.1
  +SEQAN_DIR = /usr/include/seqan
 
 Great to use packaged version.

I'm using my bowtie-1.0.0 package with Debian's SeqAn 1.3 and I don't have 
problems :-)

 From the other patches I did removed here in this mail it seems that you
 did not used pristine-tar as it is recommended in our policy[1] (or may
 be I misread the patch).  At least it is not usual to discuss upstream
 changes here except there is some relevant change for the packaging.

It looks like pristine-tar is used only for git packages and bowtie is in svn.

I've updated descriptions of patches and the result is committed in
http://anonscm.debian.org/viewvc/debian-med?view=revisionrevision=13348
It's not finished yet and other things need polishing, in particular building 
64-bit version.

Regards,
Ognyan Kulev


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



Bug#705681: Ability to set Java options

2013-04-18 Thread Ognyan Kulev
Package: picard-tools
Version: 1.82-1
Severity: wishlist

Hi,

It would be nice if /usr/bin/picard-tools is able to set Java options, e.g. like

$ picard-tools -Xmx32g SortSam ...

Regards,
Ognyan Kulev


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



Bug#705686: picard-tools BuildBamIndex fails

2013-04-18 Thread Ognyan Kulev
Package: picard-tools
Version: 1.82-1

picard-tools BuildBamIndex ... fails with

Caused by: java.lang.ClassNotFoundException: net.sf.picard.util.BuildBamIndex
...

In /usr/bin/picard-tools, changing

   BuildBamIndex)  main=net.sf.picard.util.BuildBamIndex;;

to

   BuildBamIndex)  main=net.sf.picard.sam.BuildBamIndex;;

fixes the problem.

Probably all picard commands has to be checked.

Regards,
Ognyan Kulev


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



Bug#705616: New upstream version bowtie 1.0.0

2013-04-17 Thread Ognyan Kulev
Package: bowtie
Version: 0.12.7-3
Severity: wishlist
Tags: patch

Hi,

bowtie 1.0.0 is out and I've update debian/patches so that it compiles without 
errors.

I'm a Debian Developer (account name: ogi) and since I'm working with various 
NGS software, I plan to update Debian's packages. Could you give me repository 
rights for updating the patches? Is it OK to go ahead and upload the new 
version?

I've just finished with the patches and the names and descriptions need 
improvement. I'll do it later.

Regards,
Ognyan Kulev
--- a/blockwise_sa.h
+++ b/blockwise_sa.h
@@ -448,8 +448,8 @@
 		try {
 			// Allocate and initialize containers for holding bucket
 			// sizes and representatives.
-			fill(bucketSzs, numBuckets, 0, Exact());
-			fill(bucketReps, numBuckets, 0x, Exact());
+			resize(bucketSzs, numBuckets, 0, Exact());
+			resize(bucketReps, numBuckets, 0x, Exact());
 		} catch(bad_alloc e) {
 			if(this-_passMemExc) {
 throw e; // rethrow immediately
@@ -806,7 +806,7 @@
 // Not the last bucket
 assert_lt(_cur, length(_sampleSuffs));
 hi = _sampleSuffs[_cur];
-fill(zHi, _dcV, 0, Exact());
+resize(zHi, _dcV, 0, Exact());
 assert_eq(zHi[0], 0);
 calcZ(t, hi, zHi, this-verbose(), this-sanityCheck());
 			}
@@ -815,7 +815,7 @@
 assert_gt(_cur, 0);
 assert_leq(_cur, length(_sampleSuffs));
 lo = _sampleSuffs[_cur-1];
-fill(zLo, _dcV, 0, Exact());
+resize(zLo, _dcV, 0, Exact());
 assert_gt(_dcV, 3);
 assert_eq(zLo[0], 0);
 calcZ(t, lo, zLo, this-verbose(), this-sanityCheck());
--- a/diff_sample.h
+++ b/diff_sample.h
@@ -451,7 +451,7 @@
 	// Declare anchor-map-related items
 	StringT amap;
 	size_t amapEnts = 1;
-	fill(amap, v, 0x, Exact());
+	resize(amap, v, 0x, Exact());
 	amap[0] = 0;
 	// Print out difference cover (and optionally calculate
 	// anchor map)
@@ -531,7 +531,7 @@
 		assert_gt(_d, 0);
 		assert_eq(1, popCount(_v)); // must be power of 2
 		// Build map from d's to idx's
-		fill(_dInv, _v, 0x, Exact());
+		resize(_dInv, _v, 0x, Exact());
 		for(size_t i = 0; i  length(_ds); i++) _dInv[_ds[i]] = i;
 	}
 	
@@ -652,7 +652,7 @@
 	VMSG_NL(  Doing sanity check);
 	uint32_t added = 0;
 	Stringuint32_t sorted;
-	fill(sorted, length(_isaPrime), 0x, Exact());
+	resize(sorted, length(_isaPrime), 0x, Exact());
 	for(size_t di = 0; di  this-d(); di++) {
 		uint32_t d = _ds[di];
 		size_t i = 0;
@@ -713,7 +713,7 @@
 	assert_eq(length(_doffs), d+1);
 	// Size sPrime appropriately
 	reserve(sPrime, sPrimeSz+1, Exact()); // reserve extra slot for LS
-	fill(sPrime, sPrimeSz, 0x, Exact());
+	resize(sPrime, sPrimeSz, 0x, Exact());
 	// Slot suffixes from text into sPrime according to the mu
 	// mapping; where the mapping would leave a blank, insert a 0
 	uint32_t added = 0;
@@ -818,7 +818,7 @@
 		// arrays back into sPrime.
 		VMSG_NL(  Allocating rank array);
 		reserve(_isaPrime, length(sPrime)+1, Exact());
-		fill(_isaPrime, length(sPrime), 0x, Exact());
+		resize(_isaPrime, length(sPrime), 0x, Exact());
 		assert_gt(length(_isaPrime), 0);
 		{
 			Timer timer(cout,   Ranking v-sort output time: , this-verbose());
Description: Use build flags from environment (dpkg-buildflags).
 Necessary for hardening flags.
Author: Simon Ruderich si...@ruderich.org
Last-Update: 2012-04-24
Bug-Closed: http://bugs.debian.org/670230

--- a/Makefile
+++ b/Makefile
@@ -173,7 +173,7 @@
  $(MM_DEF) \
  $(SHMEM_DEF)
 
-ALL_FLAGS = $(EXTRA_FLAGS) $(CFLAGS) $(CXXFLAGS)
+ALL_FLAGS = $(EXTRA_FLAGS) $(CPPFLAGS) $(CFLAGS) $(CXXFLAGS) $(LDFLAGS)
 DEBUG_DEFS = -DCOMPILER_OPTIONS=\$(DEBUG_FLAGS) $(ALL_FLAGS)\
 RELEASE_DEFS = -DCOMPILER_OPTIONS=\$(RELEASE_FLAGS) $(ALL_FLAGS)\
 
Note: This patch is deactivated because the Debian packaged version of SeqAn 1.2
  is not compatible with the version included into this package

Author: Andreas Tille tilleqdebian.org
Date: 2011-01-30
Description: Use Debian packages SeqAn Librariy instead of copy in upstream source
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
 # Makefile for bowtie, bowtie-build, bowtie-inspect
 #
 
-SEQAN_DIR = SeqAn-1.1
+SEQAN_DIR = /usr/include/seqan
 SEQAN_INC = -I $(SEQAN_DIR)
 INC = $(SEQAN_INC)
 CPP = g++
@@ -133,7 +133,6 @@
$(wildcard genomes/NC_008253.fna) \
$(wildcard reads/e_coli_1000.*) \
$(wildcard reads/e_coli_1000_*) \
-   SeqAn-1.1 \
doc/manual.html \
doc/README \
doc/style.css \
--- a/aligner.h
+++ b/aligner.h
@@ -337,7 +337,7 @@
 		bool verbose,
 		bool quiet,
 		int maxBts,
-		ChunkPool *pool,
+		bowtieChunkPool *pool,
 		int *btCnt = NULL,
 		AlignerMetrics *metrics = NULL) :
 		Aligner(true, rangeMode),
@@ -544,7 +544,7 @@
 	bool quiet_; // don't print informational/warning info
 
 	const int maxBts_;
-	ChunkPool *pool_;
+	bowtieChunkPool *pool_;
 	int *btCnt_;
 	AlignerMetrics

Bug#697604: Templates/Icons is not found

2013-01-07 Thread Ognyan Kulev
Package: fastqc
Version: 0.10.1+dfsg-1
Severity: grave

Non-interactive fastqc always fails with

java.lang.NullPointerException
at
uk.ac.babraham.FastQC.Report.HTMLReportArchive.startDocument(HTMLReportArchive.java:170)
at
uk.ac.babraham.FastQC.Report.HTMLReportArchive.init(HTMLReportArchive.java:60)
at
uk.ac.babraham.FastQC.Analysis.OfflineRunner.analysisComplete(OfflineRunner.java:157)
at
uk.ac.babraham.FastQC.Analysis.AnalysisRunner.run(AnalysisRunner.java:108)
at java.lang.Thread.run(Thread.java:679)

It's this line:

File templatesDir = new
File(URLDecoder.decode(ClassLoader.getSystemResource(Templates/Icons).getFile(),UTF-8));

So it tries to find /usr/share/fastqc/Templates/Icons and don't succeed.
I tried various things to add /usr/share/fastqc to CLASSPATH in
/usr/bin/fastqc but it's not enough.

I downloaded upstream FastQC and there was no such problem. The only
difference that I see is that in Debian a fastqc.jar is used while in
upstream it's unpacked in the root directory. My conclusion is that this
specific way with getSystemResource searches only the location where
main class resides. In Debian's case it's fastqc.jar and in upstream
it's FastQC directory.

The easiest solution is to include all /usr/share/fastqc/* in the jar
file. (Well, you could not use jar file at all but I don't think it's a
good idea.)

Regards,
Ognyan Kulev


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



Bug#697344: error: abyss has been compiled to use the POPCNT

2013-01-06 Thread Ognyan Kulev
На  4.01.2013 12:21, Andreas Tille написа:
 Hi Ognyan,
 
 thanks for your bug report.  Before I upload the package with the
 requested option could you please test it whether the problem is solved.
 I made my build available at
 
 http://people.debian.org/~tille/packages/abyss/

Hi :-)

This package runs fine :-)

Regards,
Ognyan Kulev


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



Bug#697344: error: abyss has been compiled to use the POPCNT

2013-01-04 Thread Ognyan Kulev
Package: abyss
Version: 1.3.4-2
Severity: grave

Trying to run abyss on Xeon E7340 leads to this error immediately after
reading the fastq file:

error: abyss has been compiled to use the POPCNT
instruction, which this machine lacks. Recompile using
configure --disable-popcnt to disable this feature.

POPCNT instruction appeared along with SSE4.2.

Please configure abyss Debian package to work on all i686 processors by
using --disable-popcnt.

Regards,
Ognyan Kulev


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



Bug#689586: Newer version that fixes blue skin in Flash

2012-10-04 Thread Ognyan Kulev

Package: libvdpau1
Version: 0.4.1-7

Nearly 500 Ubuntu users reported that they are affected by blue skin in 
e.g. youtube videos using recent flash player when libvdpau1 is in use. 
It's entirely Adobe's fault for this deffect: 
https://bugs.launchpad.net/ubuntu/+source/adobe-flashplugin/+bug/967091


Please upload libvdpau 0.5 that makes special non-default setting for 
making special case for flashplayer: 
http://lists.x.org/archives/xorg-announce/2012-September/002066.html


Regards,
Ognyan Kulev


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



Bug#689586: Newer version that fixes blue skin in Flash

2012-10-04 Thread Ognyan Kulev

На  4.10.2012 12:22, Andreas Beckmann написа:

Please upload libvdpau 0.5 that makes special non-default setting for
making special case for flashplayer:
http://lists.x.org/archives/xorg-announce/2012-September/002066.html


That patch has been applied since 0.4.1-6. There are no changes in 0.5
that haven't been backported to 0.4.1.

Expect a 0.5 upload after wheezy's release.


I had non-default config setting dom.ipc.plugins.enabled=false in my 
Firefox. As a result I didn't have separate process for flashplayer and 
libvdpau didn't recognize it's flashplayer. This was the reason I was 
experiencing the issue. I reset the setting and now everything is fine :-)


Keep up the good work :-)

Regards,
Ognyan Kulev


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



Bug#653073: Solved for me

2012-09-19 Thread Ognyan Kulev

Hi :-)

I successfully solved the issue by:

1. setting label (tune2fs -L root /dev/...) for root fs
2. patching /etc/grub.d/10_linux using the small patch in 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=542170

3. adding GRUB_ENABLE_LINUX_LABEL=true to /etc/default/grub
4. running update-grub and rebooting

Now df shows the much shorter /dev/disk/by-label/root :-)

Regards,
Ognyan Kulev


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



Bug#563314: In Emacs 24 too

2012-09-08 Thread Ognyan Kulev
This happened to me too but on Emacs 24 under Xfce. It's Gtk-based like 
GNOME so it's no surprise. When hinting in Xfce settings is set to 
Medium, Emacs 24 shows completely unhinted fonts. When set to Full, all 
is hinted. In other programs I really don't distinguish between Medium 
and Full.


Regards,
Ognyan Kulev


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



Bug#686735: [Pkg-xfce-devel] Bug#686735: xfce4-panel: Action Buttons: No icons for Suspend and Hibernate

2012-09-06 Thread Ognyan Kulev

На  5.09.2012 15:37, Yves-Alexis Perez написа:

On Wed, Sep 05, 2012 at 10:03:25AM +0300, Ognyan Kulev wrote:

When I go to settings of Action Buttons on my panel, changing button
action to Suspend or Hibernate changes the icon of Action Buttons to
kind of N/A icon. Other button actions has proper icons.


What icon theme do you use?


http://git.xfce.org/xfce/xfce4-panel/tree/plugins/actions/actions.c#n122 
defines icons for actions. Suspend and Hibernate have icons 
system-suspend and system-hibernate but (almost) no icon theme has 
these. I solved this issue for me with the following commands:


# cd /usr/share/icons/hicolor/scalable/actions
# ln -s xfpm-suspend.svg system-suspend.svg
# ln -s xfpm-hibernate.svg system-hibernate.svg
# gtk-update-icon-cache -f ../..

Regards,
Ognyan Kulev


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



Bug#686735: xfce4-panel: Action Buttons: No icons for Suspend and Hibernate

2012-09-05 Thread Ognyan Kulev

Package: xfce4-panel
Version: 4.8.6-3
Severity: normal


Hi,

When I go to settings of Action Buttons on my panel, changing button 
action to Suspend or Hibernate changes the icon of Action Buttons to 
kind of N/A icon. Other button actions has proper icons.


Regards,
Ognyan Kulev


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

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

Versions of packages xfce4-panel depends on:
ii  dpkg1.16.8
ii  exo-utils   0.6.2-5
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-35
ii  libcairo2   1.12.2-2
ii  libdbus-1-3 1.6.0-1
ii  libdbus-glib-1-20.100-1
ii  libexo-1-0  0.6.2-5
ii  libfontconfig1  2.9.0-7
ii  libfreetype62.4.9-1
ii  libgarcon-1-0   0.1.12-1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.32.3-1
ii  libgtk2.0-0 2.24.10-2
ii  libice6 2:1.0.8-2
ii  libpango1.0-0   1.30.0-1
ii  libsm6  2:1.2.1-2
ii  libwnck22   2.30.7-1
ii  libx11-62:1.5.0-1
ii  libxext62:1.3.1-2
ii  libxfce4ui-1-0  4.8.1-1
ii  libxfce4util4   4.8.2-1
ii  libxfconf-0-2   4.8.1-1
ii  multiarch-support   2.13-35

xfce4-panel recommends no packages.

xfce4-panel 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#686735: [Pkg-xfce-devel] Bug#686735: xfce4-panel: Action Buttons: No icons for Suspend and Hibernate

2012-09-05 Thread Ognyan Kulev
It may be relevant that I have a problem with Log Out Dialog too. It 
directly logs out and doesn't show a dialog. It looked non-Debian 
specific so I posted it to http://forum.xfce.org/viewtopic.php?id=7421


Regards,
Ognyan Kulev


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



Bug#645623: NMU

2012-06-19 Thread Ognyan Kulev
Hi,

I intent to do 3-day delayed NMU next Monday because of this bug.

Regards,
Ognyan Kulev


signature.asc
Description: Digital signature


Bug#645895: ftp.debian.org: epoch should be part of the .deb file name

2011-10-19 Thread Ognyan Kulev

На 19.10.2011 16:18, Henrique de Moraes Holschuh написа:

Well, while % is xml/xhtml/html-friendly, it is *not* http-friendly, and
will require double-encoding.


So we have encoding : anyway. What about using .. (horizontal :) 
- it looks much nicer than %-encoding.


Regards,
Ognyan Kulev



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



Bug#625810: /etc/cron.d/nsd3 sends mail to hostmaster@hostname

2011-05-06 Thread Ognyan Kulev

Package: nsd3
Version: 3.2.5-1

Hi

I was surprised when in my logs I saw nsd3 sending mail to 
hostmaster@hostname and failing. nsd3's cron entry is Debian-specific 
and requires hostmaster alias in /etc/aliases which is not provided in 
default Debian install.


There are various possible resolutions:

* hostmaster alias is documented in README.Debian
* mail is just send to root@ so that there's least suprise
* option if this mail to be sent at all

Since nsdc patch reports indirectly to system log, my preference is to 
not sending this mail at all by adding  /dev/null and removing 
MAILTO=hostmaster. This way only errors will generate mail (to root@).


Regards,
Ognyan Kulev



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



Bug#517790: memory

2011-04-19 Thread Ognyan Kulev
MyDNS seems to use significantly less memory than PowerDNS and this is 
important for light VPS installations. I wanted just to mention a reason 
for someone to choose MyDNS over PowerDNS


Regards,
Ognyan Kuev



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



Bug#575397: Please upload new key 0x36D33D07 for Ognyan Kulev

2010-03-25 Thread Ognyan Kulev
Package: debian-maintainers

My Debian key expired more than an year ago and finally I'm moving to
more participation in Debian. Please upload my new key that is attached.
It's signed by one DD: zinov...@debian.org. I've read
http://wiki.debian.org/DebianMaintainer#RulesforkeyreplacementintheDebianMaintainerskeyring
but I'm not totally clear what to do - will signed post by zinoviev be
enough? I have the old expired key but I doubt this will help.

Regards,
Ognyan Kulev
-BEGIN PGP PUBLIC KEY BLOCK-
Version: GnuPG v1.4.10 (GNU/Linux)

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
KN1t1vHtawRWARQUsuZG5a

Bug#569775: left-overs

2010-02-15 Thread Ognyan Kulev
After I send the report, I noticed that /etc/ntp.conf.dhcp is not used
in /etc/init.d/ntp but /var/lib/ntp/ntp.conf.dhcp. But the latter file
existed too and in essence the situation is the same. Probably
/etc/ntp.conf.dhcp is left-over from older ntp version (this computer is
continously upgraded since sarge times). That's why I retitled the bug
and the original report should be read as
s,/etc/ntp.conf.dhcp,/var/lib/ntp/ntp.conf.dhcp/s.

I'm using NetworkManager with automatic interface up and I've just
tested the following scenario: touch /var/lib/ntp/ntp.conf.dhcp, down
interface (via NetworkManager GNOME applet), up IF, down IF--and the
file is still there. /var/log/syslog shows that on IF up dhclient is
used but no trace of dhclient when IF down.

I don't know when dhclient-script is supposed to be used but in my
configuration (NetworkManager automatically manages eth0), it seems this
exit hook is never called.

Regards,
Ognyan Kulev



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b794ec9.5090...@triangle.bg



Bug#569775: ntp should not use /etc/ntp.conf.dhcp when dhclient don't receive ntp server

2010-02-14 Thread Ognyan Kulev
Package: ntp
Version: 1:4.2.4p8+dfsg-1

I configured dhclient to use ntp servers and it worked fine. Then I
moved to another dhcp server that don't send ntp server. But
/etc/ntp.conf.dhcp file have stayed and it is wrongly used by ntp. (The
previously sent ntp server was 192.168.0.1 - the DHCP/gateway server
itself. In the new environment there's no NTP server at this address and
ntp suddenly and quietly stopped synchronizing time.)

There should be some check if /etc/ntp.conf.dhcp is generated by current
dhclient session. If it's left-over from previous session, it should not
be used.

Regards,
Ognyan Kulev



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4b77ae04.60...@triangle.bg



Bug#547423: transmission: SEGV when LANG=bg_BG.UTF-8

2009-09-19 Thread Ognyan Kulev
Package: transmission
Version: 1.74-1
Severity: important

When LANG=bg_BG.UTF-8, transmission crashes immediately after launch. I
tried with LANG unset and LANG=de_DE.UTF-8 and there is no crash in
these cases. So there's something wrong with bg l10n. While searching
why transmission crashes on launch, I built it with
DEB_BUILD_OPTIONS=nostrip noopt so there's detailed crash report that
I've attached - I hope this helps.

Given that bg l10n users are minority, severity is set to important and
not grave.

Regards,
Ognyan Kulev

System: Linux 2.6.30-1-amd64 #1 SMP Sat Aug 15 18:09:19 UTC 2009 x86_64
X Vendor: The X.Org Foundation
X Vendor Release: 10603000
Selinux: No
Accessibility: Disabled
GTK+ Theme: Clearlooks
Icon Theme: gnome
GTK+ Modules: gnomebreakpad

Memory status: size: 214605824 vsize: 214605824 resident: 14561280 share: 
10190848 rss: 14561280 rss_rlim: 18446744073709551615
CPU usage: start_time: 1253374108 rtime: 8 utime: 8 stime: 0 cutime:0 cstime: 0 
timeout: 0 it_real_value: 0 frequency: 100

Backtrace was generated from '/usr/bin/transmission'

[Thread debugging using libthread_db enabled]
[New Thread 0x7fb7a2629950 (LWP 7327)]
0x7fb7ab8c328f in waitpid () from /lib/libpthread.so.0
#0  0x7fb7ab8c328f in waitpid () from /lib/libpthread.so.0
#1  0x7fb7ab41d519 in g_spawn_sync () from /usr/lib/libglib-2.0.so.0
#2  0x7fb7ab41d818 in g_spawn_command_line_sync () from 
/usr/lib/libglib-2.0.so.0
#3  0x7fb7a2d69d63 in ?? () from 
/usr/lib/gtk-2.0/modules/libgnomebreakpad.so
#4  signal handler called
#5  0x7fb7ab3eace0 in g_markup_escape_text () from /usr/lib/libglib-2.0.so.0
#6  0x7fb7acada311 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#7  0x7fb7ab681e03 in g_object_set_valist () from 
/usr/lib/libgobject-2.0.so.0
#8  0x7fb7ab682264 in g_object_set () from /usr/lib/libgobject-2.0.so.0
#9  0x0043ab6a in syncAltSpeedButton (core=value optimized out, 
key=value optimized out, wind=0x12fae20) at tr-window.c:349
#10 prefsChanged (core=value optimized out, key=value optimized out, 
wind=0x12fae20) at tr-window.c:279
#11 0x0043c635 in tr_window_new (ui_mgr=value optimized out, 
core=0x1208430) at tr-window.c:1067
#12 0x00429e1f in main (argc=1, argv=0x7fff632d1cf8) at main.c:456

Thread 2 (Thread 0x7fb7a2629950 (LWP 7327)):
#0  0x7fb7aa6a4bf8 in epoll_wait () from /lib/libc.so.6
No symbol table info available.
#1  0x7fb7abd053f0 in ?? () from /usr/lib/libevent-1.4.so.2
No symbol table info available.
#2  0x7fb7abcf901a in event_base_loop () from /usr/lib/libevent-1.4.so.2
No symbol table info available.
#3  0x0045d8cd in libeventThreadFunc (veh=0x1222ff0) at trevent.c:239
No locals.
#4  0x7fb7ab8bbf9a in start_thread () from /lib/libpthread.so.0
No symbol table info available.
#5  0x7fb7aa6a456d in clone () from /lib/libc.so.6
No symbol table info available.
#6  0x in ?? ()
No symbol table info available.

Thread 1 (Thread 0x7fb7ad36a7b0 (LWP 7326)):
#0  0x7fb7ab8c328f in waitpid () from /lib/libpthread.so.0
No symbol table info available.
#1  0x7fb7ab41d519 in g_spawn_sync () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#2  0x7fb7ab41d818 in g_spawn_command_line_sync () from 
/usr/lib/libglib-2.0.so.0
No symbol table info available.
#3  0x7fb7a2d69d63 in ?? () from 
/usr/lib/gtk-2.0/modules/libgnomebreakpad.so
No symbol table info available.
#4  signal handler called
No symbol table info available.
#5  0x7fb7ab3eace0 in g_markup_escape_text () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#6  0x7fb7acada311 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
No symbol table info available.
#7  0x7fb7ab681e03 in g_object_set_valist () from 
/usr/lib/libgobject-2.0.so.0
No symbol table info available.
#8  0x7fb7ab682264 in g_object_set () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#9  0x0043ab6a in syncAltSpeedButton (core=value optimized out, 
key=value optimized out, wind=0x12fae20) at tr-window.c:349
u = 50,0 KБ/сек\0\300Y\255\254\267\177\0\0Ѓ*\1\0\0\0
buf = Натиснете за 
временно включване на 
ограничаване на 
скоростта\n(50,0 KБ/с, incomplete sequence 
\320
w = 0x1339a80
d = 50,0 KБ/сек\0Ѓ*\1\0\0\0\0ɯ\242\254\267\177\0
b = value optimized out
#10 prefsChanged (core=value optimized out, key=value optimized out, 
wind=0x12fae20) at tr-window.c:279
p = value optimized out
#11 0x0043c635 in tr_window_new (ui_mgr=value optimized out, 
core=0x1208430) at tr-window.c:1067
pch = 0x1224bb8 total-ratio
mainmenu = 0x12f0060
vbox = 0x12a83d0
w = value optimized out
self = 0x12fae20
s = 0x12e8040
hbox = value optimized

Bug#543479: network-bridge doesn't handle secondary address of ${netdev}

2009-08-25 Thread Ognyan Kulev

Package: xen-utils-common
Version: 3.2.0-2

In network bridge, IP addresses of ${netdev} are correctly transferred 
to ${tdev} which later is renamed to ${bridge} (by default = ${netdev}). 
But then there is ifup ${bridge} which sets up again the network 
configuration for ${bdrige}/${netdev} and aliases (e.g. eth0:1 defined 
in /etc/network/interfaces) are loosed.


Regards,
Ognyan Kulev




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



Bug#524209: php5-geoip: Out of memory when using suPHP

2009-04-15 Thread Ognyan Kulev

Package: php5-geoip
Version: 1.0.3-1
Severity: grave

It's a lenny system. When using libapache2-mod-suphp for running PHP, 
right after PHP CGI loads geoip the following errors are logged and 
naturally the PHP script is not executed. After removing php5-geoip 
package (lexicographically just before imagick), the problem doesn't 
occur. There's no problem when PHP CGI is used without suPHP.


[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/imagick.so' - lib
Magick.so.10: failed to map segment from shared object: Cannot allocate 
memory in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library '/usr/lib/php5/20060613/imap.so' 
- libpam
.so.0: failed to map segment from shared object: Cannot allocate memory 
in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/mcrypt.so' - libl
tdl.so.3: failed to map segment from shared object: Cannot allocate 
memory in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/mysql.so' - libmy
sqlclient_r.so.15: failed to map segment from shared object: Cannot 
allocate memory in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/mysqli.so' - libm
ysqlclient_r.so.15: failed to map segment from shared object: Cannot 
allocate memory in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/pdo_mysql.so' - l
ibmysqlclient_r.so.15: failed to map segment from shared object: Cannot 
allocate memory in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/pdo_pgsql.so' - l
ibpq.so.5: failed to map segment from shared object: Cannot allocate 
memory in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/pgsql.so' - libpq
.so.5: failed to map segment from shared object: Cannot allocate memory 
in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library 
'/usr/lib/php5/20060613/recode.so' - libr
ecode.so.0: failed to map segment from shared object: Cannot allocate 
memory in Unknown on line 0
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] PHP Warning:  PHP 
Startup: Unable to load dynamic library '/usr/lib/php5/20060613/xsl.so' 
- libexsl
t.so.0: failed to map segment from shared object: Cannot allocate memory 
in Unknown on line 0

[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] Out of memory
[Wed Apr 15 16:13:56 2009] [error] [client x.x.x.x] Premature end of 
script headers: i.php





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



Bug#494424: poedit: Gtk-WARNING about GtkPizza

2008-08-09 Thread Ognyan Kulev

Package: poedit
Version: 1.4.1-2
Severity: minor

*** Please type your report below this line ***

When poedit is started in shell, the following warning is showing up
many times:

(poedit:7336): Gtk-WARNING **:
/build/buildd/gtk+2.0-2.12.10/gtk/gtkwidget.c:8547: widget class
`GtkPizza' has no property named `row-ending-details'

Although it doesn't seem to affect functionality, it'd be good to fix
this.

Regards,
Ognyan Kulev

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

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

Versions of packages poedit depends on:
ii  gettext  0.17-3 GNU Internationalization utilities
ii  libatk1.0-0  1.22.0-1   The ATK accessibility toolkit
ii  libc62.7-13 GNU C Library: Shared libraries
ii  libcairo21.6.4-6The Cairo 2D vector graphics libra
ii  libdb4.6 4.6.21-8   Berkeley v4.6 Database Libraries [
ii  libgcc1  1:4.3.1-2  GCC support library
ii  libglib2.0-0 2.16.4-2   The GLib library of C routines
ii  libgtk2.0-0  2.12.10-2  The GTK+ graphical user interface
ii  libgtkspell0 2.0.13-1   a spell-checking addon for GTK's T
ii  libpango1.0-01.20.5-1   Layout and rendering of internatio
ii  libstdc++6   4.3.1-2The GNU Standard C++ Library v3
ii  libwxbase2.8-0   2.8.7.1-1  wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-02.8.7.1-1  wxWidgets Cross-platform C++ GUI t

poedit recommends no packages.

poedit suggests no packages.

-- no debconf information




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



Bug#491091: libxml-commons-resolver1.1-java: Tries to resolve from Internet when DOCTYPE of w3c-dtd-xhtml is used

2008-07-16 Thread Ognyan Kulev

Package: libxml-commons-resolver1.1-java
Version: 1.1-7

I use commons-resolver for parsing XHTML Basic files. prefer=public is 
used in /etc/xml/resolver/CatalogManager.properties but when XHTML Basic 
file is parsed commons-resolver tries to retrieve DTDs from Internet. I 
found that when the following lines are removed from all catalog.xml 
files in w3c-dtd-xhtml, everything works as expected, without resolving 
using Internet:


!DOCTYPE catalog PUBLIC -//GlobalTransCorp//DTD XML Catalogs 
V1.0-Based Extension V1.0//EN

http://globaltranscorp.org/oasis/catalog/xml/tr9401.dtd;

I don't know if it's commons-resolver's fault or w3c-dtd-xhtml's fault 
but it'd be good to be resolved.


I believe the problem is still present in unstable although I didn't test.

Regards,
Ognyan Kulev




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



Bug#453777: libxml-commons-resolver1.1-java: Version 1.2 is available

2007-11-30 Thread Ognyan Kulev
Package: libxml-commons-resolver1.1-java
Version: 1.1-8
Severity: wishlist

Version 1.2 is available in http://xml.apache.org/mirrors.cgi with
release notes in
http://xml.apache.org/commons/components/resolver/resolver-release-notes.html
. It would be nice if it's packaged.

Regards,
Ognyan Kulev




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



Bug#442022: Internal network can't access internal server accessed via external ip

2007-09-12 Thread Ognyan Kulev

Package: arno-iptables-firewall
Version: 1.8.8.c-1

When the package is used as gateway for internal network and some 
servers should be visible from outside, there is a problem with 
accessing these servers from inside (when external ip is used). Let's 
suppose port 80 is forwarded to internal server 192.168.0.2, internal 
gateway is 192.168.0.1, and external ip of the gateway is 1.2.3.4. 
DC_OPEN_TCP has 80, and NAT_TCP_FORWARD is used to forward port 80 to 
192.168.0.2. (BTW it's good if the relationship between these variables 
is written.) Hosts in internal network can't access this server via 
external ip 1.2.3.4. The situation is described in 
http://www.netfilter.org/documentation/HOWTO/NAT-HOWTO-10.html .


What I use to solve this problem is the following plugin:

iptables -t nat -A PREROUTING -d 1.2.3.4 -p tcp --dport 80 -j DNAT --to 
192.168.0.2
iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -d 192.168.0.2 -p tcp 
--dport 80 -j SNAT --to 1.2.3.4


I think such hand-written iptables should not be needed.

Regards,
Ognyan Kulev




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



Bug#388020: quodlibet-ext: tray icon plugin is shown only when quodlibet-plugins is installed too

2006-09-18 Thread Ognyan Kulev
Package: quodlibet-ext
Version: 0.23.1-1
Severity: normal


I have quodlibet and quodlibet-ext installed but when I go to plugins
list nothing is shown. When quodlibet-plugins is installed, the two
plugins in quodlibet-ext are shown. When quodlibet-plugins is removed,
plugins list is empty.

Regards,
ogi

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

Versions of packages quodlibet-ext depends on:
ii  libatk1.0-0  1.12.2-1The ATK accessibility toolkit
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libcairo21.2.4-1 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libgtk2.0-0  2.8.20-1The GTK+ graphical user interface 
ii  libpango1.0-01.12.3-1+b1 Layout and rendering of internatio
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.1-3   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.1-3   X Rendering Extension client libra
ii  python   2.4.3-11An interactive high-level object-o
ii  quodlibet0.23.1-1audio library manager and player f

quodlibet-ext recommends no packages.

-- no debconf information


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



Bug#387907: rosegarden: missing dependancy on qjackctl

2006-09-18 Thread Ognyan Kulev
Mike O'Connor написа:
 qjackctl is not required for rosegarden.  I have never had that package
 installed, and rosegarden works fine for me.  Can you provide the output
 of rosegarden when you start it when qjackctl is not installed?

Error - Rosegarden

Attempted to launch JACK audio daemon failed. Audio will be disabled.
Please check configuration (Settings-Configure
Rosegarden-Sequencer-JACK control)
and restart.

I have the following line in Settings - Configure Rosegarden -
Sequencer - Startup - JACK command:

/usr/bin/qjackctl -s

The checkbox Start JACK is checked.

Regards,
ogi



Bug#387907: rosegarden: missing dependancy on qjackctl

2006-09-17 Thread Ognyan Kulev
Package: rosegarden
Version: 1:1.2.4-1
Severity: normal

I'm using GNOME and when started, rosegarden complained that there is
no jackd. I have jackd packages and it turned that qjackctl should
also be installed. It's good if this is reflected in dependancies
in some way.

Regards,
ogi

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (400, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-2-686
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages rosegarden depends on:
ii  kdelibs4c2a   4:3.5.4-3  core libraries and binaries
for al
ii  khelpcenter   4:3.5.4-2  help center for KDE
ii  libasound21.0.11-7   ALSA library
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libfontconfig12.3.2-7generic font configuration
library
ii  libgcc1   1:4.1.1-5  GCC support library
ii  libjack0.100.0-0  0.101.1-1  JACK Audio Connection Kit
(librari
ii  liblircclient00.8.0-5LIRC client library
ii  liblo00.23-2.1   Lightweight OSC library
ii  liblrdf0  0.4.0-1a library to manipulate RDF
files
ii  libqt3-mt 3:3.3.6-2  Qt GUI Library (Threaded
runtime v
ii  libstdc++64.1.1-5The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.0-8  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing
librar
ii  rosegarden-data   1:1.2.4-1  music editor and MIDI/audio
sequen

Versions of packages rosegarden recommends:
ii  jackd 0.101.1-1  JACK Audio Connection Kit
(server
ii  swh-plugins [ladspa-plugin]   0.4.14-1.1 Steve Harris's LADSPA plugins

-- no debconf information


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



Bug#371059: Saving volume settings must not depend on locale

2006-06-07 Thread Ognyan Kulev

Package: quodlibet
Version: 0.20.1-1

My locale is bg_BG and floating numbers are written like that: 0,5. 
The problem is that Quodlibet writes memory/volume setting in 
~/.quodlibet/config in locale format but expects it in en_US format 
(0.5).  The following error occurs in this case:


Traceback (most recent call last):
  File /usr/bin/quodlibet, line 325, in ?
main()
  File /usr/bin/quodlibet, line 33, in main
window = widgets.init()
  File /usr/share/quodlibet/widgets.py, line 93, in init
main = QuodLibetWindow(watcher, player.playlist)
  File /usr/share/quodlibet/qltk/quodlibet.py, line 145, in __init__
t = PlayControls(watcher, player)
  File /usr/share/quodlibet/qltk/controls.py, line 211, in __init__
self.volume = Volume(player)
  File /usr/share/quodlibet/qltk/controls.py, line 143, in __init__
self.set_value(config.getfloat(memory, volume))
  File /usr/lib/python2.3/ConfigParser.py, line 318, in getfloat
return self._get(section, float, option)
  File /usr/lib/python2.3/ConfigParser.py, line 312, in _get
return conv(self.get(section, option))

Regards,
ogi



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



Bug#365873: wpasupplicant: fixes in README.Debian

2006-05-03 Thread Ognyan Kulev

Package: wpasupplicant
Version: 0.4.8-3
Severity: wishlist
Tags: patch

(On behalf of Alexander Velin.)

In /usr/share/doc/wpasupplicant/README.Debian.gz :

iface eth1 inet dhcp
wpa-conf managed
wpa-ap-scan 1
wpa-scan-ssid 1
# .. additional options for your setup, see README.modes

The line:

   wpa-scan-ssid 1

should be:

wpa-scan_ssid 1

Regards,
ogi




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



Bug#365074: support for kFreeBSD

2006-04-30 Thread Ognyan Kulev

Robert Millan wrote:

-   match=$(find $moddir/kernel $moddir \
+   match=$(find `ls -d $moddir/kernel 2/dev/null` 
$moddir \
-name $module.o -or -name $module.ko \
| head -n 1 | sed s!$moddir/!!)


I don't know what's d-i code style policy, but I would prefer $(...) 
instead of `backquotes`.


Regards,
ogi


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



Bug#361418: [Proposal] new Debian menu structure

2006-04-14 Thread Ognyan Kulev
Hamish Moffatt wrote:
 HAM is not an acronym, so Ham Radio would be more appropriate.
 
 Even better (IMHO) is the full term Amateur Radio, but some may
 disagree. I've CC'd debian-hams for their input also.

Is there a problem with using Amateur (Ham) Radio?

Regards,
ogi


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



Bug#362640: gajim: Cannot start because of sqlite2 error

2006-04-14 Thread Ognyan Kulev
Package: gajim
Version: 0.9.1-3
Severity: important

I've just dist-upgrade from stable+backports+upstream gajim repository
to testing, and the following error occurs always at startup, even after
rm -fr ~/.gajim:

Traceback (most recent call last):
  File gajim.py, line 65, in ?
from common import check_paths
  File /usr/share/gajim/src/common/check_paths.py, line 29, in ?
from common import gajim
  File /usr/share/gajim/src/common/gajim.py, line 47, in ?
logger = logger.Logger() # init the logger
  File /usr/share/gajim/src/common/logger.py, line 91, in __init__
self.init_vars()
  File /usr/share/gajim/src/common/logger.py, line 100, in init_vars
self.get_jids_already_in_db()
  File /usr/share/gajim/src/common/logger.py, line 103, in
get_jids_already_in_db
self.cur.execute('SELECT jid FROM jids')
  pysqlite2.dbapi2.Warning: You can only execute one statement at a time.

Regards,
ogi

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (400, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages gajim depends on:
ii  libaspell15   0.60.4-3   GNU Aspell spell-checker
runtime l
ii  libatk1.0-0   1.11.3-1   The ATK accessibility toolkit
ii  libc6 2.3.6-3GNU C Library: Shared
libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector
graphics libra
ii  libfontconfig12.3.2-1.1  generic font configuration
library
ii  libglib2.0-0  2.10.1-2   The GLib library of C routines
ii  libgtk2.0-0   2.8.16-1   The GTK+ graphical user
interface
ii  libgtkspell0  2.0.10-3   a spell-checking addon for
GTK's T
ii  libpango1.0-0 1.12.0-2   Layout and rendering of
internatio
ii  libx11-6  6.9.0.dfsg.1-6 X Window System protocol
client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-6 X Window System
miscellaneous exte
ii  libxi66.9.0.dfsg.1-6 X Window System Input
extension li
ii  libxinerama1  6.9.0.dfsg.1-6 X Window System multi-head
display
ii  libxrandr26.9.0.dfsg.1-6 X Window System Resize,
Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension
client libra
ii  libxss1   6.9.0.dfsg.1-6 X Screen Saver client-side
library
ii  python2.3.5-5An interactive high-level
object-o
ii  python-glade2 2.8.2-3GTK+ bindings: Glade support
ii  python-gtk2   2.8.2-3Python bindings for the
GTK+ widge
ii  python-pysqlite2  2.0.5-1python interface to SQLite 3

Versions of packages gajim recommends:
ii  notification-daemon   0.3.4-4a daemon that displays
passive pop
ii  python-dns2.3.0-5pydns - DNS client module
for Pyth
ii  python2.4-dbus0.61-5 simple interprocess
messaging syst

-- no debconf information


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



Bug#188608: Packages

2006-03-27 Thread Ognyan Kulev
Hi,

I've reopened this ITP bug and set myself as owner. My packaging can be
found in http://debian.fmi.uni-sofia.bg/~ogi/tmp/ .  I had to make it
from scratch because the source package by Rob Weir in
http://egads.ertius.org/~rob/debian/ is not available anymore.  The
upstream source is taken from http://jzb.rapanden.dk/pub/  I've
successfully used my package.

Regards,
ogi


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



Bug#255569: [Pkg-fonts-devel] Bug #255569

2006-03-26 Thread Ognyan Kulev

Christian Perrier wrote:

Would someone have an idea why FreeMono isn't listed in Monospaced
fonts when stuff that need only these fonts is used (often terminal
emulators...)?


It's worth checking if all glyphs have exactly the same width, 
considering that this happened to DejaVu before: 
http://dejavu.sourceforge.net/wiki/index.php/Bugs#Mono_is_not_monospaced


Regards,
ogi


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



Bug#358992: More descriptive description

2006-03-25 Thread Ognyan Kulev

Package: ttf-mgopen
Version: 1.1-2
Severity: wishlist

Please include more descriptive description.  Here are some sentences 
from the home page http://www.ellak.gr/fonts/mgopen/ that could be used:


The MgOpen typeface collection is comprised by the following typefaces:

* MgOpenCanonica is a serif typeface, based on the design of Times Roman.
* MgOpenCosmetica is a sans-serif typeface, based on the design of Optima.
* MgOpenModata is another sans-serif typeface.
* MgOpenModerna is a sans-serif typeface, based on the design of Helvetica.

All the fonts contain glyphs for the latin and greek alphabet (using the 
monotoniko system), while the fonts of the Canonica family also contain 
all the glyphs necessary for viewing Greek texts written in the 
polytoniko system.


The fonts, in their initial release, have some characters missing, with 
most important the lack of the Euro symbol.


Regards,
ogi


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



Bug#351046: [INTL:bg] Updated Bulgarian debconf translation (debconf/debian/po/bg.po)

2006-02-02 Thread Ognyan Kulev
Package: debconf
Version: 1.4.71
Severity: wishlist
Tags: l10n patch

Updated Bulgarian debconf translation is attached.  Please commit.

Regards,
ogi


bg.po.gz
Description: GNU Zip compressed data


Bug#305239: Solution

2005-12-18 Thread Ognyan Kulev

Hi,

I confirm that 
http://www.sng.ecs.soton.ac.uk/mailscanner/serve/cache/339.html is 
correct.  I've changed the default settings of razor, so that its log 
file is written in /var/log instead of current directory (which happens 
in postfix hold directory) and everything is OK now.


I'm not sure what's the correct solution.  Mentioning the problem in 
README.Debian?  Reassigning to razor package (but this will lead to 
problems when used by ordinary users)?


Regards,
ogi


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



Bug#305239: Faq-O-Matic entry in upstream

2005-12-16 Thread Ognyan Kulev
This problem has Faq-O-Matic entry in upstream site: 
http://www.sng.ecs.soton.ac.uk/mailscanner/serve/cache/339.html


It seems that razor log in hold queue is the reason for stopping, but I 
need to test more.


Regards,
ogi


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



Bug#330957: [INTL:bg] Bulgarian debconf templates translation

2005-09-30 Thread Ognyan Kulev

Package: hylafax
Version: N/A
Severity: wishlist
Tags: l10n patch

Updated Bulgarian translation for the not yet uploaded hylafax package 
is attached.


Regards,
ogi
# 
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# 
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# 
#Developers do not need to manually edit POT or PO files.
# 
msgid 
msgstr 
Project-Id-Version: hylafax 4.2.1-1\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2005-08-04 00:06+0200\n
PO-Revision-Date: 2005-09-30 19:15+0300\n
Last-Translator: Ognyan Kulev [EMAIL PROTECTED]\n
Language-Team: Bulgarian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CP1251\n
Content-Transfer-Encoding: 8bit\n

#. Type: note
#. Description
#: ../hylafax-server.templates:3
msgid Don't forget to setup a modem line
msgstr Íå çàáðàâÿéòå äà íàñòðîèòå ìîäåìíà ëèíèÿ

#. Type: note
#. Description
#: ../hylafax-server.templates:3
msgid 
Hylafax is now installed as a server but you still have to configure at 
least a modem in order to send or receive faxes. Please use faxaddmodem in 
order to define a modem and then restart hylafax so that it will use the new 
configuration.
msgstr 
Hylafax ñåãà å èíñòàëèðàíà êàòî ñúðâúð, íî Âèå âñå ïàê ùå òðÿáâà äà 
íàñòðîèòå ïîíå ìîäåì, çà äà èçïðàùàòå è ïîëó÷àâàòå ôàêñîâå. Ìîëÿ, 
èçïîëçâàéòå faxaddmodem, çà äà äîáàâèòå ìîäåì, è ðåñòàðòèðàéòå hylafax, çà 
äà ñå èçïîëçâà íîâàòà íàñòðîéêà.

#. Type: boolean
#. Description
#: ../hylafax-server.templates:12
msgid Start the HylaFAX daemon now?
msgstr Ñòàðòèðàíå íà HylaFAX äåìîíà îùå ñåãà?

#. Type: boolean
#. Description
#: ../hylafax-server.templates:12
msgid 
Hylafax is already configured and may be started now. If you specify to 
start it later manually, remember to change the value of RUN_HYLAFAX in /etc/
default/hylafax.
msgstr 
Hylafax âå÷å å íàñòðîåíà è ìîæå äà áúäå ñòàðòèðàíà. Àêî ïî-êúñíî ÿ íàñòðîèòå 
äà ñå ñòàðòèðà ðú÷íî, íå çàáðàâÿéòå äà ïðîìåíèòå ñòîéíîñòòà íà RUN_HYLAFAX 
â /etc/default/hylafax.

#. Type: note
#. Description
#: ../hylafax-server.templates:19
msgid Check base64 encoders
msgstr Ïðîâåðêà çà êîäåðè íà base64?

#. Type: note
#. Description
#: ../hylafax-server.templates:19
msgid 
Hylafax is able to send received faxes via email. These emails need to 
include base64 encoded attachments. Since this is not essential to hylafax 
to work, you need to do manually some further steps: you should install a 
package that provide encoders (like mime-codecs or sharutils) and run 
'faxsetup -server' that will automatically check for those encoders and 
change its configuration.
msgstr 
Hylafax å ñïîñîáíà äà èçïðàùà ôàêñîâå, ïîëó÷åíè ÷ðåç åë.ïîùà.  Òåçè åë.ïèñìà 
òðÿáâà äà âêëþ÷âàò êîäèðàíè ñ base64 ïðèêà÷åíè ôàéëîâå. Òúé êàòî òàçè 
ñïîñîáíîñò íå å íåîáõîäèìà çà ðàáîòàòà íà hylafax, íóæíî å ðú÷íî äà 
èçâúðøèòå íÿêîëêî äåéñòâèÿ: òðÿáâà äà èíñòàëèðàòå ïàêåò, êîéòî äîñòàâÿ 
êîäåðè (êàòî mime-codecs èëè sharutils), è äà ñòàðòèðàòå \faxsetup -server
\, êîåòî àâòîìàòè÷íî ùå ðàçïîçíàå òåçè êîäåðè è ùå ïðîìåíè íàñòðîéêèòå íà 
hylafax.


Bug#195360: 2-year-old unreproducible bug, can this be closed?

2005-08-12 Thread Ognyan Kulev

Daniel Jacobowitz wrote:

That's not relevant.  Has anyone reproduced this bug since then?  If
not, Nathanael's right; it should be closed.  The code has changed many
times since then.


I've experienced it multiple times since then.  Others do too:

http://lists.gnu.org/archive/html/bug-hurd/2005-04/msg00060.html
http://lists.gnu.org/archive/html/bug-hurd/2005-04/msg00074.html (follow-up)

This particular file (thread-cancel.c) hasn't changed much, like much 
other Hurd code in glibc.  The last change was in 2001 for Update to 
LGPL v2.1.: 
http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/hurd/thread-cancel.c?cvsroot=glibc


Regards,
ogi


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



Bug#195360: 2-year-old unreproducible bug, can this be closed?

2005-08-11 Thread Ognyan Kulev

Nathanael Nerode wrote:
It doesn't seem to serve a useful purpose to leave it hanging around.  
Unless it's reproducible in which case it should lose the tag.


No, the Hurd project doesn't have resources to resolve tough and rare 
problems but at least we try to keep list of known problems.  Look at 
http://bugs.debian.org/hurd


Regards,
ogi


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



Bug#284708: acknowledged by developer (Bug#284708: fixed in newt 0.51.6-27)

2005-07-10 Thread Ognyan Kulev

Alastair McKinstry wrote:

ok,

In the example script that you included in the bug, place
-- as an argument just after -menubox. Then further arguments that
start with - such as -The Great Unix Clone are not interpreted by
getopt as options, but passed directly and interpreted as desired.


[...]

I think that you are talking about other bug.  284708's title is 
Automatic decompression of *.gz files and it's filed against 
syslog-summary package.


Regards,
ogi



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



Bug#317327: shadow: [INTL:bg] Updated Bulgarian translation

2005-07-07 Thread Ognyan Kulev

Package: shadow
Version: 1:4.0.3-37
Severity: wishlist
Tags: patch l10n

Updated Bulgarian translation is attached.

Regards,
ogi


bg.po.gz
Description: GNU Zip compressed data


Bug#317328: popularity-contest: [INTL:bg] Updated Bulgarian (bg) translation

2005-07-07 Thread Ognyan Kulev

Package: popularity-contest
Version: 1.29
Severity: wishlist
Tags: patch l10n

Updated Bulgarian (bg) translation is attached.

Regards,
ogi


bg.po.gz
Description: GNU Zip compressed data


Bug#314202: phpdoc: Package name better be php-doc

2005-06-15 Thread Ognyan Kulev
Package: phpdoc
Version: 20050512-1
Severity: wishlist


Package naming practice in Debian suggests that documentation packages
are named package-doc.  So I think that this package better be named
php-doc.

Regards,
ogi

-- System Information:
Debian Release: testing/unstable
  APT prefers experimental
  APT policy: (600, 'experimental'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10-1-686-smp
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

-- no debconf information



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



Bug#314202: phpdoc: Package name better be php-doc

2005-06-15 Thread Ognyan Kulev
Lior Kaplan wrote:
Package naming practice in Debian suggests that documentation packages
are named package-doc.  So I think that this package better be named
php-doc.
 
 Any references to that practice?

Well, I didn't find written rule, but the result of running the following
command in Sid system is attached:

apt-cache search doc | grep '^[a-z0-9.+-]*[^-]doc '

As you see, almost all package names are not doc package of something but,
e.g., generators.

Regards,
ogi
asciidoc - Highly configurable text format for writing documentation
axkit-language-htmldoc - AxKit module for converting XHTML into PDF using 
HTMLDOC
catdoc - MS-Word to TeX or plain text converter
dict-foldoc - FOLDOC Dictionary Database
elkdoc - documentation for the Extension Language Kit
fbbdoc - Documentation for fbb, the packet radio mailbox
gjdoc - documentation generation framework for java source files
gsl-ref-psdoc - GNU Scientific Library (GSL) Reference Manual in postscript
htmldoc - HTML processor that generates indexed HTML, PS, and PDF
kdoc - C++ and IDL Source Documentation System
lam-mpidoc - Documentation for the Message Passing Interface standard
monodoc - Mono documentation viewer
newbiedoc - Documentation by and for newbies
ntfsdoc - documentation about NTFS partitions format
octave2.0-htmldoc - HTML documentation on the GNU Octave language (2.0 branch)
octave2.1-htmldoc - HTML documentation on the GNU Octave language (2.1 branch)
orgadoc - Organizes documents from XML descriptions
po-debiandoc - Tools for helping translation of DebianDoc-SGML documents
postgresql-autodoc - utility to create system tables overview in HTML, DOT and 
XML
python-epydoc - tool for generating Python API documentation
python-gendoc - Documentation generation from Python source files.
python-happydoc - Python Documentation Extraction Tool
python2.1-epydoc - tool for generating Python API documentation
python2.2-epydoc - tool for generating Python API documentation
python2.3-epydoc - tool for generating Python API documentation
rdoc - Generate documentation from ruby source files
robodoc - A source code documentation tool
txt2pdbdoc - convert plain text files to Palm DOC (for PalmOS) and back
phpdoc - Documentation for PHP4 and PHP3
octave2.9-htmldoc - HTML documentation on the GNU Octave language (2.9 branch)


Bug#314295: debhelper: dh_installmenu(1) doesn't mention that debian/menu is considered

2005-06-15 Thread Ognyan Kulev
Package: debhelper
Version: 4.2.36
Severity: minor


In dh_installmenu(1), only debian/package.menu file is mentioned but
debian/menu also works.  I guess that there are other manual pages with same 
defect.

Regards,
ogi

-- System Information:
Debian Release: testing/unstable
  APT prefers experimental
  APT policy: (600, 'experimental'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.10-1-686-smp
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages debhelper depends on:
ii  binutils  2.16-0 The GNU assembler, linker and bina
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  debconf-utils 1.4.51 debconf utilities
ii  dpkg-dev  1.13.8 Package building tools for Debian
ii  file  4.12-1 Determines file type using magic
ii  fileutils 5.2.1-2The GNU file management utilities 
ii  html2text 1.3.2a-2   An advanced HTML to text converter
ii  perl  5.8.7-3Larry Wall's Practical Extraction 
ii  po-debconf0.8.23 manage translated Debconf template

-- no debconf information



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



Bug#311117: Fwd: Bug#311117: mozilla-firefox-locale-all: Wrong order of language preferences

2005-05-28 Thread Ognyan Kulev
Cesar Martinez Izquierdo wrote:
 bg-BG.prop:intl.accept_languages=bg-bg, bg

(It's unofficial Bulgarian l10n of Firefox 1.0.)  It's a bug in the l10n
and should be bg-bg, bg, en-us, en.  Would you change it, please?

Regards,
ogi


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



Bug#310945: warnquota: User name is not in warning mail

2005-05-26 Thread Ognyan Kulev
Package: quota
Version: 3.12-6
Severity: wishlist

Mail that warns about using more disk space doesn't contain user name.
This is inconvenient for sysadm that receives these by Cc: and he/she is
compelled to look at To: mail header.  It's even
better if host name is included too, like [EMAIL PROTECTED]  Another
useful feature is user and/or host names to be able to be used in
template messages that are asked by Debconf.

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (400, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-686
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages quota depends on:
ii  debconf 1.4.30.13Debian configuration
management sy
ii  e2fslibs1.37-2   ext2 filesystem libraries
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared
libraries an
ii  libcomerr2  1.37-2   common error description
library
ii  libwrap07.6.dbs-8Wietse Venema's TCP
wrappers libra

-- debconf information excluded


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



Bug#310725: hurd: ext2fs pager assertion failure

2005-05-25 Thread Ognyan Kulev
Colin Watson wrote:

   ext2fs.static: 
 /build/mbanck/hurd-20050513/build-tree/hurd/ext2fs/pager.c:782: 
 pager_report_extent: Assertion `pager-type == DISK || pager-type == 
 FILE_DATA' failed.

There is another report about this too[1].  It's good that it's in list of bugs 
now.

[1] http://lists.gnu.org/archive/html/bug-hurd/2003-02/msg3.html

Regards,
ogi



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



Bug#310027: quota: ability user to display own quota

2005-05-21 Thread Ognyan Kulev
Package: quota
Version: 3.12-6
Severity: wishlist

Recommended practice is aquota.{user,group} to have access mode of 0600.
This means that ordinary user can't display own quota with quota(1).  A
solution is to make quota(1) SUID and don't allow user or group argument
when quota(1) is called by ordinary user.

Am I missing something in my logic?

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.31-pre2
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages quota depends on:
ii  debconf 1.4.30.13Debian configuration management sy
ii  e2fslibs1.37-2   ext2 filesystem libraries
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libcomerr2  1.37-2   common error description library
ii  libwrap07.6.dbs-8Wietse Venema's TCP wrappers libra

-- debconf information excluded



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



Bug#306578: Bug should be closed

2005-05-20 Thread Ognyan Kulev
Hi,

Thank you for including Bulgarian translation of Firefox in
mozilla-firefox-locale-all :-)  Please close this bug.

Regards,
ogi


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



Bug#305783: fai: Including resolvconf (recommended by postfix) breaks FAI

2005-05-18 Thread Ognyan Kulev
Michael Tautschnig wrote:
 Could you please tell us a bit more about the errors in FAI? I don't think
 that we need to exclude resolvconf, but maybe the script in
 examples/simple/scripts/FAIBASE/30-interfaces demands some changes.

It's a bit hard for me right now to list what exactly happens, but basically,
the problems start from the following line in 30-interfaces:

fcopy -i /etc/resolv.conf

$target/etc/resolv.conf is symbolic link made by resolvconf and fcopy fails.
Since resolv.conf is not correctly filled by resolvconf, *all* subsequent DNS
resolvings fail, e.g. accessing Debian archive mirror.

Regards,
ogi



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



Bug#308130: xdebconfigurator: [INTL:bg] Bulgarian translation of debconf templates

2005-05-07 Thread Ognyan Kulev
Package: xdebconfigurator
Severity: wishlist
Tags: patch l10n


Bulgarian translation of debconf templates is attached.

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.30
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: xdebconfigurator\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2004-10-23 11:32+0200\n
PO-Revision-Date: 2005-05-08 07:39+0300\n
Last-Translator: Ognyan Kulev [EMAIL PROTECTED]\n
Language-Team: Bulgarian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: text
#. Description
#: ../templates:13
msgid Generate XFree86 configuration automatically
msgstr 
 XFree86


Bug#308129: localization-config: [INTL:bg] Bulgarian translation of debconf templates

2005-05-07 Thread Ognyan Kulev
Package: localization-config
Severity: wishlist
Tags: patch l10n


Well, it's probably late for Sarge, but anyway, here is Bulgarian
translation of Debconf templates.

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.30
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
# Ognyan Kulev [EMAIL PROTECTED], 2005.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: localization-config\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2004-09-05 12:52+0300\n
PO-Revision-Date: 2005-03-06 21:26+0200\n
Last-Translator: Ognyan Kulev\n
Language-Team: Bulgarian [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: text
#. Description
#: ../templates:3
msgid Preconfigure language-related parameters
msgstr 
  

#. Type: text
#. Description
#: ../templates:7
msgid Postconfigure language-related parameters
msgstr  



Bug#306578: mozilla-firefox-locale-all: Bulgarian translation of Mozilla Firefox 1.0

2005-05-03 Thread Ognyan Kulev
Ognyan Kulev wrote:
  It's reviewed by Bulgarian translators list [EMAIL PROTECTED] but I'll 
 have to
 check if results of discussion are reflected in the jar.

The outcomes in the mentioned discussion are reflected in the jar :-)

Regards,
ogi


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



Bug#306578: mozilla-firefox-locale-all: Bulgarian translation of Mozilla Firefox 1.0

2005-04-28 Thread Ognyan Kulev
Cesar Martinez Izquierdo wrote:
 Has it been tested enough? Is it working without problems?
 If it works fine, I will include it after the last mozilla-firefox-locale-all 
 enters testing (7 days remaining).

I tested it and I haven't found problems.  The translation itself is very good.
 It's reviewed by Bulgarian translators list [EMAIL PROTECTED] but I'll have 
to
check if results of discussion are reflected in the jar.

Regards,
ogi



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



Bug#306578: mozilla-firefox-locale-all: Bulgarian translation of Mozilla Firefox 1.0

2005-04-27 Thread Ognyan Kulev
Package: mozilla-firefox-locale-all
Severity: wishlist


Hi,

In https://bugzilla.mozilla.org/show_bug.cgi?id=271341 , there is
Bulgarian l10n of Mozilla Firefox 1.0.  Is there a problem to include it
in Debian?  It's not official l10n but it's sufficiently good.

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers experimental
  APT policy: (600, 'experimental'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-686-smp
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)



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



Bug#306119: ITP: gwaterfall -- View all characters of font in all sizes

2005-04-24 Thread Ognyan Kulev
Package: wnpp
Severity: wishlist
Owner: Ognyan Kulev [EMAIL PROTECTED]


* Package name: gwaterfall
  Version : 0.1
  Upstream Author : Noah Levitt [EMAIL PROTECTED]
* URL : http://keithp.com/cvs/gwaterfall/
* License : MIT-like
  Description : View all characters of font in all sizes

 With gwaterfall, you can browse characters of font in different
 rendering configurations.  There is line for each font size from 5px
 to 36px -- thus the name waterfall.  The following parameters can
 be changed and view is updated immediately on screen: font size range
 and increment, hinting, autohinting, anti-aliasing, subpixel
 smoothing, and aspect.

Upstream has named binary as waterfall, but CVS module is gwaterfall
because there is older waterfall module.  I named package as gwaterfall
to avoid confusion with original program written by Keith Packard.

I have written manual page for Debian.

Both package description and manual page need review by native speaker.

License is:

 * Copyright (c) 2003 Noah Levitt
 * 
 * This program is free software; the author gives unlimited permission
 * to copy and/or distribute it, with or without modifications, as long as
 * this notice is preserved.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY, to the extent permitted by law; without even
 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE.

Package can be found in http://debian.fmi.uni-sofia.bg/~ogi/tmp/

-- System Information:
Debian Release: 3.1
  APT prefers experimental
  APT policy: (600, 'experimental'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-686-smp
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)



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



Bug#305783: fai: Including resolvconf (recommended by postfix) breaks FAI

2005-04-22 Thread Ognyan Kulev
Package: fai
Version: 2.8
Severity: normal


Instead of exim4, I decided to use postfix, so in
packages_config/FAIBASE I replaced exim4 with postfix.  This led to
errors in FAI and I found that the reason is that resolvconf is
installed.  It's recommended by postfix and I don't know why FAI
installs it, although it aptitude, not aptitude -r in
packages_config/FAIBASE.

The problem is that resolvconf replaces /etc/resolv.conf with symbolic
link and this breaks create_resolv_conf.

I recommend packages_config/FAIBASE in sample configurations to 
include resolvconf- along with comment that this package leads to
problems.

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages fai depends on:
ii  debconf   1.4.30.13  Debian configuration management sy
ii  libapt-pkg-perl   0.1.13 Perl interface to libapt-pkg
ii  perl  5.8.4-8Larry Wall's Practical Extraction 

-- debconf information excluded



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



Bug#305544: fai: PACKAGES aptitude-r doesn't work

2005-04-20 Thread Ognyan Kulev
Package: fai
Version: 2.8
Severity: normal
Tags: patch


PACKAGES aptitude-r in package_config/* doesn't work.  Patch is
attached.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages fai depends on:
ii  debconf   1.4.30.13  Debian configuration management sy
ii  libapt-pkg-perl   0.1.13 Perl interface to libapt-pkg
ii  perl  5.8.4-8Larry Wall's Practical Extraction 

-- debconf information excluded
--- install_packages~   2005-04-10 00:46:03.0 +0300
+++ install_packages2005-04-20 19:26:53.0 +0300
@@ -64,7 +64,7 @@
 
 my $aptopt='-y -o Dpkg::Options::=--force-confdef -o 
Dpkg::Options::=--force-confold';
 
[EMAIL PROTECTED] = qw/hold taskrm taskinst clean aptitude install remove 
dselect-upgrade/;
[EMAIL PROTECTED] = qw/hold taskrm taskinst clean aptitude aptitude-r install 
remove dselect-upgrade/;
 %command = (
install = apt-get $aptopt --force-yes --fix-missing install,
   ninstall = apt-get $aptopt --force-yes --fix-missing -s install,


Bug#305362: fai: cfengine2 instead of cfengine

2005-04-19 Thread Ognyan Kulev
Package: fai
Version: 2.8
Severity: wishlist


FAI uses cfengine as important part of automatic installation.  Since
cfengine 1 is no longer supported upstream, I think it's better if
cfengine2 is used.

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages fai depends on:
ii  debconf   1.4.30.13  Debian configuration management sy
ii  libapt-pkg-perl   0.1.13 Perl interface to libapt-pkg
ii  perl  5.8.4-8Larry Wall's Practical Extraction 

-- debconf information excluded



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



Bug#305363: fai: Fixed IP floppy is not well documented

2005-04-19 Thread Ognyan Kulev
Package: fai
Version: 2.8
Severity: wishlist


There are things that better be mentioned in FAI documentation about
creating floppies for fixed IP clients.  What I found out is that
DNSSRVS should be passed as kernel parameter.  Another kernel parameter
of interest is DOMAIN.  Perhaps there are other things, but this is what
I found till now.

make-fai-bootfloppy(8) recommends using -s when -d f (fixed IP) is used.
But it works for me without -s, just by filling all in ip=... parameter.

Regards,
ogi

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=bg_BG, LC_CTYPE=bg_BG (charmap=CP1251)

Versions of packages fai depends on:
ii  debconf   1.4.30.13  Debian configuration management sy
ii  libapt-pkg-perl   0.1.13 Perl interface to libapt-pkg
ii  perl  5.8.4-8Larry Wall's Practical Extraction 

-- debconf information excluded



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



  1   2   >