[Desktop-packages] [Bug 1551273] Re: Software Center only provides a subset of software available in repos

2016-02-29 Thread Kiwinote
Reassigning to gnome-software rather than the (ubuntu) software-center.
At the moment gnome-software appears to show only those apps which are
both already installed on my system and have a desktop file.

** Package changed: software-center (Ubuntu) => gnome-software (Ubuntu)

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1551273

Title:
  Software Center only provides a subset of software available in repos

Status in gnome-software package in Ubuntu:
  New

Bug description:
  I needed to re-install recordmydesktop for some debug usage and opened
  up the Software Center in Xenial and attempted to do so.

  Searches for 'recordmydesktop' in the software-center returned
  nothing, as the screenshot shows.

  However, it's plainly available if you do an apt-cache search:

  bladernr@galactica:~$ apt-cache search recordmydesktop
  gtk-recordmydesktop - Graphical frontend for recordMyDesktop screencast tool
  recordmydesktop - Captures audio-video data of a Linux desktop session

  So it seems that the software-center is not aware of some things
  (maybe only in Universe?)

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: software-center (not installed)
  ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
  Uname: Linux 4.4.0-8-generic x86_64
  ApportVersion: 2.20-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Feb 29 10:09:46 2016
  InstallationDate: Installed on 2016-02-11 (17 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160210)
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1306543] [NEW] python3.4 breaks installing deb files

2014-04-11 Thread Kiwinote
Public bug reported:

[If you're facing this issue, please use bug 1290228 , so that we can
use this bug for the implementation of the fix - thanks!]

Steps to reproduce:
- run trusty (updated sometime in the last ~month)
- open ?any? deb file with an aptdaemon client (software-center, appgrid, etc)
- installation will fail (bug 1290228 etc)

After trailing through aptdaemon and python-apt code it seems that there might 
be multiple manifestations of this bug
python-apt: progress/base.py: InstallProgress.run()
 os._exit(os.spawnlp(os.P_WAIT, dpkg, dpkg, --status-fd, 
 str(self.write_stream.fileno()), -i, obj))
aptdaemon: progress.py: DaemonDpkgInstallProgress._child()
 args = [apt_pkg.config[Dir::Bin::DPkg], --status-fd, 
 str(self.status_child_fd)] #(...)
 os.execlp(apt_pkg.config[Dir::Bin::DPkg], *args)
I think there are likely to be other points of failure too.

Noteworthy is the following:
pgg@four:~$ sudo python3.4 -c import os; (statusfd, writefd) = os.pipe(); 
write_stream = os.fdopen(writefd, 'w'); print(write_stream.fileno()); r = 
os.execlp('/usr/bin/dpkg', '/usr/bin/dpkg', '--status-fd', 
str(write_stream.fileno()), '-i', 
'/home/pgg/Downloads/appgrid_0.1.100~trusty_all.deb'); print(r)
4
dpkg: error: unable to read filedescriptor flags for package status and 
progress file descriptor: Bad file descriptor

pgg@four:~$ sudo python3.3 -c import os; (statusfd, writefd) = os.pipe(); 
write_stream = os.fdopen(writefd, 'w'); print(write_stream.fileno()); r = 
os.execlp('/usr/bin/dpkg', '/usr/bin/dpkg', '--status-fd', 
str(write_stream.fileno()), '-i', 
'/home/pgg/Downloads/appgrid_0.1.100~trusty_all.deb'); print(r)
4
(Reading database ... 227994 files and directories currently installed.)
Preparing to unpack .../appgrid_0.1.100~trusty_all.deb (etc, installs properly)

This lead me to http://legacy.python.org/dev/peps/pep-0446/ which means
that file descriptors can't be inherited in python 3.4.

My knowledge of python-apt and aptdaemon isn't really good enough to
know what the best way forward is to resolve this in the least
disruptive and safest way, but it would be nice if people could install
deb files in 14.04. I've subscribed a few people who might have ideas.

** Affects: appgrid
 Importance: Undecided
 Status: New

** Affects: aptdaemon
 Importance: Undecided
 Status: New

** Affects: python-apt (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: software-center (Ubuntu)
 Importance: Critical
 Status: Triaged

** Also affects: appgrid
   Importance: Undecided
   Status: New

** Also affects: aptdaemon
   Importance: Undecided
   Status: New

** Also affects: python-apt (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1306543

Title:
  python3.4 breaks installing deb files

Status in App Grid:
  New
Status in Aptdaemon:
  New
Status in “python-apt” package in Ubuntu:
  New
Status in “software-center” package in Ubuntu:
  Triaged

Bug description:
  [If you're facing this issue, please use bug 1290228 , so that we can
  use this bug for the implementation of the fix - thanks!]

  Steps to reproduce:
  - run trusty (updated sometime in the last ~month)
  - open ?any? deb file with an aptdaemon client (software-center, appgrid, etc)
  - installation will fail (bug 1290228 etc)

  After trailing through aptdaemon and python-apt code it seems that there 
might be multiple manifestations of this bug
  python-apt: progress/base.py: InstallProgress.run()
   os._exit(os.spawnlp(os.P_WAIT, dpkg, dpkg, --status-fd, 
str(self.write_stream.fileno()), -i, obj))
  aptdaemon: progress.py: DaemonDpkgInstallProgress._child()
   args = [apt_pkg.config[Dir::Bin::DPkg], --status-fd, 
str(self.status_child_fd)] #(...)
   os.execlp(apt_pkg.config[Dir::Bin::DPkg], *args)
  I think there are likely to be other points of failure too.

  Noteworthy is the following:
  pgg@four:~$ sudo python3.4 -c import os; (statusfd, writefd) = os.pipe(); 
write_stream = os.fdopen(writefd, 'w'); print(write_stream.fileno()); r = 
os.execlp('/usr/bin/dpkg', '/usr/bin/dpkg', '--status-fd', 
str(write_stream.fileno()), '-i', 
'/home/pgg/Downloads/appgrid_0.1.100~trusty_all.deb'); print(r)
  4
  dpkg: error: unable to read filedescriptor flags for package status and 
progress file descriptor: Bad file descriptor

  pgg@four:~$ sudo python3.3 -c import os; (statusfd, writefd) = os.pipe(); 
write_stream = os.fdopen(writefd, 'w'); print(write_stream.fileno()); r = 
os.execlp('/usr/bin/dpkg', '/usr/bin/dpkg', '--status-fd', 
str(write_stream.fileno()), '-i', 
'/home/pgg/Downloads/appgrid_0.1.100~trusty_all.deb'); print(r)
  4
  (Reading database ... 227994 files and directories currently installed.)
  Preparing to unpack .../appgrid_0.1.100~trusty_all.deb (etc, installs 
properly)

  This lead me to 

[Desktop-packages] [Bug 1193139] Re: Strange menu entries in software-center in saucy.

2013-06-26 Thread Kiwinote
Could you perhaps post a screenshot of the menu? Thanks

** Changed in: software-center (Ubuntu)
   Status: Invalid = Incomplete

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1193139

Title:
  Strange menu entries in software-center in saucy.

Status in “software-center” package in Ubuntu:
  Incomplete

Bug description:
  This is probably an easy fix, and maybe not even necesary to report a
  bug on. You're welcome to inform me if that is the case.

  However:
  Software-center 13.05-0ubuntu1 in saucy has some strange menu entries.

  For instance in the edit menu there are all kinds of gtk-undo, gtk-redo, 
gtk-copy, gtk-delete. Probably originating in some kind of 
  template of how a gtk edit menu should look, but those entries should 
probably be removed in software-center.

  
  lsb_release -a  uname -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu Saucy Salamander (development branch)
  Release:  13.10
  Codename: saucy
  Linux lars-VBox-1310 3.9.0-6-generic #14-Ubuntu SMP Wed Jun 19 17:10:14 UTC 
2013 i686 i686 i686 GNU/Linux

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: software-center 13.05-0ubuntu1
  ProcVersionSignature: Ubuntu 3.9.0-6.14-generic 3.9.6
  Uname: Linux 3.9.0-6-generic i686
  ApportVersion: 2.10.2-0ubuntu1
  Architecture: i386
  Date: Thu Jun 20 23:38:01 2013
  InstallationDate: Installed on 2013-05-30 (21 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Alpha i386 (20130530)
  MarkForUpload: True
  PackageArchitecture: all
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1097315] Re: Xorg hangs in drm_helper_connector_dpms

2013-02-18 Thread Kiwinote
Unfortunately I am still able to trigger freezes after having installed
linux 3.8.0-6.13. (I come from bug 1048230 which was marked as a
duplicate of this one.)

** Attachment added: kern.log
   
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1097315/+attachment/3534488/+files/kern.log

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1097315

Title:
  Xorg hangs in drm_helper_connector_dpms

Status in “linux” package in Ubuntu:
  Fix Released
Status in “xserver-xorg-video-intel” package in Ubuntu:
  Triaged
Status in “linux” source package in Raring:
  Fix Released
Status in “xserver-xorg-video-intel” source package in Raring:
  Triaged

Bug description:
  After upgrade to raring and reboot, I'm seeing frequent Freezes in
  normal usage of X.  The mouse cursor moves but cannot interact with
  windows.

  ctrl-alt-f1 will work, and I can login there.
  Running 'sudo restart lightdm' from the console ends up with multiple X 
processes running, and screen goes blank, and I can no longer use the console 
at all (although ssh access is still available).

  Here is info in /var/log/syslog:
   INFO: task kworker/0:1:6346 blocked for more than 120 seconds.
   echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this message.
   kworker/0:1 D 88013bc13e40 0  6346  2 0x
880089a55ce8 0002 88009b5cae00 880089a55fd8
880089a55fd8 880089a55fd8 81c14440 88009b5cae00
8801304e7388 88009b5cae00 8801304e738c 
   Call Trace:
[816a4ee9] schedule+0x29/0x70
[816a51be] schedule_preempt_disabled+0xe/0x10
[816a3cd7] __mutex_lock_slowpath+0xd7/0x150
[816a37aa] mutex_lock+0x2a/0x50
[a0075a67] output_poll_execute+0x57/0x1a0 [drm_kms_helper]
[810752ae] process_one_work+0x13e/0x4e0
[a0075a10] ? drm_helper_connector_dpms+0x130/0x130 
[drm_kms_helper]
[81076b6e] worker_thread+0x16e/0x480
[81076a00] ? manage_workers+0x2a0/0x2a0
[8107bd80] kthread+0xc0/0xd0
[8107bcc0] ? kthread_create_on_node+0x120/0x120
[816ae6ac] ret_from_fork+0x7c/0xb0
[8107bcc0] ? kthread_create_on_node+0x120/0x120
   INFO: task Xorg:6560 blocked for more than 120 seconds.
   echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this message.
   XorgD 88013bc93e40 0  6560   1538 0x0040
8801312f5ae8 0002 880130ae8000 8801312f5fd8
8801312f5fd8 8801312f5fd8 880135b41700 880130ae8000
88012fd73000 88012fd7ae68 8801304e7000 0001
   Call Trace:
[816a4ee9] schedule+0x29/0x70
[a00a4fe5] intel_crtc_wait_for_pending_flips+0x75/0xd0 [i915]
[8107c6c0] ? finish_wait+0x80/0x80
[a00a7647] i9xx_crtc_disable+0x87/0x180 [i915]
[a00ae58c] intel_set_mode+0x30c/0x960 [i915]
[a00af306] intel_crtc_set_config+0x726/0x970 [i915]
[a0014119] drm_mode_setcrtc+0x119/0x5a0 [drm]
[a0004553] drm_ioctl+0x4d3/0x580 [drm]
[a0014000] ? drm_mode_setplane+0x370/0x370 [drm]
[8119d0c9] do_vfs_ioctl+0x99/0x590
[81582528] ? sock_setsockopt+0xa8/0x820
[816a5dfe] ? _raw_spin_lock+0xe/0x20
[8119d651] sys_ioctl+0x91/0xb0
[816ae75d] system_call_fastpath+0x1a/0x1f
   INFO: task kworker/0:1:6346 blocked for more than 120 seconds.
   echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this message.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: xorg 1:7.7+1ubuntu4
  ProcVersionSignature: Ubuntu 3.7.0-7.15-generic 3.7.0
  Uname: Linux 3.7.0-7-generic x86_64
  ApportVersion: 2.8-0ubuntu1
  Architecture: amd64
  Date: Tue Jan  8 10:38:55 2013
  DistroCodename: raring
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  GpuHangFrequency: Several times a day
  InstallationDate: Installed on 2011-10-19 (447 days ago)
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: Upgraded to raring on 2013-01-07 (0 days ago)
  ---
  ApportVersion: 2.8-0ubuntu2
  Architecture: amd64
  CompizPlugins: 
[core,bailer,detection,composite,opengl,compiztoolbox,decor,snap,commands,mousepoll,grid,move,place,imgpng,session,vpswitch,resize,regex,gnomecompat,unitymtgrabhandles,wall,resizeinfo,animation,workarounds,fade,scale,expo,ezoom,unityshell]
  DistUpgraded: 2013-01-07 15:26:03,808 DEBUG entry '# deb-src 
http://ppa.launchpad.net/smoser/ppa/ubuntu raring main # disabled on upgrade to 
raring' was disabled (unknown 

[Desktop-packages] [Bug 1048230] Re: display freezes

2013-02-02 Thread Kiwinote
Hi - sorry for losing track of this bug. The freezes persist in raring
with all the latest updates, so I'm reopening this bug. I've done a
little research and have managed to obtain a kernel log with
drm.debug=6. Perhaps this helps? If you need any other info please let
me know.

Feb  2 22:56:45 fourish kernel: [  721.108138] INFO: task Xorg:1059 blocked for 
more than 120 seconds.
Feb  2 22:56:45 fourish kernel: [  721.108157] echo 0  
/proc/sys/kernel/hung_task_timeout_secs disables this message.
Feb  2 22:56:45 fourish kernel: [  721.108167] XorgD f7400100 0 
 1059   1025 0x0044
Feb  2 22:56:45 fourish kernel: [  721.108187]  cb4fdd54 00203086 e25d4ce0 
f7400100 f7400100 cb4fdcf8 c19c2100 0d3071d7
Feb  2 22:56:45 fourish kernel: [  721.108217]  0086 c19c2100 f7400100 
f68599a0 0001 0001 c9f4a0c4 0001
Feb  2 22:56:45 fourish kernel: [  721.108243]   c9e74400 000bdd3c 
c9e74c00 cb4fdd2c c103ce48 cb4fdd40 cb4fdd38
Feb  2 22:56:45 fourish kernel: [  721.108271] Call Trace:
Feb  2 22:56:45 fourish kernel: [  721.108303]  [c103ce48] ? 
default_spin_lock_flags+0x8/0x10
Feb  2 22:56:45 fourish kernel: [  721.108321]  [c103ce48] ? 
default_spin_lock_flags+0x8/0x10
Feb  2 22:56:45 fourish kernel: [  721.108339]  [c16103ed] ? 
_raw_spin_lock_irqsave+0x2d/0x40
Feb  2 22:56:45 fourish kernel: [  721.108355]  [c160f533] schedule+0x23/0x60
Feb  2 22:56:45 fourish kernel: [  721.108453]  [f88d31d5] 
intel_crtc_wait_for_pending_flips+0x55/0xa0 [i915]
Feb  2 22:56:45 fourish kernel: [  721.108471]  [c106bc20] ? 
finish_wait+0x70/0x70
Feb  2 22:56:45 fourish kernel: [  721.108550]  [f88d597a] 
i9xx_crtc_disable+0x6a/0x150 [i915]
Feb  2 22:56:45 fourish kernel: [  721.108632]  [f88d9ede] 
intel_crtc_update_dpms+0x5e/0x90 [i915]
Feb  2 22:56:45 fourish kernel: [  721.108712]  [f88dfa56] 
intel_crt_dpms+0x66/0xa0 [i915]
Feb  2 22:56:45 fourish kernel: [  721.108780]  [f8653505] 
drm_mode_obj_set_property_ioctl+0x385/0x3a0 [drm]
Feb  2 22:56:45 fourish kernel: [  721.108797]  [c160e098] ? 
mutex_lock+0x18/0x40
Feb  2 22:56:45 fourish kernel: [  721.108857]  [f8653557] 
drm_mode_connector_property_set_ioctl+0x37/0x50 [drm]
Feb  2 22:56:45 fourish kernel: [  721.108917]  [f8653520] ? 
drm_mode_obj_set_property_ioctl+0x3a0/0x3a0 [drm]
Feb  2 22:56:45 fourish kernel: [  721.108971]  [f8643eda] 
drm_ioctl+0x42a/0x490 [drm]
Feb  2 22:56:45 fourish kernel: [  721.109036]  [f8653520] ? 
drm_mode_obj_set_property_ioctl+0x3a0/0x3a0 [drm]
Feb  2 22:56:45 fourish kernel: [  721.109059]  [c115f187] ? 
do_sync_read+0x97/0xd0
Feb  2 22:56:45 fourish kernel: [  721.109114]  [f8643ab0] ? 
drm_copy_field+0x80/0x80 [drm]
Feb  2 22:56:45 fourish kernel: [  721.109131]  [c116f0a0] 
do_vfs_ioctl+0x80/0x580
Feb  2 22:56:45 fourish kernel: [  721.109149]  [c109a0bb] ? 
ktime_get_ts+0x4b/0x150
Feb  2 22:56:45 fourish kernel: [  721.109165]  [c116f60b] sys_ioctl+0x6b/0x80
Feb  2 22:56:45 fourish kernel: [  721.109182]  [c161758d] 
sysenter_do_call+0x12/0x28

** Changed in: xserver-xorg-video-intel (Ubuntu)
   Status: Expired = New

** Attachment added: kernel.log
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1048230/+attachment/3512626/+files/kernel.log

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-intel in Ubuntu.
https://bugs.launchpad.net/bugs/1048230

Title:
  display freezes

Status in Compiz:
  Expired
Status in “compiz” package in Ubuntu:
  Expired
Status in “xserver-xorg-video-intel” package in Ubuntu:
  New

Bug description:
  (compiz may or may not be the right place for this - please relocate
  if needed)

  When running unity, every now and then the display will freeze. The
  image remains visible on the screen, but is static - the cursor can
  still be moved around the screen, and ctrl+alt+F1 still brings you to
  a virtual terminal. When running top from tty1, it can be noted that
  the compiz process is still running, also no crashes appear in
  /var/crash/*. The only way to resolve this seems to be a reboot. The
  issue started occurring about 2-3 weeks ago. From memory I have
  encountered this lockup maybe once or twice whilst only using the
  internal monitor of the netbook. When an external monitor is connected
  however, within a few minutes the display will freeze. The machine in
  question is a dell mini 9 using the i915 driver.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: compiz 1:0.9.8.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.5.0-14.15-generic 3.5.3
  Uname: Linux 3.5.0-14-generic i686
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.5.1-0ubuntu7
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CurrentDmesg:
   [   14.104766] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
   [   14.464451] init: plymouth-stop pre-start process (1126) 

[Desktop-packages] [Bug 1100781] Re: Banshee recommended for me three times

2013-01-17 Thread Kiwinote
Also for synaptic, hugin etc. It is caused by s-c allowing more than one
entry per pkgname (ie one entry per desktop file in the package).

** Changed in: software-center (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1100781

Title:
  Banshee recommended for me three times

Status in “software-center” package in Ubuntu:
  Triaged

Bug description:
  In current raring, Software Center is showing me three tiles for
  Banshee in the Recommended for You pane.  I checked and they are all
  the 'banshee' package, not just three banshee-related packages with
  similar labels.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: software-center 5.5.3
  ProcVersionSignature: Ubuntu 3.8.0-0.4-generic 3.8.0-rc3
  Uname: Linux 3.8.0-0-generic x86_64
  ApportVersion: 2.8-0ubuntu1
  Architecture: amd64
  Date: Thu Jan 17 08:57:50 2013
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-precise-amd64-20120703-2
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2013-01-09 (7 days ago)
  InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120703-15:08
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to raring on 2013-01-16 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1048230] Re: display freezes

2012-09-28 Thread Kiwinote
After installing https://launchpad.net/~tjaalton/+archive/ppa/+files
/xserver-xorg-video-intel_2.20.8-0ubuntu2.1_i386.deb and restarting , I
can still reproduce this, so unduping.

** This bug is no longer a duplicate of bug 966744
   [i965] Resume from suspend leaves me with black screen or a screen of the 
desktop before it suspended. Compiz hung in intel_update_renderbuffers() from 
intel_prepare_render() from brw_draw_prims()

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to mesa in Ubuntu.
https://bugs.launchpad.net/bugs/1048230

Title:
  display freezes

Status in Compiz:
  Incomplete
Status in “compiz” package in Ubuntu:
  Incomplete
Status in “mesa” package in Ubuntu:
  Incomplete

Bug description:
  (compiz may or may not be the right place for this - please relocate
  if needed)

  When running unity, every now and then the display will freeze. The
  image remains visible on the screen, but is static - the cursor can
  still be moved around the screen, and ctrl+alt+F1 still brings you to
  a virtual terminal. When running top from tty1, it can be noted that
  the compiz process is still running, also no crashes appear in
  /var/crash/*. The only way to resolve this seems to be a reboot. The
  issue started occurring about 2-3 weeks ago. From memory I have
  encountered this lockup maybe once or twice whilst only using the
  internal monitor of the netbook. When an external monitor is connected
  however, within a few minutes the display will freeze. The machine in
  question is a dell mini 9 using the i915 driver.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: compiz 1:0.9.8.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.5.0-14.15-generic 3.5.3
  Uname: Linux 3.5.0-14-generic i686
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.5.1-0ubuntu7
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CurrentDmesg:
   [   14.104766] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
   [   14.464451] init: plymouth-stop pre-start process (1126) terminated with 
status 1
   [   20.090550] ACPI: EC: GPE storm detected, transactions will use polling 
mode
  Date: Sun Sep  9 14:55:35 2012
  DistUpgraded: 2012-07-22 13:57:37,431 DEBUG enabling apt cron job
  DistroCodename: quantal
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 5.100.82.112+bdcom, 3.5.0-13-generic, i686: installed
   bcmwl, 5.100.82.112+bdcom, 3.5.0-14-generic, i686: installed
  GraphicsCard:
   Intel Corporation Mobile 945GSE Express Integrated Graphics Controller 
[8086:27ae] (rev 03) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:02b0]
 Subsystem: Dell Device [1028:02b0]
  InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
  MachineType: Dell Inc. Inspiron 910
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-14-generic 
root=UUID=683a337d-62e1-4db0-95a8-b6d7c554141f ro quiet splash vt.handoff=7
  SourcePackage: compiz
  UpgradeStatus: Upgraded to quantal on 2012-07-22 (48 days ago)
  dmi.bios.date: 12/29/2009
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A06
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A06
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A06
  dmi.modalias: 
dmi:bvnDellInc.:bvrA06:bd12/29/2009:svnDellInc.:pnInspiron910:pvrA06:rvnDellInc.:rn:rvrA06:cvnDellInc.:ct8:cvrA06:
  dmi.product.name: Inspiron 910
  dmi.product.version: A06
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.8.0-0ubuntu1
  version.libdrm2: libdrm2 2.4.39-0ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 
9.0~git20120903.e1673d20.is.git20120821.c1114c61-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 
9.0~git20120903.e1673d20.is.git20120821.c1114c61-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.13.0-0ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.99.99~git20120713.6ef1ad6a-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.6-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.1-4~ubuntu1

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1049835] Re: Software center shows multiple entries for banshee rhythmbox

2012-09-12 Thread Kiwinote
This is because app-install-data ships multiple desktop files per
pkgname:

$ ls /usr/share/app-install/desktop | grep rhythmbox:
rhythmbox:rhythmbox.desktop
rhythmbox:rhythmbox-device.desktop
$ ls /usr/share/app-install/desktop | grep banshee:
banshee:banshee-audiocd.desktop
banshee:banshee.desktop
banshee:banshee-media-player.desktop

Either app-install-data should restrict itself to one desktop file per
pkgname, or s-c should enforce this.


** Also affects: app-install-data-ubuntu (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1049835

Title:
  Software center shows multiple entries for banshee  rhythmbox

Status in “app-install-data-ubuntu” package in Ubuntu:
  New
Status in “software-center” package in Ubuntu:
  New

Bug description:
  To reproduce banshee entries:

  - Open software center
  - Search 'Banshee'

  Result: Three entries for Banshee, all the same. Installing one of
  them shows an install progress bar for them all. See screenshot

  
  To reproduce Rhythmbox entries:

  - Open software center
  - Search 'Rhythmbox'

  Result: Two entries for Rythmbox

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: software-center 5.3.12
  ProcVersionSignature: Ubuntu 3.2.0-30.48-generic 3.2.27
  Uname: Linux 3.2.0-30-generic x86_64
  ApportVersion: 2.5.1-0ubuntu7
  Architecture: amd64
  Date: Wed Sep 12 14:57:02 2012
  InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to quantal on 2012-09-09 (2 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/app-install-data-ubuntu/+bug/1049835/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1033548] Re: Internal Error for empty .deb

2012-08-06 Thread Kiwinote
fwiw the traceback that causes the 'internal error' message is this (which is 
called in debfile.py in python-apt):
 import apt_inst
 apt_inst.DebFile('meh.deb')
Traceback (most recent call last):
  File stdin, line 1, in module
SystemError: E:read, still have 8 to read but none left


** Changed in: software-center (Ubuntu)
   Importance: Undecided = Low

** Changed in: software-center (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1033548

Title:
  Internal Error for bad package suggests an error in USC itself

Status in “software-center” package in Ubuntu:
  Triaged

Bug description:
  Ubuntu Software Center 5.2.4, Ubuntu 12.04

  1. touch ./test.deb
  2. xdg-open ./test.deb

  What happens: USC displays an Internal Error, The file
  “/home/mpt/test.deb” could not be opened.

  What should happen: The error message should not suggest that it is an
  Internal Error to USC.

  Maybe no heading, just primary and secondary text like a normal error alert. 
Something like:
  
  The package “test.deb” can’t be opened because it is damaged or incomplete.

  Try downloading the package again, or contact the publisher for an
  updated version.

  (Technical info: Missing package name)
  

  Fixing this would alter the symptoms of bug 868188, bug 989398, and
  bug 909885.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1018911] Re: Update Terms of Service from Millbank to Bluefin

2012-07-01 Thread Kiwinote
** Package changed: software-center (Ubuntu) = ubuntu-webcatalog

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1018911

Title:
  Update Terms of Service from Millbank to Bluefin

Status in Ubuntu web catalog:
  Incomplete

Bug description:
  The SW center terms of service reference Canonical's old Millbank office:
  Any notices should be sent by registered post to Canonical Group Ltd, 27th 
Floor Millbank Tower, 21-24 Millbank, London, England, SW1Q 4QP

  This is also seen at https://apps.ubuntu.com/cat/tos/

  New address for the office is here: http://www.canonical.com/about-
  canonical/contact/our-offices

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1003493] Re: Ubuntu Software Center 10.10 in 11.04

2012-05-23 Thread Kiwinote
Hi keepitsimpleengr! Software-center has never branded itself with a
version number in the menu, so there is nothing we can fix here.
Presumably you or something else edited the menu entry at some stage.
Thanks for your help!

** Changed in: software-center (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1003493

Title:
  Ubuntu Software Center 10.10 in 11.04

Status in “software-center” package in Ubuntu:
  Invalid

Bug description:
  ~$ lsb_release -rd
  Description:  Ubuntu 11.04
  Release:  11.04
  ===
  ~$ apt-cache policy software-center
  software-center:
Installed: 4.0.7
Candidate: 4.0.7
Version table:
   *** 4.0.7 0
  500 http://mirrors.nl.eu.kernel.org/ubuntu/ natty-updates/main amd64 
Packages
  100 /var/lib/dpkg/status
   4.0.5ubuntu0.1 0
  500 http://mirrors.nl.eu.kernel.org/ubuntu/ natty-security/main amd64 
Packages
   4.0 0
  500 http://mirrors.nl.eu.kernel.org/ubuntu/ natty/main amd64 Packages
  ===
  After upgrade from 10.10 to 11.04, expected Ubuntu Software Center to be 
version 11.04 not 10.10
  ===
  Ubuntu Software Center reports in Application menu version 10.10 (not 
editable in Edit Menus)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1000943] Re: The software-center crashes before it finishes loading

2012-05-17 Thread Kiwinote
*** This bug is a duplicate of bug 1000238 ***
https://bugs.launchpad.net/bugs/1000238

** This bug has been marked a duplicate of bug 1000238
   Software-Center crashes on starting

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1000943

Title:
  The software-center crashes before it finishes loading

Status in “software-center” package in Ubuntu:
  New

Bug description:
  Running Quantal, try to start the software-center from the dash, and
  it crashes, running it in a terminal gives the following output

  
  cariboo@alexis:~$ software-center
  2012-05-16 20:09:30,779 - softwarecenter.ui.gtk3.app - INFO - setting up 
proxy 'None'
  2012-05-16 20:09:30,783 - softwarecenter.db.database - INFO - open() 
database: path=None use_axi=True use_agent=True
  2012-05-16 20:09:31,091 - softwarecenter.backend.reviews - WARNING - Could 
not get usefulness from server, no username in config file
  2012-05-16 20:09:31,559 - softwarecenter.db.pkginfo_impl.aptcache - INFO - 
aptcache.open()
  Traceback (most recent call last):
File /usr/bin/software-center, line 176, in module
  app.run(args)
File /usr/share/software-center/softwarecenter/ui/gtk3/app.py, line 1343, 
in run
  self.show_available_packages(args)
File /usr/share/software-center/softwarecenter/ui/gtk3/app.py, line 1273, 
in show_available_packages
  self.view_manager.set_active_view(ViewPages.AVAILABLE)
File 
/usr/share/software-center/softwarecenter/ui/gtk3/session/viewmanager.py, 
line 149, in set_active_view
  view_widget.init_view()
File 
/usr/share/software-center/softwarecenter/ui/gtk3/panes/availablepane.py, 
line 133, in init_view
  SoftwarePane.init_view(self)
File 
/usr/share/software-center/softwarecenter/ui/gtk3/panes/softwarepane.py, line 
233, in init_view
  self.datadir)
File 
/usr/share/software-center/softwarecenter/ui/gtk3/views/appdetailsview.py, 
line 886, in __init__
  self._layout_page()
File 
/usr/share/software-center/softwarecenter/ui/gtk3/views/appdetailsview.py, 
line 1185, in _layout_page
  self.pkg_statusbar = PackageStatusBar(self)
File 
/usr/share/software-center/softwarecenter/ui/gtk3/views/appdetailsview.py, 
line 176, in __init__
  self.progress.set_data(transparent-bg-hint, True)
  AttributeError: 'ProgressBar' object has no attribute 'set_data'

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: software-center 5.2.2
  ProcVersionSignature: Ubuntu 3.4.0-1.3-generic 3.4.0-rc5
  Uname: Linux 3.4.0-1-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  Date: Thu May 17 12:31:03 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_CA:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_CA.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1000937] Re: software-center crashes

2012-05-17 Thread Kiwinote
*** This bug is a duplicate of bug 1000238 ***
https://bugs.launchpad.net/bugs/1000238

** This bug has been marked a duplicate of bug 1000238
   Software-Center crashes on starting

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/1000937

Title:
  software-center crashes

Status in “software-center” package in Ubuntu:
  New

Bug description:
  crashed with no reported error then apport crashed trying to report it
  . reported with ubuntu-bug .

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: software-center 5.2.1
  ProcVersionSignature: Ubuntu 3.4.0-1.3-generic 3.4.0-rc5
  Uname: Linux 3.4.0-1-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu7
  Architecture: amd64
  Date: Thu May 17 15:07:43 2012
  InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Alpha amd64 (20120508)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 728810] Re: software-center crashed with IOError: [Errno 5] Input/output error

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/728810

Title:
  software-center crashed with IOError: [Errno 5] Input/output error

Status in “software-center” package in Ubuntu:
  Expired
Status in “software-center” source package in Natty:
  Incomplete

Bug description:
  Binary package hint: software-center

  Added an invalid software source url: deb http://bogus.url/ubuntu test main
  While updating the cache the error dialog displayed

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.21
  ProcVersionSignature: Ubuntu 2.6.38-5.32-generic 2.6.38-rc6
  Uname: Linux 2.6.38-5-generic i686
  NonfreeKernelModules: wl
  Architecture: i386
  Date: Thu Mar  3 18:31:08 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha i386 (20110302)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   SHELL=/bin/bash
   LANG=en_US.UTF-8
   LANGUAGE=en_US:en
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with IOError: [Errno 5] Input/output error
  Traceback: IOError: [Errno 5] Input/output error
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin nopasswdlogin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 721694] Re: update-software-center crashed with DatabaseLockError in __init__(): Unable to get write lock on /var/cache/software-center/xapian_rb: already locked

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/721694

Title:
  update-software-center crashed with DatabaseLockError in __init__():
  Unable to get write lock on /var/cache/software-center/xapian_rb:
  already locked

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Happened after reboot following update-manager update

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.19
  ProcVersionSignature: Ubuntu 2.6.38-4.31-generic 2.6.38-rc5
  Uname: Linux 2.6.38-4-generic i686
  Architecture: i386
  Date: Fri Feb 18 20:54:22 2011
  ExecutablePath: /usr/share/software-center/update-software-center
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/sbin/update-software-center --triggered 
3.1.17.1
  ProcCwd: /home/matt
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   LC_MESSAGES=en_US.utf8
   SHELL=/bin/bash
  PythonArgs: ['/usr/sbin/update-software-center', '--triggered', '3.1.17.1']
  SourcePackage: software-center
  Title: update-software-center crashed with DatabaseLockError in __init__(): 
Unable to get write lock on /var/cache/software-center/xapian_rb: already locked
  UserGroups:

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 721653] Re: software-center crashed with RuntimeError in /usr/bin/software-center: could not open display

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/721653

Title:
  software-center crashed with RuntimeError in /usr/bin/software-center:
  could not open display

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  software center crashed

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.19
  ProcVersionSignature: Ubuntu 2.6.38-4.31-generic 2.6.38-rc5
  Uname: Linux 2.6.38-4-generic i686
  NonfreeKernelModules: wl
  Architecture: i386
  Date: Sat Feb 19 01:09:58 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 10.04.1 LTS Lucid Lynx - Release i386 (20100816.1)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_US.UTF-8
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with RuntimeError in /usr/bin/software-center: 
could not open display
  Traceback:
   Traceback (most recent call last):
 File /usr/bin/software-center, line 105, in module
   gtk.init_check()
   RuntimeError: could not open display
  UserGroups:

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 730349] Re: software-center crashed with OSError in __init__(): [Errno 13] Permission denied

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/730349

Title:
  software-center crashed with OSError in __init__(): [Errno 13]
  Permission denied

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Cant open ubuntu software center or even ubuntu update center.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.22
  ProcVersionSignature: Ubuntu 2.6.38-5.32-generic 2.6.38-rc6
  Uname: Linux 2.6.38-5-generic i686
  Architecture: i386
  Date: Sun Mar  6 20:45:26 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with OSError in __init__(): [Errno 13] 
Permission denied
  UpgradeStatus: Upgraded to natty on 2011-03-06 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 742836] Re: update-software-center-agent crashed with EOFError in /usr/share/software-center/softwarecenter/db/update.py

2012-05-02 Thread Kiwinote
This has since been fixed.

** Changed in: software-center (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/742836

Title:
  update-software-center-agent crashed with EOFError in /usr/share
  /software-center/softwarecenter/db/update.py

Status in “software-center” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: software-center

  crash on startup

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.24.2
  ProcVersionSignature: Ubuntu 2.6.38-7.38-generic 2.6.38
  Uname: Linux 2.6.38-7-generic i686
  Architecture: i386
  Date: Fri Mar 25 16:14:18 2011
  ExecutablePath: /usr/share/software-center/update-software-center-agent
  InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
  InterpreterPath: /usr/bin/python2.7
  ProcCmdline: /usr/bin/python 
/usr/share/software-center/update-software-center-agent
  ProcEnviron:
   SHELL=/bin/bash
   LC_MESSAGES=en_CA.UTF-8
   LANGUAGE=en_CA:en
   LANG=ru_RU.UTF-8
  PythonArgs: ['/usr/share/software-center/update-software-center-agent']
  SourcePackage: software-center
  Title: update-software-center-agent crashed with EOFError in 
/usr/share/software-center/softwarecenter/db/update.py
  UpgradeStatus: Upgraded to natty on 2011-03-23 (2 days ago)
  UserGroups: adm admin cdrom dialout disk kmem lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 746013] Re: Signing into SSO brought me to my account page

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/746013

Title:
  Signing into SSO brought me to my account page

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  I saw the first for-pay app in natty today, Volley Brawl.  I thought
  I'd buy that for a dollar to myself thrice and clicked Buy.

  It asked me to log in using my Ubuntu SSO.  I did, and it brought me
  to an account page, where I could specify my preferred email and
  change my password.  That didn't seem right.

  I went back to the app screen, clicked on Buy again, and this time it
  brought me to the payment screen.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.24.3
  ProcVersionSignature: Ubuntu 2.6.38-7.39-generic 2.6.38
  Uname: Linux 2.6.38-7-generic x86_64
  Architecture: amd64
  Date: Wed Mar 30 16:07:58 2011
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, user)
   LANG=en_GB.utf8
   LC_MESSAGES=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2010-09-28 (183 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 752376] Re: support file:///path/pkgname.deb syntax

2012-05-02 Thread Kiwinote
** Summary changed:

- Software center won't allow install from .deb file
+ support file:///path/pkgname.deb syntax

** Changed in: software-center (Ubuntu)
   Importance: Undecided = Medium

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Triaged

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/752376

Title:
  support file:///path/pkgname.deb syntax

Status in “software-center” package in Ubuntu:
  Triaged

Bug description:
  Binary package hint: software-center

  Downloaded the dropbox deb file and attempted to open with software
  center.

  Expected result: installer launches.

  Actual result: There isn't a software package called File: in your
  current software sources.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.25
  ProcVersionSignature: Ubuntu 2.6.38-7.39-generic 2.6.38
  Uname: Linux 2.6.38-7-generic i686
  NonfreeKernelModules: fglrx
  Architecture: i386
  Date: Wed Apr  6 11:36:28 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Alpha i386 (20100831.2)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-04-05 (1 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 749922] Re: software-center crashed with AttributeError in _build_ui(): 'OneConfPane' object has no attribute 'scroll_app_list'

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/749922

Title:
  software-center crashed with AttributeError in _build_ui():
  'OneConfPane' object has no attribute 'scroll_app_list'

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Crash while browsing reviews

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.25
  ProcVersionSignature: Ubuntu 2.6.38-7.39-generic 2.6.38
  Uname: Linux 2.6.38-7-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Mon Apr  4 00:18:59 2011
  ExecutablePath: /usr/share/software-center/software-center
  InterpreterPath: /usr/bin/python2.7
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with AttributeError in _build_ui(): 
'OneConfPane' object has no attribute 'scroll_app_list'
  UpgradeStatus: Upgraded to natty on 2010-11-16 (139 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare sudo

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 749320] Re: software-center crashed with AttributeError in _register_transaction_index_for_pkgname(): 'Document' object has no attribute 'pkgname'

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/749320

Title:
  software-center crashed with AttributeError in
  _register_transaction_index_for_pkgname(): 'Document' object has no
  attribute 'pkgname'

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  installing gnome-shell

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.25
  ProcVersionSignature: Ubuntu 2.6.38-7.39-generic 2.6.38
  Uname: Linux 2.6.38-7-generic i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Sun Apr  3 14:46:39 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta i386 (20110330)
  InterpreterPath: /usr/bin/python2.7
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with AttributeError in 
_register_transaction_index_for_pkgname(): 'Document' object has no attribute 
'pkgname'
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 752826] Re: allows the user to start the review process on a non-reviewable app

2012-05-02 Thread Kiwinote
At the moment we pop up an error dialog if someone tries to review an
app from a nonstandard origin.

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/752826

Title:
  allows the user to start the review process on a non-reviewable app

Status in “software-center” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: software-center

  The user can, for example, start the review process on a package that
  is installed via a PPA/.deb but is not yet in Ubuntu's repositories.
  Submitting the review will fail - so the user will waste time and
  effort composing a review.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.25
  ProcVersionSignature: Ubuntu 2.6.38-8.41-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Wed Apr  6 15:16:02 2011
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha amd64 (20110302)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_CA:en
   LANG=en_CA.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-03-25 (12 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 757354] Re: pkgProblemResolver::Resolve

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/757354

Title:
  pkgProblemResolver::Resolve

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  No se ha podido calcular la actualización

  Ha ocurrido un problema imposible de corregir cuando se calculaba la
  actualización.

  Por favor, informe de ésto como un fallo del paquete «update-manager» e 
incluya el siguiente mensaje de error:
  'E:Error, pkgProblemResolver::Resolve generó cortes, esto puede haber sido 
causado por paquetes retenidos.'

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.3
  ProcVersionSignature: Ubuntu 2.6.37-7.19-generic 2.6.37-rc3
  Uname: Linux 2.6.37-7-generic i686
  Architecture: i386
  Date: Mon Apr 11 12:23:29 2011
  InstallationMedia: Xubuntu 11.04 Natty Narwhal - Alpha i386 (20101201.2)
  PackageArchitecture: all
  ProcEnviron:
   LANG=es_ES.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 757534] Re: update-software-center crashed with UnpicklingError in /usr/share/software-center/softwarecenter/db/update.py: invalid load key, '/'.

2012-05-02 Thread Kiwinote
This is fixed in Ubuntu 12.04

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/757534

Title:
  update-software-center crashed with UnpicklingError in /usr/share
  /software-center/softwarecenter/db/update.py: invalid load key, '/'.

Status in “software-center” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: software-center

  Not doing anything special, would be surprised if this wasn't a duplicate...
  I have run Janitor and the gtk cleanup type thingie (forget name,
  similar to janitor, better reviews on ubuntu installing app)
  So could have removed some necessary libs during cleanups
  with both apps...

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.26.1
  ProcVersionSignature: Ubuntu 2.6.38-8.41-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  NonfreeKernelModules: nvidia wl
  Architecture: i386
  Date: Mon Apr 11 09:29:21 2011
  ExecutablePath: /usr/share/software-center/update-software-center
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/sbin/update-software-center --triggered 
/usr/share/locale-langpack
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/sbin/update-software-center', '--triggered', 
'/usr/share/locale-langpack']
  SourcePackage: software-center
  Title: update-software-center crashed with UnpicklingError in 
/usr/share/software-center/softwarecenter/db/update.py: invalid load key, '/'.
  UpgradeStatus: Upgraded to natty on 2011-04-01 (10 days ago)
  UserGroups:

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 754296] Re: software-center crashed with python 2.6 on ubuntu 11.04

2012-05-02 Thread Kiwinote
s-c requires python2.7 - we don't support s-c on python 2.6 sorry

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/754296

Title:
  software-center crashed with python 2.6 on ubuntu 11.04

Status in “software-center” package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: software-center

  when i change python version (2.7 to 2.6) on ubuntu 11.04, software-
  center not working

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.26
  ProcVersionSignature: Ubuntu 2.6.38-8.41-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Fri Apr  8 07:58:58 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  InterpreterPath: /usr/bin/python
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with ImportError in 
/usr/share/software-center/softwarecenter/backend/aptd.py: No module named 
aptdaemon
  UpgradeStatus: Upgraded to natty on 2011-04-07 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 769616] Re: Search results are never displayed

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/769616

Title:
  Search results are never displayed

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Sometimes after opening Ubuntu Software Center, clicking the the
  search box, and then typing a query, a throbber appears and spins
  indefinitely (attached screenshot #1). Subsequently closing and then
  reopening Ubuntu Software Center displays only an empty gray window
  (attached screenshot #2). Logging out and then logging back in
  temporarily resolves this problem.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Sat Apr 23 13:11:34 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64 (20110413)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 774006] Re: In Ubuntu Software Center I can't see the app's vote

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/774006

Title:
  In Ubuntu Software Center I can't see the app's vote

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  I can't see the app's votes in the Ubuntu Software Center. First, I
  could see them

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  NonfreeKernelModules: fglrx
  Architecture: i386
  Date: Sat Apr 30 12:33:42 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=it_IT:en
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-04-28 (1 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 761454] Re: software-center crashed with IndexError in on_get_value(): list index out of range

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/761454

Title:
  software-center crashed with IndexError in on_get_value(): list index
  out of range

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Crashed after browsinbg for software

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.26.3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Fri Apr 15 00:09:46 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64 (20110413)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with IndexError in on_get_value(): list index 
out of range
  Traceback:
   Traceback (most recent call last):
 File /usr/share/software-center/softwarecenter/models/appstore.py, line 
420, in on_get_value
   doc = self.matches[rowref].document
   IndexError: list index out of range
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 759078] Re: software-center crashed with SIGSEGV in std::basic_stringchar, std::char_traitschar, std::allocatorchar ::reserve()

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/759078

Title:
  software-center crashed with SIGSEGV in std::basic_stringchar,
  std::char_traitschar, std::allocatorchar ::reserve()

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  i was just trying to open firefox

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.26.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Tue Apr 12 14:23:12 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=es_VE:en
   PATH=(custom, no user)
   LANG=es_VE.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x4075c6:  rep movsl %ds:(%esi),%es:(%edi)
   PC (0x004075c6) ok
   source %ds:(%esi) (0x09a2546b) ok
   destination %es:(%edi) (0xb452107b) in non-writable VMA region: 
0xb4521000-0xb460 ---p None
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing VMA None
  Signal: 11
  SourcePackage: software-center
  StacktraceTop:
   ?? () from /lib/i386-linux-gnu/libc.so.6
   ?? ()
   std::basic_stringchar, std::char_traitschar, std::allocatorchar 
::reserve(unsigned int) () from /usr/lib/i386-linux-gnu/libstdc++.so.6
   std::basic_stringchar, std::char_traitschar, std::allocatorchar 
::append(char const*, unsigned int) () from 
/usr/lib/i386-linux-gnu/libstdc++.so.6
   ChertTable::read_tag(Cursor*, std::basic_stringchar, 
std::char_traitschar, std::allocatorchar *, bool) const () from 
/usr/lib/sse2/libxapian.so.22
  Title: software-center crashed with SIGSEGV in std::basic_stringchar, 
std::char_traitschar, std::allocatorchar ::reserve()
  UpgradeStatus: Upgraded to natty on 2011-04-12 (0 days ago)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare shadow

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 757630] Re: software-center crashed with JSONDecodeError in raw_decode(): No JSON object could be decoded: line 1 column 0 (char 0)

2012-05-02 Thread Kiwinote
I haven't seen this one since we switched from simplejson to json.

** Changed in: software-center (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/757630

Title:
  software-center crashed with JSONDecodeError in raw_decode(): No JSON
  object could be decoded: line 1 column 0 (char 0)

Status in “software-center” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: software-center

  I was just browsing through configurations for system when it crashed.
  I don't remember which specifically, however.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.1.26.1
  ProcVersionSignature: Ubuntu 2.6.38-8.41-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Mon Apr 11 20:53:55 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/share/software-center/software-center
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_GB.utf8
   LC_MESSAGES=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with JSONDecodeError in raw_decode(): No JSON 
object could be decoded: line 1 column 0 (char 0)
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 776795] Re: uninstallation of a exult the game wont end or cancel.

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/776795

Title:
  uninstallation of a exult the game wont end or cancel.

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  I wanted to uninstall the game exult from my computer. i opened the
  software center and started the process. however, the uninstallation
  was taking too long so i canceled it for later. the canceling is
  taking even longer and there is no sign of it canceling because the
  progress bar is not moving.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  NonfreeKernelModules: fglrx
  Architecture: i386
  Date: Tue May  3 19:55:15 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 775931] Re: Software Center not passing the payment recieved screen after registration disconnected early.

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/775931

Title:
  Software Center not passing the payment recieved screen after
  registration disconnected early.

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  It just hangs on...

  Purchasing “Vendetta Online”…
  Payment authorized

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: fglrx
  Architecture: amd64
  Date: Mon May  2 22:52:26 2011
  InstallationMedia: Ubuntu-Studio 11.04 Natty Narwhal - Release amd64 
(20110426.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 774716] Re: unresponsive scrollbar

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/774716

Title:
  unresponsive scrollbar

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  The scrollbar in Software Center is unresponsive while the rating text
  and graphs loads, sometimes for 10 seconds, it depends on internet
  speed.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Sun May  1 10:44:42 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 774666] Re: Second run of software center in natty is very slow

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/774666

Title:
  Second run of software center in natty is very slow

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  First run of software center after reboot is very fast (2-3 seconds).
  But if I close software-center and run it again, it take ~ 1 minute to
  startup.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Sun May  1 13:53:23 2011
  InstallationMedia: Ubuntu 10.04 Lucid Lynx - Beta amd64 (20100406.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=ru_RU:en
   LANG=ru_RU.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-04-11 (19 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 770615] Re: compizConfig missing dependencies

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/770615

Title:
  compizConfig missing dependencies

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  There are other similar bugs to this for other packages, so this might
  just be another instance e.g. of #435332.

  T he software centre won't install Simple CompizConfig Manager. I get
  an error dialog :

  *Package Dependencies can't be resolved*

  This error could be caused by required additional software packages
  which are missing or not installable. Furthermore there could be a
  conflict between software packages which are not allowed to be
  installed at the same time.

  Details:
  The following packages have unmet dependencies:

  simple-ccsm:

  
  This is possibly a packaging error, though the similar problems seem to point 
to a more systemic problem.

  I expect software-centre to sort out and install any necessary
  dependencies. It didn't do that.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  CheckboxSubmission: fc2d0c1a9f7a9107c5104c45d6ee1b22
  CheckboxSystem: 4ed15c40009aa6f7770f606350a390a2
  Date: Mon Apr 25 21:09:03 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta amd64 (20110413)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcEnviron:
   SHELL=/bin/bash
   PATH=(custom, user)
   LANGUAGE=en_CA:en
   LANG=en_CA.UTF-8
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 782911] Re: package software-center 4.0 failed to install/upgrade: underprocess nytt pre-removal-skript gav felkod 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/782911

Title:
  package software-center 4.0 failed to install/upgrade: underprocess
  nytt pre-removal-skript gav felkod 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Error was reported when I tried to do an upgrade using Synaptic

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  NonfreeKernelModules: nvidia
  AptOrdering:
   software-center: Install
   software-center: Configure
  Architecture: i386
  Date: Sun May 15 08:34:16 2011
  ErrorMessage: underprocess nytt pre-removal-skript gav felkod 1
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0 failed to install/upgrade: underprocess 
nytt pre-removal-skript gav felkod 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 782497] Re: cannot open the software database

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/782497

Title:
  cannot open the software database

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  it says to Please re-install the 'software-center' package.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Fri May 13 22:17:12 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 780883] Re: Stopped Receiving Remote Information

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/780883

Title:
  Stopped Receiving Remote Information

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  While downloading inkscape everything related to remote services
  stopped working. Inkscape stopped in the middle download, searching no
  longer worked clicking on any categories just brought up a loading
  screen.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Tue May 10 21:28:28 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 779718] Re: package software-center 4.0 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/779718

Title:
  package software-center 4.0 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  software center is unable to start, terminal returns: ImportError: No
  module named widgets.packagenamesview. Update was unable to finish

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Sun May  8 23:29:20 2011
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to natty on 2011-04-17 (22 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 787792] Re: Letters are cut off horizontally

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/787792

Title:
  Letters are cut off horizontally

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Instead of a two line display of program name and short description, the 
second line is cut off horizontally (see attachment).
  The line height does not adjust automatically to the font size
  The same problem also occurs in programs like Thunderbird.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.2
  ProcVersionSignature: Ubuntu 2.6.38-9.43-generic 2.6.38.4
  Uname: Linux 2.6.38-9-generic x86_64
  Architecture: amd64
  Date: Tue May 24 22:35:44 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=de_AT:de_DE:en
   PATH=(custom, no user)
   LANG=de_AT.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-05-20 (4 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 787631] Re: ubuntu package manager is not responsive

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/787631

Title:
  ubuntu package manager is not responsive

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Dear Manager,
  When I run software-center, it consumes all the cpu without doing anything. 
Seems like there is some python issue? Attached is a errlog collected from 
running it via terminal.
  Thanks,
  Animesh

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Tue May 24 17:34:07 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 786752] Re: ubuntu software center isnt working right

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/786752

Title:
  ubuntu software center isnt working right

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  installed software isnt showing up,neither are the install and remove
  buttons

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Sun May 22 18:20:21 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

  This bug did not affect me when I was running Ubuntu 11.04 but when I
  upgraded to 11.10 this happened to me.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 786355] Re: software-center crashed with OverflowError in call_async(): Python int too large to convert to C long

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/786355

Title:
  software-center crashed with OverflowError in call_async(): Python int
  too large to convert to C long

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Apport said that it crash, but the window doesn't crash. I think that
  it was in backend. I was searching python in the search box.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  CheckboxSubmission: 453209310f36aec088f7597a7838878c
  CheckboxSystem: edda5d4f616ca792bf437989cb597002
  Date: Sat May 21 18:45:16 2011
  ExecutablePath: /usr/share/software-center/software-center
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=es_DO:en
   LANG=es_DO.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with OverflowError in call_async(): Python int 
too large to convert to C long
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 784658] Re: Software Center does not close properly...

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/784658

Title:
  Software Center does not close properly...

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  OS and specs: Ubuntu 11.04 - Natty Narwhal in Classic mode with Gnome V 
2.32.1,  ( + the latest updates) Intel Celeron 900, 2gb ddr3, Intel GMA 4500M 
chipset.
  Software Center does not close properly, i must end the process with System 
Monitor every time i use Software Center. It seems to close properly, but the 
process is still active in System Monitor and consuming memory in vain. The 
System monitor says;  my name sleeping 0 0 3231 62.1MiB 
futex_wait_queue_me
  Here is a piece of the .xsession-errors log;
  /usr/share/software-center/softwarecenter/app.py:1192: Warning: 
g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
self.window_main.show_all()
  2011-05-18 16:55:17,013 - softwarecenter.fixme - WARNING - logs to the root 
logger: '('/usr/lib/pymodules/python2.7/zeitgeist/client.py', 367, 
'reconnect_monitors')'
  2011-05-18 16:55:17,013 - zeitgeist.client - INFO - Reconnected to Zeitgeist 
engine...
  /usr/share/software-center/softwarecenter/SimpleGtkbuilderApp.py:50: Warning: 
g_object_set_qdata: assertion `G_IS_OBJECT (object)' failed
gtk.main()
  2011-05-18 16:55:18,102 - softwarecenter.fixme - WARNING - logs to the root 
logger: '('/usr/share/oneconf/oneconf/uscplugin/oneconfeventhandler.py', 147, 
'got_newcredentials')'
  2011-05-18 16:55:18,102 - root - INFO - Got credentials for Ubuntu One
  2011-05-18 16:55:18,105 - softwarecenter.fixme - WARNING - logs to the root 
logger: '('/usr/share/oneconf/oneconf/uscplugin/oneconfeventhandler.py', 147, 
'got_newcredentials')'
  2011-05-18 16:55:18,105 - root - INFO - Got credentials for Ubuntu One

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-9.43-generic 2.6.38.4
  Uname: Linux 2.6.38-9-generic x86_64
  Architecture: amd64
  Date: Wed May 18 16:38:37 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 789460] Re: software centre does not install media properly

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/789460

Title:
  software centre does not install media properly

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  it takes a long time to install software then it shows an error.After
  this it shows the the software as installed it but does not work.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Sat May 28 12:21:22 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-05-20 (7 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 789041] Re: centro de software de ubunto se puso en inglés, estaba en españoooooooooolllllllllllllll

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/789041

Title:
  centro de software de ubunto se puso en inglés, estaba en
  españoolll

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Ya me estaba poniendo contento con el s.o. Pero, voy a ver las aplicaciones 
que vienen con el centro de software de ubunto y encuentro las descripciones en 
inglés cuando las tenía en castellano. Ahora que me estaba acostumbrando a los 
comandos en la
  terminal, estudiando con mucho entusiasmo, haciendo partícipes a todos mis 
amigos de las virtudes de éste s.o. me empiezan
  a aparecer éste tipo de cosas que ya no puedo manejar considerando que recién 
estoy dando los primeros pasos. No compren-
  der el idioma es grave, dificulta mucho las cosas. No me doy por vencido 
fácilmente pero de persistir éste problema me vuelvo
  a Windows. Con todo el dolor del alma, como dijo alguien por ahí, voy a 
seguir siendo un cachorro del imperio pero, con muchos
  menos problemas y me desentiendo de todo lo que me había propuesto hacer acá. 
El espectro es muy vasto, había pensado hasta programar algo que fuera útil, 
previo conocimiento del s.o. En fin, no sé si me daran pelota pero me importa 
poco. Voy a
  esperar dos días, mientras tanto vuelvo a Windows hasta que se defina ésta 
cuestión. No soy nadie pero tengo amigos que esta
  ban muy interesados y algunos son profesionales del sistema y no han 
incursionado aún en linux. Quizá fuí yo el que cometió algún error, no lo sé. 
Me llama la atención que se produce de rápido y sin que haya modificado nada. 
Hice ediciones en sony vega
  pro excelente y aquí me había dejado reconforme cinelerra. Además usé con 
éxito el editor de imágenes gimp. En fin, es todo
  seguramente tendrán cosas más importantes que atender. Saludos cordiales y 
sigan puliéndolo.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.2
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Fri May 27 06:20:59 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=es_AR:es_ES:en
   LANG=es_AR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 788903] Re: package software-center 4.0.2 failed to install/upgrade: unable to install `/etc/dbus-1/system.d/com.ubuntu.SoftwareCenter.conf.dpkg-new' as `/etc/dbus-1/system.d/c

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/788903

Title:
  package software-center 4.0.2 failed to install/upgrade: unable to
  install `/etc/dbus-1/system.d/com.ubuntu.SoftwareCenter.conf.dpkg-new'
  as `/etc/dbus-1/system.d/com.ubuntu.SoftwareCenter.conf': No such file
  or directory

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Running Live  USB Persistent Mode (32bit) Gateway NV78 Laptop (64bit)

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.2
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Fri May 27 00:52:09 2011
  ErrorMessage: unable to install 
`/etc/dbus-1/system.d/com.ubuntu.SoftwareCenter.conf.dpkg-new' as 
`/etc/dbus-1/system.d/com.ubuntu.SoftwareCenter.conf': No such file or directory
  LiveMediaBuild: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.2 failed to install/upgrade: unable to 
install `/etc/dbus-1/system.d/com.ubuntu.SoftwareCenter.conf.dpkg-new' as 
`/etc/dbus-1/system.d/com.ubuntu.SoftwareCenter.conf': No such file or directory
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 788412] Re: package software-center 4.0.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/788412

Title:
  package software-center 4.0.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  The opera Browser, stop to work, he close every time...  wen i try to
  remove the error appear... ubuntu 11.04 opera the last version at the
  day (11.11)

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  AptOrdering: opera: Remove
  Architecture: i386
  Date: Wed May 25 21:28:47 2011
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 788254] Re: ubuntu software center not installing, because its reporting destination file not there

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/788254

Title:
  ubuntu software center not installing,because its reporting
  destination file not there

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: nautilus

  on installing the software through ubuntu software centre,finally its
  not installing  by error message language empty

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: nautilus 1:2.32.2.1-0ubuntu13
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  NonfreeKernelModules: nvidia wl
  Architecture: i386
  Date: Wed May 25 22:52:29 2011
  ExecutablePath: /usr/bin/nautilus
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  ProcEnviron:
   LANGUAGE=en_IN:en
   LANG=en_IN
   LC_MESSAGES=en_IN.UTF-8
   SHELL=/bin/bash
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)
  XsessionErrors:
   (exe:1857): Gdk-WARNING **: XID collision, trouble ahead
   (exe:1857): Gdk-WARNING **: XID collision, trouble ahead
   (nautilus:1417): GStreamer-CRITICAL **: gst_debug_add_log_function: 
assertion `func != NULL' failed

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 787883] Re: The review window won't close

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/787883

Title:
  The review window won't close

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  I wrote a review of GIMP image editor, and when I wished to close thew
  review window by clicking x button on title bar, it won't close. There
  is no reaction.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Wed May 25 07:52:17 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-04-22 (32 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 792277] Re: Platinum Sandbox Creator failed to install stopping package manager

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/792277

Title:
  Platinum Sandbox Creator failed to install stopping package manager

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Has stopped updating at around 90% and has sat there for about 30
  mins.  Would like to know how I can clear it so I could install other
  packages.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.2
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Fri Jun  3 10:54:07 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 792016] Re: Software Center doesn't let me log in

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/792016

Title:
  Software Center doesn't let me log in

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  If I want to review or buy an application it doesn't let me log in. It just 
say:
  Method CreateItem with signature a{sv}(oayay)b on interface 
org.freedesktop.Secret.Collection doesn't exist

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.2
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Thu Jun  2 21:24:28 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Alpha i386 (20110302)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=it_IT:it:en
   PATH=(custom, no user)
   LANG=it_IT.utf8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 790933] Re: mp4box does not show up in software centre search - have to search elsewhere to discover you must search and install gpac

2012-05-02 Thread Kiwinote
searching for mp4box returns the desired result gpac

** Changed in: software-center (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/790933

Title:
  mp4box does not show up in software centre search - have to search
  elsewhere to discover you must search and install gpac

Status in “software-center” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: software-center

  if i want to do some mp4 stuff - mp4box command line is what i want to use.
  it would be good if software centre recognised it  -  however I had to search 
elsewhere to discover that i must search for and install gpac

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Wed Jun  1 05:40:15 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 789487] Re: package software-center 4.0.1 failed to install/upgrade: ErrorMessage: subprocess new pre-removal script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/789487

Title:
  package software-center 4.0.1 failed to install/upgrade: ErrorMessage:
  subprocess new pre-removal script returned error exit status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Package will not install

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Sat May 28 09:48:33 2011
  ErrorMessage: ErrorMessage: subprocess new pre-removal script returned error 
exit status 1
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.1 failed to install/upgrade: ErrorMessage: 
subprocess new pre-removal script returned error exit status 1
  UpgradeStatus: Upgraded to natty on 2011-05-28 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 800755] Re: package software-center 4.0.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/800755

Title:
  package software-center 4.0.3 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Problem seemed connected to the update to Firefox.  Couldn't get into
  Firefox. Rebooted and it was OK.

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.3
  ProcVersionSignature: Ubuntu 2.6.32-27.49-generic-pae 2.6.32.26+drm33.12
  Uname: Linux 2.6.32-27-generic-pae i686
  Architecture: i386
  Date: Wed Jun 22 10:00:38 2011
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to natty on 2011-04-29 (54 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 800158] Re: I can't setup or uninstall any soft

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/800158

Title:
  I can't setup or uninstall any soft

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Terminal always hints me dpkg: error: parsing file
  '/var/lib/dpkg/updates/0018' near line 0:

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Tue Jun 21 19:37:21 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=zh_CN:en
   LANG=zh_CN.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 796395] Re: Unable to download any thing, best mirror also not working. General web browsing is very slow. Couple od days back updated realtech wifi driver

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/796395

Title:
  Unable to download any thing, best mirror also not working. General
  web browsing is very slow. Couple od days back updated realtech wifi
  driver

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  Unable to download any thing, best mirror also not working. General
  web browsing is very slow. Couple od days back updated realtech wifi
  driver

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: fglrx wl
  Architecture: amd64
  Date: Sun Jun 12 19:32:55 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 795016] Re: ubuntu software

2012-05-02 Thread Kiwinote
*** This bug is a duplicate of bug 911706 ***
https://bugs.launchpad.net/bugs/911706

** This bug has been marked a duplicate of bug 911706
   USC relies on NM to be online, can't force online if not using NM

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/795016

Title:
  ubuntu software

Status in “software-center” package in Ubuntu:
  New

Bug description:
  Binary package hint: software-center

  I have internet but when i click to install wine from ubuntu software
  center i get . check your internet conection

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.3
  ProcVersionSignature: Ubuntu 2.6.38-10.44-generic-pae 2.6.38.7
  Uname: Linux 2.6.38-10-generic-pae i686
  NonfreeKernelModules: wl fglrx
  Architecture: i386
  Date: Thu Jun  9 15:33:57 2011
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en
   LANG=bg_BG.UTF-8
   LC_MESSAGES=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-05-18 (22 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 797451] Re: An internet dowload of broadcom deb installer failed to install through Software Center

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/797451

Title:
  An internet dowload of broadcom deb installer failed to install
  through Software Center

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Binary package hint: software-center

  The file was downloaded from 
http://computerandu.wordpress.com/2011/05/04/how-to-solve-no-wireless-networks-in-ubuntu-11-04/
  1) release 11.04
  2) Software center 4.0
  3) The download was suppose to install the wireless driver. The progress and 
then show complete.
  4)The download came down, showed progress then halted close to finishing and 
then displayed error and asked me if I want to report.
  In addition I love the new menu in ubuntu 11.04 but the wireless will not 
install properly. I tried the additional driver and it installed sta wireless 
... however didn't work upon restart. I tried installing from Synaptic this 
time not even the wired connection would work. So I uninstalled once more and 
tried the web download and this is the result. 

  FYI I am running UBUNTU from my jump drive, i created using the
  universal installer from windows platform.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Tue Jun 14 22:41:59 2011
  ExecutablePath: /usr/share/software-center/software-center
  InterpreterPath: /usr/bin/python2.7
  LiveMediaBuild: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center 
/home/username/Downloads/bcmwl-kernel-source_5.60.48.36+bdcom-0hostname5_i386.deb
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center', 
'/home/username/Downloads/bcmwl-kernel-source_5.60.48.36+bdcom-0hostname5_i386.deb']
  SourcePackage: software-center
  Title: software-center crashed with EOFError in _review_stats_loaded_watcher()
  Traceback:
   Traceback (most recent call last):
 File /usr/share/software-center/softwarecenter/db/reviews.py, line 476, 
in _review_stats_loaded_watcher
   piston_review_stats = cPickle.loads(data)
   EOFError
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 809382] Re: Software Center launched when i try to access certain directories

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/809382

Title:
  Software Center launched when i try to access certain directories

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  I downloaded a file, saved it in /Downloads, then tried to access it
  and Software Center launched automatically

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  Architecture: i386
  Date: Tue Jul 12 16:08:52 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 806783] Re: central prograns is bad not connect in downlouds

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/806783

Title:
  central prograns is bad not connect in downlouds

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Acabo de instalar o ubuntu studio 11.4 só para tentar instalar foram
  mais de 5 vezes, agora que consegui instala-lo não consigo instalar
  nenhum aplicativo e nem drives  sempre trava as vezes faz o downloud
  e quando chega no final da bad.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  Architecture: amd64
  Date: Thu Jul  7 01:13:42 2011
  InstallationMedia: Ubuntu-Studio 11.04 Natty Narwhal - Release amd64 
(20110426.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=pt_BR:en
   LANG=pt_BR
   LC_MESSAGES=pt_BR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 804098] Re: software center won't let me create a review for Dropbox (Nautilus-dropbox) even though I did install it

2012-05-02 Thread Kiwinote
we don't allow reviews for packages downloaded from outside the normal
software sources - in more recent versions of the software-center we pop
up an error message when this happens

** Changed in: software-center (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/804098

Title:
  software center won't let me create a review for Dropbox (Nautilus-
  dropbox) even though I did install it

Status in “software-center” package in Ubuntu:
  Invalid

Bug description:
  I downloaded the 32-bit ubuntu version of Dropbox from their website
  using Firefox and chose to install it using Software Center.  The
  install completes without issue, and Software Center even admits that
  Dropbox is installed, but it's not letting me leave a review, telling
  me I can only review it after it's installed.  This is making me
  angry, because there are no reviews for Dropbox in software center and
  I wanted to contribute one, since I know nothing about programming,
  and this is one of the very few ways I can contribute to the
  community.  fix this nonsense, please.

  I am running the latest Desktop version of Ubuntu on a HP Mini
  210-1076NR with 1GB of RAM because I like to inflict harm upon myself
  and running a HP Mini with only 1GB of RAM is the best way to do so.

  I went to www.dropbox.com in Firefox and went through the steps to
  download the 32-bit version of Dropbox for Ubuntu systems.  When
  presented with the option to either download the package to my machine
  or install the package using Ubuntu Software Center, I chose the
  latter.  I downloaded the latest public release of Dropbox as of
  6/30/2011 @ 5:47 p.m. EST.

  From what Software Center says, the package name is Nautilus-dropbox

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  NonfreeKernelModules: wl
  Architecture: i386
  Date: Thu Jun 30 17:34:39 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 803418] Re: software-center crashed with ImportError in rescan(): No module named history

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/803418

Title:
  software-center crashed with ImportError in rescan(): No module named
  history

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Using Software center 4.0.3 on Natty
  Steps to reproduce:
  1) Start software center
  2) When the application starts up, click History in the sidebar as fast as 
you can (before the Get Software tree gets expanded, PPAs and sources appear)
  What should happen: you should get to the history after a time
  What happens instead: the history loading spinner keeps spinning 
indefinitely, and an apport report bug window appears. Additionally, closing 
and starting software center again brings up only an empty window, and you can 
not use software-center, only after you killall software-center instances and 
start again.
  ---
  Ubuntu Bug Squad volunteer triager
  http://wiki.ubuntu.com/BugSquad

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  Architecture: i386
  Date: Wed Jun 29 14:48:59 2011
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with ImportError in rescan(): No module named 
history
  Traceback:
   Traceback (most recent call last):
 File /usr/share/software-center/softwarecenter/apt/apthistory.py, line 
115, in rescan
   self.transactions = cPickle.load(open(p))
   ImportError: No module named history
  UpgradeStatus: Upgraded to natty on 2011-06-07 (22 days ago)
  UserGroups: adm admin cdrom dialout kvm libvirtd lpadmin plugdev sambashare

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 802364] Re: ubuntu 11.4 software center failed to download package

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/802364

Title:
  ubuntu 11.4  software center failed to download package

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  ubuntu  software center failed to download package
  check your internet connection 

  but my internet connection working properly Im reporting but from the same 
internet connection 
   synaptic package manager is working and can download software but i cant 
find some software in synaptic package manager  wich i found on software center 
  software center dosent download any software

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.3
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  CheckboxSubmission: 9a45f83207c3fa890d127ee5f40105a8
  CheckboxSystem: ed86e29ffba809c116a39e33fa9fc45c
  Date: Mon Jun 27 11:45:57 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_IN:en
   LANG=en_IN
   LC_MESSAGES=en_IN.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 822942] Re: Software center not working

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/822942

Title:
  Software center not working

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Trying to install xchat and stopped in middle to add few add-ons and
  then start again. Could not install any other software then after.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Mon Aug  8 16:52:47 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 821685] Re: updating cache failed

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/821685

Title:
  updating cache failed

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  software is not downloading also it says to fix broken packages and
  the updating cache failed

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Sat Aug  6 02:57:01 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_IN:en
   LANG=en_IN
   LC_MESSAGES=en_IN.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-08-05 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 815580] Re: Package fails to install and no information is provided

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/815580

Title:
  Package fails to install and no information is provided

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  I am trying to install Adobe Flash plugin via Ubuntu Software Center.
  I accept the partner source. It reports the installation as in
  progress in the left sidebar. That disappears. There is no record of
  this install attempt in History in any context. Flash doesn't work. It
  apparently wasn't successful, but I'm left to wonder why. If the
  install failed or succeeded, I should be told and the outcome logged,
  either way. As it stands there is nothing.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5
  ProcVersionSignature: Ubuntu 2.6.38-11.47-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Mon Jul 25 09:11:35 2011
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_NZ:en
   PATH=(custom, user)
   LANG=en_NZ.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-04-30 (85 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 817399] Re: I cant instal eny software from ubuntu software center because the authentication programng is curupt

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/817399

Title:
  I cant instal eny software from ubuntu software center because the
  authentication programng is curupt

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  every time i try to install software from the Ubuntu software center
  it keeps on telling me that there is a problem with the authentication
  and it is a programing issue

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Thu Jul 28 18:51:23 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_AU:en
   LANG=en_AU.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 817154] Re: Get Software screen shows, but other screens and search results will not.

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/817154

Title:
  Get Software screen shows, but other screens and search results will
  not.

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Can't get past the first screen, as all that appears when another
  option further down the tree is selected (including search) is that
  the progress wheel shows constantly. Can navigate back to the main Get
  Software screen though.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic-pae 2.6.38.7
  Uname: Linux 2.6.38-10-generic-pae i686
  Architecture: i386
  Date: Wed Jul 27 19:25:45 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 815395] Re: package software-center 4.0.1 failed to install/upgrade: Unterprozess neues pre-removal-Skript gab den Fehlerwert 1 zurück

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/815395

Title:
  package software-center 4.0.1 failed to install/upgrade: Unterprozess
  neues pre-removal-Skript gab den Fehlerwert 1 zurück

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  it isn't possible to actualize this package

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.1
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Sun Jul 24 09:53:21 2011
  ErrorMessage: Unterprozess neues pre-removal-Skript gab den Fehlerwert 1 
zurück
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.1 failed to install/upgrade: Unterprozess 
neues pre-removal-Skript gab den Fehlerwert 1 zurück
  UpgradeStatus: Upgraded to natty on 2011-04-28 (86 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 811431] Re: high cpu

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/811431

Title:
  high cpu

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  high cpu(50%-70%) for lot a time when running “software-center”.after
  closing the“software-center” cpu is high for some minutes

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic x86_64
  Architecture: amd64
  Date: Sat Jul 16 11:58:28 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=bg_BG:en
   LANG=bg_BG.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 809823] Re: package software-center 3.0.9 failed to install/upgrade: el fichero de disparadores ci contiene una sintaxis de directiva desconocida

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/809823

Title:
  package software-center 3.0.9 failed to install/upgrade: el fichero de
  disparadores ci contiene una sintaxis de directiva desconocida

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  MOTHERBOARD ASROCK 775i65GV. Not detected chipset intel NB:865gv fsb800/533 
mhz SB: intel ICH5, SATA 1,5Gb/s.
  DESKTOP PULSE and not recognize orders

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 3.0.9
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic i686
  AptOrdering:
   software-center: Install
   software-center: Configure
   ubuntu-desktop: Configure
  Architecture: i386
  Date: Wed Jul 13 13:11:25 2011
  DpkgTerminalLog:
   Preparando para reemplazar software-center 3.0.9 (usando 
.../software-center_4.0.4_all.deb) ...
   dpkg: error al procesar 
/var/cache/apt/archives/software-center_4.0.4_all.deb (--unpack):
el fichero de disparadores ci contiene una sintaxis de directiva desconocida
  ErrorMessage: el fichero de disparadores ci contiene una sintaxis de 
directiva desconocida
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 3.0.9 failed to install/upgrade: el fichero de 
disparadores ci contiene una sintaxis de directiva desconocida
  UpgradeStatus: Upgraded to natty on 2011-07-12 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 811541] Re: software center window hangs - can only resize.

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/811541

Title:
  software center window hangs - can only resize.

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Might be a graphical issue since other programs might behave as this.
  Can only resize, not able to exit through exit-buttons, mark any
  selection withing the window or make a click on the buttons inside the
  window. Problem occured when running in Ubuntu Classic-mode and after
  uninstalling the LXDE package.

  version: 4.0.40 on Software Center
  Ubuntu 11.04.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic x86_64
  NonfreeKernelModules: wl
  Architecture: amd64
  Date: Sat Jul 16 17:54:55 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=sv_SE:en
   LANG=sv_SE.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 825426] Re: Search for Firebird fails

2012-05-02 Thread Kiwinote
looks like this is working in Ubuntu 12.04

** Changed in: software-center (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/825426

Title:
  Search for Firebird fails

Status in “software-center” package in Ubuntu:
  Fix Released

Bug description:
  When 'Get Software' is selected, a search for Firebird yields 1 item 
(FlameRobin) only.
  When 'System' category is selected, the same search string returns 26 items 
excluding FlameRobin.
  When 'Developer tools' category is selected, the same search string yields 1 
item (FlameRobin) only.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic i686
  NonfreeKernelModules: slamr
  Architecture: i386
  Date: Fri Aug 12 21:59:24 2011
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-05-08 (96 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 824415] Re: Ubuntu software center does not work properly.

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: Confirmed = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/824415

Title:
  Ubuntu software center does not work properly.

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  In category get software everything looks fine, but when I click on
  search or installed software, it just works forever (a clock-like
  animation showing work in progress), but does not provide a result.
  Internet is O.K., since I am able to send this form...

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Thu Aug 11 11:32:51 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 843899] Re: chrome doesn't get isntalled

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/843899

Title:
  chrome doesn't get isntalled

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  chromium doesn't get installed.
  it says that The installation or removal of a software package failed.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Wed Sep  7 19:13:49 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 839226] Re: wrong flash player download

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/839226

Title:
  wrong flash player download

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  32 bit os but can not find flash player less than 64bit

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.48-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic x86_64
  Architecture: amd64
  Date: Fri Sep  2 03:00:51 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 837479] Re: la logithèque démarre mais l'installation ou la désinstallation ne se fait pas ,de plus en changeant de logiciel la capture d'écran ou les informations du logiciel

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/837479

Title:
  la logithèque démarre mais l'installation ou la désinstallation ne se
  fait pas ,de plus en changeant de logiciel la capture d'écran ou les
  informations du logiciel précédent dans la navigation demeure

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  c'est résumé et ce n'est que ça je peux aussi ajouter que je n'arrive
  pas à évaluer échecs à tout moment mais là c'est le forum

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5
  ProcVersionSignature: Ubuntu 2.6.38-11.48-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  Architecture: i386
  Date: Tue Aug 30 16:30:46 2011
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=fr:en
   LANG=fr_FR.UTF-8
   LC_MESSAGES=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 837187] Re: gscan2pdf ATI Binary X.org driver

2012-05-02 Thread Kiwinote
*** This bug is a duplicate of bug 911706 ***
https://bugs.launchpad.net/bugs/911706

** This bug has been marked a duplicate of bug 911706
   USC relies on NM to be online, can't force online if not using NM

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/837187

Title:
  gscan2pdf  ATI Binary X.org driver

Status in “software-center” package in Ubuntu:
  New

Bug description:
  both failed to download although my internet is working fine.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.48-generic-pae 2.6.38.8
  Uname: Linux 2.6.38-11-generic-pae i686
  Architecture: i386
  Date: Mon Aug 29 23:34:05 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-04-29 (122 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 831832] Re: package software-center 4.0 failed to install/upgrade: ErrorMessage: subprocess new pre-installation script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/831832

Title:
  package software-center 4.0 failed to install/upgrade: ErrorMessage:
  subprocess new pre-installation script returned error exit status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Running Ubuntu 11.04 from USB pendrive after update has stopped last
  night, machine was frozen.

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Tue Aug 23 10:52:10 2011
  ErrorMessage: ErrorMessage: subprocess new pre-installation script returned 
error exit status 1
  LiveMediaBuild: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0 failed to install/upgrade: ErrorMessage: 
subprocess new pre-installation script returned error exit status 1
  UpgradeStatus: Upgraded to natty on 2011-08-23 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 834940] Re: package software-center 4.0.4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/834940

Title:
  package software-center 4.0.4 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Don't know why this happened.

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.48-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  Architecture: i386
  Date: Fri Aug 26 09:57:38 2011
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.4 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 827696] Re: Was installing OpenBravoERP but the Ubuntu Software Center was not updating software installation status.

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/827696

Title:
  Was installing OpenBravoERP but the Ubuntu Software Center was not
  updating software installation status.

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Was installing OpenBravoERP but the Ubuntu Software Center was not
  updating software installation status.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-10.46-generic 2.6.38.7
  Uname: Linux 2.6.38-10-generic i686
  Architecture: i386
  Date: Wed Aug 17 04:04:58 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 827607] Re: package software-center 4.0.4 failed to install/upgrade: ErrorMessage: el subproceso instalado el script post-installation devolvió el código de salida de error 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/827607

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

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  fallo del paquete de actualizacion desde el centro de software de ubuntu 
10.10. En esta actualizacion he tenido 4 fallos con una ventana que explica el 
error, son los siguientes:
  1- no se ha podido instalar 
var/cache/apt/archives/liblvm2app2.2_2.02.66-4Ubuntu2_i386.deb
  2-no se ha podido instalar software-center, el subproceso instalado el script 
post-installation devolvio el codigo de salida de error 1
  3-Lo sentimos fallo la actualizacion o instalacion del paquete liblvm2app2.2, 
puede ayudar informando
  4-fallo el paquete software-centerinformar del problemalogin 
launchpadfin.

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.35-30.56-generic 2.6.35.13
  Uname: Linux 2.6.35-30-generic i686
  Architecture: i386
  Date: Tue Aug 16 21:28:13 2011
  ErrorMessage: ErrorMessage: el subproceso instalado el script 
post-installation devolvió el código de salida de error 1
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.4 failed to install/upgrade: ErrorMessage: 
el subproceso instalado el script post-installation devolvió el código de 
salida de error 1
  UpgradeStatus: Upgraded to natty on 2011-08-16 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 871219] Re: changing software sources, applying changes, tells check your internet connection, failed, connection has not really problem - my internet connection is working

2012-05-02 Thread Kiwinote
*** This bug is a duplicate of bug 911706 ***
https://bugs.launchpad.net/bugs/911706

** This bug has been marked a duplicate of bug 911706
   USC relies on NM to be online, can't force online if not using NM

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/871219

Title:
  changing software sources, applying changes, tells check your internet
  connection, failed, connection has not really problem - my internet
  connection is working

Status in “software-center” package in Ubuntu:
  New

Bug description:
  I want to take off some of the software providers, a game 0 a.d. to be exact, 
try to apply the change:
  it does not work.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  Architecture: i386
  Date: Sun Oct  9 13:19:14 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_US.UTF-8
   LC_MESSAGES=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 872101] Re: root authorization non-functioning when trying to access Software Sources dialogue

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/872101

Title:
  root authorization non-functioning when trying to access Software
  Sources dialogue

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Aloha,

  In order to get to this place (launchpad) one has to click on the
  prior report a bug dialogue. Said dialogue sends system details, no?
  I ask this as below, on this page, it asks for the same sort of info.
  No prob, just confusing.

  System-About Ubuntu returns: You are using Ubuntu 11.04 - the Natty
  Narwhal - released in April 2011 and supported until October 2012.

  Clean install. No kernel, or any other, updates.

  In Terminal
   apt-cache policy pkgname  returns:  Unable to locate package pkgname

  ==

  My bug:
  Applications-Ubuntu Software Centre-Edit-Software Sources.

  Once I enter the admin account password, the expected Software
  Sources dialogue box does not appear. Instead, in the left pane of
  the Software Center window,  it shows a green rotating icon with In
  Progress next to it. This icon stops turning in a few seconds,
  leaving me almost where I started when I opened the Ubuntu Software
  Centre window.

  Good luck hombres. I'll continue to surf the Web for answers. If not a
  bug, please email link with the directions to let me achieve my goal
  in this Nabby Nabokov release.

  Merci mes amis!
  ~Hugh

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic x86_64
  NonfreeKernelModules: wl
  Architecture: amd64
  Date: Mon Oct 10 21:15:37 2011
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 868700] Re: When I try to install any application the authentication windows shakes and closes quickly and I can't use software center to install anything.

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/868700

Title:
  When I try to install any application the authentication windows
  shakes and closes quickly and I can't use software center to install
  anything.

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  When I try to install any application the authentication windows
  shakes and closes quickly and I can't  .use software center to install
  anything and it happen also with update manager.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Wed Oct  5 17:35:58 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=pt_BR:en
   LANG=pt_BR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 865659] Re: progra center will not load

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/865659

Title:
  progra center will not load

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  It will not load when I search for a program. When I want to install a
  program so as chrome, it doesn't load.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  Architecture: i386
  Date: Mon Oct  3 16:40:31 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=pt_BR:en
   LANG=pt_BR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 862253] Re: software-center crashed with SIGSEGV in Xapian::PostingIterator::operator*()

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/862253

Title:
  software-center crashed with SIGSEGV in
  Xapian::PostingIterator::operator*()

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  software-center crashed while I was browsing my installation history.
  I don't know if this is related.

  ProblemType: Crash
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic x86_64
  Architecture: amd64
  Date: Thu Sep 29 13:02:12 2011
  EcryptfsInUse: Yes
  ExecutablePath: /usr/share/software-center/software-center
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANGUAGE=en_US:en_GB:en
   PATH=(custom, user)
   LANG=de_DE.UTF-8
   LC_MESSAGES=en_US.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x7f120a04e743 _ZNK6Xapian15PostingIteratordeEv+3:   
mov(%rdi),%rax
   PC (0x7f120a04e743) ok
   source (%rdi) (0x) not located in a known VMA region (needed 
readable region)!
   destination %rax ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: software-center
  StacktraceTop:
   Xapian::PostingIterator::operator*() const () from /usr/lib/libxapian.so.22
   ?? () from /usr/lib/python2.7/dist-packages/xapian/_xapian.so
   PyEval_EvalFrameEx ()
   PyEval_EvalCodeEx ()
   PyEval_EvalFrameEx ()
  Title: software-center crashed with SIGSEGV in 
Xapian::PostingIterator::operator*()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm admin audio cdrom cyberjack dialout dip fax floppy fuse 
lpadmin netdev plugdev sambashare scard tape vboxusers video wireshark

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 858120] Re: Fail to install or remove packages

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/858120

Title:
  Fail to install or remove packages

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  I am feel very sad, because I remove windows7 from my system

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  Architecture: i386
  Date: Sat Sep 24 15:10:12 2011
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_IN:en
   LANG=en_IN
   LC_MESSAGES=en_IN.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-09-17 (6 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 848288] Re: software centre produces failure message

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/848288

Title:
  software centre produces failure message

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  failure message ends in-
  localepurge: Disk space freed in /usr/share/locale: 0 KiB

  localepurge: Disk space freed in /usr/share/man: 0 KiB

  Setting up prelude-lml (1.0.0-1build1) ...

  Starting Prelude LML: prelude-lmlinvoke-rc.d: initscript prelude-lml,
  action start failed.

  dpkg: error processing prelude-lml (--configure):

   subprocess installed post-installation script returned error exit
  status 1

  
  also unable to complete any updates including security updates
  using ubuntu studio

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5
  ProcVersionSignature: Ubuntu 2.6.38-11.49-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  NonfreeKernelModules: nvidia
  Architecture: i386
  Date: Mon Sep 12 21:55:07 2011
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu-Studio 11.04 Natty Narwhal - Release i386 
(20110426.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 899485] Re: can not install software from the repository in ubuntu 11.04

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/899485

Title:
  can not install software from the repository in ubuntu 11.04

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  i am using ubuntu 11.04 which does not even have the gnome shell
  all player that are marked installed do not work. when i try to install 
smplayer or any other player or software, an authentication error pops up and 
that is the end of every thing

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  Architecture: i386
  Date: Sat Dec  3 06:01:38 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-12-03 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 896917] Re: package software-center 4.0.5ubuntu0.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/896917

Title:
  package software-center 4.0.5ubuntu0.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  Doing normal update

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5ubuntu0.1
  ProcVersionSignature: Ubuntu 2.6.38-12.51-generic 2.6.38.8
  Uname: Linux 2.6.38-12-generic x86_64
  Architecture: amd64
  Date: Sun Nov 27 11:42:18 2011
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.5ubuntu0.1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to natty on 2011-09-18 (69 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 894785] Re: problèmes de paquets

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/894785

Title:
  problèmes de paquets

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  on me dit que logithèques ubuntu ne trouve pas les paquets
  nécessaire pour faire un téléchargement, ce qui fait que mon
  téléchargement ne peux pas s’effectuer et ceci est un gros problèmes
  pour moi. merci de pouvoir m'aider a changer sa je vous en prie. :)

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5ubuntu0.1
  ProcVersionSignature: Ubuntu 2.6.38-12.51-generic 2.6.38.8
  Uname: Linux 2.6.38-12-generic i686
  Architecture: i386
  Date: Fri Nov 25 18:44:23 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=fr_FR:en
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 882698] Re: logitheque dont load and pb internet

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/882698

Title:
  logitheque dont load and pb internet

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  package dont load with pb of cache and pb internet not normal

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5
  ProcVersionSignature: Ubuntu 2.6.38-12.51-generic 2.6.38.8
  Uname: Linux 2.6.38-12-generic i686
  Architecture: i386
  CheckboxSubmission: b3fcd7682b745ec1ae1e9f8293e10fb5
  CheckboxSystem: bce597fe29afb3fe1c82bf82e2c5b820
  Date: Thu Oct 27 19:39:35 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=fr_FR:en
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 880370] Re: package software-center 4.0.5 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/880370

Title:
  package software-center 4.0.5 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  I have no more details.  I turned on the computer and this error came
  up.

  ProblemType: Package
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic x86_64
  AptOrdering:
   epdfview: Install
   software-center: Configure
   epdfview: Configure
  Architecture: amd64
  Date: Sat Oct 22 15:00:54 2011
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release amd64 (20101007)
  PackageArchitecture: all
  SourcePackage: software-center
  Title: package software-center 4.0.5 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to natty on 2011-09-18 (34 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 879024] Re: No puedo descargar nuevos programas a traves de Centro de software de Ubuntu

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/879024

Title:
  No puedo descargar nuevos programas a traves de Centro de software de
  Ubuntu

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  No me es posible descargar nuevos programas utilizando la aplicación
  Centro de Software de Ubuntu.

  Gracias

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic x86_64
  Architecture: amd64
  Date: Thu Oct 20 20:49:53 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=es_ES:en
   LANG=es_ES.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-10-18 (2 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 881023] Re: no software in For Purchase menu

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/881023

Title:
  no software in For Purchase menu

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  No software in menu For Purchase

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.5
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic i686
  Architecture: i386
  Date: Mon Oct 24 20:38:07 2011
  InstallationMedia: Kubuntu 11.04 Natty Narwhal - Alpha i386 (20110303)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=pl_PL
   PATH=(custom, user)
   LANG=pl_PL.UTF-8
   LC_MESSAGES=pl_PL.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 875363] Re: downloaded flash player to sioft ware centre and installed it but I still can not play games on the net

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/875363

Title:
  downloaded flash player to sioft ware centre and installed it but I
  still can not play games on the net

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  the adobe flash player down load wont work even though I installed it

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: software-center 4.0.4
  ProcVersionSignature: Ubuntu 2.6.38-11.50-generic 2.6.38.8
  Uname: Linux 2.6.38-11-generic x86_64
  Architecture: amd64
  Date: Sat Oct 15 23:32:07 2011
  InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64 (20110427.1)
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_GB:en
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to natty on 2011-10-15 (0 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 872681] Re: Ubuntu 11.04 always show: Install application failed when install or update any apps but these apps still installed like normal

2012-05-02 Thread Kiwinote
Hi!

Thanks for your bug report and sorry for the delayed response.
As you may be aware, during each cycle a lot of work goes into
software-center. However, over time we build up a long list of
bugs which are most likely no longer present in recent versions
of software-center.

In an attempt to clean up the bug list for software-center I am
expiring this bug because it was filed against an old version of
software-center which shipped in Ubuntu 11.04 and in addition it
meets one or more of the following criteria:
- it would seem quite likely that this bug is no longer present
  in recent versions of software-center,
- the bug report does not contain sufficient information for us
  to reproduce and/or fix the bug,
- the issue is most likely in an external piece of code and has
  most likely been fixed since the bug was reported.

If you experience any problems with Software Center in Ubuntu
12.04, please do continue to report new bugs. Thanks again for
your help!

** Changed in: software-center (Ubuntu)
   Status: New = Expired

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to software-center in Ubuntu.
https://bugs.launchpad.net/bugs/872681

Title:
  Ubuntu 11.04 always show: Install application failed when install or
  update any apps but these apps still installed like normal

Status in “software-center” package in Ubuntu:
  Expired

Bug description:
  installArchives() failed: perl: warning: Setting locale failed.

  perl: warning: Please check that your locale settings:

  LANGUAGE = (unset),

  LC_ALL = (unset),

  LANG = vi_VN.TCVN

  are supported and installed on your system.

  perl: warning: Falling back to the standard locale (C).

  locale: Cannot set LC_CTYPE to default locale: No such file or
  directory

  locale: Cannot set LC_MESSAGES to default locale: No such file or
  directory

  locale: Cannot set LC_ALL to default locale: No such file or directory

  perl: warning: Setting locale failed.

  perl: warning: Please check that your locale settings:

  LANGUAGE = (unset),

  LC_ALL = (unset),

  LANG = vi_VN.TCVN

  are supported and installed on your system.

  perl: warning: Falling back to the standard locale (C).

  locale: Cannot set LC_CTYPE to default locale: No such file or
  directory

  locale: Cannot set LC_MESSAGES to default locale: No such file or
  directory

  locale: Cannot set LC_ALL to default locale: No such file or directory

  perl: warning: Setting locale failed.

  perl: warning: Please check that your locale settings:

  LANGUAGE = (unset),

  LC_ALL = (unset),

  LANG = vi_VN.TCVN

  are supported and installed on your system.

  perl: warning: Falling back to the standard locale (C).

  locale: Cannot set LC_CTYPE to default locale: No such file or
  directory

  locale: Cannot set LC_MESSAGES to default locale: No such file or
  directory

  locale: Cannot set LC_ALL to default locale: No such file or directory

  Selecting previously deselected package libqtcore4.

  (Reading database ... 
  (Reading database ... 5%
  (Reading database ... 10%
  (Reading database ... 15%
  (Reading database ... 20%
  (Reading database ... 25%
  (Reading database ... 30%
  (Reading database ... 35%
  (Reading database ... 40%
  (Reading database ... 45%
  (Reading database ... 50%
  (Reading database ... 55%
  (Reading database ... 60%
  (Reading database ... 65%
  (Reading database ... 70%
  (Reading database ... 75%
  (Reading database ... 80%
  (Reading database ... 85%
  (Reading database ... 90%
  (Reading database ... 95%
  (Reading database ... 100%
  (Reading database ... 162071 files and directories currently installed.)

  Unpacking libqtcore4 (from
  .../libqtcore4_4%3a4.7.2-0ubuntu6.2_i386.deb) ...

  Selecting previously deselected package libqt4-xml.

  Unpacking libqt4-xml (from
  .../libqt4-xml_4%3a4.7.2-0ubuntu6.2_i386.deb) ...

  Selecting previously deselected package libqt4-dbus.

  Unpacking libqt4-dbus (from
  .../libqt4-dbus_4%3a4.7.2-0ubuntu6.2_i386.deb) ...

  Selecting previously deselected package libaudio2.

  Unpacking libaudio2 (from .../libaudio2_1.9.2-4ubuntu1_i386.deb) ...

  Selecting previously deselected package libqtgui4.

  Unpacking libqtgui4 (from .../libqtgui4_4%3a4.7.2-0ubuntu6.2_i386.deb)
  ...

  Selecting previously deselected package libdbusmenu-qt2.

  Unpacking libdbusmenu-qt2 (from .../libdbusmenu-
  qt2_0.8.2-0ubuntu2_i386.deb) ...

  Selecting previously deselected package appmenu-qt.

  Unpacking appmenu-qt (from .../appmenu-qt_0.1.2-0ubuntu1_i386.deb) ...

  Selecting previously deselected package mysql-common.

  Unpacking mysql-common (from .../mysql-common_5.1.54-1ubuntu4_all.deb)
  ...

  Selecting previously deselected package libmysqlclient16.

  Unpacking libmysqlclient16 (from
  .../libmysqlclient16_5.1.54-1ubuntu4_i386.deb) ...

  Selecting previously deselected package 

  1   2   3   4   5   6   >