[Touch-packages] [Bug 1520753] Re: package python3

2015-11-28 Thread Hans Christian Holm
** Changed in: apport (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1520753

Title:
  package python3

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  package python3-problem-report 2.14.1-0ubuntu3.19 failed to
  install/upgrade: package python3-problem-report is already installed
  and configured

  ProblemType: Package
  DistroRelease: Ubuntu 14.04
  Package: python3-problem-report 2.14.1-0ubuntu3.19
  ProcVersionSignature: Ubuntu 3.13.0-68.111-generic 3.13.11-ckt27
  Uname: Linux 3.13.0-68-generic i686
  NonfreeKernelModules: nvidia
  ApportLog:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  AptdaemonVersion: 1.1.1-1ubuntu5.2
  Architecture: i386
  CrashReports:
   640:0:128:220873:2015-11-28 10:15:57.003052949 +0100:2015-11-28 
10:15:58.003052949 +0100:/var/crash/apport.0.crash
   600:0:128:86847:2015-11-27 20:25:25.459206104 +0100:2015-11-27 
20:25:26.459206104 +0100:/var/crash/python3-apport.0.crash
   644:0:128:0:2015-11-28 10:15:58.191053039 +0100:2015-11-28 
10:15:58.191053039 +0100:/var/crash/apport.0.upload
   600:0:128:86863:2015-11-27 20:25:25.375205993 +0100:2015-11-27 
20:25:26.375205993 +0100:/var/crash/python3-problem-report.0.crash
  Date: Fri Nov 27 20:25:25 2015
  Dependencies:
   
  DuplicateSignature: package:python3-problem-report:2.14.1-0ubuntu3.19:package 
python3-problem-report is already installed and configured
  ErrorMessage: package python3-problem-report is already installed and 
configured
  InstallationDate: Installed on 2015-06-17 (163 days ago)
  InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.17.5ubuntu5.4
   apt  1.0.1ubuntu2.10
  SourcePackage: apport
  Title: package python3-problem-report 2.14.1-0ubuntu3.19 failed to 
install/upgrade: package python3-problem-report is already installed and 
configured
  UpgradeStatus: Upgraded to trusty on 2015-06-20 (160 days ago)

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

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


[Touch-packages] [Bug 1516126] Re: apport-retrace fails unless apport is also installed (/etc/apport/crashdb.conf)

2015-11-13 Thread Hans Christian Holm
** Changed in: apport (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1516126

Title:
  apport-retrace fails unless apport is also installed
  (/etc/apport/crashdb.conf)

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  Attempting to run apport-retrace in a chroot, it fails with the
  following traceback:

  Traceback (most recent call last):
File "/usr/bin/apport-retrace", line 217, in 
  crashdb = get_crashdb(options.auth)
File "/usr/lib/python2.7/dist-packages/apport/crashdb.py", line 822, in 
get_crashdb
  with open(conf) as f:
  IOError: [Errno 2] No such file or directory: '/etc/apport/crashdb.conf'

  /etc/apport/crashdb.conf is part of the apport package; and apport-
  retrace does not depend on apport.

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

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


[Touch-packages] [Bug 1512902] Re: apport will create .upload files for incomplete or corrupt crash reports

2015-11-05 Thread Hans Christian Holm
** Changed in: apport (Ubuntu Wily)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1512902

Title:
  apport will create .upload files for incomplete or corrupt crash
  reports

Status in apport package in Ubuntu:
  Fix Released
Status in apport source package in Wily:
  Fix Released

Bug description:
  SRU information appears in comment #3.

  apport will set an UnreportableReason in the following situations for
  crash reports where information collection fails or for packages that
  do not exist.  From apport/ui.py:

  1036 try:
  1037 icthread.exc_raise()
  1038 except (IOError, EOFError, zlib.error) as e:
  1039 # can happen with broken core dumps
  1040 self.report['UnreportableReason'] = '%s\n\n%s' % (
  1041 _('This problem report is damaged and cannot be 
processed.'),
  1042 repr(e))
  1043 except ValueError:  # package does not exist
  1044 self.report['UnreportableReason'] = _('The report 
belongs to a package that is not installed.')
  1045 except Exception as e:
  1046 apport.error(repr(e))
  1047 self.report['UnreportableReason'] = _('An error 
occurred while attempting to '
  1048   'process this 
problem report:') + '\n\n' + str(e)

  Because an UnreportableReason exists in the report, apport will stop
  collecting information. Subsequently, there is "_MarkForUpload" is
  left as True (the default) so apport calls mark_report_upload which
  creates a .upload file such that the report which is incomplete or
  corrupt is then uploaded to the Error Tracker.

  In these cases the "_MarkForUpload" key should be set to "False"
  thereby preventing uploads to the Error Tracker.

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

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


[Touch-packages] [Bug 1512902] Re: apport will create .upload files for incomplete or corrupt crash reports

2015-11-05 Thread Hans Christian Holm
** Changed in: apport (Ubuntu Wily)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1512902

Title:
  apport will create .upload files for incomplete or corrupt crash
  reports

Status in apport package in Ubuntu:
  Fix Released
Status in apport source package in Precise:
  Triaged
Status in apport source package in Trusty:
  Triaged
Status in apport source package in Vivid:
  Triaged
Status in apport source package in Wily:
  Fix Released

Bug description:
  SRU information appears in comment #3.

  apport will set an UnreportableReason in the following situations for
  crash reports where information collection fails or for packages that
  do not exist.  From apport/ui.py:

  1036 try:
  1037 icthread.exc_raise()
  1038 except (IOError, EOFError, zlib.error) as e:
  1039 # can happen with broken core dumps
  1040 self.report['UnreportableReason'] = '%s\n\n%s' % (
  1041 _('This problem report is damaged and cannot be 
processed.'),
  1042 repr(e))
  1043 except ValueError:  # package does not exist
  1044 self.report['UnreportableReason'] = _('The report 
belongs to a package that is not installed.')
  1045 except Exception as e:
  1046 apport.error(repr(e))
  1047 self.report['UnreportableReason'] = _('An error 
occurred while attempting to '
  1048   'process this 
problem report:') + '\n\n' + str(e)

  Because an UnreportableReason exists in the report, apport will stop
  collecting information. Subsequently, there is "_MarkForUpload" is
  left as True (the default) so apport calls mark_report_upload which
  creates a .upload file such that the report which is incomplete or
  corrupt is then uploaded to the Error Tracker.

  In these cases the "_MarkForUpload" key should be set to "False"
  thereby preventing uploads to the Error Tracker.

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

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