[Bug 1843076] Re: [eoan regression] Clicking install button no longer works in update-manager

2019-09-11 Thread Kiwinote
I can confirm that having installed this update (obviously not via
update-manager) that further updates can once again be installed via
update-manager. Thanks Łukasz :)

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

Title:
  [eoan regression] Clicking install button no longer works in update-
  manager

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

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

[Bug 1783597] Re: The disk-space-needed estimate doesn't account for the snaps

2019-09-09 Thread Kiwinote
Hello. Just so that the relevant people see it - this upload would
appear to cause the install button in update-manager to stop working as
per https://bugs.launchpad.net/ubuntu/+source/ubuntu-release-
upgrader/+bug/1843076

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

Title:
  The disk-space-needed estimate doesn't account for the snaps

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

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

[Bug 1843076] [NEW] [eoan regression] Clicking install button no longer works in update-manager

2019-09-06 Thread Kiwinote
Public bug reported:

It would appear that the latest version of ubuntu-release-upgrader
(1:19.10.11) causes the install button in update-manager to no longer
work.

steps to reproduce:
- launch 'update manager'
- updates are available
- click 'install now'
- nothing happens (ie crash with the below traceback)

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/UpdateManager/Dialogs.py", line 118, in 

button.connect("clicked", lambda x: callback())
  File "/usr/lib/python3/dist-packages/UpdateManager/UpdatesAvailable.py", line 
848, in on_button_install_clicked
self.cache.checkFreeSpace()
  File "/usr/lib/python3/dist-packages/DistUpgrade/DistUpgradeCache.py", line 
1161, in checkFreeSpace
("/var", self.quirks.extra_snap_space),
AttributeError: 'MyCache' object has no attribute 'quirks'

eoan:
- update-manager 1:19.04.7
- ubuntu-release-upgrader 1:19.10.11

Confirmed by
https://errors.ubuntu.com/problem/94df71a401d64c84828d7e85e15fc6c4b3555b99

** Affects: ubuntu-release-upgrader (Ubuntu)
 Importance: Undecided
 Status: Confirmed

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

** Also affects: update-manager (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  [eoan regression] Clicking install button no longer works in update-
  manager

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

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

[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1551273

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

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

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


[Bug 1486061] Re: Long descriptions missing from apt cache - affects software-center etc

2015-09-28 Thread Kiwinote
I've had a look into this and it seems that if I take the latest version
of apt in wily and apply the changes as set out in
https://github.com/Debian/apt/commit/8965b2f8e6738463c20f69e76ba888a8d77225e3
then I consistently get all descriptions showing both in English and
other languages. I don't know the apt codebase, nor do I know c++, so
this should be looked over by someone with a bit more knowledge.

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

Title:
  Long descriptions missing from apt cache - affects software-center etc

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

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


[Bug 1396553] Re: No rating and 0 reviews shown for all applications in the dash

2015-09-25 Thread Kiwinote
This has been broken for quite a while - there are two parts to this:

--> UNITY_LENS_APPLICATIONS
Unity-lens-applications reads a Berkeley DB file which is generated by 
software-center. The filename contains the version number of libdb. In February 
2012 the transition [0] to libdb5.1 was done, in November 2013 there was a 
transition [1] to libdb5.3, but the filename was not updated, which means that 
since then the source code of unity-lens-applications had had a wrong filename 
in line 42 of src/unity-ratings-db.c [2].

[0] 
http://bazaar.launchpad.net/~unity-team/unity-lens-applications/trunk/revision/17.1.166
[1] 
http://bazaar.launchpad.net/~unity-team/unity-lens-applications/trunk/revision/375
[2] 
http://bazaar.launchpad.net/~unity-team/unity-lens-applications/trunk/view/head:/src/unity-ratings-db.c

--> SOFTWARE_CENTER
Upon launching software-center, software-center generates a file for 
unity-lens-applications to read. For at least a year, if not multiple years, 
software-center crashes whilst trying to generate this db. The crash occurs in 
line 336 of [3] with "DBInvalidArgError: (22, 'Invalid argument -- BDB0054 
illegal flag combination specified to DB_ENV->open')". Experimentation seems to 
show that removing the "|bdb.DB_NOMMAP" stops this crash. The NOMMAP flag was 
introduced in [4], but I don't know enough about the Berkeley DB format to know 
why the NOMMAP flag should or shouldn't be in use. The internet seems to 
describe the flag as "Always copy read-only database files in this environment 
into the local cache instead of potentially mapping them into process memory". 
I couldn't pull up any other illegal flag combinations using NOMMAP errors 
besides software-center.

[3] 
http://bazaar.launchpad.net/~ubuntuone-control-tower/software-center/trunk/view/2869/softwarecenter/backend/reviews/__init__.py
[4] 
http://bazaar.launchpad.net/~ubuntuone-control-tower/software-center/trunk/revision/2434

After installing a modified version of unity-lens-applications and
changing software-center and launching software-center I needed to kill
the unity-scope-loader process after which the ratings reappeared in the
dash (obviously only for apps which have ratings, which are not the
newest ones).

Another issue affecting the applications lens is the missing
applications descriptions due to bug #1486061

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

Title:
  No rating and 0 reviews shown for all applications in the dash

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

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


[Bug 1497626] Re: Package descriptions are severely truncated

2015-09-23 Thread Kiwinote
*** This bug is a duplicate of bug 1486061 ***
https://bugs.launchpad.net/bugs/1486061

** This bug has been marked a duplicate of bug 1486061
   Long descriptions missing from apt cache - affects software-center etc

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

Title:
  Package descriptions are severely truncated

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

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


[Bug 1486061] Re: Long descriptions appear to be missing from apt cache

2015-09-23 Thread Kiwinote
** Description changed:

- apt 1.0.9.10ubuntu6 - ubuntu wily
+ apt 1.0.9.10ubuntu6 and 1.0.9.10ubuntu7 - ubuntu wily
  
  It appears that on wily the long package descriptions are missing from
- the apt-cache.
+ the apt-cache. As a result of this bug full package descriptions are
+ missing (amongst others) in software-center, update-manager, synaptic
+ etc.
  
  The files like /var/lib/apt/lists/archive.ubuntu
  .com_ubuntu_dists_wily_universe_i18n_Translation-en do exist with a
  recent timestamp, so it looks the downloading of the translations has
  taken place.
  
  Using the python bindings cache['gimp'].candidate.description returns an
  empty string.
  
  Apt-cache also seems to be missing the 'Description-en' key:
  
  $ apt-cache show gimp
  Package: gimp
  Priority: optional
  Section: graphics
  Installed-Size: 15538
  Maintainer: Ubuntu Developers 
  Original-Maintainer: Ari Pollak 
  Architecture: amd64
  Version: 2.8.14-1ubuntu2
  Replaces: gimp-plugin-registry (<< 4.20120506)
  Provides: gimp-python
  Depends: libgimp2.0 (>= 2.8.14), libgimp2.0 (<= 2.8.14-z), gimp-data (>= 
2.8.14), gimp-data (<= 2.8.14-z), python-gtk2 (>= 2.8.0), libgdk-pixbuf2.0-0 
(>= 2.24.1), libaa1 (>= 1.4p5), libbabl-0.1-0 (>= 0.1.10), libbz2-1.0, libc6 
(>= 2.15), libcairo2 (>= 1.10.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 
0.88), libexif12 (>= 0.6.21-1~), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 
2.2.1), libgegl-0.3-0 (>= 0.3.0), libglib2.0-0 (>= 2.41.1), libgs9 (>= 
8.61.dfsg.1), libgtk2.0-0 (>= 2.24.10), libgudev-1.0-0 (>= 146), libjasper1, 
libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libmng2 (>= 1.0.10), 
libpango-1.0-0 (>= 1.29.4), libpangocairo-1.0-0 (>= 1.29.4), libpangoft2-1.0-0 
(>= 1.29.4), libpng12-0 (>= 1.2.13-4), libpoppler-glib8 (>= 0.18.0), librsvg2-2 
(>= 2.14.4), libtiff5 (>= 4.0.3), libwmf0.2-7 (>= 0.2.8.4), libx11-6, 
libxcursor1 (>> 1.1.2), libxext6, libxfixes3, libxmu6, libxpm4, zlib1g (>= 
1:1.1.4), python:any (>= 2.6.6-7~), python2.7
  Recommends: ghostscript
  Suggests: gimp-help-en | gimp-help, gimp-data-extras, gvfs-backends, 
libasound2
  Breaks: gimp-plugin-registry (<< 4.20120506)
  Filename: pool/main/g/gimp/gimp_2.8.14-1ubuntu2_amd64.deb
  Size: 3476280
  MD5sum: d33d0d48362d03767f486185fa3e21cf
  SHA1: 8f65b842f5ec4a07b8ebf71c13ed9f97ed886474
  SHA256: 92eebf090c4f7f7e7ec5d9a06f3fe34f35221c44602d290201b05aa73b2ff2e1
  Description: The GNU Image Manipulation Program
  Description-md5: ad6dd18a09fb86ea4529ac53f33168b9
  Homepage: http://www.gimp.org/
  Bugs: https://bugs.launchpad.net/ubuntu/+filebug
  Origin: Ubuntu
  Supported: 9m
  Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, 
ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics
- 
- I hit bug #1485970 last night, so I might have upset apt whilst trying
- to resolve the breakage, but at the moment everything minus the long
- descriptions seems to be working fine.
- 
- As a result of this bug things like software center aren't showing
- package descriptions.

** Summary changed:

- Long descriptions appear to be missing from apt cache
+ Long descriptions missing from apt cache - affects software-center etc

** Tags added: rls-w-incoming

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

Title:
  Long descriptions missing from apt cache - affects software-center etc

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

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


[Bug 1486061] [NEW] Long descriptions appear to be missing from apt cache

2015-08-18 Thread Kiwinote
Public bug reported:

apt 1.0.9.10ubuntu6 - ubuntu wily

It appears that on wily the long package descriptions are missing from
the apt-cache.

The files like /var/lib/apt/lists/archive.ubuntu
.com_ubuntu_dists_wily_universe_i18n_Translation-en do exist with a
recent timestamp, so it looks the downloading of the translations has
taken place.

Using the python bindings cache['gimp'].candidate.description returns an
empty string.

Apt-cache also seems to be missing the 'Description-en' key:

$ apt-cache show gimp
Package: gimp
Priority: optional
Section: graphics
Installed-Size: 15538
Maintainer: Ubuntu Developers ubuntu-devel-disc...@lists.ubuntu.com
Original-Maintainer: Ari Pollak a...@debian.org
Architecture: amd64
Version: 2.8.14-1ubuntu2
Replaces: gimp-plugin-registry ( 4.20120506)
Provides: gimp-python
Depends: libgimp2.0 (= 2.8.14), libgimp2.0 (= 2.8.14-z), gimp-data (= 
2.8.14), gimp-data (= 2.8.14-z), python-gtk2 (= 2.8.0), libgdk-pixbuf2.0-0 
(= 2.24.1), libaa1 (= 1.4p5), libbabl-0.1-0 (= 0.1.10), libbz2-1.0, libc6 
(= 2.15), libcairo2 (= 1.10.2), libdbus-1-3 (= 1.0.2), libdbus-glib-1-2 (= 
0.88), libexif12 (= 0.6.21-1~), libfontconfig1 (= 2.9.0), libfreetype6 (= 
2.2.1), libgegl-0.3-0 (= 0.3.0), libglib2.0-0 (= 2.41.1), libgs9 (= 
8.61.dfsg.1), libgtk2.0-0 (= 2.24.10), libgudev-1.0-0 (= 146), libjasper1, 
libjpeg8 (= 8c), liblcms2-2 (= 2.2+git20110628), libmng2 (= 1.0.10), 
libpango-1.0-0 (= 1.29.4), libpangocairo-1.0-0 (= 1.29.4), libpangoft2-1.0-0 
(= 1.29.4), libpng12-0 (= 1.2.13-4), libpoppler-glib8 (= 0.18.0), librsvg2-2 
(= 2.14.4), libtiff5 (= 4.0.3), libwmf0.2-7 (= 0.2.8.4), libx11-6, 
libxcursor1 ( 1.1.2), libxext6, libxfixes3, libxmu6, libxpm4, zlib1g (= 
1:1.1.4), python:any (= 2.6.6-7~), python2.7
Recommends: ghostscript
Suggests: gimp-help-en | gimp-help, gimp-data-extras, gvfs-backends, libasound2
Breaks: gimp-plugin-registry ( 4.20120506)
Filename: pool/main/g/gimp/gimp_2.8.14-1ubuntu2_amd64.deb
Size: 3476280
MD5sum: d33d0d48362d03767f486185fa3e21cf
SHA1: 8f65b842f5ec4a07b8ebf71c13ed9f97ed886474
SHA256: 92eebf090c4f7f7e7ec5d9a06f3fe34f35221c44602d290201b05aa73b2ff2e1
Description: The GNU Image Manipulation Program
Description-md5: ad6dd18a09fb86ea4529ac53f33168b9
Homepage: http://www.gimp.org/
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu
Supported: 9m
Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, 
ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics

I hit bug #1485970 last night, so I might have upset apt whilst trying
to resolve the breakage, but at the moment everything minus the long
descriptions seems to be working fine.

As a result of this bug things like software center aren't showing
package descriptions.

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

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

Title:
  Long descriptions appear to be missing from apt cache

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1306543

Title:
  python3.4 breaks installing deb files

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

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


[Bug 1306543] Re: python3.4 breaks installing deb files

2014-04-11 Thread Kiwinote
Thanks for that info Barry! Looks like mvo has a fix over at
https://code.launchpad.net/~aptdaemon-developers/aptdaemon/ubuntu-trusty

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

Title:
  python3.4 breaks installing deb files

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

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


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

2013-06-26 Thread Kiwinote
(print screen doesn't seem to work when the menu is open, so you can
launch the 'screenshot' app and set it to grab the whole screen after a
delay of say 5 seconds - now promptly open the edit menu and wait a
little)

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

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1193139

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

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

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


[Bug 1186751] Re: Don't hard-depend on humanity-icon-theme

2013-06-02 Thread Kiwinote
just to clarify:
- we depend on the humanity-icon-theme. There are many icon themes that do not 
ship all the category (no longer relevant) and subcategory (still required) 
icons. This leads to empty / generic icons being displayed if 
humanity-icon-theme is not installed - this being a suboptimal experience -, 
and we have had bug reports about this. It is perhaps unfortunate that this 
requires a dependency on humanity-icon-theme, but I think it's justifiable.
- the humanity icon theme is added last, this means that the current icon theme 
(this can also be the high contrast icon theme) gets the first opportunity to 
supply all the icons, the humanity icon theme is used solely as a fallback.
- everything in softwarecenter/ui/qml was experimental. If I recall correctly 
at the time when that was written it was not known how  to (or perhaps not even 
possible to) load icons from the icon theme or something of the likes.

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

Title:
  Don't hard-depend on humanity-icon-theme

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1097315

Title:
  Xorg hangs in drm_helper_connector_dpms

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

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


[Bug 1114516] Re: bluetooth headset stops working

2013-02-10 Thread Kiwinote
Is there any chance you might be able to provide packages for i386?
Thanks

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] Re: bluetooth headset stops working

2013-02-06 Thread Kiwinote
Hi! I tested the mainline kernels 3.7, 3.7.1, 3.7.2, 3.7.6 and they all
seem to work, so it would seem that the 3.7 line never regressed. I
tested the mainline kernel 3.8-rc1 (and earlier also 3.8-rc6) and they
both hit this issue.

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] Re: bluetooth headset stops working

2013-02-05 Thread Kiwinote
The issue persists with the mainline kernel:

Feb  5 09:59:56 fourish kernel: [   93.307359] BUG: unable to handle kernel 
NULL pointer dereference at 0280
Feb  5 09:59:56 fourish kernel: [   93.307587] IP: [f868f7b4] 
hci_send_sco+0x14/0x80 [bluetooth]
Feb  5 09:59:56 fourish kernel: [   93.307780] *pdpt = 20d51001 *pde = 
 
Feb  5 09:59:56 fourish kernel: [   93.307945] Oops:  [#1] SMP 
Feb  5 09:59:56 fourish kernel: [   93.308019] Modules linked in: btusb 
snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm coretemp 
snd_page_alloc snd_seq_midi snd_seq_midi_event snd_rawmidi dell_laptop arc4 
compal_laptop uvcvideo snd_seq videobuf2_vmalloc dcdbas b43 videobuf2_memops 
bcma i915 videobuf2_core snd_seq_device mac80211 psmouse ath3k snd_timer 
videodev drm_kms_helper microcode lpc_ich joydev snd jmb38x_ms drm serio_raw 
memstick cfg80211 soundcore i2c_algo_bit video mac_hid bnep rfcomm bluetooth 
parport_pc ppdev binfmt_misc lp parport hid_logitech ff_memless usbhid hid ssb 
r8169 sdhci_pci sdhci
Feb  5 09:59:56 fourish kernel: [   93.308019] Pid: 2091, comm: bluetooth Not 
tainted 3.8.0-030800rc6-generic #201301312135 Dell Inc. Inspiron 910/  
Feb  5 09:59:56 fourish kernel: [   93.308019] EIP: 0060:[f868f7b4] EFLAGS: 
00010282 CPU: 0
Feb  5 09:59:56 fourish kernel: [   93.308019] EIP is at hci_send_sco+0x14/0x80 
[bluetooth]
Feb  5 09:59:56 fourish kernel: [   93.308019] EAX:  EBX: e0fc8c00 ECX: 
da7422a0 EDX: e0fc8c00
Feb  5 09:59:56 fourish kernel: [   93.308019] ESI: 0030 EDI: da679eac EBP: 
da679d68 ESP: da679d54
Feb  5 09:59:56 fourish kernel: [   93.308019]  DS: 007b ES: 007b FS: 00d8 GS: 
00e0 SS: 0068
Feb  5 09:59:56 fourish kernel: [   93.308019] CR0: 80050033 CR2: 0280 CR3: 
2172c000 CR4: 07e0
Feb  5 09:59:56 fourish kernel: [   93.308019] DR0:  DR1:  DR2: 
 DR3: 
Feb  5 09:59:56 fourish kernel: [   93.308019] DR6: 0ff0 DR7: 0400
Feb  5 09:59:56 fourish kernel: [   93.308019] Process bluetooth (pid: 2091, 
ti=da678000 task=da63b340 task.ti=da678000)
Feb  5 09:59:56 fourish kernel: [   93.308019] Stack:
Feb  5 09:59:56 fourish kernel: [   93.308019]  c153092f e0fc8838 e0fc8c00 
0030 da679eac da679d8c f86ae7b3 da679d7c
Feb  5 09:59:56 fourish kernel: [   93.308019]  da679e98 da7422a0  
e0e0fc00 da679e90 ff95 da679da4 f86aef23
Feb  5 09:59:56 fourish kernel: [   93.308019]  0030 f86b2d00 d7fa0780 
da679e34 da679e80 c1524d41 0030 0030
Feb  5 09:59:56 fourish kernel: [   93.308019] Call Trace:
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c153092f] ? 
memcpy_fromiovec+0x3f/0x70
Feb  5 09:59:56 fourish kernel: [   93.308019]  [f86ae7b3] 
sco_send_frame.isra.2+0xc3/0x120 [bluetooth]
Feb  5 09:59:56 fourish kernel: [   93.308019]  [f86aef23] 
sco_sock_sendmsg+0x73/0x90 [bluetooth]
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c1524d41] 
sock_sendmsg+0xd1/0xf0
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c10875ec] ? 
enqueue_task_fair+0x5cc/0x7b0
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c10bca19] ? 
__stop_machine+0x99/0xd0
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c1526a9e] 
sys_sendto+0x10e/0x150
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c107c36c] ? 
ttwu_queue+0xac/0xc0
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c107e380] ? 
try_to_wake_up+0x140/0x190
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c107e3ff] ? 
wake_up_state+0xf/0x20
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c10a5c25] ? 
wake_futex+0x75/0xa0
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c10a6d06] ? 
futex_wake+0xf6/0x110
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c1526b1b] sys_send+0x3b/0x40
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c1527482] 
sys_socketcall+0x182/0x2e0
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c12f50e0] ? 
copy_to_user+0x40/0x60
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c106c4c8] ? 
sys_clock_gettime+0x48/0x70
Feb  5 09:59:56 fourish kernel: [   93.308019]  [c162e18d] 
sysenter_do_call+0x12/0x28
Feb  5 09:59:56 fourish kernel: [   93.308019] Code: 43 6d 9d c8 8b 5d f4 8b 75 
f8 8b 7d fc 89 ec 5d c3 8d b6 00 00 00 00 55 89 e5 83 ec 14 89 5d f4 89 75 f8 
89 7d fc 3e 8d 74 26 00 8b b8 80 02 00 00 0f b7 48 14 89 c6 8b 42 50 89 d3 ba 
03 00 00
Feb  5 09:59:56 fourish kernel: [   93.308019] EIP: [f868f7b4] 
hci_send_sco+0x14/0x80 [bluetooth] SS:ESP 0068:da679d54
Feb  5 09:59:56 fourish kernel: [   93.308019] CR2: 0280
Feb  5 09:59:56 fourish kernel: [   93.400821] ---[ end trace 93bf018dc370c403 
]---
Feb  5 10:01:03 fourish kernel: [  160.216297] Bluetooth: hci0 SCO packet for 
unknown connection handle 65531
Feb  5 10:01:03 fourish kernel: [  160.216314] Bluetooth: hci0 SCO packet for 
unknown connection handle 65527
Feb  5 10:01:03 fourish kernel: [  160.236292] Bluetooth: hci0 SCO packet for 
unknown connection handle 59135
Feb  5 10:01:03 fourish kernel: [  160.236311] Bluetooth: hci0 SCO 

[Bug 1114516] [NEW] bluetooth headset stops working

2013-02-03 Thread Kiwinote
Public bug reported:

I have a Dell mini 9 with a usb bluetooth adapter and a bluetooth
headset. For the last while (possibly since the 3.8 kernel has been in
raring) I can pair the headset, but within a minute bluetooth stops
working and a black screen with white text flashes up briefly. Hereafter
the sound indicator -- sound settings no longer shows any audio
devices. /var/log/kern.log for this session is attached. Please let me
know if you need any additional info.

Feb  3 19:15:36 fourish kernel: [23400.481233] BUG: unable to handle kernel 
NULL pointer dereference at 0280
Feb  3 19:15:36 fourish kernel: [23400.481454] IP: [f8646774] 
hci_send_sco+0x14/0x80 [bluetooth]
Feb  3 19:15:36 fourish kernel: [23400.481646] *pdpt = 217fc001 *pde = 
 
Feb  3 19:15:36 fourish kernel: [23400.481821] Oops:  [#1] SMP 
Feb  3 19:15:36 fourish kernel: [23400.481933] Modules linked in: btusb ath3k 
coretemp joydev(F) hid_logitech ff_memless arc4(F) b43 snd_hda_codec_realtek 
bcma mac80211 dell_laptop compal_laptop dcdbas snd_hda_intel i915 cfg80211 
snd_hda_codec snd_hwdep(F) microcode(F) snd_pcm(F) uvcvideo snd_page_alloc(F) 
videobuf2_vmalloc videobuf2_memops videobuf2_core snd_seq_midi(F) 
snd_seq_midi_event(F) drm_kms_helper videodev jmb38x_ms snd_rawmidi(F) usbhid 
hid drm lpc_ich psmouse(F) serio_raw(F) snd_seq(F) i2c_algo_bit memstick 
snd_seq_device(F) snd_timer(F) snd(F) soundcore(F) rfcomm bnep bluetooth 
parport_pc(F) ppdev(F) video(F) mac_hid binfmt_misc(F) lp(F) parport(F) r8169 
ssb sdhci_pci sdhci
Feb  3 19:15:36 fourish kernel: [23400.484012] Pid: 5066, comm: bluetooth 
Tainted: GF3.8.0-4-generic #8-Ubuntu Dell Inc. Inspiron 910/  
Feb  3 19:15:36 fourish kernel: [23400.484025] EIP: 0060:[f8646774] EFLAGS: 
00010286 CPU: 0
Feb  3 19:15:36 fourish kernel: [23400.484025] EIP is at hci_send_sco+0x14/0x80 
[bluetooth]
Feb  3 19:15:36 fourish kernel: [23400.484025] EAX:  EBX: f6abca00 ECX: 
e14183e0 EDX: f3f5e500
Feb  3 19:15:36 fourish kernel: [23400.484025] ESI: 0030 EDI: f3f3fe98 EBP: 
f3f3fd88 ESP: f3f3fd74
Feb  3 19:15:36 fourish kernel: [23400.484025]  DS: 007b ES: 007b FS: 00d8 GS: 
00e0 SS: 0068
Feb  3 19:15:36 fourish kernel: [23400.484025] CR0: 80050033 CR2: 0280 CR3: 
1edcc000 CR4: 07e0
Feb  3 19:15:36 fourish kernel: [23400.484025] DR0:  DR1:  DR2: 
 DR3: 
Feb  3 19:15:36 fourish kernel: [23400.484025] DR6: 0ff0 DR7: 0400
Feb  3 19:15:36 fourish kernel: [23400.484025] Process bluetooth (pid: 5066, 
ti=f3f3e000 task=c1c08cd0 task.ti=f3f3e000)
Feb  3 19:15:36 fourish kernel: [23400.484025] Stack:
Feb  3 19:15:36 fourish kernel: [23400.484025]  c152560f f3f5e438 f6abca00 
0030 f3f3fe98 f3f3fdac f86646aa f3f3fd9c
Feb  3 19:15:36 fourish kernel: [23400.484025]  e14183e0 f3f5e500  
e86fd980 0030 f8668d00 f3f3fe84 c151abbc
Feb  3 19:15:36 fourish kernel: [23400.484025]  0030 f3f3fea0 f3f3fe00 
f3f3fe18 c108446b f73f3710 0030 e86fd980
Feb  3 19:15:36 fourish kernel: [23400.484025] Call Trace:
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c152560f] ? 
memcpy_fromiovec+0x3f/0x70
Feb  3 19:15:36 fourish kernel: [23400.484025]  [f86646aa] 
sco_sock_sendmsg+0xfa/0x180 [bluetooth]
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151abbc] 
sock_sendmsg+0x9c/0xd0
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c108446b] ? 
enqueue_entity+0x4db/0xd40
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151bc8d] 
sys_sendto+0xfd/0x140
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c107c56f] ? 
wake_up_state+0xf/0x20
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c10a3945] ? 
wake_futex+0x65/0x80
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c10a3a4e] ? 
futex_wake+0xee/0x110
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c10a5bbb] ? 
do_futex+0xeb/0x550
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151bd0b] sys_send+0x3b/0x40
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151c655] 
sys_socketcall+0x185/0x2d0
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c12f2091] ? 
copy_to_user+0x41/0x60
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c106af28] ? 
sys_clock_gettime+0x48/0x70
Feb  3 19:15:36 fourish kernel: [23400.484025]  [c161758d] 
sysenter_do_call+0x12/0x28
Feb  3 19:15:36 fourish kernel: [23400.484025] Code: ff e9 19 ff ff ff 90 89 fa 
89 f0 e8 77 bc ed c8 eb 9a 90 8d 74 26 00 55 89 e5 83 ec 14 89 5d f4 89 75 f8 
89 7d fc 3e 8d 74 26 00 8b b0 80 02 00 00 0f b7 48 14 89 c7 8b 42 50 89 d3 ba 
03 00 00
Feb  3 19:15:36 fourish kernel: [23400.484025] EIP: [f8646774] 
hci_send_sco+0x14/0x80 [bluetooth] SS:ESP 0068:f3f3fd74
Feb  3 19:15:36 fourish kernel: [23400.484025] CR2: 0280
Feb  3 19:15:36 fourish kernel: [23400.543629] ---[ end trace f521fe079a905b72 
]---

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

** Attachment added: bt_kernel.log
   

[Bug 1114516] BootDmesg.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513677/+files/BootDmesg.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] CRDA.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/1114516/+attachment/3513678/+files/CRDA.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] Re: bluetooth headset stops working

2013-02-03 Thread Kiwinote
apport information

** Tags added: apport-collected running-unity

** Description changed:

  I have a Dell mini 9 with a usb bluetooth adapter and a bluetooth
  headset. For the last while (possibly since the 3.8 kernel has been in
  raring) I can pair the headset, but within a minute bluetooth stops
  working and a black screen with white text flashes up briefly. Hereafter
  the sound indicator -- sound settings no longer shows any audio
  devices. /var/log/kern.log for this session is attached. Please let me
  know if you need any additional info.
  
  Feb  3 19:15:36 fourish kernel: [23400.481233] BUG: unable to handle kernel 
NULL pointer dereference at 0280
  Feb  3 19:15:36 fourish kernel: [23400.481454] IP: [f8646774] 
hci_send_sco+0x14/0x80 [bluetooth]
  Feb  3 19:15:36 fourish kernel: [23400.481646] *pdpt = 217fc001 *pde 
=  
  Feb  3 19:15:36 fourish kernel: [23400.481821] Oops:  [#1] SMP 
  Feb  3 19:15:36 fourish kernel: [23400.481933] Modules linked in: btusb ath3k 
coretemp joydev(F) hid_logitech ff_memless arc4(F) b43 snd_hda_codec_realtek 
bcma mac80211 dell_laptop compal_laptop dcdbas snd_hda_intel i915 cfg80211 
snd_hda_codec snd_hwdep(F) microcode(F) snd_pcm(F) uvcvideo snd_page_alloc(F) 
videobuf2_vmalloc videobuf2_memops videobuf2_core snd_seq_midi(F) 
snd_seq_midi_event(F) drm_kms_helper videodev jmb38x_ms snd_rawmidi(F) usbhid 
hid drm lpc_ich psmouse(F) serio_raw(F) snd_seq(F) i2c_algo_bit memstick 
snd_seq_device(F) snd_timer(F) snd(F) soundcore(F) rfcomm bnep bluetooth 
parport_pc(F) ppdev(F) video(F) mac_hid binfmt_misc(F) lp(F) parport(F) r8169 
ssb sdhci_pci sdhci
  Feb  3 19:15:36 fourish kernel: [23400.484012] Pid: 5066, comm: bluetooth 
Tainted: GF3.8.0-4-generic #8-Ubuntu Dell Inc. Inspiron 910/  
  Feb  3 19:15:36 fourish kernel: [23400.484025] EIP: 0060:[f8646774] EFLAGS: 
00010286 CPU: 0
  Feb  3 19:15:36 fourish kernel: [23400.484025] EIP is at 
hci_send_sco+0x14/0x80 [bluetooth]
  Feb  3 19:15:36 fourish kernel: [23400.484025] EAX:  EBX: f6abca00 
ECX: e14183e0 EDX: f3f5e500
  Feb  3 19:15:36 fourish kernel: [23400.484025] ESI: 0030 EDI: f3f3fe98 
EBP: f3f3fd88 ESP: f3f3fd74
  Feb  3 19:15:36 fourish kernel: [23400.484025]  DS: 007b ES: 007b FS: 00d8 
GS: 00e0 SS: 0068
  Feb  3 19:15:36 fourish kernel: [23400.484025] CR0: 80050033 CR2: 0280 
CR3: 1edcc000 CR4: 07e0
  Feb  3 19:15:36 fourish kernel: [23400.484025] DR0:  DR1:  
DR2:  DR3: 
  Feb  3 19:15:36 fourish kernel: [23400.484025] DR6: 0ff0 DR7: 0400
  Feb  3 19:15:36 fourish kernel: [23400.484025] Process bluetooth (pid: 5066, 
ti=f3f3e000 task=c1c08cd0 task.ti=f3f3e000)
  Feb  3 19:15:36 fourish kernel: [23400.484025] Stack:
  Feb  3 19:15:36 fourish kernel: [23400.484025]  c152560f f3f5e438 f6abca00 
0030 f3f3fe98 f3f3fdac f86646aa f3f3fd9c
  Feb  3 19:15:36 fourish kernel: [23400.484025]  e14183e0 f3f5e500  
e86fd980 0030 f8668d00 f3f3fe84 c151abbc
  Feb  3 19:15:36 fourish kernel: [23400.484025]  0030 f3f3fea0 f3f3fe00 
f3f3fe18 c108446b f73f3710 0030 e86fd980
  Feb  3 19:15:36 fourish kernel: [23400.484025] Call Trace:
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c152560f] ? 
memcpy_fromiovec+0x3f/0x70
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [f86646aa] 
sco_sock_sendmsg+0xfa/0x180 [bluetooth]
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151abbc] 
sock_sendmsg+0x9c/0xd0
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c108446b] ? 
enqueue_entity+0x4db/0xd40
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151bc8d] 
sys_sendto+0xfd/0x140
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c107c56f] ? 
wake_up_state+0xf/0x20
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c10a3945] ? 
wake_futex+0x65/0x80
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c10a3a4e] ? 
futex_wake+0xee/0x110
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c10a5bbb] ? 
do_futex+0xeb/0x550
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151bd0b] 
sys_send+0x3b/0x40
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c151c655] 
sys_socketcall+0x185/0x2d0
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c12f2091] ? 
copy_to_user+0x41/0x60
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c106af28] ? 
sys_clock_gettime+0x48/0x70
  Feb  3 19:15:36 fourish kernel: [23400.484025]  [c161758d] 
sysenter_do_call+0x12/0x28
  Feb  3 19:15:36 fourish kernel: [23400.484025] Code: ff e9 19 ff ff ff 90 89 
fa 89 f0 e8 77 bc ed c8 eb 9a 90 8d 74 26 00 55 89 e5 83 ec 14 89 5d f4 89 75 
f8 89 7d fc 3e 8d 74 26 00 8b b0 80 02 00 00 0f b7 48 14 89 c7 8b 42 50 89 d3 
ba 03 00 00
  Feb  3 19:15:36 fourish kernel: [23400.484025] EIP: [f8646774] 
hci_send_sco+0x14/0x80 [bluetooth] SS:ESP 0068:f3f3fd74
  Feb  3 19:15:36 fourish kernel: [23400.484025] CR2: 0280
  Feb  3 19:15:36 fourish kernel: [23400.543629] ---[ end trace 
f521fe079a905b72 ]---
+ --- 
+ ApportVersion: 

[Bug 1114516] CurrentDmesg.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513679/+files/CurrentDmesg.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] Dependencies.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513680/+files/Dependencies.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] IwConfig.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513681/+files/IwConfig.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] Lspci.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1114516/+attachment/3513682/+files/Lspci.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] Lsusb.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1114516/+attachment/3513683/+files/Lsusb.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] ProcCpuinfo.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513684/+files/ProcCpuinfo.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] ProcEnviron.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513685/+files/ProcEnviron.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] ProcInterrupts.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513686/+files/ProcInterrupts.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] ProcModules.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513687/+files/ProcModules.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] PulseList.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: PulseList.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513688/+files/PulseList.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] RfKill.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/1114516/+attachment/3513689/+files/RfKill.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] UdevDb.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1114516/+attachment/3513690/+files/UdevDb.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] UdevLog.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513691/+files/UdevLog.txt

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

Title:
  bluetooth headset stops working

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

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


[Bug 1114516] WifiSyslog.txt

2013-02-03 Thread Kiwinote
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1114516/+attachment/3513692/+files/WifiSyslog.txt

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

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

Title:
  bluetooth headset stops working

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1048230

Title:
  display freezes

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1100781

Title:
  Banshee recommended for me three times

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

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


[Bug 1066934] [NEW] 'progress' displays on startup

2012-10-15 Thread Kiwinote
Public bug reported:

It would appear that on startup the 'progress' button is visible in the
toolbar. Clicking on it shows an empty screen.

It would seem that this is caused by the introduction of the line
'self.oauth_token = helper.find_oauth_token_sync()' in
http://bazaar.launchpad.net/~software-store-developers/software-
center/trunk/revision/3230 - it is not directly clear why this causes
the issue, but commenting out that line seems to cause the progress
button to hide as it should.

** Affects: software-center (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  'progress' displays on startup

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1048230

Title:
  display freezes

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

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


[Bug 1055247] Re: Search facility in Software Center misses obvious hit

2012-09-25 Thread Kiwinote
Hi Andreas.

Thanks for your interest.

How things currently work is as follows:
- app-install-data extracts the desktop files from all packages and ships these
- software-center will display in the main screen the search results for 
packages with a desktop file - this is what is happening to gdevilspie
- software-center will hide all remaining search results (ie for packages 
without desktop files) behind a button 'show XX technical items' which is 
located in the bottom left of the window (it is a known issue that most people 
don't notice this) - this is what is happening to devilspie2
- if however there is an *exact* match between the search term and the name of 
a package, then software-center will 'upgrade' it and treat it as if it had a 
desktop file - this is what happens to devilspie when searching for devilspie

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

Title:
  Search facility in Software Center misses obvious hit

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

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


[Bug 1048230] Re: display freezes

2012-09-24 Thread Kiwinote
** Attachment added: compizhang.txt as per above comment
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1048230/+attachment/3337505/+files/compizhang.txt

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

Title:
  display freezes

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

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


[Bug 1048230] Re: display freezes

2012-09-21 Thread Kiwinote
Just a quick update to this bug: the issue persists with unity
6.6.0-0ubuntu1 and compiz 1:0.9.8.2+bzr3377-0ubuntu1. In the last few
weeks I have not been able to reproduce this issue when using only the
internal monitor, but it is 100% reproducible when an external monitor
is connected. After the freeze has occurred, you can disconnect the
external monitor, but the internal monitor changes from the frozen image
to a black screen. It is possible to issue 'sudo killall Xorg' in tty1
and this brings you back to lightdm, but it kills all open windows and
unsaved documents, so doesn't really help. The issue can also be
reproduced using the guest session.

So just to summarize the steps to reproduce this crash:
- I have a dell mini 9 with an external monitor attached
- within a few minutes of normal usage the image on the screen will freeze 
(100% of the time)

(to speed up the last step you can eg open nautilus, browse to
/usr/share, left mouse down on the handle of the overlay scrollbar,
whilst holding the left mouse button down you can now make circle
movements with your mouse which will cause nautlius to scroll up and
down rapidly - this will cause the image on the screen to freeze within
10-60 seconds.)

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

Title:
  display freezes

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1049835

Title:
  Software center shows multiple entries for banshee  rhythmbox

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

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


[Bug 1048230] [NEW] display freezes

2012-09-09 Thread Kiwinote
Public bug reported:

(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

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

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


** Tags: apport-bug compiz-0.9 i386 quantal running-unity ubuntu

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

Title:
  display freezes

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

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


[Bug 1048230] Re: display freezes

2012-09-09 Thread Kiwinote
** Also affects: unity (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  display freezes

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

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


[Bug 1042211] Re: [quantal] [regression] [i915] Corrupted display, desktop and menus don't repaint correctly using Mesa 9.0 (8.0.4 works)

2012-09-07 Thread Kiwinote
I was experiencing this same issue on the dell mini 9. It seemed that it
was working again with the compiz/unity updates (minus that every now
and then the image on the screen would freeze indefinitely whilst the
cursor would still move - required a reboot to work again). Having
installed the latest mesa update however
(9.0~git20120903.e1673d20-0ubuntu1), after entering my password in the
login screen I am left with a black screen with a cursor that can move
as normal. Top shows that compiz and the usual desktop processes are
running normally. This may be a different bug, but downgrading the three
mesa packages mentioned above at least allows unity to load. I still
have sporadic issues with the image freezing indefinitely. Are others
seeing similar things, or am I best opening a new bug?

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

Title:
  [quantal] [regression] [i915] Corrupted display, desktop and menus
  don't repaint correctly using Mesa 9.0 (8.0.4 works)

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1033548

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1018911

Title:
  Update Terms of Service from Millbank to Bluefin

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

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


[Bug 1012989] Re: Ubuntu 12.04: key assignments that don't work

2012-06-14 Thread Kiwinote
** Project changed: ubuntu-webcatalog = ubuntu

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

Title:
  Ubuntu 12.04: key assignments that don't work

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

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


[Bug 1011780] Re: trying to install psychonauts enters infinite crash loop

2012-06-12 Thread Kiwinote
This is probs the same issue as
https://errors.ubuntu.com/bucket/?id=/usr/share/software-center
/software-
center:ValueError:_handler:_on_progress_details_changed:function

ie:

Traceback (most recent call last):
  File 
/usr/share/software-center/softwarecenter/backend/installbackend_impl/aptd.py,
 line 131, in _handler
return real_handler(trans, *args)
  File 
/usr/share/software-center/softwarecenter/ui/gtk3/models/pendingstore.py, 
line 174, in _on_progress_details_changed
current_bytes_str = GLib.format_size(current_bytes)
  File /usr/lib/python2.7/dist-packages/gi/types.py, line 43, in function
return info.invoke(*args, **kwargs)
ValueError: -2142379072 not in range 0 to 18446744073709551615

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

Title:
  trying to install psychonauts enters infinite crash loop

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

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


[Bug 851280] Re: Installed on date not displayed

2012-05-29 Thread Kiwinote
iirc we had huge performance issues if we waited for the history to be
loaded, which is why we chose not to display the installed date on first
view - you could probably add a callback to update the label once the
history has loaded, but imho it's not worth the effort as by the time
the history has loaded the user has most likely left the page already

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

Title:
  Installed on date not displayed

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1003493

Title:
  Ubuntu Software Center 10.10 in 11.04

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1000943

Title:
  The software-center crashes before it finishes loading

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1000937

Title:
  software-center crashes

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/728810

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/721653

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

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

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


[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 Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/730349

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/742836

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/746013

Title:
  Signing into SSO brought me to my account page

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/752376

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/749922

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

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

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


[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 Ubuntu
Bugs, which is subscribed to 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'

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

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


[Bug 993279] [NEW] markup needs escaping

2012-05-02 Thread Kiwinote
Public bug reported:

browse to system-config-date and note that the updates text is not
displayed and there is an error in the terminal

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


** Tags: bitesize

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

Title:
  markup needs escaping

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/752826

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/757354

Title:
  pkgProblemResolver::Resolve

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

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


[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 Ubuntu
Bugs, which is subscribed to 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, '/'.

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/754296

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774006

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/769616

Title:
  Search results are never displayed

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/761454

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/759078

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

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

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


[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 Ubuntu
Bugs, which is subscribed to 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)

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/776795

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/775931

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774716

Title:
  unresponsive scrollbar

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774666

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/770615

Title:
  compizConfig missing dependencies

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/782497

Title:
  cannot open the software database

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/780883

Title:
  Stopped Receiving Remote Information

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/787792

Title:
  Letters are cut off horizontally

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

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


[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 Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/787631

Title:
  ubuntu package manager is not responsive

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/786752

Title:
  ubuntu software center isnt working right

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/784658

Title:
  Software Center does not close properly...

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/789460

Title:
  software centre does not install media properly

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/789041

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

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

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

[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/com.ubuntu.SoftwareC

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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788254

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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/787883

Title:
  The review window won't close

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/792277

Title:
  Platinum Sandbox Creator failed to install stopping package manager

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/792016

Title:
  Software Center doesn't let me log in

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to 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

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

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


[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 Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/800158

Title:
  I can't setup or uninstall any soft

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

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


  1   2   3   4   5   6   7   8   9   10   >