~ubuntu-branches/ubuntu/trusty/xdiagnose/trusty-proposed

« back to all changes in this revision

Viewing changes to data/general.lib

  • Committer: Package Import Robot
  • Author(s): Bryce Harrington
  • Date: 2012-06-19 14:26:04 UTC
  • Revision ID: package-import@ubuntu.com-20120619142604-mpwrhjh5ohqdehhd
Tags: 2.9
* xdiagnose.udev: Make the GPU apport hook trigger on RESET=1 rather
  than ERROR=1, as an attempt to prevent capturing bug reports on false
  gpu lockups.
  (LP: #983640)
* apport/source_xorg.py:
  - Link to all technical support options, not just to Ask Ubuntu.
    Reword recommendation to explain why technical support should be used
    first.  Add a 'referred-by-support' tag so we can give those bugs
    priority attention.  Provide an option to just file the bug.
    (LP: #991602)
  - Drop question to allow flagging regressions
    following updates, since bug reporters have been using it incorrectly,
    resulting in too many false positives.
    (LP: #1018510)
  - Clarify question about "willing to do whatever it takes" to specify
    that the debugging work may require gdb or git bisection work.
* xdiagnose.desktop.in: Move xdiagnose to System/Settings menu.  Provide
  a GenericName.  Set the gettext domain.
* debian/control: Add runtime dependency on librsvg2, required for
  displaying SVG icons.
  (LP: #969603)

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    if [ "${INTERACTIVE}" = "yes" ]; then
43
43
        echo -n "Press enter to $1 ..."
44
44
        read nothing
 
45
    else
 
46
        echo "Proceeding to $1"
45
47
    fi
46
48
}
47
49
 
318
320
        | sed -e "s/ubuntu.*$//"
319
321
}
320
322
 
 
323
get_base_version() {
 
324
    buf=${1#*:}          # Strip epoch
 
325
    echo ${buf%-*}       # Strip debian version
 
326
}
 
327
 
321
328
# TODO: Review
322
329
ok_if_pkg_ge() {
323
330
    pkg=$1; shift || true