[Bug 1671472] Re: Upgrade warns of leaked file descriptors on vgs, lvs invocation

2021-02-25 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1313784 ***
https://bugs.launchpad.net/bugs/1313784

** This bug has been marked a duplicate of bug 1313784
   File descriptors leaked on lvs invocation

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1671472

Title:
  Upgrade warns of leaked file descriptors on vgs, lvs invocation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1671472/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1871186] [NEW] grub-mkconfig prefers /etc/default/grub.d settings

2020-04-06 Thread Andrey Bondarenko
Public bug reported:

Since the fix for bug 901600 was commited, setting in /etc/default/grub
now can be overiden by /etc/default/grub.d. It helps developers to make
customized images, but it can really blows up the brain to the rest
users.

I've lost an hour trying to understand why grub ignores my GRUB_TIMEOUT
settings, until I found hostile file 50-cloudimg-settings.cfg, that
silently overrides my setting. I think such behaviour violates simple
principle — user settings must have the higest precedence.

I understand that changing this behaviour, may break a lot of code. So
please at least add BIG RED BANNER to /etc/default/grub with warning:
before changing something in the file, check all the files in
/etc/default/grub.d for conflicting settings, because they have higher
precedence.

** Affects: grub2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1871186

Title:
  grub-mkconfig prefers /etc/default/grub.d settings

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1871186/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 16632] Re: popcon should offer an option for submission via https

2020-02-12 Thread Andrey Bondarenko
Ubuntu 18.04.3 (Bionic) includes popularity-contents version 1.66ubuntu1
which uses HTTPS URL by default.

grep ^SUBMITURLS= /usr/share/popularity-contest/default.conf
SUBMITURLS="https://popcon.ubuntu.com/popcon-submit.cgi;

But it fails to submit data because of bug #1822672 in parsing HTTPS
URLs

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/16632

Title:
  popcon should offer an option for submission via https

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/popularity-contest/+bug/16632/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1822672] Re: popularity-contest is broken due to a bad merge with debian

2020-02-12 Thread Andrey Bondarenko
Changing SUBMITURLS is not enough to fix this bug.

popcon-upload script contains bad regexp at line 38

my ($host) = $submiturl =~ m%http://([^/]+)%;

This regexp matches only to HTTP, but not HTTPS schema. Upload finishes
successfully if I change regexp to

my ($host) = $submiturl =~ m%https?://([^/]+)%;

The issue also exists in upstream version 1.69

https://salsa.debian.org/popularity-contest-team/popularity-
contest/blob/160a59f1090b4913180d789c4236d6d3ddb44af6/popcon-upload#L38

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1822672

Title:
  popularity-contest is broken due to a bad merge with debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/popularity-contest/+bug/1822672/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 521677] Re: /usr/bin/rename.ul not in rename alternatives list

2019-07-24 Thread Andrey Bondarenko
rename.ul from util-linux package was removed from alternatives
intentionnaly. It was a fix for Debian bug #439935, because other rename
alternatives (e.g. prename) have incompatible usage syntax.

See also https://unix.stackexchange.com/a/444524/290955

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/521677

Title:
  /usr/bin/rename.ul not in rename alternatives list

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/521677/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1819940] [NEW] mysqld: [ERROR] Could not open required defaults file

2019-03-13 Thread Andrey Bondarenko
Public bug reported:

Following errors are reported on first start akonadi with mysql backend
in Ubuntu 18.04.2 with akonadi-backend-mysql version 4:17.12.3-0ubuntu3.
Directory ~/.local/share/akonadi must not exists before start:

mysqld: [ERROR] Could not open required defaults file: 
/etc/xdg/akonadi/mysql-global.conf
mysqld: [ERROR] Fatal error in defaults handling. Program aborted

I don't see any problems after that.

Errors are not reported if I add following lines to
/etc/apparmor.d/local/usr.sbin.mysqld-akonadi

  /etc/xdg/akonadi/mysql-global.conf r,
  /etc/xdg/akonadi/mysql-global-mobile.conf r,

Probably they should be added to /etc/apparmor.d/usr.sbin.mysqld-akonadi

** Affects: akonadi (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1819940

Title:
  mysqld: [ERROR] Could not open required defaults file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/akonadi/+bug/1819940/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1811353] Re: invalid nanosecond may be returned in file times

2019-01-11 Thread Andrey Bondarenko
The patch in comment 1 fixed only fstat, but further tests show that stat can 
also return invalid nsec values. 
New patch fixes both functions stats and fstat.

** Patch added: "lp1811353_1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1811353/+attachment/5228522/+files/lp1811353_1.debdiff

** Patch removed: "lp1811353.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1811353/+attachment/5228444/+files/lp1811353.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1811353

Title:
  invalid nanosecond may be returned in file times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1811353/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1811353] Re: invalid nanosecond may be returned in file times

2019-01-11 Thread Andrey Bondarenko
The patch in comment 1 does not fix problem. Another solution needed.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1811353

Title:
  invalid nanosecond may be returned in file times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1811353/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1811353] Re: invalid nanosecond may be returned in file times

2019-01-11 Thread Andrey Bondarenko
The bug is forwarded upstream, see
https://sourceforge.net/p/smbnetfs/bugs/46/

Attaching minimal workaround patch for the bug. It works for me, but I'm
not an expert so upstream will provide better solution, some day...

** Patch added: "lp1811353.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1811353/+attachment/5228444/+files/lp1811353.debdiff

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1811353

Title:
  invalid nanosecond may be returned in file times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1811353/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1811353] [NEW] invalid nanosecond may be returned in file times

2019-01-11 Thread Andrey Bondarenko
Public bug reported:

Smbnetfs may return invalid values nanosecond values for file times.
Looks like nanosecond  may be any random value even outside valid range
[0,9] or even negative. This lead to problems with tools like
rsync and "touch -r" which fail with 'Invalid argument' if source file
is on smbnetfs backed FUSE filesystem.

** Affects: smbnetfs (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1811353

Title:
  invalid nanosecond may be returned in file times

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1811353/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1264492] Re: smbnetfs warns about unknown libsmbclient version

2019-01-10 Thread Andrey Bondarenko
smbnetfs version 0.6.1-1 in Ubuntu 18.04 and does not complain about
libsmbclient version.

Probably this bug was already fixed in newer Ubuntu versions. Changing
status to Opinion.


** Changed in: smbnetfs (Ubuntu)
   Status: Confirmed => Opinion

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1264492

Title:
  smbnetfs warns about unknown libsmbclient version

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/smbnetfs/+bug/1264492/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1545276] Re: 16.04: Crash on start after selecting CA (created with 14.04)

2018-01-30 Thread Andrey Bondarenko
In my opinion crash happens because of direct call of perl exit() in GTK
signal handlers.

To reproduce bug: start tinyca2 without arguments, press cancel in
create CA dialog, then select exit in main menu.

Here is stack trace from crash:

(gdb) bt
#0  0x76817820 in signal_emit_unlocked_R (instance=0x17dec90, detail=0, 
signal_id=11)
at /build/glib2.0-prJhLS/glib2.0-2.48.2/./gobject/gsignal.c:824
#1  0x76817820 in signal_emit_unlocked_R (node=node@entry=0x7ff7c0, 
detail=detail@entry=0, instance=instance@entry=0x17dec90, 
emission_return=emission_return@entry=0x0, 
instance_and_params=instance_and_params@entry=0x7fffd530) at 
/build/glib2.0-prJhLS/glib2.0-2.48.2/./gobject/gsignal.c:3513
#2  0x76820d5c in g_signal_emit_valist (instance=, 
signal_id=, detail=, 
var_args=var_args@entry=0x7fffd6e0) at 
/build/glib2.0-prJhLS/glib2.0-2.48.2/./gobject/gsignal.c:3385
#3  0x7682108f in g_signal_emit (instance=instance@entry=0x17dec90, 
signal_id=, detail=detail@entry=0)
at /build/glib2.0-prJhLS/glib2.0-2.48.2/./gobject/gsignal.c:3441
#4  0x71f06db0 in gtk_object_dispose (gobject=0x17dec90 
[GtkProgressBar]) at /build/gtk+2.0-jJZIsQ/gtk+2.0-2.24.30/gtk/gtkobject.c:421
#5  0x7680ad25 in g_object_unref (_object=0x17dec90) at 
/build/glib2.0-prJhLS/glib2.0-2.48.2/./gobject/gobject.c:3146
#6  0x76a68e4a in XS_Glib__Object_DESTROY (my_perl=, 
cv=) at GObject.xs:1301
#7  0x004bd41a in Perl_pp_entersub ()
#8  0x0043c2a8 in Perl_call_sv ()
#9  0x004c1dc3 in  ()
#10 0x004c2800 in Perl_sv_clear ()
#11 0x004c2abd in Perl_sv_free2 ()
#12 0x004c0c3b in  ()
#13 0x004c2e74 in Perl_sv_clean_objs ()
#14 0x0043ee8b in perl_destruct ()
#15 0x0041caf3 in main ()

Looks like bug is only reproducible with some specific libraries
version. It can be reproduced in Ubuntu 16.04.3 with following packages
versions:

ii  libglib2.0-0:amd64 2.48.2-0ubuntu1
ii  libgtk2-perl   2:1.2498-1
ii  libgtk2.0-0:amd64  2.24.30-1ubuntu1.16.0
ii  tinyca 0.7.5-6

The same tinyca version does not crash in debian 9.3 with following
packages versions:

ii  libglib2.0-0:amd64 2.50.3-2
ii  libgtk2-perl   2:1.2499-1
ii  libgtk2.0-0:amd64  2.24.31-2
ii  tinyca 0.7.5-6

I've created simple patch for Ubuntu, but not sure if it is necessary in future 
versions.
https://github.com/abone28/tinyca/commit/607e5477c756fb2214ee01f8e8e49e8d7b984b39

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1545276

Title:
  16.04: Crash on start after selecting CA (created with 14.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tinyca/+bug/1545276/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1545276] Re: 16.04: Crash on start after selecting CA (created with 14.04)

2018-01-22 Thread Andrey Bondarenko
** Bug watch added: Debian Bug tracker #843568
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=843568

** Also affects: tinyca (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=843568
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1545276

Title:
  16.04: Crash on start after selecting CA (created with 14.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tinyca/+bug/1545276/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1646737] Re: Annoying "processing..." mails

2017-01-10 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1641671 ***
https://bugs.launchpad.net/bugs/1641671

** This bug has been marked a duplicate of bug 1641671
   "ttf-mscorefonts-installer: processing..." email message repeatedly from 
/etc/cron.daily/update-notifier-common

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1646737

Title:
  Annoying "processing..." mails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/1646737/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 281471] Re: Unable to use 'locate' to locate files mlocate.db permission denied

2016-11-03 Thread Andrey Bondarenko
May be some some system groups change gid during system upgrade. In this
case mlocate created before upgrade retains old gid and loses ability to
read mlocate.db. I have access to several hosts and mlocate group have
different gid there. Of course it does not explain what removes sgid.

Possible workaround is to reinstall mlocate package:

sudo aptitude resintall mlocate

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/281471

Title:
  Unable to use 'locate' to locate files mlocate.db permission denied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-eee/+bug/281471/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 281471] Re: Unable to use 'locate' to locate files mlocate.db permission denied

2016-11-03 Thread Andrey Bondarenko
** Bug watch added: Debian Bug tracker #664206
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664206

** Also affects: mlocate (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664206
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/281471

Title:
  Unable to use 'locate' to locate files mlocate.db permission denied

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-eee/+bug/281471/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1071858] Re: mlocate doesn't allow access to any normal users

2016-11-03 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 281471 ***
https://bugs.launchpad.net/bugs/281471

** This bug has been marked a duplicate of bug 281471
   Unable to use 'locate' to locate files mlocate.db permission denied

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1071858

Title:
  mlocate doesn't allow access to any normal users

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mlocate/+bug/1071858/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 506596] Re: "ts -r" doesn't work

2016-08-26 Thread Andrey Bondarenko
** Bug watch added: Debian Bug tracker #825309
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825309

** Also affects: moreutils (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825309
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/506596

Title:
  "ts -r" doesn't work

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/moreutils/+bug/506596/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1314560] Re: package moreutils 0.50 failed to install/upgrade: trying to overwrite '/usr/bin/errno', which is also in package errno 1.3-0ubuntu1

2016-08-25 Thread Andrey Bondarenko
Package errno replaced with moreutils in Ubuntu 14.04 and above,
conflict is only possible in Ubuntu 12.04 for now.

** Changed in: moreutils (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1314560

Title:
  package moreutils 0.50 failed to install/upgrade: trying to overwrite
  '/usr/bin/errno', which is also in package errno 1.3-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/moreutils/+bug/1314560/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1034702] Re: package moreutils 0.47 failed to install/upgrade: trying to overwrite '/usr/share/man/man1/errno.1.gz', which is also in package errno 1.3-0ubuntu1

2016-08-25 Thread Andrey Bondarenko
Package errno replaced with moreutils in Ubuntu 14.04 and above,
conflict is only possible in Ubuntu 12.04 for now.

** Changed in: moreutils (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1034702

Title:
  package moreutils 0.47 failed to install/upgrade: trying to overwrite
  '/usr/share/man/man1/errno.1.gz', which is also in package errno
  1.3-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/moreutils/+bug/1034702/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1213607] Re: package moreutils (not installed) failed to install/upgrade: trying to overwrite '/usr/share/man/man1/parallel.1.gz', which is also in package parallel 20121122-0ubuntu1

2016-08-25 Thread Andrey Bondarenko
In ubuntu 16.04 package parallel declares conflict with moreutils so
error should not appear anymore.

** Changed in: moreutils (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1213607

Title:
  package moreutils (not installed) failed to install/upgrade: trying to
  overwrite '/usr/share/man/man1/parallel.1.gz', which is also in
  package parallel 20121122-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/moreutils/+bug/1213607/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1320521] Re: package moreutils 0.50 failed to install/upgrade: próba nadpisania "/usr/bin/errno", który istnieje także w pakiecie errno 1.3-0ubuntu1

2016-08-25 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1314560 ***
https://bugs.launchpad.net/bugs/1314560

** This bug has been marked a duplicate of bug 1034702
   package moreutils 0.47 failed to install/upgrade: trying to overwrite 
'/usr/share/man/man1/errno.1.gz', which is also in package errno 1.3-0ubuntu1

** This bug is no longer a duplicate of bug 1034702
   package moreutils 0.47 failed to install/upgrade: trying to overwrite 
'/usr/share/man/man1/errno.1.gz', which is also in package errno 1.3-0ubuntu1

** This bug has been marked a duplicate of bug 1314560
   package moreutils 0.50 failed to install/upgrade: trying to overwrite 
'/usr/bin/errno', which is also in package errno 1.3-0ubuntu1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1320521

Title:
  package moreutils 0.50 failed to install/upgrade: próba nadpisania
  "/usr/bin/errno", który istnieje także w pakiecie errno 1.3-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/moreutils/+bug/1320521/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 900705] Re: Installation of "kubuntu-full" breaks desktop effects on intel graphics hardware

2016-08-22 Thread Andrey Bondarenko
The bug is about old unsupported release. It must be fixed long ago, at
least there is no video driver dependencies in version 1.338.

** Changed in: kubuntu-meta (Ubuntu)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/900705

Title:
  Installation of "kubuntu-full" breaks desktop effects on intel
  graphics hardware

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kubuntu-meta/+bug/900705/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1357326] Re: Make default VCS git

2016-08-18 Thread Andrey Bondarenko
** Changed in: etckeeper (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1357326

Title:
  Make default VCS git

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etckeeper/+bug/1357326/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1592496] Re: Please provide older versions of unison

2016-07-21 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1568459 ***
https://bugs.launchpad.net/bugs/1568459

** This bug has been marked a duplicate of bug 1568459
   unison incompatible with older ubuntu/debian versions

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1592496

Title:
  Please provide older versions of unison

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unison/+bug/1592496/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 958040] Re: version bump imapfilter

2016-05-31 Thread Andrey Bondarenko
** Changed in: imapfilter (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/958040

Title:
  version bump imapfilter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/imapfilter/+bug/958040/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1555340] Re: usb tethering and wifi not working

2016-03-11 Thread Andrey Bondarenko
** Package changed: libutempter (Ubuntu) => ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1555340

Title:
  usb tethering and wifi not working

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1555340/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1353587] Re: superseded by systemd-bootchart, remove after no form factors use upstart as pid1

2016-03-01 Thread Andrey Bondarenko
Bootchart was removed from systemd repository

https://github.com/systemd/systemd/commit/232c84b2d22f2d96982b3c0390d29498bb430835

Its new home is https://github.com/systemd/systemd-bootchart

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1353587

Title:
  superseded by systemd-bootchart, remove after no form factors use
  upstart as pid1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bootchart/+bug/1353587/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1508677] Re: Build with multiarch support

2016-02-20 Thread Andrey Bondarenko
Fixed in Ubuntu 16.04 package version 1.1.6-1ubuntu1

** Changed in: libutempter (Ubuntu)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1508677

Title:
  Build with multiarch support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1508677/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1542030] Re: Problem during configuring (wrong path)

2016-02-20 Thread Andrey Bondarenko
The bug is fixed in Debian package version 1.1.6-3

** Bug watch added: Debian Bug tracker #814647
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814647

** Also affects: libutempter (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=814647
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1542030

Title:
  Problem during configuring (wrong path)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1542030/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1547802] Re: package libutempter0:amd64 1.1.6-1ubuntu1 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2016-02-20 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1542030 ***
https://bugs.launchpad.net/bugs/1542030

** This bug has been marked a duplicate of bug 1542030
   Problem during configuring (wrong path)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1547802

Title:
  package libutempter0:amd64 1.1.6-1ubuntu1 failed to install/upgrade:
  le sous-processus script post-installation installé a retourné une
  erreur de sortie d'état 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1547802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1508677] Re: Build with multiarch support

2016-02-18 Thread Andrey Bondarenko
** Changed in: libutempter (Ubuntu)
   Status: Triaged => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1508677

Title:
  Build with multiarch support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1508677/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1542030] Re: Problem during configuring (wrong path)

2016-02-18 Thread Andrey Bondarenko
This bug may be related to bug 1508677.

Version 1.1.6 from 16.04 compiled with multiarch support, so utempter is
installed into /usr/lib//utempter not in /usr/lib/utempter.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1542030

Title:
  Problem during configuring (wrong path)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1542030/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1545492] Re: upgrader hung at installing new version of /etc/gnome/defaults.list

2016-02-18 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1542030 ***
https://bugs.launchpad.net/bugs/1542030

** This bug has been marked a duplicate of bug 1542030
   Problem during configuring (wrong path)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1545492

Title:
  upgrader hung at installing new version of /etc/gnome/defaults.list

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1545492/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 704023] Re: package libutempter0 1.1.5-2 failed to install/upgrade: ErrorMessage: Subprocess post-installation script returned error exit status 1

2016-02-18 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 658593 ***
https://bugs.launchpad.net/bugs/658593

** This bug has been marked a duplicate of bug 658593
   installation failed on "configuration" step.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/704023

Title:
  package libutempter0 1.1.5-2 failed to install/upgrade: ErrorMessage:
  Subprocess post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/amarok/+bug/704023/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 658593] Re: installation failed on "configuration" step.

2016-02-18 Thread Andrey Bondarenko
According to debian bug #698590 utempter group was removed in version
1.1.6.

The new version is included in Ubuntu 15.10, so marking bug as Fix
Released.

** Changed in: libutempter (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/658593

Title:
  installation failed on "configuration" step.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/658593/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1545906] Re: package libutempter0:amd64 1.1.6-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-02-18 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1542030 ***
https://bugs.launchpad.net/bugs/1542030

** This bug has been marked a duplicate of bug 1542030
   Problem during configuring (wrong path)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1545906

Title:
  package libutempter0:amd64 1.1.6-1ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1545906/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 797206] Re: package libutempter0 1.1.5-3 failed to install/upgrade: ErrorMessage: el subproceso instalado el script post-installation devolvió el código de salida de error 1

2016-02-18 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 658593 ***
https://bugs.launchpad.net/bugs/658593

** This bug has been marked a duplicate of bug 658593
   installation failed on "configuration" step.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/797206

Title:
  package libutempter0 1.1.5-3 failed to install/upgrade: ErrorMessage:
  el subproceso instalado el script post-installation devolvió el código
  de salida de error 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/797206/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1540493] Re: package libutempter0:amd64 1.1.6-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-02-18 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1542030 ***
https://bugs.launchpad.net/bugs/1542030

** This bug has been marked a duplicate of bug 1542030
   Problem during configuring (wrong path)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1540493

Title:
  package libutempter0:amd64 1.1.6-1ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1540493/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1542030] Re: Problem during configuring (wrong path)

2016-02-18 Thread Andrey Bondarenko
This is bug in libutempter0.postinst script

it should either check existence of /usr/lib/utempter directory or
create it before changing ownership. Manual creation of the directory
solves the issue:

sudo mkdir /usr/lib/utempter
sudo dpkg --configure libutempter0

Other question is why directory /usr/lib/utempter may not exist after
package install?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1542030

Title:
  Problem during configuring (wrong path)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1542030/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1546391] Re: package libutempter0:i386 1.1.6-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-02-18 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 1542030 ***
https://bugs.launchpad.net/bugs/1542030

** This bug has been marked a duplicate of bug 1542030
   Problem during configuring (wrong path)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1546391

Title:
  package libutempter0:i386 1.1.6-1ubuntu1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libutempter/+bug/1546391/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 651035] Re: excessive debug messages from "os-prober"

2016-02-01 Thread Andrey Bondarenko
** Bug watch added: Debian Bug tracker #698598
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698598

** Also affects: os-prober via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698598
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/651035

Title:
  excessive debug messages from "os-prober"

To manage notifications about this bug go to:
https://bugs.launchpad.net/os-prober/+bug/651035/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 508368] Re: cron job reports debug output

2016-02-01 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 651035 ***
https://bugs.launchpad.net/bugs/651035

** This bug has been marked a duplicate of bug 651035
   excessive debug messages from "os-prober"

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/508368

Title:
  cron job reports debug output

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/508368/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1398972] Re: os-prober putting debug info into syslog by default

2016-02-01 Thread Andrey Bondarenko
*** This bug is a duplicate of bug 651035 ***
https://bugs.launchpad.net/bugs/651035

** This bug has been marked a duplicate of bug 651035
   excessive debug messages from "os-prober"

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1398972

Title:
  os-prober putting debug info into syslog by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/1398972/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1163545] Re: smem crashed with ZeroDivisionError in showamount(): float division by zero

2015-09-10 Thread Andrey Bondarenko
Looks like bug is triggered when no swap is allocated. This bug was
fixed in upstream version 1.4

https://selenic.com/repo/smem/rev/e143c8fdb6f5

** Changed in: smem (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1163545

Title:
  smem crashed with ZeroDivisionError in showamount(): float division by
  zero

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/smem/+bug/1163545/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 772214] Re: default state file location is wrong in manpage

2015-09-01 Thread Andrey Bondarenko
** Changed in: logrotate (Ubuntu)
   Status: Confirmed => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/772214

Title:
  default state file location is wrong in manpage

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/logrotate/+bug/772214/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 772214] Re: default state file location is wrong in manpage

2015-08-31 Thread Andrey Bondarenko
** Bug watch added: Debian Bug tracker #775421
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775421

** Also affects: logrotate (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775421
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/772214

Title:
  default state file location is wrong in manpage

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/logrotate/+bug/772214/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1316992] Re: buildpackage fails after upgrade to 0.6.9 (Ubuntu 14.04)

2014-10-30 Thread Andrey Bondarenko
The fix included in upstream version 0.6.14. Marking Fix Released
because Ubuntu 14.10 has version 0.6.15.

** Changed in: git-buildpackage (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1316992

Title:
  buildpackage fails after upgrade to 0.6.9 (Ubuntu 14.04)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/git-buildpackage/+bug/1316992/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1314918] Re: gbp buildpackage fails miserably in trusty

2014-10-30 Thread Andrey Bondarenko
** Changed in: git-buildpackage (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1314918

Title:
  gbp buildpackage fails miserably in trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/git-buildpackage/+bug/1314918/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 702252] Re: git-import-orig should support tgz file

2014-10-30 Thread Andrey Bondarenko
Marking Fix Released because of upstream commit made in February 2012
https://honk.sigxcpu.org/gitweb/?p=git-buildpackage.git;a=commit;h=1e5193607eafcd573802042bac37a52f6ea5b8fd

This change is definitely included in current Ubuntu version.

** Changed in: git-buildpackage (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/702252

Title:
  git-import-orig should support tgz file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/git-buildpackage/+bug/702252/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 836047] Re: git-dch crashed with dpkg-parsechangelog in parse_changelog(): fallo: analizador del registro de cambios /usr/lib/dpkg/parsechangelog/debian devolvió un estado de salida de error 255

2014-10-30 Thread Andrey Bondarenko
Package version 0.6.22 (Ubuntu 15.04 Vivid) shows meaningful error
message. Suppose bug was fixed long ago.

** Changed in: git-buildpackage (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/836047

Title:
  git-dch crashed with dpkg-parsechangelog in parse_changelog(): fallo:
  analizador del registro de cambios /usr/lib/dpkg/parsechangelog/debian
  devolvió un estado de salida de error 255

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/git-buildpackage/+bug/836047/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 828538] Re: Europe/Moscow not updated

2014-10-20 Thread Andrey Bondarenko
Please see bug #1377813

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/828538

Title:
  Europe/Moscow not updated

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/828538/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1377813] [NEW] tzdata SRU to 2014f because of law changes in Russia

2014-10-06 Thread Andrey Bondarenko
Public bug reported:

Tzdata in 12.04 (Precise) and 14.04 (Trusty) needs to be updated to
version 2014f or newer.

Timezone assignment in Russia has changed in 2014-07-01. The changes are
published in Olson 2014f. Timezone changes will take effect in
2014-10-26. Please release package updates before this date.

** Affects: tzdata (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1377813

Title:
  tzdata SRU to 2014f because of law changes in Russia

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tzdata/+bug/1377813/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1358827] [NEW] /etc/bash.bashrc checks for admin instead of sudo group

2014-08-19 Thread Andrey Bondarenko
Public bug reported:

Since ubuntu 12.04 sudo group is used for granting root privileges.
AFAIK admin group was retained for backward compatibility only, at least
Server Guige for Ubuntu 14.04 says that one should use sudo group for
root access.

Currently /etc/bash.bashrc check only for admin group. If the user
belong to admin group, hint message on how to get root access may be
printed. I think bashrc should check for sudo group also.

** Affects: bash (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1358827

Title:
  /etc/bash.bashrc checks for admin instead of sudo group

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/1358827/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1274320] Re: Error: diskfilter writes are not supported

2014-08-14 Thread Andrey Bondarenko
No. Patch exists, but as of 2014-08-14, it is not applied in Debian and
Ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1274320

Title:
  Error: diskfilter writes are not supported

To manage notifications about this bug go to:
https://bugs.launchpad.net/grub/+bug/1274320/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1301557] Re: sudo not setting environment variables in /etc/environment

2014-05-06 Thread Andrey Bondarenko
Files in /etc/pam.d uses to pam_env.so as a session module, except sudo
which uses it as auth module. Is it ok?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1301557

Title:
  sudo not setting environment variables in /etc/environment

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sudo/+bug/1301557/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] GconfCompiz.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: GconfCompiz.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944526/+files/GconfCompiz.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] ProcCpuinfo.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944531/+files/ProcCpuinfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] LightdmDisplayLog.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: LightdmDisplayLog.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944527/+files/LightdmDisplayLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] CurrentDmesg.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944523/+files/CurrentDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] DpkgLog.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: DpkgLog.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944525/+files/DpkgLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] UnitySupportTest.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: UnitySupportTest.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944537/+files/UnitySupportTest.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Xrandr.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: Xrandr.txt
   https://bugs.launchpad.net/bugs/1258374/+attachment/3944539/+files/Xrandr.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Dependencies.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944524/+files/Dependencies.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] BootLog.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: BootLog.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944522/+files/BootLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Re: [NV44A] GeForce 6200 output status inverted

2014-01-09 Thread Andrey Bondarenko
apport information

** Tags added: apport-collected compiz-0.9 has-workaround reproducible
trusty ubuntu

** Description changed:

  My NVIDIA GeForce 6200 has 3 outputs: DVI, VGA, TV-out. In ubuntu 13.04 and 
13.10
  nouveau driver detects output connection status incorrectly. If I connect DVI 
cable
  only, nouveau thinks than both VGA and TV-out connected. If I connect VGA 
cable
  only, it thinks DVI and TV-out connected.
  
  Wrong connection status leads to wrong resolution selection. Monitor 
connected to
  DVI/VGA reports preferred resolution 1600x1200, but Xorg ignores it because 
it thinks
  monitor is not connected. Instead it uses TV-out settings with 1024x768 
resolution.
  
- The only workarround I've found is to append video=1600x1200 to kernel
- command line.
+ The only workarround I've found is to append video=1600x1200 to kernel 
command line.
+ --- 
+ .tmp.unity.support.test.0:
+  
+ ApportVersion: 2.12.7-0ubuntu6
+ Architecture: i386
+ CasperVersion: 1.336ubuntu1
+ CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
+ CompositorRunning: compiz
+ CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
+ CompositorUnredirectFSW: true
+ CurrentDesktop: Unity
+ DistUpgraded: Fresh install
+ DistroCodename: trusty
+ DistroRelease: Ubuntu 14.04
+ DistroVariant: ubuntu
+ ExtraDebuggingInterest: Yes, including running git bisection searches
+ GraphicsCard:
+  NVIDIA Corporation NV44A [GeForce 6200] [10de:0221] (rev a1) (prog-if 00 
[VGA controller])
+Subsystem: ASUSTeK Computer Inc. Device [1043:81c7]
+ LiveMediaBuild: Ubuntu 14.04 LTS Trusty Tahr - Alpha i386 (20140109)
+ MarkForUpload: True
+ Package: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu1
+ PackageArchitecture: i386
+ ProcKernelCmdLine: initrd=/casper/initrd.lz file=/cdrom/preseed/username.seed 
boot=casper  quiet splash -- BOOT_IMAGE=/casper/vmlinuz
+ ProcVersionSignature: Ubuntu 3.13.0-1.16-generic 3.13.0-rc7
+ Tags:  trusty ubuntu reproducible has-workaround compiz-0.9
+ Uname: Linux 3.13.0-1-generic i686
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ dmi.bios.date: 03/16/2004
+ dmi.bios.vendor: Award Software International, Inc.
+ dmi.bios.version: F1
+ dmi.board.name: 8IPE1000-G
+ dmi.board.vendor: Gigabyte Technology Co., Ltd.
+ dmi.board.version: 1.x
+ dmi.chassis.type: 3
+ dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF1:bd03/16/2004:svnDEPOComputers:pn:pvr:rvnGigabyteTechnologyCo.,Ltd.:rn8IPE1000-G:rvr1.x:cvn:ct3:cvr:
+ dmi.sys.vendor: DEPO Computers
+ version.compiz: compiz 1:0.9.10+13.10.20131011-0ubuntu1
+ version.libdrm2: libdrm2 2.4.50-1
+ version.libgl1-mesa-dri: libgl1-mesa-dri 10.0.1-1ubuntu2
+ version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
+ version.libgl1-mesa-glx: libgl1-mesa-glx 10.0.1-1ubuntu2
+ version.xserver-xorg-core: xserver-xorg-core 2:1.14.5-1ubuntu2
+ version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu1
+ version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu10
+ version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.907-0ubuntu1
+ version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu1
+ xserver.bootTime: Thu Jan  9 18:21:00 2014
+ xserver.configfile: default
+ xserver.devices:
+  inputPower Button KEYBOARD, id 6
+  inputPower Button KEYBOARD, id 7
+  inputSleep Button KEYBOARD, id 8
+  inputGenius Optical Mouse MOUSE, id 9
+  inputAT Translated Set 2 keyboard KEYBOARD, id 10
+ xserver.errors:
+  Failed to load module nvidia (module does not exist, 0)
+  Failed to load module nvidia (module does not exist, 0)
+ xserver.logfile: /var/log/Xorg.0.log
+ xserver.version: 2:1.14.5-1ubuntu2
+ xserver.video_driver: nouveau

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944521/+files/BootDmesg.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] xdpyinfo.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: xdpyinfo.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944540/+files/xdpyinfo.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] UdevDb.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1258374/+attachment/3944535/+files/UdevDb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Re: [NV44A] GeForce 6200 output status inverted

2014-01-09 Thread Andrey Bondarenko
The issue is still there. Unlike KDE, Unity choses right resolution but
xrandr still shows inverted state of video outputs. I have connected
only DVI output, both TV and VGA are disconnected. In the same time
xrandr shows:

$ xrandr
Screen 0: minimum 320 x 200, current 2320 x 1200, maximum 4096 x 4096
DVI-D-1 disconnected (normal left inverted right x axis y axis)
VGA-1 connected primary 1600x1200+0+0 (normal left inverted right x axis y 
axis) 408mm x 306mm
   1600x1200  60.0*+
   1280x1024  75.0 60.0  
   1152x864   75.0  
   1024x768   75.1 75.0 60.0  
   832x62474.6  
   800x60075.0 60.3  
   640x48075.0 72.8 60.0 59.9  
   720x40070.1  
TV-1 connected 720x576+1600+0 (normal left inverted right x axis y axis) 0mm x 
0mm
   720x57650.0*+
   1024x768   50.0  
   800x60050.0  
   720x48050.0  
   640x48050.0  
   400x30050.0  
   320x24050.0  
   320x20050.0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] ProcEnviron.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944532/+files/ProcEnviron.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] LightdmLog.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: LightdmLog.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944528/+files/LightdmLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] ProcInterrupts.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944533/+files/ProcInterrupts.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] XorgLog.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: XorgLog.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944538/+files/XorgLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] xserver.outputs.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: xserver.outputs.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944541/+files/xserver.outputs.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Lsusb.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1258374/+attachment/3944530/+files/Lsusb.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] ProcModules.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944534/+files/ProcModules.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Lspci.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1258374/+attachment/3944529/+files/Lspci.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] UdevLog.txt

2014-01-09 Thread Andrey Bondarenko
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3944536/+files/UdevLog.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Re: [NV44A] GeForce 6200 output status inverted

2013-12-05 Thread Andrey Bondarenko
** Attachment added: Xorg log with DVI output connected
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+attachment/3924064/+files/Xorg.0.log-dvi-nouveau

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] [NEW] [NV44A] GeForce 6200 output status inverted

2013-12-05 Thread Andrey Bondarenko
Public bug reported:

My NVIDIA GeForce 6200 has 3 outputs: DVI, VGA, TV-out. In ubuntu 13.04 and 
13.10
nouveau driver detects output connection status incorrectly. If I connect DVI 
cable
only, nouveau thinks than both VGA and TV-out connected. If I connect VGA cable
only, it thinks DVI and TV-out connected.

Wrong connection status leads to wrong resolution selection. Monitor connected 
to
DVI/VGA reports preferred resolution 1600x1200, but Xorg ignores it because it 
thinks
monitor is not connected. Instead it uses TV-out settings with 1024x768 
resolution.

The only workarround I've found is to append video=1600x1200 to kernel
command line.

** Affects: xserver-xorg-video-nouveau (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: kern.log-dvi-nouveau
   
https://bugs.launchpad.net/bugs/1258374/+attachment/3924062/+files/kern.log-dvi-nouveau

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Re: [NV44A] GeForce 6200 output status inverted

2013-12-05 Thread Andrey Bondarenko
** Attachment added: ROM dump from my video card
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+attachment/3924066/+files/geforce_6200_nv44a.rom

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Re: [NV44A] GeForce 6200 output status inverted

2013-12-05 Thread Andrey Bondarenko
** Attachment added: Xorg log with VGA output connected
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+attachment/3924065/+files/Xorg.0.log-vga-nouveau

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Re: [NV44A] GeForce 6200 output status inverted

2013-12-05 Thread Andrey Bondarenko
** Attachment added: kernel log with VGA output connected
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+attachment/3924063/+files/kern.log-vga-nouveau

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 636613] Re: Nouveau cannot set correct resolution with GeForce 6200

2013-12-05 Thread Andrey Bondarenko
may be related with bug #1258374

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/636613

Title:
  Nouveau cannot set correct resolution with GeForce 6200

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/636613/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1258374] Re: [NV44A] GeForce 6200 output status inverted

2013-12-05 Thread Andrey Bondarenko
This looks similar to bug #636613, but Xorg.log from #636613 connector
VGA-1 is connected while both DVI-I-1 and TV-1 shows disconnected. If
reporter used single monitor setup TV-1 should be in connected state.
Because symptoms do not match exactly and I will not mark bugs as
duplicates.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1258374

Title:
  [NV44A] GeForce 6200 output status inverted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1258374/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1197313] Re: add option to force sending empty Domain

2013-09-08 Thread Andrey Bondarenko
A small improvement for workaround in #3: Use dpkg-divert to move vpnc
out of the way. It will help your modifications survive after package
reistalls/upgrades (see http://www.debian.org/doc/manuals/debian-faq/ch-
customizing.en.html#s-divert)

dpkg-divert --local --divert /usr/sbin/vpnc.real --rename /usr/sbin/vpnc

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1197313

Title:
  add option to force sending empty Domain

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-vpnc/+bug/1197313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1197313] Re: add option to force sending empty Domain

2013-09-06 Thread Andrey Bondarenko
A workaround for the bug is to create wrapper script for vpnc proposed
by Kasuko http://ubuntuforums.org/showthread.php?t=2104986

#!/bin/sh
exec /usr/sbin/vpnc.real --domain  $*

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1197313

Title:
  add option to force sending empty Domain

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-vpnc/+bug/1197313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1209146] [NEW] anacron jobs run with wrong environment variables

2013-08-07 Thread Andrey Bondarenko
Public bug reported:

In Ubuntu 13.04 (anacron-2.3-19ubuntu2) is started from
/etc/cron.d/anacron like this

start -q anacron

This means anacron itself and its child processes would inherit
environment from init/upstart not from crond. As result all environment
variables defined in /etc/environment won't be set (upstart does not use
pam_env.so). In my case, this leads to debtags job failed with network
unreachable error, because my host is behind a proxy and http_proxy
variable is defined in /etc/environment.

The bug does not affect Debian with Init System V, because invoke-rc.d
would start rc script directly.

I suppose anacron should be either started directly from
/etc/cron.d/anacron or modified so it use pam to properly initialize
session for a job.

** Affects: anacron (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1209146

Title:
  anacron jobs run with wrong environment variables

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/anacron/+bug/1209146/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1201730] [NEW] openchangeclient missing dependency on python-samba

2013-07-16 Thread Andrey Bondarenko
Public bug reported:

Ubuntu version: 13.04
Package version: 1:1.0-4ubuntu1

exchange2mbox binary from package openchangeclient may fail because of
missing library libdbwrap.so

$ ldd `which exchange2mbox` | grep 'not found'
libdbwrap.so = not found

The library libdbwrap.so exists in python-samba package, but
openchangeclient does not have direct or indirect dependency on it.

** Affects: openchange (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: raring regression-release

** Tags added: regression-release

** Tags added: raring

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1201730

Title:
  openchangeclient missing dependency on python-samba

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openchange/+bug/1201730/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1201730] Re: openchangeclient missing dependency on python-samba

2013-07-16 Thread Andrey Bondarenko
** Description changed:

  Ubuntu version: 13.04
  Package version: 1:1.0-4ubuntu1
  
  exchange2mbox binary from package openchangeclient may fail because of
  missing library libdbwrap.so
  
  $ ldd `which exchange2mbox` | grep 'not found'
- libdbwrap.so = not found
+ libdbwrap.so = not found
  
  The library libdbwrap.so exists in python-samba package, but
  openchangeclient does not have direct or indirect dependency on it.
+ 
+ The package worked in Ubuntu 12.10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1201730

Title:
  openchangeclient missing dependency on python-samba

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openchange/+bug/1201730/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1197313] Re: add option to force sending empty Domain

2013-07-14 Thread Andrey Bondarenko
I suppose no.

To send empty domain name during authentication vpnc should be started
with --domain  command line option or Domain option without a value in
config file. When starting connection, network-manager-vpnc makes
temporary config file using connection parameters from NetworkManager
and starts vpnc with it. The problem arises, because NetworkManager does
not store domain if it is empty (AFAIK it cannot store empty strings at
all).

So you have to either start vpnc manually, or somehow patch network-
manager-vpnc to include empty Domain option.

If you need I can publish patched network-manager-vpnc version 0.9.8
that always sends domain. It's not a proper fix for the issue, but works
as a temporary solution for me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1197313

Title:
  add option to force sending empty Domain

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-vpnc/+bug/1197313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 932177] Re: XFCE (and other non-GNOME) desktops do not initialise gnome-keyring correctly / WARNING: gnome-keyring:: couldn't connect to PKCS11

2013-07-10 Thread Andrey Bondarenko
As the bug is still present in 13.04 and probably 13.10 Kubuntu users
may be interested in a workaround:

Copy the attached script 01gnome-keyring-daemon.sh into ~/.kde/env
directory.

Files in this directory are sources by /usr/bin/startkde so the script
can finish gnome-keyring-daemon initialization and provide environment
variables for KDE session.

** Attachment added: Workaround for Kubuntu users
   
https://bugs.launchpad.net/ubuntu/+source/gnome-keyring/+bug/932177/+attachment/3732775/+files/01gnome-keyring-daemon.sh

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/932177

Title:
  XFCE (and other non-GNOME) desktops do not initialise gnome-keyring
  correctly / WARNING: gnome-keyring:: couldn't connect to PKCS11

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-keyring/+bug/932177/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1197313] [NEW] add option to force sending empty Domain

2013-07-03 Thread Andrey Bondarenko
Public bug reported:

VPN server in my organization uses empty Domain but requires it on
authentication. VPNC plugin currently does not store or send Domain if
it is empty (tested versions 0.9.6, 0.9.8.2). This makes impossible to
establish vpnc connection with NetworkManager while starting vpnc from
command line with empty domain works.

Please add an option to force sending empty Domain.

** Affects: network-manager-vpnc
 Importance: Unknown
 Status: Unknown

** Affects: network-manager-vpnc (Ubuntu)
 Importance: Undecided
 Status: New

** Bug watch added: GNOME Bug Tracker #703509
   https://bugzilla.gnome.org/show_bug.cgi?id=703509

** Also affects: network-manager-vpnc via
   https://bugzilla.gnome.org/show_bug.cgi?id=703509
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1197313

Title:
  add option to force sending empty Domain

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-vpnc/+bug/1197313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 958040] Re: version bump imapfilter

2013-06-20 Thread Andrey Bondarenko
imapfilter-2.5.2 shipped since Ubuntu 12.10 (quantal). If backporting to
12.04 requires SRU process (see
https://wiki.ubuntu.com/StableReleaseUpdates)

** Changed in: imapfilter (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/958040

Title:
  version bump imapfilter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/imapfilter/+bug/958040/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 868314] Re: imapfilter: timeout period expired while waiting to read data

2013-06-20 Thread Andrey Bondarenko
Ubuntu 13.04 imapfilter-2.5.2-2 works for me.

** Changed in: imapfilter (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/868314

Title:
  imapfilter: timeout period expired while waiting to read data

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/imapfilter/+bug/868314/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1075928] Re: Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps != NULL' failed

2013-03-25 Thread Andrey Bondarenko
I'm sure the bug is in libcanberra at least in Quantal. I'm can
reproduce the bug with gksu, evince and emacs.

Also, I think I've found real cause for the bug. Patch
10_no_nonnative_crash.patch is applied twice in ubuntu version. This
patch was integrated in upstream version 0.29, but was not removed from
debian/patches. This lead to usage of gdk_error_trap_push without
corresponding gdk_error_trap_pop. I've published a fix in my branch:

https://code.launchpad.net/~abone/ubuntu/raring/libcanberra/fix-1075928

Also I'm trying to publish prebuilt packages for Quantal and Raring in
my PPA, but have some issues with it:

https://launchpad.net/~abone/+archive/ubuntu-fixes

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1075928

Title:
  Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps !=
  NULL' failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libcanberra/+bug/1075928/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1075928] Re: Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps != NULL' failed

2013-03-23 Thread Andrey Bondarenko
I don't see taskcoach package in Ubuntu 12.10 repository. For
cryptkeeper, unsetting GTK_MODULES variable removes annoying warning
message about IA__gdk_error_trap_pop.

I'm not expert on GTK or GNOME. AFAIK libcanberra related only to event
sound. Is it useful for KDE desktop or it is GNOME speciffic? Also, why
this bug assigned to gtk+-2.0 package if it is only reproducible with
libcanberra-gtk-module from libcanberra?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1075928

Title:
  Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps !=
  NULL' failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/1075928/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1075928] Re: Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps != NULL' failed

2013-03-23 Thread Andrey Bondarenko
Funny. This bug is a fix for bug 834403 (see http://bazaar.launchpad.net
/~ubuntu-branches/ubuntu/raring/libcanberra/raring/view/head:/src
/canberra-gtk-module.c#L310)

Ok, I agree that unsetting GTK_MODULES does not resolve the issue, it
just disables buggy module, but now I'm sure that the bug is in
libcanberra not gtk+.

** Package changed: gtk+2.0 (Ubuntu) = ubuntu

** Package changed: ubuntu = libcanberra (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1075928

Title:
  Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps !=
  NULL' failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libcanberra/+bug/1075928/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1075928] Re: Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps != NULL' failed

2013-03-21 Thread Andrey Bondarenko
Suddenly found possible cause/workaround for the bug. In 12.10
environment variable GTK_MODULES is set for all DE (including KDE or
XFCE). If variable is unset, gdk_error_trap_pop may disappear appear
when starting GTK applications.

On my desktop:

$ env | grep GTK_MODULES
GTK_MODULES=canberra-gtk-module:canberra-gtk-module

$ fslint-gui
/usr/bin/fslint-gui:1950: GtkWarning: IA__gdk_error_trap_pop: assertion 
`gdk_error_traps != NULL' failed
  gtk.main ()

$ unset GTK_MODULES

$ fslint-gui
no GtkWarning message

Probably this bug is related to bug 385577

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1075928

Title:
  Please, silence IA__gdk_error_trap_pop: assertion `gdk_error_traps !=
  NULL' failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/1075928/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 385577] Re: GTK_MODULES should be set only for gnome

2013-03-21 Thread Andrey Bondarenko
Look like this bug is somehow related to quiet annoying LP bug 1075928:
Gdk-CRITICAL **: IA__gdk_error_trap_pop: assertion `gdk_error_traps !=
NULL' fail console message on every GTK+ app start in KDE and probably
all other non-GNOME DE.

Can anybody tell if  unsetting GTK_MODULES is proper solution for bug
1075928 also?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/385577

Title:
  GTK_MODULES should be set only for gnome

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libcanberra/+bug/385577/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   >