[Bug 1361768] Re: apt-check fails with "The cache has no package named 'skype-bin'"

2017-08-29 Thread Jason Conti
*** This bug is a duplicate of bug 1597537 ***
https://bugs.launchpad.net/bugs/1597537

** This bug has been marked a duplicate of bug 1597537
   "the cache has no package" error when wine update is available

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

Title:
  apt-check fails with "The cache has no package named 'skype-bin'"

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

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


[Bug 1631504] Re: loadkeys segfaults with certain arguments in 16.10

2016-10-13 Thread Jason Conti
Noticed that the code causing the crash is only in the Ubuntu package,
specifically debian/patches/loadkeys_ckbcomp.diff, so I refreshed the
patch with the include and made a debdiff.

** Patch added: "loadkeys_fix_implicit_xmalloc.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/kbd/+bug/1631504/+attachment/4760528/+files/loadkeys_fix_implicit_xmalloc.debdiff

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

Title:
  loadkeys segfaults with certain arguments in 16.10

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

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


[Bug 1631504] [NEW] loadkeys segfaults with certain arguments in 16.10

2016-10-07 Thread Jason Conti
Public bug reported:

This can be reproduced as follows:

1) Switch to VT 1 (ctrl+alt+f1)
2) run: loadkeys garbage
3) loadkeys will segfault

The problem appears to be with the implicit declaration of xmalloc in 
loadkeys.c. It is resolved if
#include "xmalloc.h" is added to the top of that file (and in fact all the 
other source files in kbd that reference xmalloc include that file).

Interestingly xmalloc is resolved without include but the returned
pointer seems to get truncated. It doesn't do this if the source is
built with gcc 5.4 in 16.04 so maybe it has something to do with gcc 6.2
in 16.10.

ProblemType: Bug
DistroRelease: Ubuntu 16.10
Package: kbd 2.0.3-2ubuntu2
ProcVersionSignature: Ubuntu 4.8.0-19.21-generic 4.8.0-rc8
Uname: Linux 4.8.0-19-generic x86_64
ApportVersion: 2.20.3-0ubuntu7
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Oct  7 15:27:58 2016
InstallationDate: Installed on 2016-10-06 (1 days ago)
InstallationMedia: Ubuntu 16.10 "Yakkety Yak" - Alpha amd64 (20161006)
SourcePackage: kbd
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug yakkety

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

Title:
  loadkeys segfaults with certain arguments in 16.10

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

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


[Bug 1361768] [NEW] apt-check fails with "The cache has no package named 'skype-bin'"

2014-08-26 Thread Jason Conti
Public bug reported:

I noticed today that I hadn't received any update notifications for a
while, and after following the trail found in the output of /usr/lib
/update-notifier/apt-check:

E: Unknown Error: '' ("The cache has no package named
'skype-bin'")

Removing the exception hook from that file we find the actual error:

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/apt/cache.py", line 198, in __getitem__
return self._weakref[key]
  File "/usr/lib/python3.4/weakref.py", line 125, in __getitem__
o = self.data[key]()
KeyError: 'skype-bin'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "./apt-check", line 201, in 
run(options)
  File "./apt-check", line 136, in run
ignored = ul._is_ignored_phased_update(aptcache[pkg.name])
  File "/usr/lib/python3/dist-packages/apt/cache.py", line 205, in __getitem__
raise KeyError('The cache has no package named %r' % key)
KeyError: "The cache has no package named 'skype-bin'"

This occurs when checking for phased updates, it tries to index the
apt.Cache with the package name from the apt_pkg.Cache. But since the
arch is amd64 and not i386, the package in the apt.Cache is instead
skype-bin:i386.

If we replace:

ignored = ul._is_ignored_phased_update(aptcache[pkg.name])

with:

ignored =
ul._is_ignored_phased_update(aptcache[pkg.get_fullname(False)])

Everything seems to work fine.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: update-notifier 0.154.1
ProcVersionSignature:
 
Uname: Linux 3.13.11.4-netbook x86_64
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Aug 26 13:06:28 2014
InstallationDate: Installed on 2011-10-11 (1049 days ago)
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111011)
SourcePackage: update-notifier
UpgradeStatus: Upgraded to trusty on 2014-04-21 (126 days ago)

** Affects: update-notifier (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

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

Title:
  apt-check fails with "The cache has no package named 'skype-bin'"

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

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


[Bug 1311297] Re: [ASUS Eeepc 1015PEM] Screen brightness cannot be adjusted

2014-05-10 Thread Jason Conti
I don't know if it is the exact same issue but I am seeing this on my
Asus Eeepc 1001PXD. Narrowed it down to asle_set_backlight() failing
because it is selecting the wrong pipe. There is a commit upstream that
works around this by going through all the connectors and setting the
backlight if one is present: c91c9f32843 drm/i915: make asle
notifications update backlight on all connectors.

I backported this to the ubuntu-trusty.git, and it fixes the issue here.
There was a lot of refactoring in i915 between 3.13 and 3.14-rc1, so
unfortunately the upstream commit doesn't apply directly, but this patch
isn't much different.

Apologies if this isn't the same issue, let me know and I'll go file my
own bug report.

** Patch added: "backport-i915-asle-backlight-connectors.patch"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1311297/+attachment/4109551/+files/backport-i915-asle-backlight-connectors.patch

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

Title:
  [ASUS Eeepc 1015PEM] Screen brightness cannot be adjusted

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

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


[Bug 1301558] Re: 0cf3:7015 [HP Pavilion Media Center a1630n Desktop PC] ath9k_htc 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-23 Thread Jason Conti
Reproduced with 3.15.0-031500rc2-generic, though the results are
slightly different. I got:

Apr 23 13:07:28 jconti-desktop kernel: [  291.815888] usb 1-2: ath:
firmware panic! exccause: 0x000d; pc: 0x0090a641; badvaddr:
0x12345678.

Seems to be the same values as the comment above, but did not get the
"Unable to remove station entry" message. A similar thing happened when
I was testing -rc1. The network connection does die, and if I try to
reboot it hangs, but none of the processes seem to hang. Although I am
getting terrible download speeds with -rc2 compared to
3.13.0-24-generic, so it seems to break other things (upload seems about
the same though, I actually reproduced it using the comcast speed test
during the upload phase).

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

Title:
  0cf3:7015 [HP Pavilion Media Center a1630n Desktop PC] ath9k_htc 14.04
  NetworkManager hangs after 'ath: phy0: Unable to remove station entry
  for...'

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

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


[Bug 1301558] Re: 0cf3:7015 [HP Pavilion Media Center a1630n Desktop PC] ath9k_htc 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-20 Thread Jason Conti
That was surprisingly quick. With 3.13.0-24-generic reproduced it while
wgetting the kubuntu iso:

Apr 20 16:53:15 jconti-desktop kernel: [ 4016.152042] ath: phy0: Unable to 
remove station entry for: f4:ec:38:ec:42:02
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748073] INFO: task 
NetworkManager:844 blocked for more than 120 seconds.
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748086]   Not tainted 
3.13.0-24-generic #46-Ubuntu
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748090] "echo 0 > 
/proc/sys/kernel/hung_task_timeout_secs" disables this 
message.
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748096] NetworkManager  D 
88011fc14440 0   844  1 0x
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748106]  8800de37f8d0 
0002 8800364417f0 8800de37f
fd8
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748115]  00014440 
00014440 8800364417f0 880119612
8d8
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748122]  8801196128dc 
8800364417f0  880119612
8e0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748131] Call Trace:
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748147]  [] 
schedule_preempt_disabled+0x29/0x70
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748156]  [] 
__mutex_lock_slowpath+0x135/0x1b0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748163]  [] 
mutex_lock+0x1f/0x2f
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748225]  [] 
nl80211_dump_scan+0x5d/0x630 [cfg80211]
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748234]  [] ? 
__kmalloc_reserve.isra.25+0x31/0x90
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748245]  [] 
genl_lock_dumpit+0x2e/0x50
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748252]  [] 
netlink_dump+0x84/0x240
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748259]  [] 
__netlink_dump_start+0x1ab/0x220
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748269]  [] 
genl_family_rcv_msg+0x276/0x370
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748276]  [] ? 
genl_lock_done+0x50/0x50
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748283]  [] ? 
genl_unlock+0x20/0x20
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748295]  [] ? 
__kmalloc_node_track_caller+0x58/0x1e0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748303]  [] ? 
genl_family_rcv_msg+0x370/0x370
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748310]  [] 
genl_rcv_msg+0x91/0xd0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748316]  [] 
netlink_rcv_skb+0xa9/0xc0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748323]  [] 
genl_rcv+0x28/0x40
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748330]  [] 
netlink_unicast+0xd5/0x1b0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748337]  [] 
netlink_sendmsg+0x2ff/0x740
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748343]  [] ? 
netlink_recvmsg+0x1a2/0x3a0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748352]  [] 
sock_sendmsg+0x8b/0xc0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748360]  [] ? 
move_addr_to_kernel.part.16+0x1e/0x60
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748367]  [] ? 
move_addr_to_kernel+0x21/0x30
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748374]  [] 
___sys_sendmsg+0x3a9/0x3c0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748383]  [] ? 
poll_select_copy_remaining+0x130/0x130
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748391]  [] ? 
poll_select_copy_remaining+0x130/0x130
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748400]  [] ? 
native_sched_clock+0x13/0x80
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748406]  [] ? 
native_sched_clock+0x13/0x80
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748414]  [] ? 
sched_clock_local+0x1d/0x80
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748424]  [] ? 
acct_account_cputime+0x1c/0x20
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748430]  [] ? 
account_user_time+0x8b/0xa0
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748437]  [] 
__sys_sendmsg+0x42/0x80
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748445]  [] 
SyS_sendmsg+0x12/0x20
Apr 20 16:56:20 jconti-desktop kernel: [ 4200.748453]  [] 
tracesys+0xe1/0xe6

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

Title:
  0cf3:7015 [HP Pavilion Media Center a1630n Desktop PC] ath9k_htc 14.04
  NetworkManager hangs after 'ath: phy0: Unable to remove station entry
  for...'

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

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


[Bug 1301558] Re: 0cf3:7015 [HP Pavilion Media Center a1630n Desktop PC] ath9k_htc 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-20 Thread Jason Conti
Updated to 3.10, output of sudo dmidecode -s bios-version && sudo
dmidecode -s bios-release-date:

 3.10
12/13/2006

May take several days to find out if it made any difference, I'll post
if/when it happens again.

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

Title:
  0cf3:7015 [HP Pavilion Media Center a1630n Desktop PC] ath9k_htc 14.04
  NetworkManager hangs after 'ath: phy0: Unable to remove station entry
  for...'

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

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


[Bug 1301558] Re: 0cf3:7015 [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-20 Thread Jason Conti
Sure thing, though that is almost exactly it. The bottom decal only has
"HP Pavilion a1630n" though there is another sticker with "Microsoft
Windows XP Media Center Edition" and it is definitely a desktop.

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

Title:
  0cf3:7015 [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0:
  Unable to remove station entry for...'

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

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


[Bug 1301558] Re: [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-08 Thread Jason Conti
Rebuilt 3.14 with some additional debugging enabled and triggered it
again today while simply wgetting an iso. Results in some new messages
that are kind of interesting:

[ 3501.052975] usb 1-2: ath: firmware panic! exccause: 0x000d; pc: 
0x0090a641; badvaddr: 0x12345678.
[ 3517.088168] wlan0: moving STA f4:ec:38:ec:42:02 to state 3
[ 3517.088180] wlan0: moving STA f4:ec:38:ec:42:02 to state 2
[ 3519.088060] ath: phy0: Unable to remove station entry for: f4:ec:38:ec:42:02
[ 3519.088078] wlan0: moving STA f4:ec:38:ec:42:02 to state 1
[ 3519.088084] wlan0: Removed STA f4:ec:38:ec:42:02
[ 3519.088240] wlan0: Destroyed STA f4:ec:38:ec:42:02

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

Title:
  [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to
  remove station entry for...'

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

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


[Bug 1301558] Re: [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-05 Thread Jason Conti
Reproduced today with 3.14.0-031400-generic while updating a vm:

[ 4800.756513] INFO: task kworker/0:2:3505 blocked for more than 120 seconds.
[ 4800.756519]   Not tainted 3.14.0-031400-generic #201403310035
[ 4800.756522] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this 
message.
[ 4800.756526] kworker/0:2 D 818118e0 0  3505  2 0x
[ 4800.756541] Workqueue: ipv6_addrconf addrconf_verify_work
[ 4800.756545]  880119251d18 0002 880119bb4800 
880119251fd8
[ 4800.756552]  000144c0 000144c0 81c144a0 
8800df9818f0
[ 4800.756559]  880119251cf8 81cd24a0 81cd24a4 

[ 4800.756567] Call Trace:
[ 4800.756575]  [] schedule+0x29/0x70
[ 4800.756582]  [] schedule_preempt_disabled+0xe/0x10
[ 4800.756589]  [] __mutex_lock_slowpath+0x114/0x1b0
[ 4800.756597]  [] mutex_lock+0x23/0x37
[ 4800.756604]  [] rtnl_lock+0x15/0x20
[ 4800.756612]  [] addrconf_verify_work+0xe/0x20
[ 4800.756620]  [] process_one_work+0x17f/0x4c0
[ 4800.756628]  [] worker_thread+0x11b/0x3d0
[ 4800.756635]  [] ? manage_workers.isra.21+0x190/0x190
[ 4800.756642]  [] kthread+0xc9/0xe0
[ 4800.756650]  [] ? flush_kthread_worker+0xb0/0xb0
[ 4800.756657]  [] ret_from_fork+0x7c/0xb0
[ 4800.756664]  [] ? flush_kthread_worker+0xb0/0xb0

New stuff in addition to a similar dump for NetworkManager and the
warning about removing the station from ath9k_htc.

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

Title:
  [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to
  remove station entry for...'

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

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


[Bug 1301558] Re: [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-05 Thread Jason Conti
** Tags added: kernel-bug-exists-upstream

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to
  remove station entry for...'

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

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


[Bug 1301558] Re: [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-02 Thread Jason Conti
** Description changed:

  This problem has been happening randomly since I installed 14.04. Today
  it happened twice while trying to zsync the latest iso.
  
  I use a TP-Link TL-WN821N wireless adapter to connect to the internet,
  which uses the ath9k_htc module. NetworkManager occasionally locks up to
  the point where any commands I try to kill it or restart it hang as
  well, and my only way out is REISUB. Right before it happens I have
  noticed twice in my dmesg:
  
  [  494.896048] ath: phy0: Unable to remove station entry for:
  f4:ec:38:ec:42:02 For reference that mac address is the default router I
  connect to daily.
  
  and then shortly after we get a kernel dump for NetworkManager:
  
  [  720.752078] INFO: task NetworkManager:850 blocked for more than 120 
seconds.
  [  720.752090]   Not tainted 3.13.0-21-generic #43-Ubuntu
  [  720.752095] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables 
this message.
  [  720.752100] NetworkManager  D 88011fd14440 0   850  1 
0x
  [  720.752110]  8800cd3bd8d0 0002 8800df0a5fc0 
8800cd3bdfd8
  [  720.752119]  00014440 00014440 8800df0a5fc0 
8800cedfe8d8
  [  720.752127]  8800cedfe8dc 8800df0a5fc0  
8800cedfe8e0
  [  720.752135] Call Trace:
  [  720.752150]  [] schedule_preempt_disabled+0x29/0x70
  [  720.752159]  [] __mutex_lock_slowpath+0x135/0x1b0
  [  720.752167]  [] mutex_lock+0x1f/0x2f
  [  720.752224]  [] nl80211_dump_scan+0x5d/0x630 [cfg80211]
  [  720.752233]  [] ? __kmalloc_reserve.isra.25+0x31/0x90
  [  720.752243]  [] genl_lock_dumpit+0x2e/0x50
  [  720.752249]  [] netlink_dump+0x84/0x240
  [  720.752256]  [] __netlink_dump_start+0x1ab/0x220
  [  720.752264]  [] genl_family_rcv_msg+0x276/0x370
  [  720.752271]  [] ? __alloc_skb+0x4e/0x2b0
  [  720.752278]  [] ? genl_lock_done+0x50/0x50
  [  720.752284]  [] ? genl_unlock+0x20/0x20
  [  720.752295]  [] ? __kmalloc_node_track_caller+0x58/0x1e0
  [  720.752302]  [] ? genl_family_rcv_msg+0x370/0x370
  [  720.752309]  [] genl_rcv_msg+0x91/0xd0
  [  720.752316]  [] netlink_rcv_skb+0xa9/0xc0
  [  720.752322]  [] genl_rcv+0x28/0x40
  [  720.752329]  [] netlink_unicast+0xd5/0x1b0
  [  720.752336]  [] netlink_sendmsg+0x2ff/0x740
  [  720.752343]  [] ? netlink_recvmsg+0x1a2/0x3a0
  [  720.752351]  [] sock_sendmsg+0x8b/0xc0
  [  720.752359]  [] ? move_addr_to_kernel.part.16+0x1e/0x60
  [  720.752366]  [] ? move_addr_to_kernel+0x21/0x30
  [  720.752373]  [] ___sys_sendmsg+0x3a9/0x3c0
  [  720.752382]  [] ? poll_select_copy_remaining+0x130/0x130
  [  720.752390]  [] ? poll_select_copy_remaining+0x130/0x130
  [  720.752399]  [] ? native_sched_clock+0x13/0x80
  [  720.752406]  [] ? native_sched_clock+0x13/0x80
  [  720.752413]  [] ? sched_clock_local+0x1d/0x80
  [  720.752423]  [] ? acct_account_cputime+0x1c/0x20
  [  720.752429]  [] ? account_user_time+0x8b/0xa0
  [  720.752437]  [] __sys_sendmsg+0x42/0x80
  [  720.752444]  [] SyS_sendmsg+0x12/0x20
  [  720.752452]  [] tracesys+0xe1/0xe6
  
- I don't know how to reproduce it, but it has happened at least five
- times since the install last week. I will attach the dmesg I took before
- the last REISUB to the bug. Please let me know if any more information
- is useful, I'll try to get it next time it happens.
+ I don't know how to reproduce it, but it happened once on March 28 when
+ I installed and three times on April 2 in a short period of time. I will
+ attach the dmesg I took before the last REISUB to the bug. Please let me
+ know if any more information is useful, I'll try to get it next time it
+ happens.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-21-generic 3.13.0-21.43
  ProcVersionSignature: Ubuntu 3.13.0-21.43-generic 3.13.8
  Uname: Linux 3.13.0-21-generic x86_64
  ApportVersion: 2.14-0ubuntu1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  jconti 2024 F pulseaudio
   /dev/snd/controlC0:  jconti 2024 F pulseaudio
   /dev/snd/controlC2:  jconti 2024 F pulseaudio
   /dev/snd/controlC1:  jconti 2024 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Apr  2 14:53:42 2014
  HibernationDevice: RESUME=UUID=f62b1259-1f84-4a06-9c97-90a5eb41cfd4
  InstallationDate: Installed on 2014-03-28 (5 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Daily amd64 (20140328)
  MachineType: HP Pavilion 061 RC658AA-ABA a1630n
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-21-generic 
root=UUID=863ed135-24c6-4cf5-b1b8-b4e76181f621 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-21-generic N/A
   linux-backports-modules-3.13.0-21-generic  N/A
   linux-firmware 1.127
  RfKill:
   0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi

[Bug 1301558] Re: [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-02 Thread Jason Conti
I have not been able to reproduce it after a bit of testing on the
mainline kernel 3.14.0-031400-generic, but it seems to happen randomly
so I'm not sure that means it is fixed. I will continue to test for a
couple days and see if it pops up with the 3.14 kernel.

I just got this desktop on Friday and 14.04 was the first system I
installed on it, so it is difficult to say when the issue started. I
checked the old /var/log/kern.log.1 and it seems it also happened on
March 28 with the 3.13.0-19-generic kernel. Today it didn't start until
after I installed linux-image-3.13.0-21-generic.

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

Title:
  [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to
  remove station entry for...'

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

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


[Bug 1301558] Re: [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-02 Thread Jason Conti
Interestingly I just tried to zsync today's amd64 ubuntu iso yet again
and it happened a third time. So maybe I can temporarily reproduce it.
This time I also had a kernel dump for chrome-sandbox which I tried to
start to add a comment to this bug, before realizing how foolish that
was.

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

Title:
  [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to
  remove station entry for...'

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

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


[Bug 1301558] [NEW] [ath9k_htc] 14.04 NetworkManager hangs after 'ath: phy0: Unable to remove station entry for...'

2014-04-02 Thread Jason Conti
Public bug reported:

This problem has been happening randomly since I installed 14.04. Today
it happened twice while trying to zsync the latest iso.

I use a TP-Link TL-WN821N wireless adapter to connect to the internet,
which uses the ath9k_htc module. NetworkManager occasionally locks up to
the point where any commands I try to kill it or restart it hang as
well, and my only way out is REISUB. Right before it happens I have
noticed twice in my dmesg:

[  494.896048] ath: phy0: Unable to remove station entry for:
f4:ec:38:ec:42:02 For reference that mac address is the default router I
connect to daily.

and then shortly after we get a kernel dump for NetworkManager:

[  720.752078] INFO: task NetworkManager:850 blocked for more than 120 seconds.
[  720.752090]   Not tainted 3.13.0-21-generic #43-Ubuntu
[  720.752095] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this 
message.
[  720.752100] NetworkManager  D 88011fd14440 0   850  1 0x
[  720.752110]  8800cd3bd8d0 0002 8800df0a5fc0 
8800cd3bdfd8
[  720.752119]  00014440 00014440 8800df0a5fc0 
8800cedfe8d8
[  720.752127]  8800cedfe8dc 8800df0a5fc0  
8800cedfe8e0
[  720.752135] Call Trace:
[  720.752150]  [] schedule_preempt_disabled+0x29/0x70
[  720.752159]  [] __mutex_lock_slowpath+0x135/0x1b0
[  720.752167]  [] mutex_lock+0x1f/0x2f
[  720.752224]  [] nl80211_dump_scan+0x5d/0x630 [cfg80211]
[  720.752233]  [] ? __kmalloc_reserve.isra.25+0x31/0x90
[  720.752243]  [] genl_lock_dumpit+0x2e/0x50
[  720.752249]  [] netlink_dump+0x84/0x240
[  720.752256]  [] __netlink_dump_start+0x1ab/0x220
[  720.752264]  [] genl_family_rcv_msg+0x276/0x370
[  720.752271]  [] ? __alloc_skb+0x4e/0x2b0
[  720.752278]  [] ? genl_lock_done+0x50/0x50
[  720.752284]  [] ? genl_unlock+0x20/0x20
[  720.752295]  [] ? __kmalloc_node_track_caller+0x58/0x1e0
[  720.752302]  [] ? genl_family_rcv_msg+0x370/0x370
[  720.752309]  [] genl_rcv_msg+0x91/0xd0
[  720.752316]  [] netlink_rcv_skb+0xa9/0xc0
[  720.752322]  [] genl_rcv+0x28/0x40
[  720.752329]  [] netlink_unicast+0xd5/0x1b0
[  720.752336]  [] netlink_sendmsg+0x2ff/0x740
[  720.752343]  [] ? netlink_recvmsg+0x1a2/0x3a0
[  720.752351]  [] sock_sendmsg+0x8b/0xc0
[  720.752359]  [] ? move_addr_to_kernel.part.16+0x1e/0x60
[  720.752366]  [] ? move_addr_to_kernel+0x21/0x30
[  720.752373]  [] ___sys_sendmsg+0x3a9/0x3c0
[  720.752382]  [] ? poll_select_copy_remaining+0x130/0x130
[  720.752390]  [] ? poll_select_copy_remaining+0x130/0x130
[  720.752399]  [] ? native_sched_clock+0x13/0x80
[  720.752406]  [] ? native_sched_clock+0x13/0x80
[  720.752413]  [] ? sched_clock_local+0x1d/0x80
[  720.752423]  [] ? acct_account_cputime+0x1c/0x20
[  720.752429]  [] ? account_user_time+0x8b/0xa0
[  720.752437]  [] __sys_sendmsg+0x42/0x80
[  720.752444]  [] SyS_sendmsg+0x12/0x20
[  720.752452]  [] tracesys+0xe1/0xe6

I don't know how to reproduce it, but it has happened at least five
times since the install last week. I will attach the dmesg I took before
the last REISUB to the bug. Please let me know if any more information
is useful, I'll try to get it next time it happens.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-21-generic 3.13.0-21.43
ProcVersionSignature: Ubuntu 3.13.0-21.43-generic 3.13.8
Uname: Linux 3.13.0-21-generic x86_64
ApportVersion: 2.14-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC3:  jconti 2024 F pulseaudio
 /dev/snd/controlC0:  jconti 2024 F pulseaudio
 /dev/snd/controlC2:  jconti 2024 F pulseaudio
 /dev/snd/controlC1:  jconti 2024 F pulseaudio
CurrentDesktop: Unity
Date: Wed Apr  2 14:53:42 2014
HibernationDevice: RESUME=UUID=f62b1259-1f84-4a06-9c97-90a5eb41cfd4
InstallationDate: Installed on 2014-03-28 (5 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Daily amd64 (20140328)
MachineType: HP Pavilion 061 RC658AA-ABA a1630n
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-21-generic 
root=UUID=863ed135-24c6-4cf5-b1b8-b4e76181f621 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.13.0-21-generic N/A
 linux-backports-modules-3.13.0-21-generic  N/A
 linux-firmware 1.127
RfKill:
 0: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/02/2006
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 3.07
dmi.board.name: NODUSM3
dmi.board.vendor: ASUSTek Computer INC.
dmi.board.version: 1.05
dmi.chassis.type: 3
dmi.chassis.version: 
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr3.07:bd08/02/2006:svnHPPavilion061:pnRC658AA-ABAa1630n:pvr0nx1114RE101NODM300:rvnASUSTekComputerINC.:rnNODUSM3:rvr1.05:cvn:ct3:cvr:
dmi.product.name: RC658AA-ABA a1630n
dmi.product.version: 0nx1114RE101NODM300
dmi.sys.vendor: HP

[Bug 1184291] Re: indicator-messages does not clear after read Pidgin messages.

2013-07-10 Thread Jason Conti
Richard it looks like bug 1175537. There is a fix for that in saucy, or
you could try the raring build in ppa:jconti/gnome3. If that does not
fix it, please file a new bug. Thanks.

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

Title:
  indicator-messages does not clear after read Pidgin messages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1184291/+subscriptions

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


[Bug 1184291] Re: indicator-messages does not clear after read Pidgin messages.

2013-05-26 Thread Jason Conti
In what way is it not working? Does it not remove the envelope highlight
when you focus the conversation? Which protocols are you using in
pidgin? If you run pidgin -d in the terminal does it say that it is
clearing the attention when you focus the conversation?

Does the highlight still not go away when you click the items in the
Messaging Menu? Or hit the Clear button?

The items themselves will not disappear on their own unless you close
the conversation. Is that what is not working?

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

Title:
  indicator-messages does not clear after read Pidgin messages.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1184291/+subscriptions

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


[Bug 1184007] Re: menu mouse-scrolling up down does not appear on first try on large menus

2013-05-24 Thread Jason Conti
Moving this to gtk+3.0. I believe it is gtk 3 specific. It is not just
limited to gedit, it happens with any app using indicator-appmenu (I
notice it most often under okular on pdfs with lots of bookmarks). But
it is also not indicator-appmenu specific because the following code,
when run with:

UBUNTU_MENUPROXY=0 ./test-menu

will exhibit the behavior as well. When compiled with:

gcc -o test-menu test-menu.c $(pkg-config --cflags --libs gtk+-3.0);

the weird first time no scrollbars behavior occurs. But it works fine if
using:

gcc -o test-menu test-menu.c $(pkg-config --cflags --libs gtk+-2.0);


** Summary changed:

- menu mouse-scrolling up down does not appear on first try
+ menu mouse-scrolling up down does not appear on first try on large menus

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

** Package changed: ubuntu => gtk+3.0 (Ubuntu)

** Attachment added: "test-menu.c"
   
https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/1184007/+attachment/3686109/+files/test-menu.c

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

Title:
  menu mouse-scrolling up down does not appear on first try on large
  menus

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

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


[Bug 1175537] Re: Stuck notifications (unable to clear them)

2013-05-23 Thread Jason Conti
Thanks again for testing.

In my haste, I forgot to update the other location where
purple_conversation_get_name() was used, when deleting the conversation.
I pushed one last change out to ppa:jconti/gnome3, if you wouldn't mind
checking that closing a conversation window removes the associated menu
item in the Messaging Menu that would be great (may also want to check
first that it is broken with the current version).

** Patch added: "pidgin-libnotify_use-buddy-name-v3.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+attachment/3684946/+files/pidgin-libnotify_use-buddy-name-v3.debdiff

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

Title:
  Stuck notifications (unable to clear them)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+subscriptions

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


[Bug 1175537] Re: Stuck notifications (unable to clear them)

2013-05-21 Thread Jason Conti
After a few minutes thought, I realized if
purple_conversation_get_name() == sender, and I can get the buddy with
account and sender, then I should be able to do the same with the
conversation name. So I have pushed a new test package to
ppa:jconti/gnome3. Please test it out and let me know if it fixes
problem 2. Thanks!

** Patch added: "pidgin-libnotify_use-buddy-name-v2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+attachment/3683251/+files/pidgin-libnotify_use-buddy-name-v2.debdiff

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

Title:
  Stuck notifications (unable to clear them)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+subscriptions

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


[Bug 1175537] Re: Stuck notifications (unable to clear them)

2013-05-21 Thread Jason Conti
Though now I'm concerned that the patch will break jabber users where it
previously worked because they didn't have random strings at the end,
but still don't have purple_buddy_get_name() matching
purple_conversation_get_name()...

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

Title:
  Stuck notifications (unable to clear them)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+subscriptions

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


[Bug 1175537] Re: Stuck notifications (unable to clear them)

2013-05-21 Thread Jason Conti
Thanks for testing. That buddy id was exactly what I was hoping to see,
so at least that part seems to be fixed.

Problem 1, as Sebastien mentioned, was unfortunately always there. I'm
not sure how to fix it. On my system at least, sometimes I will get the
first notification, sometimes not. I think it could be related to the
sign-on flood control code.

Problems 3 and 4 are actually by design. I think the Clear button's name
is a bit misleading. It doesn't actually remove any of the menu items.
It only clears the attention (the envelope changing color). Several
separate menu items could all have attention set, and you would need to
clear them all separately, so the button is just there to make it easy
to remove them all at once. A menu item only disappears when you click
on it, or when you close the conversation that is associated with it.

Problem 2 is interesting. For IM messages, the unseen-count of a
conversation is used to determine if attention should be set. There
could be two reasons why this isn't working. It could be that pidgin
thinks you have the conversation focused for some reason. You said that
you had it open on a separate workspace, so maybe it can't tell the
difference. You could test this by minimizing the conversation and then
sending the messages.

The other option is that for some reason purple_conversation_get_name()
is not matching purple_buddy_get_name(). You said that it was working
before, so that would point to purple_conversation_get_name() being the
same as sender (so the buddy name with all the random bits at the end).
If this is the case (we'd need to add some debugging messages to test),
that would point to a bug in pidgin for that protocol, since the API
reference says it returns "The conversation's name. If the conversation
is an IM with a PurpleBuddy, then it's the name of the PurpleBuddy."

Actually looking at the jabber protocol code, in message.c they use
purple_conversation_set_name() and describe it as:

* We received a message from a specific resource, so
* we probably want a reply to go to this specific
* resource (i.e. bind/lock the conversation to this
* resource).
*
* This works because purple_conv_im_send gets the name
* from purple_conversation_get_name()

So it seems it might be a quirk of the jabber code. Unless I could
somehow get a buddy back out of a conversation, then I'm not sure how to
fix this.

Sebastien, it's hard to say. It's probably better that the envelope
doesn't change color when it should, versus flooding the Messaging Menu
with duplicate entries. I'm not sure how fixable this is without adding
some custom parsing for conversations with the jabber protocol.

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

Title:
  Stuck notifications (unable to clear them)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+subscriptions

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


[Bug 1175537] Re: Stuck notifications (unable to clear them)

2013-05-20 Thread Jason Conti
Thanks for the information, the random characters at the end of the
buddy name seem to be what's hurting us here. It seems that sender may
contain too much information, looks like where the message originated
from. Originally it was using purple_buddy_get_name() instead of sender,
but for all the protocols I tested, these were the same, so went with
sender instead.

Attaching a debdiff with the minor change of using
purple_buddy_get_name() if possible, and if not falling back to sender.
But since I can't reproduce this easily, I don't know whether this will
fix your issue or not (it works equivalently on the protocols I'm
using). For ease of testing, I pushed the change to ppa:jconti/gnome3 ,
it should build in a few hours. You don't necessarily have to add the
ppa to test it, just downloading the deb and installing will work (or
rebuild with the attached debdiff if you prefer).

If it doesn't fix the issue, I would be interested in seeing what the
new buddy ids look like.

** Patch added: "pidgin-libnotify_use-buddy-name.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+attachment/3682414/+files/pidgin-libnotify_use-buddy-name.debdiff

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

Title:
  Stuck notifications (unable to clear them)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+subscriptions

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


[Bug 1175537] Re: Stuck notifications (unable to clear them)

2013-05-20 Thread Jason Conti
There is an attempt in pidgin-libnotify to generate unique strings for
each buddy, where each string is the id of a menu item in the Messaging
Menu. If you are getting repeat entries, then for some reason it is
generating two different strings for the same buddy.

If someone experiencing this bug could run: pidgin -d; when starting
pidgin, and try to reproduce the bug. I'd be most interested in the
results with lines like:

SOURCE activated '%s'

where %s is the buddy id.  These would occur after clicking the menu
item in the Messaging Menu for the buddy. It would be interesting to see
how these differ for two different menu items for the same buddy.

Ideally I'd just like to see the entire log, but since that could reveal
buddy ids, I'd be fine with someone going through and adding a comment
with several examples of how the same buddy has two different ids (with
names changed to protect the innocent).

Is this happening with Chat conversations or IM conversations (or both)
?

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

Title:
  Stuck notifications (unable to clear them)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1175537/+subscriptions

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


[Bug 1181312] Re: Race to start gnome-settings-daemon in upstart user session

2013-05-17 Thread Jason Conti
Ah, in that case this may just be a bug with my setup.
$HOME/.config/autostart/ is likely read before any of those directories,
and I have a copy of gnome-settings-daemon.desktop in there. Thanks for
the information. I'll delete it and continue testing, but this bug is
probably invalid.

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

Title:
  Race to start gnome-settings-daemon in upstart user session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1181312/+subscriptions

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


[Bug 1181312] [NEW] Race to start gnome-settings-daemon in upstart user session

2013-05-17 Thread Jason Conti
Public bug reported:

It appears if enabling the upstart user session (
https://wiki.ubuntu.com/RaringRingtail/ReleaseNotes#Upstart_User_Sessions_.28technology_preview.29
) there is a race between gnome-session and upstart for who starts
gnome-settings-daemon first.

Most of the time on my system, it seems like upstart wins. I'm guessing
in that case, gnome-session tries to start it, fails and gives up, which
is fine.

When gnome-session wins however, upstart continues to respawn gnome-
settings-daemon indefinitely, usually causing the wrong icon theme to
load, and causing flickering on the desktop (most noticeable in a conky
window, but affecting other windows as well).

Since it is a race, it is difficult to reproduce,  but it can be forced by:
1) enable upstart user sessions
2) mkdir -p ~/.config/upstart/
3) echo manual > ~/.config/upstart/gnome-settings-daemon.override
4) Log into the ubuntu session
5) initctl start gnome-settings-daemon;

Running: initctl stop gnome-settings-daemon; will stop the endless
respawn of gnome-settings-daemon when finished testing.

My current workaround is to disable /etc/xdg/gnome-settings-
daemon.desktop from starting, and let upstart take it.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: gnome-settings-daemon 3.6.4-0ubuntu8
ProcVersionSignature: Ubuntu 3.8.0-21.32-generic 3.8.8
Uname: Linux 3.8.0-21-generic x86_64
ApportVersion: 2.9.2-0ubuntu8
Architecture: amd64
Date: Fri May 17 12:34:23 2013
InstallationDate: Installed on 2011-10-11 (583 days ago)
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111011)
MarkForUpload: True
SourcePackage: gnome-settings-daemon
UpgradeStatus: Upgraded to raring on 2013-04-24 (22 days ago)

** Affects: gnome-settings-daemon (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug raring

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

Title:
  Race to start gnome-settings-daemon in upstart user session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1181312/+subscriptions

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


[Bug 1179202] Re: fails to login with error fatal: monitor_read: unsupported request: 144

2013-05-12 Thread Jason Conti
I think I see the issue. In monitor.h, the request types have been
renumbered, and the consolekit.patch sets
MONITOR_REQ_CONSOLEKIT_REGISTER = 400. But, monitor_read() only reads a
single byte for the type. 400 = 0x190, so we get 0x90 = 144.

Renumbering MONITOR_REQ_CONSOLEKIT_REGISTER = 144 and
MONITOR_ANS_CONSOLEKIT_REGISTER = 145 fixes it. Whether these are
appropriate values I couldn't say.

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

Title:
  fails to login with error fatal: monitor_read: unsupported request:
  144

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

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


[Bug 1177012] Re: Selecting default application in System Settings does not present predictable results.

2013-05-06 Thread Jason Conti
I think I worked out at least part of the problem, so might not be a
gnome-control-center bug after all. gnome-control-center uses the
mimetype "video/x-ogm+ogg" to determine the default Video app in Default
Applications. SMplayer does not have this mimetype in its
smplayer.desktop file, but instead has "video/x-ogm". None of the other
video players that I see have that specific mimetype in their .desktop
files, so when gnome-control-center sets the default for the mimetypes
present in the .desktop file, a line: video/x-ogm=smplayer.desktop will
still exist in ~/.local/share/applications/mimeapps.list.

The curious part is why should it care? It asks for "video/x-ogm+ogg",
which is set correctly. The problem is that when glib loads the
mimetypes from mimeapps.list, it calls a function
xdg_mime_unalias_mime_type() on "video/x-ogm", and as it happens,
/usr/share/mime/aliases has a line "video/x-ogm video/x-ogm+ogg". So if
"video/x-ogm=smplayer.desktop" happens to appear later in mimeapps.list,
it will end up overwriting the true default value in the hashtable.

I find that if I change the mimetype in smplayer.desktop to
"video/x-ogm+ogg" and delete the "video/x-ogm=smplayer.desktop" line
from mimeapps.list, then gnome-control-center will again correctly let
me switch between totem, vlc and smplayer as defaults. So that might be
a fix, in smplayer instead. Might be a bit fragile though, since if
another app comes along doing the same thing, it will expose the same
bug.

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

Title:
  Selecting default application in System Settings does not present
  predictable results.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1177012/+subscriptions

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


[Bug 1113721] Re: Stuck notifications (blue envolope remains after I've already read msg)

2013-02-12 Thread Jason Conti
Guess I should have looked at the code immediately. There was a bit of
refactoring in libmessaging-menu/messaging-menu.c and it seems the
boolean for draws_attention was always set to TRUE mistakenly. Attached
a branch that should fix it.

** Changed in: pidgin-libnotify (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  Stuck notifications (blue envolope remains after I've already read
  msg)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1113721/+subscriptions

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


[Bug 1113721] Re: Stuck notifications (blue envolope remains after I've already read msg)

2013-02-10 Thread Jason Conti
Looking at the output of: pidgin -d; I see that when I focus the
conversation, I get "REMOVING ATTENTION FOR (...)" so the plugin thinks
it is doing the right thing anyway.

I am going to add indicator-messages to this bug, I'm not sure this is a
pidgin-libnotify issue. I can reproduce the problem with a simple python
app I've used for testing. It works on 12.10 but doesn't remove the
attention on 13.04. I'll attach it to the bug as well.

** Also affects: indicator-messages (Ubuntu)
   Importance: Undecided
   Status: New

** Attachment added: "messaging-app.py"
   
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1113721/+attachment/3523719/+files/messaging-app.py

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

Title:
  Stuck notifications (blue envolope remains after I've already read
  msg)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1113721/+subscriptions

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


[Bug 1079469] Re: Chrome spews seccomp audit messages

2012-12-10 Thread Jason Conti
Excellent, just noticed this bug while testing out other fixes in the
linux-image-3.5.0-20-generic -proposed package. Before updating I had
about 350 seccomp audit messages for google-chrome in dmesg after about
an hour of use. After installing the fixed kernel, 0 seccomp audit
messages for google-chrome in dmesg. Verified fixed for quantal.

** Tags removed: verification-needed-quantal
** Tags added: verification-done-quantal

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

Title:
  Chrome spews seccomp audit messages

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

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


[Bug 1085573] Re: No library file(s) [libgeant***.a] nor header files are installed on Ubuntu 12.04 LTS

2012-12-03 Thread Jason Conti
This is caused by a change in cernlib. Tested in both raring and debian
unstable as well, and rebuilding the package there results in empty
packages. Forwarded the bug to debian with a description of the fix.

** Changed in: geant321 (Ubuntu)
   Status: New => Confirmed

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

Title:
  No library file(s) [libgeant***.a] nor header files are installed on
  Ubuntu 12.04 LTS

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

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


[Bug 1085573] Re: No library file(s) [libgeant***.a] nor header files are installed on Ubuntu 12.04 LTS

2012-12-03 Thread Jason Conti
** Bug watch added: Debian Bug tracker #695066
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695066

** Also affects: geant321 (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695066
   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/1085573

Title:
  No library file(s) [libgeant***.a] nor header files are installed on
  Ubuntu 12.04 LTS

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

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


[Bug 1065169] Re: segfault when used in plugin load, unload, load cycle

2012-11-29 Thread Jason Conti
Test case doesn't crash with the version from -proposed (but does with
12.10.4-0ubuntu1). Looks good to me.

** Tags removed: verification-needed
** Tags added: verification-done

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

Title:
  segfault when used in plugin load, unload, load cycle

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-messages/+bug/1065169/+subscriptions

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


[Bug 1040259] Re: FFE: libmessaging-menu transitions for quantal

2012-11-15 Thread Jason Conti
@KruyKaze: Did you run gm-notify once first? You can search for it in
the dash or run gm-notify from the command line. It needs to be run once
to register with the messaging menu. (Unlike in previous versions where
there was a file in /usr/share/indicators/messages/applications/ that
would tell the messaging menu to add that app). Hope that helps. (If
not, let me know, could be a bug I haven't experienced)

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

Title:
  FFE: libmessaging-menu transitions for quantal

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

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


[Bug 1040259] Re: FFE: libmessaging-menu transitions for quantal

2012-11-14 Thread Jason Conti
Bah sorry everyone, I was reviewing the patch after the comment and I
forgot a g_strfreev() on an error (that shouldn't ever happen but
still).

** Patch added: "pidgin-libnotify_messaging_menu_support_v3.debdiff"
   
https://bugs.launchpad.net/ubuntu/quantal/+source/pidgin-libnotify/+bug/1040259/+attachment/3433923/+files/pidgin-libnotify_messaging_menu_support_v3.debdiff

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

Title:
  FFE: libmessaging-menu transitions for quantal

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

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


[Bug 1040259] Re: FFE: libmessaging-menu transitions for quantal

2012-11-14 Thread Jason Conti
Seems that the further testing was needed. When adding chat support I
had to change how attention was set and didn't notice that it was being
set when the conversation was focused as well. Fixed in this patch.
Didn't update the ppa with the changes.

** Patch added: "pidgin-libnotify_messaging_menu_support_v2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1040259/+attachment/3433890/+files/pidgin-libnotify_messaging_menu_support_v2.debdiff

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

Title:
  FFE: libmessaging-menu transitions for quantal

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

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


[Bug 1040259] Re: FFE: libmessaging-menu transitions for quantal

2012-11-12 Thread Jason Conti
Turned out that chat support was pretty straightforward to add, so I
went ahead and finished the patch. Should have pretty much everything
now, besides buddy icons, but note that the chat support is not
extensively tested yet since I don't use that feature. I noticed that
the pidgin-libnotify task is assigned, apologies if someone else is
already working on this.

I also pushed the package to ppa:jconti/gnome3 for further testing. IM
support should be pretty solid, I have been using it for a while now.
Please let me know if anyone has any issues.

Oh, status support also requires a patch to the pidgin.desktop file that
adds X-MessagingMenu-UsesChatSection=true.

** Patch added: "pidgin-libnotify_messaging_menu_support.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/pidgin-libnotify/+bug/1040259/+attachment/3431570/+files/pidgin-libnotify_messaging_menu_support.debdiff

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

Title:
  FFE: libmessaging-menu transitions for quantal

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

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


[Bug 1014309] Re: mandos server segfault problem

2012-11-05 Thread Jason Conti
*** This bug is a duplicate of bug 1013798 ***
https://bugs.launchpad.net/bugs/1013798

I'm going to mark this as a duplicate of bug #1013798. It is the same
sort of issue, and the patch there should fix it by calling
global_init() before GCRYCTL_SUSPEND_SECMEM_WARN.

** This bug has been marked a duplicate of bug 1013798
   Blink SIP client segfaults with libgcrypt11 1.5.0-3ubuntu0.1

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

Title:
  mandos server segfault problem

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

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


[Bug 1027129] Re: Python segfaults when importing gnutls.crypto

2012-11-05 Thread Jason Conti
*** This bug is a duplicate of bug 1013798 ***
https://bugs.launchpad.net/bugs/1013798

** This bug is no longer a duplicate of bug 1014309
   mandos server segfault problem
** This bug has been marked a duplicate of bug 1013798
   Blink SIP client segfaults with libgcrypt11 1.5.0-3ubuntu0.1

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

Title:
  Python segfaults when importing gnutls.crypto

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-gnutls/+bug/1027129/+subscriptions

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


[Bug 1074957] Re: improper value display in net-tools statistics.c

2012-11-04 Thread Jason Conti
** Package changed: ubuntu => net-tools (Ubuntu)

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

Title:
  improper value display in net-tools statistics.c

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

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


[Bug 1074314] Re: indicator-datetime configuration panel only works in Unity session

2012-11-02 Thread Jason Conti
Unfortunately, it is kind of on purpose. The .desktop file has
OnlyShowIn=Unity; otherwise there will be multiple Time & Date options
in gnome-control-center. There is a workaround though:

XDG_CURRENT_DESKTOP=Unity gnome-control-center indicator-datetime;

I suppose indicator-datetime could force that environment when it execs
gnome-control-center, but otherwise I'm not really sure how to fix this
issue.

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

Title:
  indicator-datetime configuration panel only works in Unity session

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-datetime/+bug/1074314/+subscriptions

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


[Bug 1072123] Re: There is no Gmail icon in the messaging menu

2012-10-27 Thread Jason Conti
*** This bug is a duplicate of bug 1040259 ***
https://bugs.launchpad.net/bugs/1040259

gm-notify has not yet been ported to the new libmessaging-menu API in
12.10 (well, there is a test build in my ppa but nothing in the main
repositories). This progress is being tracked in bug
https://bugs.launchpad.net/ubuntu/+source/gm-notify/+bug/1040259 , so I
am going to mark this report as a duplicate of that one.

** This bug has been marked a duplicate of bug 1040259
   FFE: libmessaging-menu transitions for quantal

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

Title:
  There is no Gmail icon in the messaging menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gm-notify/+bug/1072123/+subscriptions

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


[Bug 1072145] Re: No icon in tray under GNOME Classic

2012-10-27 Thread Jason Conti
Do you have the Notification Area in your panel? It is not added by
default. If not, alt+right click the panel (or alt+super+right click if
using the compiz session), Add to Panel/Notification Area.

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

Title:
  No icon in tray under GNOME Classic

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

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


[Bug 1040259] Re: FFE: libmessaging-menu transitions for quantal

2012-10-26 Thread Jason Conti
Ported gm-notify at lp:~jconti/gm-notify/messaging-menu with a test
build soon to be available at ppa:jconti/gnome3. Please let me know if
anyone finds any serious regressions in functionality.

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

Title:
  FFE: libmessaging-menu transitions for quantal

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

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


[Bug 1070666] Re: /lib/xtables/libxt_statistic.so: undefined symbol: lround

2012-10-24 Thread Jason Conti
Hmm, I should have checked the bug list more closely, this is actually a
duplicate of bug 982961, which also has a patch (with the same basic
idea).

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

Title:
   /lib/xtables/libxt_statistic.so: undefined symbol: lround

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

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


[Bug 1070666] Re: /lib/xtables/libxt_statistic.so: undefined symbol: lround

2012-10-24 Thread Jason Conti
This is fixed in the debian iptables 1.4.16.3-1 package, are we going to
sync that for raring? If so, attaching a debdiff for quantal with the
fixes backported from upstream commits
d4e72dc1c684c2f8361d87e6bde2902cd2ee8efb and
9249ad37b2342eb48009e18f3982362e1018ea5a.

The only issue is that the statistic and rateest modules both use
functions from math.h, so need to be explicitly linked with libm.

Might be worth fixing this in precise too, the debdiff is basically the
same with a different version number. Still needs an SRU justfication,
but probably needs to be fixed in raring first and quantal/precise
tasks. The regression potential should be almost non-existent since it
just links against -lm. The description already includes a test case.

** Patch added: "iptables_quantal_fix_extensions_libm.patch"
   
https://bugs.launchpad.net/ubuntu/+source/iptables/+bug/1070666/+attachment/3412211/+files/iptables_quantal_fix_extensions_libm.patch

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

Title:
   /lib/xtables/libxt_statistic.so: undefined symbol: lround

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

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


[Bug 1040259] Re: FFE: libmessaging-menu transitions for quantal

2012-10-22 Thread Jason Conti
@Chow Loong Jin: Thanks for the patch, I'll take a look and see if I can
clean up ubuntu_notify_support.patch a bit.

The problem with pidgin quitting after closing the buddy list is that I
didn't include a call to pidgin_blist_visibility_manager_add () (there
is some leftover cruft in ubuntu_notify_support.patch but since the
boolean is always false it never gets called). Adding the call in
plugin_load when creating the MessagingMenuApp, and removing it on
plugin_unload seems to fix it. Sorry about that, I didn't notice since I
have the status icon enabled.

Should I remove the blacklist stuff as well? That looks like the only
extra code I left in ubuntu_notify_support.patch, but it seemed like it
was used for notifications in addition to indicators.

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

Title:
  FFE: libmessaging-menu transitions for quantal

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

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


[Bug 1040259] Re: FFE: libmessaging-menu transitions for quantal

2012-10-21 Thread Jason Conti
If it helps, I have partial pidgin support working (I'll attach a
debdiff). It implements status changing and indicators for IM messages
with buddies.

Ran into two bugs so far which kind of blocked my progress a bit:

Can't unload/reload plugin without a crash: 
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1065169
Can't use GdkPixbuf for icons even though they implement GIcon: 
https://bugzilla.gnome.org/show_bug.cgi?id=686201

The GdkPixbuf serialization code could probably be implemented in
indicator-messages if upstream doesn't want it.

Doesn't have:
- Chat Support (should be similar to IM support but I've never used chats in 
pidgin)
- Buddy Icons because of the bug above
- Indicators for conversations that don't have buddies associated (not really 
sure how that works)
- Occasionally loses the first message (maybe related to the last item?)

Also a fair bit of debugging code which should probably be removed once
the messaging-menu support is complete.

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

** Patch added: "pidgin-libnotify_partial_messaging_menu_support2.debdiff"
   
https://bugs.launchpad.net/ubuntu/quantal/+source/liferea/+bug/1040259/+attachment/3407931/+files/pidgin-libnotify_partial_messaging_menu_support2.debdiff

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

Title:
  FFE: libmessaging-menu transitions for quantal

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

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


[Bug 1068815] Re: gnuplot 4.4 patchlevel 3 can't input international characters in interactive mode

2012-10-20 Thread Jason Conti
Unfortunately here the problem is that gnuplot cannot be linked against
libreadline in Debian/Ubuntu because readline is GPL (see for instance
/usr/share/doc/gnuplot/README.Debian). So instead gnuplot uses libedit
which has poor support for non-ascii characters. There is a bug in
Debian about improving the support, but it doesn't seem to have been
looked at recently http://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=273002

Looking at a similar bug in postgresql (http://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=608442) it seems as users we can workaround the
issue without recompiling by using LD_PRELOAD. On my system, the
following works (you would need to replace the path with the correct one
on your system):

LD_PRELOAD=/lib/x86_64-linux-gnu/libreadline.so.6 gnuplot

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

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

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

Title:
  gnuplot 4.4 patchlevel 3 can't input international characters in
  interactive mode

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

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


[Bug 1069131] Re: No evolution integration since upgrade

2012-10-20 Thread Jason Conti
*** This bug is a duplicate of bug 1040259 ***
https://bugs.launchpad.net/bugs/1040259

Unfortunately evolution-indicator was removed in quantal because it
needs porting to several new APIs, one of which is
https://bugs.launchpad.net/ubuntu/+source/evolution-
indicator/+bug/1040259

I am going to mark this as a duplicate of that bug.

** This bug has been marked a duplicate of bug 1040259
   FFE: libmessaging-menu transitions for quantal

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

Title:
  No evolution integration since upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1069131/+subscriptions

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


[Bug 1069146] Re: notify-osd wrong style

2012-10-20 Thread Jason Conti
The first screenshot looks like xfce4-notifyd to me. If you would prefer
to use notify-osd I would remove that package, otherwise it can be a bit
of a race for who gets control of desktop notifications first.

The second screenshot looks like gnome-settings-daemon, which will
display brightness and volume popups like that if notify-osd is not
running (since most notification daemons do not support that feature),
so that should be fixed by removing xfce4-notifyd as well.

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

Title:
  notify-osd wrong style

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/notify-osd/+bug/1069146/+subscriptions

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


[Bug 1068603] Re: Messaging indicator in tray disappeared after removing Gwibber and Empathy

2012-10-19 Thread Jason Conti
A new feature of indicator-messages is that it will hide itself when
there are no apps using the menu. Unfortunately several applications
still need to be ported to the new libmessaging-menu API, including
Pidgin (I do not know about Hotot). This is
https://bugs.launchpad.net/ubuntu/+source/evolution-
indicator/+bug/1040259

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

Title:
  Messaging indicator in tray disappeared after removing Gwibber and
  Empathy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution-indicator/+bug/1068603/+subscriptions

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


[Bug 1067515] Re: Locking from user menu fails second time

2012-10-17 Thread Jason Conti
Seems to fix it here, attaching a debdiff with the workaround. Curious
if this is due to some change in dbus, I know quantal included at least
the eavesdropping changes (though I would think we should be able to get
the reply to our own method call).

** Patch added: "indicator-session_reply_timeout_workaround.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/indicator-session/+bug/1067515/+attachment/3401789/+files/indicator-session_reply_timeout_workaround.debdiff

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

Title:
  Locking from user menu fails second time

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-session/+bug/1067515/+subscriptions

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


[Bug 1067515] Re: Locking from user menu fails second time

2012-10-17 Thread Jason Conti
Don't think this is a bug in indicator-session. Basically indicator-
session is just calling two dbus methods on org.gnome.ScreenSaver; Lock
and SimulateUserActivity. It seems that the SimulateUserActivity call is
not returning immediately. I can illustrate this with a simple script:

#!/bin/bash

dbus-send --session --print-reply --dest=org.gnome.ScreenSaver \
  /org/gnome/ScreenSaver org.gnome.ScreenSaver.Lock
dbus-send --session --print-reply --dest=org.gnome.ScreenSaver \
  /org/gnome/ScreenSaver org.gnome.ScreenSaver.SimulateUserActivity

which when run, locks the screen and then shows the lock screen
immediately. When you unlock the screen, the script will still be
blocked until the timeout is reached, where we get:

method return sender=:1.79 -> dest=:1.103 reply_serial=2
Error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible 
causes include: the remote application did not send a reply, the message bus 
security policy blocked the reply, the reply timeout expired, or the network 
connection was broken.

The first line is from the successful call to Lock. The call to
SimulateUserActivity is also successful since the lock screen appears
immediately, but we never get a reply.

A decent workaround might be to set the timeout to some low value, say 1
second. It seems to work when setting --reply-timeout=1 in  the script,
I'm going to try rebuilding indicator-session with that value and see if
it helps (though I am curious why we never get a reply).

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

Title:
  Locking from user menu fails second time

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-session/+bug/1067515/+subscriptions

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


[Bug 1065762] Re: do-release-upgrade falsely reports no upgrade is available

2012-10-12 Thread Jason Conti
I think that would definitely be useful information to have on the
manpage, a new bug or even a comment about it on bug #1048285 would be a
good idea.

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

Title:
  do-release-upgrade falsely reports no upgrade is available

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

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


[Bug 1065762] Re: do-release-upgrade falsely reports no upgrade is available

2012-10-12 Thread Jason Conti
When upgrading from an LTS release, the default is to only upgrade LTS
to LTS. You must enable Normal release upgrades before 12.10 will be
detected. Please see:
https://wiki.ubuntu.com/QuantalQuetzal/TechnicalOverview/Beta2#Upgrading_from_Ubuntu_12.04_LTS

Also you may be interested in https://bugs.launchpad.net/ubuntu/+source
/ubuntu-release-upgrader/+bug/1048285 which is about adding more
diagnostic information to do-release-upgrade so these kinds of issues
are easier to spot.

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

Title:
  do-release-upgrade falsely reports no upgrade is available

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

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


[Bug 1064898] Re: No windows management woth Gnome after Upgrade to Quantal

2012-10-11 Thread Jason Conti
*** This bug is a duplicate of bug 1036752 ***
https://bugs.launchpad.net/bugs/1036752

** This bug has been marked a duplicate of bug 1036752
   [quantal] [regression] Gnome Classic has no compiz plugins loaded

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

Title:
  No windows management woth Gnome after Upgrade to Quantal

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

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


[Bug 1064493] Re: Indicator-applet Disappears After Closing a Conversation

2012-10-11 Thread Jason Conti
Pidgin hasn't been ported to the new indicator-messages API yet, this is
bug https://bugs.launchpad.net/ubuntu/+source/evolution-
indicator/+bug/1040259

The system tray icon should work as a workaround, however in Unity,
Pidgin must be whitelisted before it will appear. Something like:

gsettings set com.canonical.Unity.Panel systray-whitelist
"['JavaEmbeddedFrame', 'Wine', 'Update-notifier', 'Pidgin']"

should work, though you may want to see what your current value is
before appending Pidgin to the end, so that you don't lose any other
status icons.

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

Title:
  Indicator-applet Disappears After Closing a Conversation

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

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


[Bug 1064898] Re: No windows management woth Gnome after Upgrade to Quantal

2012-10-11 Thread Jason Conti
Looking at the screenshot I bet this is the same bug as
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1036752

To verify, after logging into the normal Gnome Classic session, check
~/.xsession-errors and see if only the 'core' and 'ccp' compiz plugins
are loaded. If so you can workaround the issue by using compizconfig-
settings-manager to enable a minimal set of plugins, or just use the (no
effects) session until the issue is fixed.

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

Title:
  No windows management woth Gnome after Upgrade to Quantal

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

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


[Bug 1051935] Re: Fails with SystemError when too many files are open

2012-10-04 Thread Jason Conti
Thanks Barry, I added both of those to python-apt at:

lp:~jconti/python-apt/closeable-cache

with fixes for both gdebi and oneconf:

lp:~jconti/gdebi/closeable-cache
lp:~jconti/oneconf/closeable-cache

Stuck with del self._records to clean up the file descriptors since I
took a look at the apt code for PackageRecords and it follows the usual
C++ idiom of closing files on destruct.

While debugging the gdebi code I found another way to reproduce this
specific bug, just continue Refreshing (ctrl+r) until the eventual
SystemError, though I'm not sure how one would run into it in normal
circumstances.

Doesn't help with the memory issues listed in bug #894314 but maybe
oneconf can do some explicit garbage collection to keep memory
reasonable.

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

Title:
  Fails with SystemError when too many files are open

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-apt/+bug/1051935/+subscriptions

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


[Bug 970309] Re: Resizing Launcher causes Maximized apps to jump around erratically

2012-10-04 Thread Jason Conti
Seems significantly better in quantal, so I am going to mark this as
fixed.

** Changed in: unity (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/970309

Title:
  Resizing Launcher causes Maximized apps to jump around erratically

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

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


[Bug 1051935] Re: Fails with SystemError when too many files are open

2012-10-03 Thread Jason Conti
I ran into this bug today while cleaning up my system for an upgrade to
quantal (it actually dup'd me on bug #894314 since it was oneconf
crashing). I was running: apt-get purge package_name; relatively
quickly.

This seems like a minimal reproducer in python:

import apt

while True:
  apt_cache = apt.Cache()

It will eventually consume all of the file descriptors and crash with
the above SystemError. I was not really successful in reproducing with
straight apt_pkg, though apt_pkg.PackageRecords(self._cache) seems to be
the line opening the files. It seems like the issue is that the objects
are not being garbage collected fast enough. If,

gc.collect()

is run each loop it seems oscillate between 59 and 114 fds, instead of
increasing rapidly until python runs out. Even better is:

del apt_cache._records

which oscillates between 3 and 59 fds. So a fix might be to add an
explicit close() method to apt.Cache which deletes at least the _records
object, and perhaps other objects.

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

Title:
  Fails with SystemError when too many files are open

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-apt/+bug/1051935/+subscriptions

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


[Bug 1036752] Re: [quantal] [regression] Gnome Classic has no compiz plugins loaded

2012-09-29 Thread Jason Conti
Hi Sam,

Yes the COMPIZ_CONFIG_PROFILE environment variable is still used, but if
unset or the empty string compiz first checks GNOME_DESKTOP_SESSION_ID,
which in quantal is currently set to 'this-is-deprecated'. If it is set,
then it returns the section name as "gnome_session". Doesn't really
matter though, it will default to Default.ini even if the section is
missing, but as far as I can tell there isn't any code that reads an ini
from /etc/compizconfig/ (and just dropping a Default.ini file in there
and loading the gnome classic session only loads the "core" and "ccp"
plugins).

I took a look at the natty package to see how it was handled there, and
the code seems basically the same, so I don't think it would load an ini
from /etc/compizconfig/ there either. The only difference I noticed was
that /etc/compizconfig/config in natty looks like:

[kde4_session]
backend = kconfig4
integration = true
plugin_list_autosort = true

[kde_session]
backend = kconfig
integration = true
plugin_list_autosort = true

[gnome_session]
backend = gconf
integration = true
plugin_list_autosort = true

[general]
backend = ini 
plugin_list_autosort = true

[general_ubuntu]
backend = gconf
integration = true
plugin_list_autosort = true
profile = unity

We only have the [general] and [general_ubuntu] sections in quantal
(with the ubuntu section using gsettings now instead of gconf). We can't
use gconf for gnome_session since that backend was dropped in the
transition. I'd like to use gsettings but I can't figure out how to make
it work since we would need to set defaults for the same key with
different paths (or run a script when the user logs in checking if the
key is set and then setting it, I don't really like that idea).

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

Title:
  [quantal] [regression] Gnome Classic has no compiz plugins loaded

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

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


[Bug 1036752] Re: [quantal] [regression] Gnome Classic has no compiz plugins loaded

2012-09-28 Thread Jason Conti
Alright, ideally I would use gsettings, but I cannot figure out how to
set up the default plugins without running some sort of script in the
user session to set the keys if they are not already set.

So, my thought is that we can just use the ini backend but with the
attached patch to compizconfig/libcompizconfig/backend/source/ini.c.

This patch allows compiz to fallback to a .ini profile in
/etc/compizconfig/ to read settings if the value is not already set in
the user .ini file in ~/.config/compiz-1/compizconfig/. With the
addition of a simple Default.ini to /etc/compizconfig/ such as:

[core]
s0_active_plugins = 
core;composite;opengl;compiztoolbox;decor;vpswitch;snap;mousepoll;resize;place;move;wall;grid;regex;imgpng;session;gnomecompat;animation;fade;workarounds;scale;expo;ezoom

the Gnome Classic session will load up with a nice default set of
plugins.

Technically it only needs to fallback for a List option to fix this
issue, but I added them all anyway. Probably needs some testing and
perhaps fixing.

** Patch added: "compiz_system_ini_v3.patch"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-session/+bug/1036752/+attachment/3353860/+files/compiz_system_ini_v3.patch

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

Title:
  [quantal] [regression] Gnome Classic has no compiz plugins loaded

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

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


[Bug 1057224] Re: libnotify is not sending some notifications

2012-09-28 Thread Jason Conti
** Changed in: libnotify (Ubuntu)
   Status: New => Invalid

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

Title:
  libnotify is not sending some notifications

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

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


[Bug 1036752] Re: [quantal] [regression] Gnome Classic has no compiz plugins loaded

2012-09-27 Thread Jason Conti
Though it does work with the gsettings backend if the settings are set
at the user level with either ccsm or:

gsettings set org.compiz.core:/org/compiz/profiles/Default/plugins/core/
active-plugins
"['core','composite','opengl','decor','move','imgpng','place','resize']";

So I guess it is just from the gsettings vendor overrides that you can't
use the setting path.

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

Title:
  [quantal] [regression] Gnome Classic has no compiz plugins loaded

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

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


[Bug 1036752] Re: [quantal] [regression] Gnome Classic has no compiz plugins loaded

2012-09-27 Thread Jason Conti
I noticed that when loading ccsm in the gnome classic session it
outputs:

Backend: ini

I can force it to use the gsettings backend by adding:

[gnome_session]
backend = gsettings
profile = Default

to /etc/compizconfig/config, but it will just load the unity active-
plugins from /usr/share/glib-2.0/schemas/10_compiz-
gnome.gschema.override, and I don't see any way to override this, even
though the schema is relocatable. Looking at the migration scripts, it
seems like:

[org.compiz.core:/org/compiz/profiles/unity/plugins/core/]
active-plugins=[..]

should work (and then we could create one for Default or gnome-classic
or whatever), but it doesn't, compiz will only load core and ccp
plugins.

Using the ini backend would be fine too, but it doesn't read any from
/etc/compizconfig/, choosing instead to create a blank file in
~/.config/compiz-1/compizconfig/, so I can't override that unless I
create/copy a Default.ini file there.

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

Title:
  [quantal] [regression] Gnome Classic has no compiz plugins loaded

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

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


[Bug 1057224] Re: libnotify is not sending some notifications

2012-09-27 Thread Jason Conti
I cannot reproduce this issue with the commands in the description. Do
you receive any notifications at all? For instance, does:

notify-send hello

work? Is notify-osd installed and running? Do you notice any errors in
~/.xsession-errors? Do you have any other notification daemons
installed? (notification-daemon, xfce4-notifyd, ...)

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

Title:
  libnotify is not sending some notifications

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

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


[Bug 1055639] Re: gecko-mediaplayer FTBFS in Quantal test rebuild

2012-09-24 Thread Jason Conti
Attaching debdiff to fix FTBFS.

** Patch added: "gecko-mediaplayer-fix-ftbfs.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/gecko-mediaplayer/+bug/1055639/+attachment/3338576/+files/gecko-mediaplayer-fix-ftbfs.debdiff

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

Title:
  gecko-mediaplayer FTBFS in Quantal test rebuild

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gecko-mediaplayer/+bug/1055639/+subscriptions

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


[Bug 1055639] [NEW] gecko-mediaplayer FTBFS in Quantal test rebuild

2012-09-24 Thread Jason Conti
Public bug reported:

buildlog:

https://launchpadlibrarian.net/117137101/buildlog_ubuntu-quantal-amd64
.gecko-mediaplayer_1.0.6-1ubuntu1_FAILEDTOBUILD.txt.gz

gecko-mediaplayer fails to rebuild because firefox-dev in quantal now
only provides the npapi headers and the build scripts look in the wrong
place for them (/usr/lib/firefox-devel/include). The fix is to require
nspr to build the plugin and fix the path to the npapi headers.

I'll attach a debdiff with the fix.

** Affects: gecko-mediaplayer (Ubuntu)
 Importance: Undecided
 Assignee: Jason Conti (jconti)
 Status: New


** Tags: ftbfs

** Changed in: gecko-mediaplayer (Ubuntu)
 Assignee: (unassigned) => Jason Conti (jconti)

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

Title:
  gecko-mediaplayer FTBFS in Quantal test rebuild

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gecko-mediaplayer/+bug/1055639/+subscriptions

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


[Bug 1050341] Re: NCURSES not found while compiling VLC

2012-09-13 Thread Jason Conti
This really appears to be more of a question than a bug report, so I am
going to convert it into a question.

Looking at the output from configure, it appears that you need to
install the package: libtinfo-dev

If you scroll down a bit in http://wiki.videolan.org/UnixCompile under
the heading "The preferred method", there is a command:

sudo apt-get build-dep vlc

Which if you have the source repositories enabled (in software-
properties-gtk make sure the Source Code box is ticked) should get you
most of the libraries required to compile VLC.

Hope that helps.

** Changed in: ncurses (Ubuntu)
   Status: New => Invalid

** Converted to question:
   https://answers.launchpad.net/ubuntu/+source/ncurses/+question/208497

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

Title:
  NCURSES not found while compiling VLC

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

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


[Bug 1041756] Re: gnome-control-center and desktop environment crashes when trying to change full name in User Accounts

2012-09-12 Thread Jason Conti
Updated the debdiff, forgot to bump the gtk+3.0 build-depends to 3.5.13
for the new gtk_entry_set_attributes() function in the patch.

** Patch added: "gnome-control-center_fix-big-editable-labels-v2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1041756/+attachment/3310419/+files/gnome-control-center_fix-big-editable-labels-v2.debdiff

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

Title:
  gnome-control-center and desktop environment crashes when trying to
  change full name in User Accounts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1041756/+subscriptions

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


[Bug 1045021] Re: 12.10: pysvn import error: _pysvn_2_7.so: undefined symbol: svn_sort_compare_items_as_paths

2012-09-11 Thread Jason Conti
Forwarded upstream to:
http://pysvn.tigris.org/issues/show_bug.cgi?id=181

** Bug watch added: pysvn.tigris.org/issues/ #181
   http://pysvn.tigris.org/issues/show_bug.cgi?id=181

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

Title:
  12.10: pysvn import error:  _pysvn_2_7.so: undefined symbol:
  svn_sort_compare_items_as_paths

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

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


[Bug 1041756] Re: gnome-control-center and desktop environment crashes when trying to change full name in User Accounts

2012-09-10 Thread Jason Conti
Attaching a debdiff with the upstream commit that fixes the issue.

** Patch added: "gnome-control-center_fix-big-editable-labels.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1041756/+attachment/3305931/+files/gnome-control-center_fix-big-editable-labels.debdiff

** Changed in: pango1.0 (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  gnome-control-center and desktop environment crashes when trying to
  change full name in User Accounts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1041756/+subscriptions

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


[Bug 1048036] Re: Python OpenCL cannot be installed in 12.10 due to unmet dependencies

2012-09-10 Thread Jason Conti
Looks like this is a consequence of
https://bugs.launchpad.net/ubuntu/+source/pyopencl/+bug/763457 (so
perhaps a dup of the issue?)

It seems that nvidia-current/fglrx need to provide a opencl-icd virtual
package but do not yet.

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

Title:
  Python OpenCL cannot be installed in 12.10 due to unmet dependencies

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

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


[Bug 1024482] Re: Mouse cursor theme does not change from default after login

2012-09-04 Thread Jason Conti
Just tested again and I can reproduce the problem in XFCE 4.10 in
quantal as well. Login with unity-greeter, Settings/Mouse and
Touchpad/Theme, change it to something like redglass size 48, every
cursor changes but LEFT_PTR.

Logging in with GDM and the cursor changes correctly.

Logging in with lightdm-gtk-greeter, LEFT_PTR not correctly set.

Logging in with lightdm-gtk-greeter without setting the cursor on the
root window, cursor changes correctly.

Maybe this is an Ubuntu specific issue, although using the code from my
second comment above to set the cursor on the root window in a default
Fedora 17 Gnome session, and cursor theme changes and resizing stops
working for the default LEFT_PTR, so I am skeptical.

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

Title:
  Mouse cursor theme does not change from default after login

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

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


[Bug 1024482] Re: Mouse cursor theme does not change from default after login

2012-09-04 Thread Jason Conti
@Padfoot: I'm not saying this is a lightdm-gtk-greeter bug, as I said
above, it only triggers the issue. It could well be an xorg or GTK bug.

What I was saying is that if I log into Gnome with lightdm-gtk-greeter
(or unity-greeter) and the cursor is set on the root window, cursor
changing and resizing does not work correctly in Gnome (I was pretty
sure I could reproduce it on XFCE too, but maybe I am mistaken, I will
test again later). If the cursor is not set on the root window, it works
as expected (with metacity or mutter, not with compiz).

I should clarify that changing the cursor theme or size does partially
work, every cursor will change except the default LEFT_PTR cursor.

I posted what I found here in the hope that maybe somebody else would
have an idea where to look for the actual bug.

If it does work in XFCE then that would be great, maybe I can figure out
why (XFCE still uses gtk2 right? maybe it is a gtk3 bug, which would
explain why it works hovering over Firefox works, though I was pretty
sure I could reproduce it with other gtk2 windows too, have to test that
again as well).

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

Title:
  Mouse cursor theme does not change from default after login

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

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


[Bug 1045021] Re: After upgrading to 12.10 w3af wont load because of pysvn problem

2012-09-02 Thread Jason Conti
Definitely a pysvn bug:

Python 2.7.3 (default, Aug 28 2012, 08:44:13) 
[GCC 4.7.1 20120814 (prerelease)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pysvn
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib/python2.7/dist-packages/pysvn/__init__.py", line 109, in 

raise ImportError( 'pysvn was built against newer (svn, apr, etc.) 
libraries then the ones installed on this system. %s' % str(e) )
ImportError: pysvn was built against newer (svn, apr, etc.) libraries then the 
ones installed on this system. 
/usr/lib/python2.7/dist-packages/pysvn/_pysvn_2_7.so: undefined symbol: 
svn_sort_compare_items_as_paths
>>> 

Looks like there were changes to Source/setup_configure.py between 1.7.5
and 1.7.6, and now the -llibrary arguments are in the wrong position
when linking. Attaching a debdiff to fix the build. Should probably be
forwarded upstream.

** Patch added: "pysvn_fix_ld_shared.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/pysvn/+bug/1045021/+attachment/3289400/+files/pysvn_fix_ld_shared.debdiff

** Changed in: pysvn (Ubuntu)
   Status: New => Confirmed

** Summary changed:

- After upgrading to 12.10 w3af wont load because of pysvn problem
+ 12.10: pysvn import error:  _pysvn_2_7.so: undefined symbol: 
svn_sort_compare_items_as_paths

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

Title:
  12.10: pysvn import error:  _pysvn_2_7.so: undefined symbol:
  svn_sort_compare_items_as_paths

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

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


[Bug 1044353] Re: indicator-datetime-session has 100% cpu use with geoclue-geonames

2012-08-31 Thread Jason Conti
Same kind of issue as bug 919364 (and upstream
https://bugs.freedesktop.org/show_bug.cgi?id=40882 ), a bunch of the
geoclue backends error out, either because the service was discontinued
(in yahoo's case), or they just haven't updated the backend for changes
to the service. Unfortunately the upstream bugs are marked 'won't fix'.

Though it would be nice if indicator-datetime gave up after a number of
errors instead of spinning on it.

** Bug watch added: freedesktop.org Bugzilla #40882
   https://bugs.freedesktop.org/show_bug.cgi?id=40882

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

Title:
  indicator-datetime-session has 100% cpu use with geoclue-geonames

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-datetime/+bug/1044353/+subscriptions

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


[Bug 1037896] Re: Starting Firefox kills xserver immediately when using 2D desktop

2012-08-29 Thread Jason Conti
This seems be fixed in the latest nvidia-current release:

nvidia-graphics-drivers (304.43-0ubuntu1) quantal; urgency=low

  * debian/rules:
- Add support for X ABI 13.
  * New upstream release (LP: #1037483):
- Added support for the following GPUs:
  o GeForce GTX 660 Ti
  o Quadro K5000
  o Quadro K5000M
  o Quadro K4000M
  o Quadro K3000M
  o NVS 510
- Fixed a bug that caused pre-release versions of
  X.Org xserver 1.13 to crash when certain GLX
  operations were performed, such as when starting
  Firefox.
- Fixed a bug that caused VDPAU to hang when
  expanding the YouTube Flash Player.
 -- Alberto MiloneTue, 28 Aug 2012 12:47:45 
+0200

** Changed in: nvidia-graphics-drivers (Ubuntu Quantal)
   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/1037896

Title:
  Starting Firefox kills xserver immediately when using 2D desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/1037896/+subscriptions

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


[Bug 1024482] Re: Mouse cursor theme does not change from default after login

2012-08-17 Thread Jason Conti
I should also note that setting the cursor explicitly to the LEFT_PTR in
any gtk app will cause that app to show cursor updates properly when
hovered over (which is why I think Firefox still works when you hover
over it as mentioned in bug #86184 ):

#include 
#include 

int
main()
{
  gtk_init(NULL, NULL);

  GdkCursor *default_cursor = gdk_cursor_new(GDK_ARROW);

  GtkWidget *window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
  g_signal_connect(G_OBJECT(window), "destroy", gtk_main_quit, NULL);
  gtk_widget_realize(window);
  gtk_widget_show(window);

  gdk_window_set_cursor(gtk_widget_get_window(window), default_cursor);
  g_object_unref(default_cursor);

  gtk_main();
  return 0;
}

And we can force a cursor update by setting the LEFT_PTR on the root
window (but this will also break future cursor updates if you had logged
in with gdm or lightdm-gtk-greeter with the patch above):

#include 
#include 

gboolean idle_cb(gpointer user_data)
{
  gtk_main_quit();
  return FALSE;
}

int main()
{
  gtk_init (NULL, NULL);

  GdkCursor *cursor = gdk_cursor_new (GDK_LEFT_PTR);
  gdk_window_set_cursor (gdk_get_default_root_window (), cursor);
  g_object_unref (cursor);

  g_idle_add (idle_cb, NULL);

  gtk_main (); 
  return 0;
}

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

Title:
  Mouse cursor theme does not change from default after login

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

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


[Bug 1024482] Re: Mouse cursor theme does not change from default after login

2012-08-17 Thread Jason Conti
We have actually been looking into this issue recently in #ubuntu, so I
thought I'd add my finding here.

As mentioned in the linked debian bug, logging into the session with gdm
fixes the issue (unless you are logging into a session that uses
compiz). And at the bottom of the report, lightdm-kde-greeter works as
well.

The only difference I found is that both lightdm-gtk-greeter and unity-
greeter set the cursor on the root window:

/* Set default cursor */
gdk_window_set_cursor (gdk_get_default_root_window (), gdk_cursor_new 
(GDK_LEFT_PTR));

(for lightdm-gtk-greeter)

And I found that commenting that line out, and instead setting the
cursor on login_window:

--- lightdm-gtk-greeter-1.1.5.orig/src/lightdm-gtk-greeter.c
+++ lightdm-gtk-greeter-1.1.5/src/lightdm-gtk-greeter.c
@@ -717,7 +717,7 @@ main (int argc, char **argv)
 return EXIT_FAILURE;
 
 /* Set default cursor */
-gdk_window_set_cursor (gdk_get_default_root_window (), gdk_cursor_new 
(GDK_LEFT_PTR));
+//gdk_window_set_cursor (gdk_get_default_root_window (), gdk_cursor_new 
(GDK_LEFT_PTR));
 
 /* Load background */
 value = g_key_file_get_value (config, "greeter", "background", NULL);
@@ -940,6 +940,9 @@ main (int argc, char **argv)
 gtk_widget_show (GTK_WIDGET (login_window));
 center_window (login_window);
 
+gdk_window_set_cursor (gtk_widget_get_window (login_window), 
gdk_cursor_new (GDK_LEFT_PTR));
+
+
 gtk_widget_show (GTK_WIDGET (panel_window));
 GtkAllocation allocation;
 gtk_widget_get_allocation (GTK_WIDGET (panel_window), &allocation);

Rebuilding lightdm-gtk-greeter and then logging in, cursor updating
should work as expected. I'm not really suggesting this as a fix because
it has its own issues (unless you are over the login_window, the cursor
with be the X), but it demonstrates the problem.

Test Case:
1) Log in with lightdm-gtk-greeter to Gnome Classic (no effects) [or 
gnome-shell or really anything without compiz]
2) Run: gsettings set org.gnome.desktop.interfaces cursor-size 48
3) Notice that every cursor except the default left pointer is resized

Patch lightdm-gtk-greeter as above or use gdm and the cursor will
immediately resize. (Changing cursor-theme has the same sort of effect,
but we were trying to figure out why cursor-size didn't work).

I think the compiz problem is that compiz also sets the cursor on the
root window.

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

Title:
  Mouse cursor theme does not change from default after login

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

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


[Bug 1037566] Re: invalid Python installation: unable to open /usr/lib/python3.3/config-3.3m/Makefile

2012-08-16 Thread Jason Conti
Looks like the configs were multiarched in python3.3 but
distutils.sysconfig wasn't updated to reflect the changes. Needs at
least two changes, in get_python_inc() and  get_makefile_filename().

I'll attach a patch that let's me install a simple test c module here,
using sysconfig.get_config_var("MULTIARCH") to find the multiarch path.
Not sure if there is another way it should be done. (Seems like lots of
duplication between sysconfig and distutils.sysconfig)

** Patch added: "python3.3-distutils-multiarch.patch"
   
https://bugs.launchpad.net/ubuntu/+source/python3.3/+bug/1037566/+attachment/3264264/+files/python3.3-distutils-multiarch.patch

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

Title:
  invalid Python installation: unable to open
  /usr/lib/python3.3/config-3.3m/Makefile

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.3/+bug/1037566/+subscriptions

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


[Bug 1036260] Re: Running gtester-report on gtester output raises KeyError

2012-08-14 Thread Jason Conti
Thanks for the bug report. I found an upstream bug here:
https://bugzilla.gnome.org/show_bug.cgi?id=668035 and I submitted a
simple patch to fix it.

You can workaround the issue by manually adding:


PACKAGENAME
VERSION
REVISION


to the generated xml. It seems that is exactly what glib does, to
collect multiple reports together. (See Makefile.decl in the glib
source)

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

** Also affects: glib via
   https://bugzilla.gnome.org/show_bug.cgi?id=668035
   Importance: Unknown
   Status: Unknown

** Changed in: glib2.0 (Ubuntu)
   Status: New => Confirmed

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

Title:
  Running gtester-report on gtester output raises KeyError

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

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


[Bug 1035628] Re: [Regression] Alt+Tab loses brings other window to the front but loses focus entirely.

2012-08-13 Thread Jason Conti
After playing around a bit I can reproduce it with alt+tab as well, it
just doesn't happen as frequently. For testing I only had two windows
open, gnome-terminal and Chrome. It seems to occur most frequently with
a slower alt+tab, but fast enough to avoid the window switcher appearing
on screen. Starting with gnome-terminal, alt+tab to Chrome, alt+tab back
to the terminal, then alt+tab too slowly so the hud pops up briefly
followed by alt so it immediately disappears and the terminal will be
the front window but unfocused.

With three windows open (two terminals and Chrome), I managed to get
Chrome to lose focus, but I couldn't repeat it. I repeated the above 5
or 6 times (but it isn't consistant).

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

Title:
  [Regression] Alt+Tab loses brings other window to the front but loses
  focus entirely.

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

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


[Bug 1035996] Re: libcrypt and gcc ain't providing crypt() as advertised

2012-08-13 Thread Jason Conti
Thanks for the bug report. With the changes to the linker in 11.10, you
must specify the -llibrary arguments after the objects that reference
them. So in the above case:

gcc crypt.c -lcrypt

Please see http://wiki.debian.org/ToolChain/DSOLinking for an overview
of the changes.

** Changed in: manpages (Ubuntu)
   Status: New => Invalid

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

Title:
  libcrypt and gcc ain't providing crypt() as advertised

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

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


[Bug 1035628] Re: [Regression] Alt+Tab loses brings other window to the front but loses focus entirely.

2012-08-11 Thread Jason Conti
I've had a similar problem, but with alt+`. Switch between two windows
quickly, and sometimes they don't switch, sometimes they will lose focus
in the switch.

Another weird issue I've noticed:

* Open 2 Terminal windows
* Hold alt+` until the window previews appear
* Keep holding the key combination and after a few seconds, the window previews 
will swap positions (so if I try to swap windows quickly, I will select the 
wrong one)

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

Title:
  [Regression] Alt+Tab loses brings other window to the front but loses
  focus entirely.

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

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


[Bug 1033892] Re: qrencode truncates input

2012-08-07 Thread Jason Conti
Ahh, yes, in qrenc.c the readStdin function doesn't keep track of the
number of bytes read, and just terminates the buffer with '\0'.

** Changed in: qrencode (Ubuntu)
   Status: New => Confirmed

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

Title:
  qrencode truncates input

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

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


[Bug 1033892] Re: qrencode hangs on random input

2012-08-07 Thread Jason Conti
Are you sure the hang you are experiencing isn't just the time it takes
your system to gather enough entropy to produce 200 random bytes?

On my netbook it takes as long as 30 seconds before I get 200 bytes of
output from /dev/random, but afterwards the qrencode command seems to
complete successfully.

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

Title:
  qrencode hangs on random input

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

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


[Bug 1032639] Re: can not link against libxml2

2012-08-03 Thread Jason Conti
Thanks for the bug report. With the changes to the linker in 11.10+, you
must be sure when compiling to specify the -llibrary arguments after the
objects that reference them.

In the case above:

gcc -o main $(xml2-config --cflags --libs) main.o

should be:

gcc -o main main.o $(xml2-config --cflags --libs)

so that the -llibrary args end up at the end of the command line. Please see 
http://wiki.debian.org/ToolChain/DSOLinking
for an overview of the changes.

** Changed in: libxml2 (Ubuntu)
   Status: New => Invalid

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

Title:
  can not link against libxml2

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

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


[Bug 1030952] Re: zgeevx undefined

2012-07-31 Thread Jason Conti
** Changed in: lapack (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  zgeevx undefined

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

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


[Bug 1030636] Re: does not open in ubuntu 12.04

2012-07-30 Thread Jason Conti
** Changed in: wine1.4 (Ubuntu)
   Status: New => Invalid

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

Title:
  does not open in ubuntu 12.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wine1.4/+bug/1030636/+subscriptions

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


[Bug 1030952] Re: zgeevx undefined

2012-07-30 Thread Jason Conti
Thanks for the bug report. Could you please provide a sample file and
the command line used to compile it where it fails with the above error?

I am not very familiar with fortran, but my guess is this has to do with
the linking changes in 11.10+. I just compiled:
http://www.physics.orst.edu/~rubin/nacphy/lapack/codes/eigen-f.html on
12.04 using the command line:

gfortran test.f90 -llapack;

and it compiles without errors. However using:

gfortran -llapack test.f90;

will fail with the error above, because of the linker changes (but will
succeed on 10.04). If this is the problem, see
http://wiki.debian.org/ToolChain/DSOLinking for a quick overview of the
changes.

** Changed in: lapack (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/1030952

Title:
  zgeevx undefined

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

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


[Bug 1029726] Re: Cycles rendering engine cannot be enabled.

2012-07-27 Thread Jason Conti
*** This bug is a duplicate of bug 999024 ***
https://bugs.launchpad.net/bugs/999024

Thanks for the bug report. Cycles support cannot be enabled in 12.04
since we do not have openimageio, though this package was added to
12.10. I am going to mark this as a duplicate of bug #999024 . As a side
note, blender 2.63a-2 uploaded about a week ago in debian enables cycles
support, so we should be able to get support in 12.10 soon.

** This bug has been marked a duplicate of bug 999024
   New cycle view is missing in package

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

Title:
  Cycles rendering engine cannot be enabled.

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

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


[Bug 1021783] Re: invalid behavior of curses.newpad().refresh()

2012-07-26 Thread Jason Conti
** Description changed:

+ [Precise SRU Justification]
+ 
+ Valid python programs using the refresh method with the optional
+ arguments on a curses.newpad object will fail with a similar exception:
+ 
+ Traceback (most recent call last):
+   File "newpad-refresh.py", line 10, in 
+ pad.refresh(0, 0, 0, 0, size[0] - 1, size[1] - 1)
+ TypeError: refresh() takes exactly 0 arguments (6 given)
+ 
+ This breaks at least one of the examples in the python documentation and
+ I believe limits the usefulness of the pad object, since it allows one
+ to only display a portion of the pad with the refresh method.
+ 
+ [Fix]
+ 
+ Updates the ncursesw-include.diff patch with the version in quantal,
+ adding /usr/include/ncursesw/ to the search path in configure.in. This
+ allows the build scripts to find curses and builds the curses module
+ with the correct number of arguments to refresh.
+ 
+ [Regression Potential]
+ 
+ The regression potential should be minor since it just enables a build
+ option already enabled on the python2.7 package (as well as python3.2
+ and python3.3 in quantal).
+ 
+ [Test Case]
+ 
+ Running the following code with python3 will produce the above exception
+ without the patch, and prompt to "press q" to quit the script with the
+ patch.
+ 
+ ##
+ import curses
+ 
+ try:
+ screen = curses.initscr()
+ curses.cbreak()
+ 
+ pad = curses.newpad(10, 10)
+ pad.addstr(0, 0, "press q")
+ size = screen.getmaxyx()
+ pad.refresh(0, 0, 0, 0, size[0] - 1, size[1] - 1)
+ while True:
+ ch = pad.getch()
+ if ch == ord("q"):
+ break
+ pass
+ pass
+ finally:
+ curses.nocbreak()
+ curses.endwin()
+ pass
+ ###
+ 
+ 
===
+ 
  There is invalid behavior of builtin curses module in amd64 version
  python3.2.
  
  From API spec, `refresh()` method of a window object returned by
  `curses.newpad(h,w)` should accept 6 arguments; `pad.refresh(pt, pl, st,
  sl, sb, sr)`.
  
  - http://docs.python.org/py3k/library/curses.html#curses.newpad
  
  But python3.2 package in amd64 ubuntu precise does not accept arguments.
  
- [bug occured snippet: newpad-refresh.py]
- ##
- import curses
- 
- try:
- screen = curses.initscr()
- curses.cbreak()
- 
- pad = curses.newpad(10, 10)
- pad.addstr(0, 0, "press q")
- size = screen.getmaxyx()
- pad.refresh(0, 0, 0, 0, size[0] - 1, size[1] - 1)
- while True:
- ch = pad.getch()
- if ch == ord("q"):
- break
- pass
- pass
- finally:
- curses.nocbreak()
- curses.endwin()
- pass
- ###
- 
- [execution result]
- ###
- $ python3 newpad-refresh.py 
- Traceback (most recent call last):
-   File "newpad-refresh.py", line 10, in 
- pad.refresh(0, 0, 0, 0, size[0] - 1, size[1] - 1)
- TypeError: refresh() takes exactly 0 arguments (6 given)
- ###
  
  The code is worked well on python2.7 pakcage and self compiled python3.2.3.
  There may be a package build problem at python3.2 or ncurses.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: python3.2 3.2.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Uname: Linux 3.2.0-26-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  Date: Sat Jul  7 00:09:05 2012
  ProcEnviron:
-  TERM=xterm
-  PATH=(custom, user)
-  LANG=ja_JP.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm
+  PATH=(custom, user)
+  LANG=ja_JP.UTF-8
+  SHELL=/bin/bash
  SourcePackage: python3.2
  UpgradeStatus: Upgraded to precise on 2012-03-21 (106 days ago)

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

Title:
  invalid behavior of curses.newpad().refresh()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.2/+bug/1021783/+subscriptions

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

[Bug 1021783] Re: invalid behavior of curses.newpad().refresh()

2012-07-26 Thread Jason Conti
Updated the fix from quantal for the version of python3.2 in precise.

** Patch added: "python3.2_3.2.3-0ubuntu3.1.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/python3.2/+bug/1021783/+attachment/3237635/+files/python3.2_3.2.3-0ubuntu3.1.debdiff

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

Title:
  invalid behavior of curses.newpad().refresh()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.2/+bug/1021783/+subscriptions

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


[Bug 1027706] Re: dput misses some quotes to verify signature on special paths

2012-07-23 Thread Jason Conti
*** This bug is a duplicate of bug 995521 ***
https://bugs.launchpad.net/bugs/995521

Thanks for the bug report. This bug has been reported at bug #995521 ,
so I am going to mark this as a duplicate of that bug. There is a patch
there which adds proper quoting to the check_signature function. (Tested
and it works here so someone just needs to prepare an upload).

** This bug has been marked a duplicate of bug 995521
   dput warnings if there are spaces in path

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

Title:
  dput misses some quotes to verify signature on special paths

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

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


[Bug 1027594] Re: Launcher icon size slider vanished from "appearance" tab - no way to change icon size.

2012-07-22 Thread Jason Conti
Thanks for the screenshots. It turns out I am able to reproduce this in
the unity-2d session. Bug #1005136 is about adding the option for that
session.

Please check:

echo $DESKTOP_SESSION;

to see if you are running the ubuntu-2d session. If so, either try the
Ubuntu session or there are workarounds for 12.04 listed at this
askubuntu question: http://askubuntu.com/questions/82395/how-can-i
-change-the-size-of-unity-2d-launcher-icons

Sorry for the confusion.

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

Title:
  Launcher icon size slider vanished from "appearance" tab - no way to
  change icon size.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1027594/+subscriptions

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


  1   2   3   >