[Desktop-packages] [Bug 1413665] Re: Bad Request - Bad bot, go away! Request aborted.

2015-11-04 Thread Ubuntu One Auto Pilot
** Changed in: canonical-identity-provider
   Status: Fix Released => Fix Committed

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

Title:
  Bad Request - Bad bot, go away!  Request aborted.

Status in Canonical SSO provider:
  Fix Committed
Status in Ubuntu Software Center:
  Invalid
Status in software-center package in Ubuntu:
  Invalid

Bug description:
  I'm running Ubuntu 14.04 LTS Trusty Tahr.  When trying to 'Buy'
  through Software Center, I'm receiving an error message "Bad Request -
  Bad bot, go away!  Request aborted."  This just started happening
  yesterday, 01/21/2015,

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-identity-provider/+bug/1413665/+subscriptions

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


[Desktop-packages] [Bug 1409555] Re: drop extras.ubuntu.com

2015-03-24 Thread Ubuntu One Auto Pilot
** Changed in: software-center
   Status: New => Fix Committed

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

Title:
  drop extras.ubuntu.com

Status in Ubuntu Software Center:
  Fix Committed
Status in apt-setup package in Ubuntu:
  Fix Released
Status in kubuntu-meta package in Ubuntu:
  Fix Released
Status in lubuntu-meta package in Ubuntu:
  Fix Released
Status in software-center package in Ubuntu:
  Fix Released
Status in ubuntu-gnome-meta package in Ubuntu:
  Fix Released
Status in ubuntu-meta package in Ubuntu:
  Fix Released
Status in ubuntu-release-upgrader package in Ubuntu:
  Fix Released
Status in ubuntukylin-meta package in Ubuntu:
  Fix Released
Status in ubuntustudio-meta package in Ubuntu:
  Fix Released
Status in xubuntu-meta package in Ubuntu:
  Fix Released

Bug description:
  drop extras.ubuntu.com

  No longer in use.

  https://lists.ubuntu.com/archives/technical-
  board/2015-January/002063.html

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

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


[Desktop-packages] [Bug 1413665] Re: Bad Request - Bad bot, go away! Request aborted.

2015-01-27 Thread Ubuntu One Auto Pilot
** Changed in: canonical-identity-provider
   Status: In Progress => Fix Committed

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

Title:
  Bad Request - Bad bot, go away!  Request aborted.

Status in Canonical SSO provider:
  Fix Committed
Status in Ubuntu Software Center:
  Invalid
Status in software-center package in Ubuntu:
  Invalid

Bug description:
  I'm running Ubuntu 14.04 LTS Trusty Tahr.  When trying to 'Buy'
  through Software Center, I'm receiving an error message "Bad Request -
  Bad bot, go away!  Request aborted."  This just started happening
  yesterday, 01/21/2015,

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-identity-provider/+bug/1413665/+subscriptions

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


[Desktop-packages] [Bug 1268250] Re: No reviews displayed (ValueError: time data ... does not match format)

2014-01-13 Thread Ubuntu One Auto Pilot
** Changed in: rnr-server
   Status: In Progress => Fix Committed

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

Title:
  No reviews displayed (ValueError: time data ... does not match format)

Status in Ratings and Reviews server:
  Fix Committed
Status in “software-center” package in Ubuntu:
  Confirmed

Bug description:
  Software-center stopped displaying reviews around the 10th of January 2014.
  This happens for all apps (so far) in the software center.
  A message saying "No network connection, Connect to the internet to see more 
reviews." is shown in place of the reviews.
  The computer does have access to the internet.
  A useful traceback is printed in the stderr which should be in the 
information collected from the ubuntu-bug program.

  Traceback (most recent call last):
File "/usr/share/software-center/softwarecenter/backend/reviews/rnr.py", 
line 129, in _on_reviews_helper_data
  callback(app, self._reviews[app])
File 
"/usr/share/software-center/softwarecenter/ui/gtk3/views/appdetailsview.py", 
line 1050, in _reviews_ready_callback
  self.reviews.configure_reviews_ui()
File 
"/usr/share/software-center/softwarecenter/ui/gtk3/widgets/reviews.py", line 
284, in configure_reviews_ui
  self._fill()
File 
"/usr/share/software-center/softwarecenter/ui/gtk3/widgets/reviews.py", line 
208, in _fill
  self.useful_votes, is_first_for_version)
File 
"/usr/share/software-center/softwarecenter/ui/gtk3/widgets/reviews.py", line 
467, in __init__
  useful_votes)
File 
"/usr/share/software-center/softwarecenter/ui/gtk3/widgets/reviews.py", line 
615, in _build
  cur_t = self._get_datetime_from_review_date(review_data.date_created)
File 
"/usr/share/software-center/softwarecenter/ui/gtk3/widgets/reviews.py", line 
539, in _get_datetime_from_review_date
  return datetime.datetime.strptime(raw_date_str, '%Y-%m-%d %H:%M:%S')
File "/usr/lib/python2.7/_strptime.py", line 325, in _strptime
  (data_string, format))
  ValueError: time data '2012-08-25T06:16:42.749Z' does not match format 
'%Y-%m-%d %H:%M:%S'

  It seems that the review date string sent from the reviews server is not in 
the expected format of the datetime.datetime.strptime function.
  I have re-installed software-center with the --purge option.
  The environment variable "SOFTWARE_CENTER_REVIEWS_HOST" is not set.

  I have managed to do a bodgy fix on 
/usr/share/software-center/softwarecenter/ui/gtk3/widgets/reviews.py by 
inserting
  raw_date_str = raw_date_str[:10] + " " + raw_date_str[11:19]
  after line 538.

  This fix is not ideal but it works. Perhaps someone with better
  knowledge in programming and this program in specific could find a
  more elegant fix. I have made a comment in the code describing the
  additional line.


  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: software-center 5.2.10
  ProcVersionSignature: Ubuntu 3.8.0-35.50~precise1-generic 3.8.13.13
  Uname: Linux 3.8.0-35-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu17.6
  Architecture: amd64
  Date: Sun Jan 12 11:04:40 2014
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: This
  InterpreterPath: /usr/bin/python2.7
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   SHELL=/bin/bash
   PATH=(custom, no user)
   LANG=en_AU.UTF-8
   LANGUAGE=en_AU:en
  SourcePackage: software-center
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/rnr-server/+bug/1268250/+subscriptions

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


[Desktop-packages] [Bug 1254892] Re: DISTROSERIES in distro abstraction not useful/sustainable

2013-11-25 Thread Ubuntu One Auto Pilot
** Changed in: software-center
   Status: In Progress => Fix Committed

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

Title:
  DISTROSERIES in distro abstraction not useful/sustainable

Status in Ubuntu Software Center:
  Fix Committed
Status in “software-center” package in Ubuntu:
  Triaged

Bug description:
  Currently, software-center checks the current codename against a list
  in the distro modules. There are multiple modules for different Linux
  distributions. The value seems to only ever be used for falling back
  to an older series when checking for reviews, if the result set is
  empty. This is something that should be done on the server, not on the
  client. We should be displaying the same results as the package index
  web site.

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

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


[Desktop-packages] [Bug 1234282] Re: It's possible to add more than one U1 account from system settings on the phone

2013-10-16 Thread Ubuntu One Auto Pilot
** Changed in: ubuntuone-credentials
   Status: In Progress => Fix Committed

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

Title:
  It's possible to add more than one U1 account from system settings on
  the phone

Status in Online Accounts setup for Ubuntu Touch:
  Fix Committed
Status in Ubuntu One Credentials API:
  Fix Committed
Status in “accounts-qml-module” package in Ubuntu:
  New
Status in “libaccounts-glib” package in Ubuntu:
  New
Status in “libaccounts-qt” package in Ubuntu:
  New
Status in “ubuntu-system-settings-online-accounts” package in Ubuntu:
  New
Status in “ubuntuone-credentials” package in Ubuntu:
  New

Bug description:
  SRU information:

  [Impact] Accidental creation of multiple UbuntuOne accounts can compromise 
the functionality of U1 (whose stack does not support multiple accounts).
  The fix consists in disabling (greying out) the "Ubuntu One" item when an 
account for it already exists.

  [Test Case] With these steps it's possible to create two U1 accounts:
  Open **System Settings**.
  Go to **Accounts**.
  On the **Add Account** section, select **Ubuntu One**.
  Enter the email address.
  Enter the password.
  Click **Continue**.
  The **Accounts** screen is shown.
  Click **Add account...**
  Select **Ubuntu One**.
  Enter the email address.
  Enter the password.
  Click **Continue**.

  [Regression Potential] Several packages are involved in this bugfix:
  - ubuntuone-credentials: the only changes done here is the addition of a
"true" line in the ubuntuone.provider XML 
file.
This cannot cause any regression (and older versions of libaccounts-glib 
simply
ignore any unrecognized elements).

  - libaccounts-glib: added a new API to return the value of the 

element; also here there's no risk of regression, as applications now using 
this
new API are unaffected. Besides, unit tests have been added to cover this 
API.

  - libaccounts-qt: this is just a thin wrapper around libaccounts-glib. So the 
same
API was added here, with unit tests. Other code paths are unaffected by this
change.

  - accounts-qml-module: this is a wrapper for libaccounts-qt, to provide a QML 
API.
The value of the  element has been added as a role in the 
ProvidersModel class. Again, this doesn't affect the existing 
functionality, is
well covered with unit tests and moreover at the current stage the 
ProvidersModel
class is known to be used only by the ubuntu-system-settings-online-accounts
project.

  - ubuntu-system-settings-online-accounts: support for reading the 
 value
(via accounts-qml-module) and if that is true, then check if there are 
already some
accounts created for the given provider. The code changes consists in about 
10 lines
of code, and all but one are only triggered if the  flag is 
true 
(which happens for the U1 provider only). The code has been tested and 
works.

  =
  Original description:

  Open **System Settings**.
  Go to **Accounts**.
  On the **Add Account** section, select **Ubuntu One**.
  Enter the email address.
  Enter the password.
  Click **Continue**.

  The **Accounts** screen is shown.
  Click **Add account...**
  Select **Ubuntu One**.
  Enter the email address.
  Enter the password.
  Click **Continue**.

  After adding the first U1 account, the second time you click Add
  account, U1 should not be available as an option.

  See the attached screenshot.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-settings-online-accounts/+bug/1234282/+subscriptions

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


[Desktop-packages] [Bug 1038429] Re: update-software-center crashed with order (MRO) for bases SafeConfigParser, object in __new__()

2013-07-11 Thread Ubuntu One Auto Pilot
** Changed in: software-center/stable-13-10
   Status: Triaged => Fix Committed

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

Title:
  update-software-center crashed with order (MRO) for bases
  SafeConfigParser, object in __new__()

Status in Ubuntu Software Center:
  Fix Committed
Status in Ubuntu Software Center stable-13-10 series:
  Fix Committed
Status in Ubuntu Software Center trunk series:
  Fix Committed
Status in “software-center” package in Ubuntu:
  Fix Released
Status in “software-center” source package in Saucy:
  Fix Released

Bug description:
  I don't know why it occurs but just after system start or after waking
  up the error shows up.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.10
  Package: software-center 5.3.7
  ProcVersionSignature: Ubuntu 3.5.0-10.10-generic 3.5.1
  Uname: Linux 3.5.0-10-generic x86_64
  ApportVersion: 2.4-0ubuntu8
  Architecture: amd64
  Date: Sat Aug 18 12:18:46 2012
  ExecutablePath: /usr/share/software-center/update-software-center
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Alpha amd64 (20120627)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/sbin/update-software-center --triggered 
5.3.6
  PythonArgs: ['/usr/sbin/update-software-center', '--triggered', '5.3.6']
  SourcePackage: software-center
  Title: update-software-center crashed with order (MRO) for bases 
SafeConfigParser, object in __new__()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

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

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


[Desktop-packages] [Bug 1038429] Re: update-software-center crashed with order (MRO) for bases SafeConfigParser, object in __new__()

2013-07-05 Thread Ubuntu One Auto Pilot
** Changed in: software-center/trunk
   Status: Triaged => Fix Committed

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

Title:
  update-software-center crashed with order (MRO) for bases
  SafeConfigParser, object in __new__()

Status in Ubuntu Software Center:
  Fix Committed
Status in Ubuntu Software Center stable-13-10 series:
  Triaged
Status in Ubuntu Software Center trunk series:
  Fix Committed
Status in “software-center” package in Ubuntu:
  Confirmed
Status in “software-center” source package in Saucy:
  Confirmed

Bug description:
  I don't know why it occurs but just after system start or after waking
  up the error shows up.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.10
  Package: software-center 5.3.7
  ProcVersionSignature: Ubuntu 3.5.0-10.10-generic 3.5.1
  Uname: Linux 3.5.0-10-generic x86_64
  ApportVersion: 2.4-0ubuntu8
  Architecture: amd64
  Date: Sat Aug 18 12:18:46 2012
  ExecutablePath: /usr/share/software-center/update-software-center
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Alpha amd64 (20120627)
  InterpreterPath: /usr/bin/python2.7
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/sbin/update-software-center --triggered 
5.3.6
  PythonArgs: ['/usr/sbin/update-software-center', '--triggered', '5.3.6']
  SourcePackage: software-center
  Title: update-software-center crashed with order (MRO) for bases 
SafeConfigParser, object in __new__()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

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

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


[Desktop-packages] [Bug 1151621] Re: software-center crashed with TypeError in wrapped(): unbound method get_selection_bounds() must be called with TextBuffer instance as first argument (got SearchEnt

2013-04-05 Thread Ubuntu One Auto Pilot
** Changed in: software-center/trunk
   Status: In Progress => Fix Committed

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

Title:
  software-center crashed with TypeError in wrapped(): unbound method
  get_selection_bounds() must be called with TextBuffer instance as
  first argument (got SearchEntry instance instead)

Status in Ubuntu Software Center:
  Fix Committed
Status in Ubuntu Software Center stable-5-6 series:
  Triaged
Status in Ubuntu Software Center trunk series:
  Fix Committed
Status in “gtk+3.0” package in Ubuntu:
  New
Status in “software-center” package in Ubuntu:
  Confirmed

Bug description:
  I got this error while I tried to open software sources from ubuntu
  software center... but software sources was got opened...

  ProblemType: Crash
  DistroRelease: Ubuntu 13.04
  Package: software-center 5.5.5-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-9.18-generic 3.8.1
  Uname: Linux 3.8.0-9-generic i686
  ApportVersion: 2.9-0ubuntu2
  Architecture: i386
  Date: Thu Mar  7 13:26:33 2013
  EcryptfsInUse: Yes
  ExecutablePath: /usr/share/software-center/software-center
  InstallationDate: Installed on 2012-03-30 (341 days ago)
  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110427.1)
  InterpreterPath: /usr/bin/python2.7
  MarkForUpload: True
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with TypeError in wrapped(): unbound method 
get_selection_bounds() must be called with TextBuffer instance as first 
argument (got SearchEntry instance instead)
  UpgradeStatus: Upgraded to raring on 2013-01-16 (49 days ago)
  UserGroups: adm admin cdrom dialout libvirtd lp lpadmin plugdev sambashare 
vboxusers

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

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


[Desktop-packages] [Bug 1158290] Re: enums.py imports non-existent module 'version' - breaks testsuite

2013-03-26 Thread Ubuntu One Auto Pilot
** Changed in: software-center/stable-5-6
   Status: Triaged => Fix Committed

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

Title:
  enums.py imports non-existent module 'version' - breaks testsuite

Status in Ubuntu Software Center:
  Fix Released
Status in Ubuntu Software Center stable-5-6 series:
  Fix Committed
Status in Ubuntu Software Center trunk series:
  Fix Released
Status in “software-center” package in Ubuntu:
  Fix Released

Bug description:
  softwarecenter/version.py has been removed in r3298 [1] but is still
  imported by softwarecenter/enums.py

  The testsuite fails with errors like:
  Traceback (most recent call last):
File "./tests/test_utils.py", line 16, in 
  from tests.utils import (
File "/home/ubuntu/software-center-5.5.6/tests/utils.py", line 37, in 

  from softwarecenter.backend.installbackend import get_install_backend
File 
"/home/ubuntu/software-center-5.5.6/softwarecenter/backend/installbackend.py", 
line 19, in 
  from softwarecenter.utils import UnimplementedError
File "/home/ubuntu/software-center-5.5.6/softwarecenter/utils.py", line 42, 
in 
  from enums import Icons, APP_INSTALL_PATH_DELIMITER
File "/home/ubuntu/software-center-5.5.6/softwarecenter/enums.py", line 
316, in 
  from .version import VERSION, DISTRO, RELEASE, CODENAME
  ImportError: No module named version



  [1] http://bazaar.launchpad.net/~ubuntuone-control-tower/software-
  center/trunk/revision/3298

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: software-center 5.5.6-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-12.21-generic 3.8.2
  Uname: Linux 3.8.0-12-generic x86_64
  ApportVersion: 2.9.2-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 21 14:05:37 2013
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to raring on 2012-01-31 (414 days ago)

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

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


[Desktop-packages] [Bug 1158290] Re: enums.py imports non-existent module 'version' - breaks testsuite

2013-03-22 Thread Ubuntu One Auto Pilot
** Changed in: software-center/trunk
   Status: In Progress => Fix Committed

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

Title:
  enums.py imports non-existent module 'version' - breaks testsuite

Status in Ubuntu Software Center:
  Fix Committed
Status in Ubuntu Software Center stable-5-6 series:
  Triaged
Status in Ubuntu Software Center trunk series:
  Fix Committed
Status in “software-center” package in Ubuntu:
  Triaged

Bug description:
  softwarecenter/version.py has been removed in r3298 [1] but is still
  imported by softwarecenter/enums.py

  The testsuite fails with errors like:
  Traceback (most recent call last):
File "./tests/test_utils.py", line 16, in 
  from tests.utils import (
File "/home/ubuntu/software-center-5.5.6/tests/utils.py", line 37, in 

  from softwarecenter.backend.installbackend import get_install_backend
File 
"/home/ubuntu/software-center-5.5.6/softwarecenter/backend/installbackend.py", 
line 19, in 
  from softwarecenter.utils import UnimplementedError
File "/home/ubuntu/software-center-5.5.6/softwarecenter/utils.py", line 42, 
in 
  from enums import Icons, APP_INSTALL_PATH_DELIMITER
File "/home/ubuntu/software-center-5.5.6/softwarecenter/enums.py", line 
316, in 
  from .version import VERSION, DISTRO, RELEASE, CODENAME
  ImportError: No module named version



  [1] http://bazaar.launchpad.net/~ubuntuone-control-tower/software-
  center/trunk/revision/3298

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: software-center 5.5.6-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-12.21-generic 3.8.2
  Uname: Linux 3.8.0-12-generic x86_64
  ApportVersion: 2.9.2-0ubuntu2
  Architecture: amd64
  Date: Thu Mar 21 14:05:37 2013
  MarkForUpload: True
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: software-center
  UpgradeStatus: Upgraded to raring on 2012-01-31 (414 days ago)

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

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


[Desktop-packages] [Bug 1153548] Re: Two icons in Dash

2013-03-20 Thread Ubuntu One Auto Pilot
** Changed in: software-center/stable-5-6
   Status: Triaged => Fix Committed

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

Title:
  Two icons in Dash

Status in Ubuntu Software Center:
  Fix Committed
Status in Ubuntu Software Center packaging-dailies series:
  Fix Committed
Status in Ubuntu Software Center stable-5-6 series:
  Fix Committed
Status in Ubuntu Software Center trunk series:
  Fix Committed
Status in “software-center” package in Ubuntu:
  Confirmed
Status in “software-center” source package in Raring:
  Confirmed

Bug description:
  There are two almost identical icons in the Dash when I search for
  software. See screenshot.

  Reproduce:
  1. Open Dash
  2. Type "software" without quotes

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

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


[Desktop-packages] [Bug 1153548] Re: Two icons in Dash

2013-03-13 Thread Ubuntu One Auto Pilot
** Changed in: software-center/packaging-dailies
   Status: Triaged => Fix Committed

** Changed in: software-center/trunk
   Status: Triaged => Fix Committed

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

Title:
  Two icons in Dash

Status in Ubuntu Software Center:
  Fix Committed
Status in Ubuntu Software Center packaging-dailies series:
  Fix Committed
Status in Ubuntu Software Center stable-5-6 series:
  Triaged
Status in Ubuntu Software Center trunk series:
  Fix Committed
Status in “software-center” package in Ubuntu:
  Confirmed
Status in “software-center” source package in Raring:
  Confirmed

Bug description:
  There are two almost identical icons in the Dash when I search for
  software. See screenshot.

  Reproduce:
  1. Open Dash
  2. Type "software" without quotes

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

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


[Desktop-packages] [Bug 1017690] Re: The GTK+ UI is preventing Lucid updates for ubuntu-sso-client

2012-07-10 Thread Ubuntu One Auto Pilot
** Changed in: ubuntu-sso-client
   Status: In Progress => Fix Committed

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

Title:
  The GTK+ UI is preventing Lucid updates for ubuntu-sso-client

Status in Ubuntu Single Sign On Client:
  Fix Committed
Status in “software-center” package in Ubuntu:
  In Progress

Bug description:
  The current GTK+ UI is using the Python gobject introspection
  bindings, and those are not available in Lucid.

  At the moment, known client of ussoc are:

  * Ubuntu One (also maintainers of this project)
  * Software Center

  The former only depends on the Qt UI, while the latter prefers (but no 
strictly depend) on the GTK+ UI.
  Current proposed solution is:

  * Move the GTK+ UI sourtce code to the USC source tree
  * Make USC install the UI executable in /usr/lib/ubuntu-sso-client
  * Make USC request the GTK+ UI as preferred UI when calling the sso backend 
service

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-sso-client/+bug/1017690/+subscriptions

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


[Desktop-packages] [Bug 934235] Re: ubuntu one plugin is not enabled by default

2012-03-07 Thread Ubuntu One Auto Pilot
** Changed in: rhythmbox-ubuntuone/stable-3-0
   Status: Confirmed => Fix Committed

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

Title:
  ubuntu one plugin is not enabled by default

Status in Ubuntu One Rhythmbox integration:
  Fix Committed
Status in Ubuntu One for Rhythmbox  stable-3-0 series:
  Fix Committed
Status in Ubuntu One for Rhythmbox  trunk series:
  Fix Committed
Status in “rhythmbox” package in Ubuntu:
  New
Status in “rhythmbox-ubuntuone” package in Ubuntu:
  Confirmed
Status in “rhythmbox” source package in Precise:
  New
Status in “rhythmbox-ubuntuone” source package in Precise:
  Confirmed

Bug description:
  The ubuntu one plugin is a separate package, but after installing it
  it is not enabled by default.  The user needs to find the 'plugins'
  menu entry and search for and enable it.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: rhythmbox-ubuntuone 2.99.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-15.24ro1-generic 3.2.5
  Uname: Linux 3.2.0-15-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.91-0ubuntu1
  Architecture: amd64
  Date: Fri Feb 17 08:24:06 2012
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: rhythmbox-ubuntuone
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/rhythmbox-ubuntuone/+bug/934235/+subscriptions

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


[Desktop-packages] [Bug 934235] Re: [FFe] ubuntu one plugin is not enabled by default

2012-02-27 Thread Ubuntu One Auto Pilot
** Changed in: rhythmbox-ubuntuone/trunk
   Status: Confirmed => Fix Committed

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

Title:
  [FFe] ubuntu one plugin is not enabled by default

Status in Ubuntu One Rhythmbox integration:
  Fix Committed
Status in Ubuntu One for Rhythmbox  stable-3-0 series:
  Confirmed
Status in Ubuntu One for Rhythmbox  trunk series:
  Fix Committed
Status in “rhythmbox” package in Ubuntu:
  New
Status in “rhythmbox-ubuntuone” package in Ubuntu:
  Confirmed
Status in “rhythmbox” source package in Precise:
  New
Status in “rhythmbox-ubuntuone” source package in Precise:
  Confirmed

Bug description:
  The ubuntu one plugin is a separate package, but after installing it
  it is not enabled by default.  The user needs to find the 'plugins'
  menu entry and search for and enable it.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: rhythmbox-ubuntuone 2.99.3-0ubuntu3
  ProcVersionSignature: Ubuntu 3.2.0-15.24ro1-generic 3.2.5
  Uname: Linux 3.2.0-15-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 1.91-0ubuntu1
  Architecture: amd64
  Date: Fri Feb 17 08:24:06 2012
  PackageArchitecture: all
  ProcEnviron:
   LANGUAGE=en_US:
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: rhythmbox-ubuntuone
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/rhythmbox-ubuntuone/+bug/934235/+subscriptions

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


[Desktop-packages] [Bug 908787] Re: nautilus crashed with SIGSEGV in g_str_hash()

2012-01-03 Thread Ubuntu One Auto Pilot
** Changed in: ubuntuone-client/stable-3-0
   Status: In Progress => Fix Committed

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

Title:
  nautilus crashed with SIGSEGV in g_str_hash()

Status in Ubuntu One Client:
  Fix Committed
Status in Ubuntu One Client stable-3-0 series:
  Fix Committed
Status in Ubuntu One Client trunk series:
  Fix Committed
Status in “nautilus” package in Ubuntu:
  Invalid
Status in “ubuntuone-client” package in Ubuntu:
  Triaged

Bug description:
  I can see there are old duplicates of this bug title, with upstream
  bugs marked obsolete. Yet, this happened on current Precise. I was
  clicking on a disk icon to have it mounted.

  I was able to reproduce it once by unmounting the disk in the dock,
  then double-clicking on it in a "Computer" window.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.2.1-2ubuntu4
  ProcVersionSignature: Ubuntu 3.2.0-6.12-generic-pae 3.2.0-rc6
  Uname: Linux 3.2.0-6-generic-pae i686
  ApportVersion: 1.90-0ubuntu1
  Architecture: i386
  Date: Mon Dec 26 15:16:34 2011
  ExecutablePath: /usr/bin/nautilus
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Alpha i386 (20111225)
  ProcCmdline: nautilus -n
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0xb6ba534a :movzbl (%ecx),%edx
   PC (0xb6ba534a) ok
   source "(%ecx)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%edx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: nautilus
  StacktraceTop:
   g_str_hash () from /lib/i386-linux-gnu/libglib-2.0.so.0
   g_hash_table_lookup () from /lib/i386-linux-gnu/libglib-2.0.so.0
   gdu_pool_get_by_object_path () from /usr/lib/i386-linux-gnu/libgdu.so.0
   ?? () from /usr/lib/i386-linux-gnu/libgdu.so.0
   g_cclosure_marshal_VOID__POINTER () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
  Title: nautilus crashed with SIGSEGV in g_str_hash()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/908787/+subscriptions

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


[Desktop-packages] [Bug 908787] Re: nautilus crashed with SIGSEGV in g_str_hash()

2012-01-03 Thread Ubuntu One Auto Pilot
** Changed in: ubuntuone-client
   Status: New => Fix Committed

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

Title:
  nautilus crashed with SIGSEGV in g_str_hash()

Status in Ubuntu One Client:
  Fix Committed
Status in “nautilus” package in Ubuntu:
  Invalid
Status in “ubuntuone-client” package in Ubuntu:
  Triaged

Bug description:
  I can see there are old duplicates of this bug title, with upstream
  bugs marked obsolete. Yet, this happened on current Precise. I was
  clicking on a disk icon to have it mounted.

  I was able to reproduce it once by unmounting the disk in the dock,
  then double-clicking on it in a "Computer" window.

  ProblemType: Crash
  DistroRelease: Ubuntu 12.04
  Package: nautilus 1:3.2.1-2ubuntu4
  ProcVersionSignature: Ubuntu 3.2.0-6.12-generic-pae 3.2.0-rc6
  Uname: Linux 3.2.0-6-generic-pae i686
  ApportVersion: 1.90-0ubuntu1
  Architecture: i386
  Date: Mon Dec 26 15:16:34 2011
  ExecutablePath: /usr/bin/nautilus
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Alpha i386 (20111225)
  ProcCmdline: nautilus -n
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0xb6ba534a :movzbl (%ecx),%edx
   PC (0xb6ba534a) ok
   source "(%ecx)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%edx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: nautilus
  StacktraceTop:
   g_str_hash () from /lib/i386-linux-gnu/libglib-2.0.so.0
   g_hash_table_lookup () from /lib/i386-linux-gnu/libglib-2.0.so.0
   gdu_pool_get_by_object_path () from /usr/lib/i386-linux-gnu/libgdu.so.0
   ?? () from /usr/lib/i386-linux-gnu/libgdu.so.0
   g_cclosure_marshal_VOID__POINTER () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
  Title: nautilus crashed with SIGSEGV in g_str_hash()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-client/+bug/908787/+subscriptions

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


[Desktop-packages] [Bug 872972] Re: Store URLs have to wait for main page to load

2011-10-17 Thread Ubuntu One Auto Pilot
** Changed in: libubuntuone
   Status: In Progress => Fix Committed

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

Title:
  Store URLs have to wait for main page to load

Status in Ubuntu One widget library:
  Fix Committed
Status in “banshee” package in Ubuntu:
  In Progress
Status in “libubuntuone” package in Ubuntu:
  In Progress

Bug description:
  Currently, the music store main page has to load before any u1ms://
  links can be loaded. This means there is up to a 10s delay for the
  page to be loaded, when opened from the music lens, or a web site.
  This can be very annoying.

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

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


[Desktop-packages] [Bug 788532] Re: U1 music store plugin severely delays banshee startup

2011-09-09 Thread Ubuntu One Auto Pilot
** Changed in: libubuntuone
   Status: Confirmed => Fix Committed

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

Title:
  U1 music store plugin severely delays banshee startup

Status in Ubuntu One widget library:
  Fix Committed
Status in “banshee” package in Ubuntu:
  Invalid
Status in “libubuntuone” package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: banshee

  Everytime Banshee starts a blank window appears, then after a few
  seconds it turns grey and stays grey for about 20 seconds, then
  finally the UI populates.  I ran Banshee with --debug and piped the
  output to a log file using tee.  I watched the log file while Banshee
  starts and as soon as all the plugins are loaded the U1 music store
  plugin start iterating over every music file I have purchased checking
  whether it has been copied to ~/Music.  If the file already exists
  then the log says something like "not copying because this file
  already exists in  ${HOME}/Music/.  During this exhaustive check is
  when Banshee's window goes grey (which is I think Compiz telling me
  the window is not sending updates and inactive).  As soon as those
  checks end, Banshee paints the window and I can use Banshee.

  I thought maybe the problem was that the files didn't need to be in
  ~/Music, so I deleted any files in ~/Music that were already in
  ~/.ubuntuone/Purchased from Ubuntu One/.  On next startup the log file
  showed the check w/o the "not copying messages" and Banshee started
  somewhat faster (but by no means fast).  I noticed I missed one file
  so I deleted that file in ~/Music and reran Banshee and watched the
  log file.  This time again all the files were back in ~/Music and
  Banshee took forever to start.

  This may have one other side effect.  I noticed that many of my
  purchased songs show up multiple times in my Library.  For instance, I
  purchased a song call "Hello" by Martin Solvig and that appears in my
  library five times.  Looking in ~/Music I see the file has been copied
  multiple times so I have the same file name with (n) appended to it.
  If I delete the dups they just reappear over time.

  This all seems very broken and wrong.

  1.  Why does the U1MS plugin need to check every time for purchases it has 
already recognised?
  2.  Why do the files need to be copied to ~/Music when it could just watch 
~/.ubuntuone/Purchased from Ubuntu One/
  3.  Why do I keep getting multiple copies of purchased songs even after I 
delete the duplicates?

  Will attach my latest log file.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: banshee-extension-ubuntuonemusicstore 2.0.0-2ubuntu1
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic-pae 2.6.38.2
  Uname: Linux 2.6.38-8-generic-pae i686
  NonfreeKernelModules: wl
  Architecture: i386
  Date: Thu May 26 09:57:33 2011
  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110120)
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  SourcePackage: banshee
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 829186] Re: Mixes static and GI library bindings

2011-08-25 Thread Ubuntu One Auto Pilot
** Changed in: ubuntuone-control-panel
   Status: New => Fix Committed

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

Title:
  Mixes static and GI library bindings

Status in Ubuntu One Control Panel:
  Fix Committed
Status in “gwibber” package in Ubuntu:
  Fix Released
Status in “jockey” package in Ubuntu:
  Fix Released
Status in “oneconf” package in Ubuntu:
  Fix Released
Status in “software-center” package in Ubuntu:
  Fix Released
Status in “ubiquity” package in Ubuntu:
  Fix Released
Status in “ubuntu-sso-client” package in Ubuntu:
  Fix Committed
Status in “ubuntuone-client” package in Ubuntu:
  Fix Committed
Status in “ubuntuone-control-panel” package in Ubuntu:
  In Progress
Status in “update-manager” package in Ubuntu:
  Fix Released
Status in “usb-creator” package in Ubuntu:
  Fix Released

Bug description:
  This is a tracking bug for fixing programs which will crash with a
  newer pygobject >= 2.90. This is now absolutely zero tolerant against
  importing both the static and the GI version of a particular library.
  This was mostly the case with 2.28 as well, but did work in some cases
  (like "import gobject; from gi.repository import Gtk", in particular
  for "glib" and "gobject"). These now cause errors as well.

  See bug 828751 for some more information for this.

  $ ubuntuone-control-panel-gtk
  Traceback (most recent call last):
    File "/usr/bin/ubuntuone-control-panel-gtk", line 33, in 
  from ubuntuone.controlpanel.gui.gtk import main
    File 
"/usr/lib/python2.7/dist-packages/ubuntuone-control-panel/ubuntuone/controlpanel/gui/gtk/__init__.py",
 line 28, in 
  from ubuntuone.controlpanel.gui.gtk.gui import main
    File 
"/usr/lib/python2.7/dist-packages/ubuntuone-control-panel/ubuntuone/controlpanel/gui/gtk/gui.py",
 line 39, in 
  from gi.repository import GLib
    File "/usr/lib/python2.7/dist-packages/gi/__init__.py", line 23, in 
  from ._gi import _API, Repository
  ImportError: could not import gobject (error was: ImportError('When using 
gi.repository you must not import static modules like "gobject". Please change 
all occurrences of "import gobject" to "from gi.repository import GObject".',))

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntuone-control-panel/+bug/829186/+subscriptions

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