[Touch-packages] [Bug 1480877] Re: Access points' "PropertiesChanged" dbus signals freeze UI on mobile devices

2015-10-06 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: In Progress => Fix Committed

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

Title:
  Access points' "PropertiesChanged" dbus signals freeze UI on mobile
  devices

Status in Canonical System Image:
  Fix Committed
Status in indicator-network package in Ubuntu:
  Incomplete
Status in location-service package in Ubuntu:
  Incomplete
Status in network-manager package in Ubuntu:
  Fix Released
Status in network-manager package in Ubuntu RTM:
  Fix Committed

Bug description:
  Krillin, rc-proposed, r83

  
  DESCRIPTION:
  I've been trying to track down the cause of the occasional UI freezes on my 
Krillin device, and I noticed that whenever the UI freezes for 2-4 seconds, I 
get a burst of "PropertiesChanged" signals in dbus-monitor

  Here's a log of what's shown in dbus-monitor:
  http://pastebin.ubuntu.com/11992322/

  I'd guess the problem is in the code that actually catches the signals
  and acts accordingly.

  HOW TO REPRODUCE: 
  1) Move to a place where many wifi hotspots are available
  2) Connect the device via USB and run "phablet-shell" and then "dbus-monitor"
  3) Use the device while keeping an eye on dbus-monitor output

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1480877/+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 1375215] Re: System runs out of memory - white screens frequently seen in web renderers

2015-10-06 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: In Progress => Fix Committed

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

Title:
  System runs out of memory - white screens frequently seen in web
  renderers

Status in Canonical System Image:
  Fix Committed
Status in oxide-qt package in Ubuntu:
  Invalid
Status in webbrowser-app package in Ubuntu:
  Fix Committed

Bug description:
  [See latest comments for recent repro notes]

  krillin 14.09 #2 + all updates applied

  After running the system for a while (few minutes) the system runs out of 
memory and start killing processes.
  It is very visible with the webbrowser or webapps because it renders the page 
and displays a white page when oxide-render is killed. Although it is not 
specific to oxide, and any app are killed (address-book, system-settings, ...) 
You can clearly notice that other apps are being killed because when you switch 
to the app it's all blurry and take a while to reload, also it loses its state 
(for example, you lose the message you were writing in the messaging-app)

  There is no specific steps to reproduce. I have several scopes enabled
  (photos, nearby, news) You don't have to have tons of apps open to
  reproduce this. Launching the webbrowser or a webapps and navigating
  on the phone between the scopes and the open app seems enough for the
  system to start killing processes.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: liboxideqtcore0 1.2.0-0ubuntu1 [origin: Ubuntu RTM]
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.14.7-0ubuntu1
  Architecture: armhf
  Date: Mon Sep 29 12:51:34 2014
  InstallationDate: Installed on 2014-09-24 (5 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20140924-030204)
  SourcePackage: oxide-qt
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1375215/+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 1356516] Re: consider shipping apparmor profile for webbrowser-app

2015-10-06 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Confirmed => Fix Committed

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

Title:
  consider shipping apparmor profile for webbrowser-app

Status in Canonical System Image:
  Fix Committed
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  It would be nice if webbrowser-app itself could ship an apparmor
  profile. Since we are already confining webapps, we can leverage aa-
  easyprof to generate the apparmor profile. Eg, in debian/rules could
  have a target :

  apparmor:
  aa-easyprof --policy-version=1.2 --policy-vendor=ubuntu \
  -t ubuntu-webapp \
  
--policy-groups=accounts,audio,content_exchange,content_exchange_source,location,networking,push-notification-client,video,webview
 \
   --template-var="@{APP_ID_DBUS}=webbrowser_2dapp" \
   --template-var="@{APP_PKGNAME_DBUS}=webbrowser_2dapp" \
   --template-var="@{APP_PKGNAME}=webbrowser-app" \
   --template-var="@{CLICK_DIR}=/usr/share/webbrowser-app" \
   --abstraction=user-tmp \
   --read-path=/usr/share/applications/ \
   --read-path="@{HOME}/.local/share/applications/" \
   --profile-name=webbrowser-app \
   --no-verify /usr/bin/webbrowser-app | \
   grep -v CLICK_DIR | \
   sed 's/signal peer=@{APP_PKGNAME}_\*_@{APP_VERSION},/signal 
peer=@{APP_PKGNAME},/g' \
   > ./debian/usr.bin.webbrowser-app
   apparmor_parser -QTK ./debian/usr.bin.webbrowser-app

  In this manner, you could this to update the apparmor profile:
  $ debian/rules apparmor

  I use '--no-verify' because we need to very lightly tidy up the
  profile with the 'grep -v' and the 'sed', which is why after it is
  cleaned I run 'apparmor_parser -QTK' on the profile to verify it. This
  could probably be done as part of the build too. Once the profile is
  in place, you can simply do something along the lines of
  http://bazaar.launchpad.net/~jdstrand/ubuntu-system-settings/ubuntu-
  system-settings-lp1296415/revision/748.

  I have lightly tested this on the phone for the following:
   * http
   * https
   * sharing to messaging app
   * url-dispatcher via messaging-app to open a link (with the browser open and 
closed)
   * maps.google.com (prompted for access)
   * youtube (one denial: apparmor="DENIED" operation="dbus_method_call"  
bus="system" path="/com/canonical/Unity/Screen" 
interface="com.canonical.Unity.Screen" member="keepDisplayOn" mask="send" 
name="com.canonical.Unity.Screen" pid=12566 profile="webbrowser-app" 
peer_pid=1575 peer_profile="unconfined")
   * html5.grooveshark.com
   * grooveshark via music scope

  I also even more lightly tested it on the desktop, and it appears to
  work ok.

  Note: there is one denial on startup, but this is expected:
  Aug 13 13:21:33 localhost dbus[10795]: apparmor="DENIED" 
operation="dbus_bind"  bus="session" name="org.freedesktop.Application" 
mask="bind" pid=18407 profile="webbrowser-app"

  I may be out of date on me phone (it only has promoted), but this
  should go away when the webbrowser-app portion of bug #1342129 is
  fixed.

  Note2: the youtube denial will go away when oxide has media-hub
  integration. If we really want this profile for rtm and oxide doesn't
  have media-hub integration, I would need to either update aa-easyprof
  to allow adding dbus rules, or we can add an additional sed to add a
  rule for this.

  Note3: instead of specifying all the command line args to aa-easyprof,
  we can also supply a json file for it to use.

  Note4: it might be simpler to supply a easyprof json manifest file, which 
does the same as the above command line version. Here is an updated command to 
create the file, which also adds a rule for controlling the display:
  apparmor:
  aa-easyprof -m ./debian/webbrowser-app-apparmor.manifest \
  --no-verify | \
  egrep -v '(# Click packages|CLICK_DIR)' | \
  sed 's/signal peer=@{APP_PKGNAME}_\*_@{APP_VERSION},/signal 
peer=@{APP_PKGNAME},/g' | \
  sed 's:^}:  dbus (receive,send) bus=system 
path=/com/canonical/Unity/Screen,\n}:g' \ 
   > ./debian/usr.bin.webbrowser-app
   apparmor_parser -QTK ./debian/usr.bin.webbrowser-app

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1356516/+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 1264795] Re: Alt+Tab Switcher randomly activates itself

2015-10-06 Thread Alan Pope 
Have checked this on my MacBook Pro 7,1 with a clean install and fully
updated Ubuntu 15.10 and it does still happen, so not invalid I'm
afraid.

** Changed in: unity
   Status: New => Confirmed

** Changed in: unity (Ubuntu)
   Status: New => Confirmed

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

Title:
  Alt+Tab Switcher randomly activates itself

Status in Unity:
  Confirmed
Status in compiz package in Ubuntu:
  Invalid
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  I am running Ubuntu 13.10 on my Macbook Pro 2009 laptop. I cannot find
  a report on this bug when googling it. So I thought I would file the
  bug.

  Literally, the switcher randomly just activates itself, and then the
  icons show in the middle of the screen as per usual. The stranger
  behavior is what happens next:

  1) The switcher might automatically switch to a seemingly random app from the 
selection. 
  2) The switcher will just be displayed, but I cannot actually make it go away 
by clicking on one of the app icons. Instead, it just displays for however long 
it 'feels like,' typically ~5 seconds. 

  So.. That's it. Hope I can get some help :D

  ^___^ <3

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1264795/+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 1494442] Re: Turn crash generation off by default for phone on stable channel

2015-10-06 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: In Progress => Fix Committed

** Changed in: lxc-android-config (Ubuntu)
   Status: In Progress => Fix Released

** Changed in: ubuntu-system-settings (Ubuntu)
   Status: In Progress => Fix Released

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

Title:
  Turn crash generation off by default for phone on stable channel

Status in Canonical System Image:
  Fix Committed
Status in lxc-android-config package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Fix Committed

Bug description:
  To avoid UI freezes and perceptions of slowness, we would like to turn
  this option off by default for consumers, but leave it on for
  developers and in the proposed channels.

  Once bug #1437633 is fixed, we can put "manual" in the
  whoopsie.override file

  Not sure how to do this conditionally just for stable

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1494442/+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 1502590] Re: scope-runner-dbus.py crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1502368 ***
https://bugs.launchpad.net/bugs/1502368

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1502368, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1502590/+attachment/4483604/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1502590/+attachment/4483605/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1502590/+attachment/4483608/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1502590/+attachment/4483609/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1502590/+attachment/4483610/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1502590/+attachment/4483611/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1502590/+attachment/4483612/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1502368

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  scope-runner-dbus.py crashed with SIGSEGV in ffi_call_unix64()

Status in libunity package in Ubuntu:
  New

Bug description:
  Got this crash while operating normally, I didn't notice any other
  effect.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-scopes-runner 7.1.4+15.10.20150911-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Oct  4 13:20:51 2015
  Dependencies:
   
  ExecutablePath: /usr/share/unity-scopes/scope-runner-dbus.py
  InstallationDate: Installed on 2013-11-28 (674 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  InterpreterPath: /usr/bin/python3.4
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python3 /usr/share/unity-scopes/scope-runner-dbus.py -s 
files/gdrive.scope
  SegvAnalysis:
   Segfault happened at: 0x7f4239129bce:cmp%rbp,(%rax)
   PC (0x7f4239129bce) ok
   source "%rbp" ok
   destination "(%rax)" (0x5) not located in a known VMA region (needed 
writable region)!
  SegvReason: writing unknown VMA
  Signal: 11
  SourcePackage: libunity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libsignon-glib.so.1
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: scope-runner-dbus.py crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: Upgraded to wily on 2015-09-01 (33 days ago)
  UserGroups: adm cdrom dip kismet lp lpadmin plugdev sambashare saned scanner 
sudo vboxusers video

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libunity/+bug/1502590/+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 1474690] Re: Keyboard doesn't work with Qt 5.5

2015-10-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/maliit-framework

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

Title:
  Keyboard doesn't work with Qt 5.5

Status in maliit-framework package in Ubuntu:
  In Progress
Status in ubuntu-keyboard package in Ubuntu:
  Invalid

Bug description:
  Possibly related to bug #1447190, the keyboard simply does not show
  when used with Qt 5.5 (no crash file created).

  Qt 5.5 final is now testable on the phone, more information at
  https://wiki.ubuntu.com/Touch/QtTesting

  maliit-server.log contents:
  Loading module: 'libubuntu_application_api_touch_mirclient.so.3.0.0'
  WARNING: 
file:///usr/share/maliit/plugins/com/ubuntu/keys/LanguageMenu.qml:55:22: QML 
CheckBox: Theme.createStyleComponent() is deprecated. Use ThemeSettings instead.
  WARNING: void MIMPluginManagerPrivate::_q_setActiveSubView(const QString&, 
Maliit::HandlerState) "libubuntu-keyboard-plugin.so" "en" is not enabled
  WARNING: 
file:///usr/share/maliit/plugins/com/ubuntu/keys/LanguageMenu.qml:74: 
TypeError: Cannot read property of null

  Since this affects being able to unlock the screen if passphrase is
  set, it's useful to know: gdbus call --session --dest
  com.canonical.UnityGreeter --object-path / --method
  com.canonical.UnityGreeter.HideGreeter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maliit-framework/+bug/1474690/+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 1316873] Re: Left mouse button stops working

2015-10-06 Thread Van Stokes, Jr.
Just started happening to me. I have a whitebox system with an ASUS
motherboard and a USB chorded mouse. Using 14.04 LTS with Gnome 3
desktop. A classic example is I start FILES but I cannot close the
window (by clicking the X button) nor can I go back a directory. It's
treating the 'buttons' as if they are part of the title bar. I can grab
a button and move the window around.

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

Title:
  Left mouse button stops working

Status in xorg package in Ubuntu:
  Expired

Bug description:
  This  problem has plagued me for a few years across different laptops
  and Ubuntu versions. Current I am experiencing this on a Dell Inspiron
  15z running Ubuntu 14.04 LTS.

  It typically starts after I have used the chat or call feature in
  gmail, by clicking on the phone icon in the left chat margin. I am a
  Firefox user and have not tested this with chrome etc. It has not
  happened if i dont install google-talkplugin so it is quite possible
  that the plugin is to blame.

  Symptom
  ===
  The left mouse button on all attached mice - USB , Trackpad and touch - will 
not do anything  however the right mouse button continues to work.  This 
happens to all applications and also to the desktop. The keyboard continues to 
function as normal.

  When this occurs , my solution is to Alt-F4 close all windows and log
  out of the X session. When I re-login the left mouse button works as
  normal.

  
  This is an irritant and work disruptor as I have to save all browser and 
desktop applications to  safe state before I logout to reset the mouse. I will 
appreciate any soltion or workaround.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8
  ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Tue May  6 21:41:29 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:058f]
  InstallationDate: Installed on 2014-04-17 (19 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  MachineType: Dell Inc. Inspiron 5523
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=f5004b03-b37f-4733-88a8-51c6f3bd0a4d ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/18/2013
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A05
  dmi.board.name: 0GKGJG
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A05
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvrA05:bd05/18/2013:svnDellInc.:pnInspiron5523:pvrNotSpecified:rvnDellInc.:rn0GKGJG:rvrA05:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.name: Inspiron 5523
  dmi.product.version: Not Specified
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11+14.04.20140423-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-4ubuntu5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-4ubuntu5
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Tue May  6 21:20:40 2014
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id5558 
   vendor CMN
  xserver.version: 2:1.15.1-0ubuntu2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1316873/+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 1313436] Re: Unity/Compiz very slow after resume from suspend

2015-10-06 Thread Alex Baggott
Thank you for taking the time to report this bug. We have tried to
recreate this on the latest release of Ubuntu and cannot reproduce it.
This bug is being marked as Invalid. If you believe the problem to still
exist in the latest version of Ubuntu, please comment on why that is the
case and change the bug status to NEW.

Tested by suspending and resuming four times in a row.

** Changed in: unity (Ubuntu)
   Status: Confirmed => Invalid

** Changed in: unity
   Status: Confirmed => Invalid

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

Title:
  Unity/Compiz very slow after resume from suspend

Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  After suspending and then resuming the system unity/compiz often but
  not always becomes extremely slow to respond, so much so that you can
  see the transistion from lockscreen to desktop for many minutes (if it
  ever finishes). I will attach a picture of what it looks like. I
  didn't wait around long enough to see if it would ever actually finish
  showing the desktop.

  Is there any way to work around this issue? setsid unity has been
  mentioned online as a workaround for unity/compiz problems but that
  does not appear to work when run from the linux command line outside
  of X.

  The system has never been able to run the nouveau driver due to it
  crashing on resume under any desktop environment, which is the primary
  reason its running the nvidia driver which has worked fine for the
  past 5 years I've owned the system.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  304.117  Tue Nov 26 21:25:36 
PST 2013
   GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
  .tmp.unity.support.test.0:

  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sun Apr 27 15:14:01 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: nvidia-304, 304.117, 3.13.0-24-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   NVIDIA Corporation G73 [GeForce 7600 GT] [10de:0391] (rev a1) (prog-if 00 
[VGA controller])
     Subsystem: Gigabyte Technology Co., Ltd Device [1458:3417]
  InstallationDate: Installed on 2014-04-25 (2 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  MachineType: Gigabyte Technology Co., Ltd. P55-UD5
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=4cbdddb9-1645-4914-b056-903626ac77cf ro quiet splash
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 11/09/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F11c
  dmi.board.name: P55-UD5
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF11c:bd11/09/2010:svnGigabyteTechnologyCo.,Ltd.:pnP55-UD5:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP55-UD5:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P55-UD5
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  version.compiz: compiz 1:0.9.11+14.04.20140409-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-4ubuntu5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-4ubuntu5
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Sun Apr 27 15:10:24 2014
  xserver.configfile: default
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:

  xserver.version: 2:1.15.1-0ubuntu2

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to :

[Touch-packages] [Bug 1442378] Re: latest radeon open driver on lubuntu 14.04 displays white flickering scan lines and occasional parts of the windows on external monitor

2015-10-06 Thread Guilhermino
Nothing seems to have changed with the new BIOS. The result of the command was: 
KF_KH.F.25 05/03/2005
Thanks.

** Changed in: xorg (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  latest radeon open driver on lubuntu 14.04 displays white flickering
  scan lines and occasional parts of the windows on external monitor

Status in xorg package in Ubuntu:
  Confirmed

Bug description:
  On a Compaq Presario 2500 laptop with an Ati IGP 345M graphics card,
  when connected to an external monitor ( SAMSUNG P2470HD - FullHD
  monitor/tv ) through a VGA analog connection, and using the latest
  open radeon driver on Lubuntu 14.04.2 with all the latest updates,
  when using the native resolution ( 1920x1080@60 ) of the monitor, and
  even at lower ones, except the lowest, there are small white lines
  flickering all over the display especially when there is movement in
  the windows or menus, and sometimes even small fragments of the window
  contents appear momentarily across different parts of the monitor.
  This does not happen when using a Windows XP installation on the same
  laptop with the same monitor and with the same D-Sub cable.

  I've tried to install the fglrx driver, but there seems to be none
  available for this card either on the AMD website nor on the
  additional drivers repository of lubuntu. Installing the fglrx driver,
  the card was never recognised. The command "sudo amdconfig --initial"
  returns the error message: "amdconfig: No supported adapters
  detected".

  ---
  ApportVersion: 2.14.1-0ubuntu3.10
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  DistUpgraded: 2014-08-20 18:45:34,637 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroRelease: Ubuntu 14.04
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RS200M [Radeon IGP 
330M/340M/345M/350M] [1002:4337] (prog-if 00 [VGA controller])
     Subsystem: Hewlett-Packard Company Radeon IGP 345M [103c:0850]
  InstallationDate: Installed on 2014-05-11 (511 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Release i386 (20131016)
  LightdmGreeterLogOld:
   ** (lightdm-gtk-greeter:1405): WARNING **: Failed to load user image: Failed 
to open file '/home/pai/.face': No such file or directory
   g_dbus_connection_real_closed: Remote peer vanished with error: Underlying 
GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: Hewlett-Packard Presario 2500 (DP877E)
  Package: xorg 1:7.7+1ubuntu8.1
  PackageArchitecture: i386
  PccardctlIdent:
   Socket 0:
     no product info available
  PccardctlStatus:
   Socket 0:
     3.3V
    32-bit
    PC Card
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-49-generic 
root=UUID=14f7c35f-caf9-4149-b29a-3423e08c9b33 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17
  Tags:  trusty ubuntu
  Uname: Linux 3.13.0-49-generic i686
  UpgradeStatus: Upgraded to trusty on 2014-08-20 (410 days ago)
  UserGroups:

  _MarkForUpload: True
  dmi.bios.date: 08/29/2003
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: KF_KH.F.13
  dmi.board.name: 0850
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NS570 Version PQ1B56
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrKF_KH.F.13:bd08/29/2003:svnHewlett-Packard:pnPresario2500(DP877E):pvrKH.F.13:rvnHewlett-Packard:rn0850:rvrNS570VersionPQ1B56:cvnHewlett-Packard:ct10:cvrN/A:
  dmi.product.name: Presario 2500 (DP877E)
  dmi.product.version: KH.F.13
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.56-1~ubuntu2
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.4
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.4
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.910-0ubuntu1.4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Mon Oct  5 14:12:41 2015
  xserver.configfile: /etc/X11/xorg.conf
  xserver.devices:
   inputPower Button KEYBOARD, id 6
   inp

[Touch-packages] [Bug 1498474] Re: Incorrect MTU on VPN connect

2015-10-06 Thread Sebastien Bacher
the upstream git commit is
http://cgit.freedesktop.org/NetworkManager/NetworkManager/commit/?h=nm-1-0&id=105e30efbaf422401902575749efdcd18706ace1

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

Title:
  Incorrect MTU on VPN connect

Status in NetworkManager:
  Fix Released
Status in network-manager package in Ubuntu:
  In Progress

Bug description:
  On update to wily, vpnc vpn connects, but MTU is incorrectly set to
  1500, instead of default value which is 1412.  This results in
  connectivity issues (packet loss).

  Gnomezilla bug report:
  https://bugzilla.gnome.org/show_bug.cgi?id=754781

  I have attached the included patch from above for convenience, and
  tested that this indeed resolves the issue for me.

  It might be worth mentioning that I had to disable the built in tests
  (--enable-tests=no), or pakage generation with "debuild -us -uc -b"
  fails on 2 of the tests relating to ipv6.

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1498474/+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 1499311] Re: scroll wheel locks computer up.

2015-10-06 Thread Christopher Wesley Joyner
Ok I am downloading the image, and I will travel to the store and buy
some blank DVD's to burn the image. I will then run the command to give
you the information. Do I need to plug in the affected mouse for the
apport?

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1499311/+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 1497170] Re: New file creation - not opening with file editor

2015-10-06 Thread Sebastien Bacher
** Changed in: glib2.0 (Ubuntu)
   Status: Triaged => Fix Committed

** Changed in: glib2.0 (Ubuntu)
 Assignee: Ryan Lortie (desrt) => Iain Lane (laney)

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

Title:
  New file creation - not opening with file editor

Status in GLib:
  Confirmed
Status in One Hundred Papercuts:
  Confirmed
Status in glib2.0 package in Ubuntu:
  Fix Committed
Status in xdg-utils package in Ubuntu:
  Invalid

Bug description:
  Create a new file from File - Create Empty File.

  Open new document:

  expected behaviour - document opens in text editor

  actual behaviour - Open With dialogue opens requiring an application
  to open file.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: thunar 1.6.10-1
  ProcVersionSignature: Ubuntu 4.2.0-10.11-generic 4.2.0
  Uname: Linux 4.2.0-10-generic x86_64
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Fri Sep 18 09:05:54 2015
  InstallationDate: Installed on 2015-09-17 (0 days ago)
  InstallationMedia: Xubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150917)
  SourcePackage: thunar
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: XFCE
  DistroRelease: Ubuntu 15.10
  InstallationDate: Installed on 2015-09-17 (1 days ago)
  InstallationMedia: Xubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150917)
  Package: xdg-utils 1.1.0~rc3+git20150907-1ubuntu2
  PackageArchitecture: all
  ProcVersionSignature: Ubuntu 4.2.0-10.11-generic 4.2.0
  Tags:  wily
  Uname: Linux 4.2.0-10-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/glib/+bug/1497170/+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 1474690] Re: Keyboard doesn't work with Qt 5.5

2015-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package maliit-framework -
0.99.0+git20130923+17fdf86-0ubuntu12

---
maliit-framework (0.99.0+git20130923+17fdf86-0ubuntu12) wily; urgency=medium

  * Add 0015-fix-plugin-iid.patch to fix keyboard functionality with Qt 5.5,
#ifdef to build also on Qt 5.4.
(LP: #1474690)

 -- Timo Jyrinki   Mon, 05 Oct 2015 12:41:54
+

** Changed in: maliit-framework (Ubuntu)
   Status: In Progress => Fix Released

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

Title:
  Keyboard doesn't work with Qt 5.5

Status in maliit-framework package in Ubuntu:
  Fix Released
Status in ubuntu-keyboard package in Ubuntu:
  Invalid

Bug description:
  Possibly related to bug #1447190, the keyboard simply does not show
  when used with Qt 5.5 (no crash file created).

  Qt 5.5 final is now testable on the phone, more information at
  https://wiki.ubuntu.com/Touch/QtTesting

  maliit-server.log contents:
  Loading module: 'libubuntu_application_api_touch_mirclient.so.3.0.0'
  WARNING: 
file:///usr/share/maliit/plugins/com/ubuntu/keys/LanguageMenu.qml:55:22: QML 
CheckBox: Theme.createStyleComponent() is deprecated. Use ThemeSettings instead.
  WARNING: void MIMPluginManagerPrivate::_q_setActiveSubView(const QString&, 
Maliit::HandlerState) "libubuntu-keyboard-plugin.so" "en" is not enabled
  WARNING: 
file:///usr/share/maliit/plugins/com/ubuntu/keys/LanguageMenu.qml:74: 
TypeError: Cannot read property of null

  Since this affects being able to unlock the screen if passphrase is
  set, it's useful to know: gdbus call --session --dest
  com.canonical.UnityGreeter --object-path / --method
  com.canonical.UnityGreeter.HideGreeter

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/maliit-framework/+bug/1474690/+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 1360089] Re: libreoffice startup menu problems (busy mouse cursor)

2015-10-06 Thread Alex Baggott
As part of the big bug review for 16.04 LTS I have tested this on 15.10
and the bug is still there.

The busy cursor occurs when a second instance of a LibreOffice
application is opened. If Quickstarter is enabled (In LibreOffice, go to
Tools -> Options -> LibreOffice -> Memory -> and check "enable systray
Quickstarter"), it occurs when opening the first instance of a
LibreOffice app.

** Tags added: desktop-bugscrub-triaged

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

Title:
  libreoffice startup menu problems (busy mouse cursor)

Status in Unity:
  New
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  This problem concerns libreoffice menu integration. When running LO
  under other environment, this IS NOT the problem.

  Short youtube description of the problem is available at:
  https://www.youtube.com/watch?v=dabnfddx5xE&feature=youtu.be

  When I start  any application from LibreOffice, busy mouse cursor is
  there for some time as well as some menu items are not disabled (and
  they should be).

  What I have discovered: if I have LO Quickstarter enabled, this
  problem appears when starting LO. However, when LO Quickstarted is
  disabled this problem does not appear when starting any LO program
  (for example Writer), but appears when I start another (Calc or
  Impress).

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1360089/+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 1459571] Re: Keyboard shortcuts stop working

2015-10-06 Thread Treviño
** No longer affects: unity-settings-daemon (Ubuntu)

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

Title:
  Keyboard shortcuts stop working

Status in Unity:
  Fix Committed
Status in unity package in Ubuntu:
  Fix Released

Bug description:
  All the global keyboard shortcuts (volume, media, ctrl+alt+t for
  terminal etc.) handled by u-s-d stop working somewhat randomly.

  Restarting u-s-d does not help, the only way to get them back is
  restarting unity (which roughly equals to restarting the whole
  session).

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity-settings-daemon 15.04.1+15.04.20150408-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-18.18-generic 3.19.6
  Uname: Linux 3.19.0-18-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu May 28 10:37:03 2015
  SourcePackage: unity-settings-daemon
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1459571/+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 1502921] Re: LightDM sets wrong environment variables

2015-10-06 Thread Ikuya Awashiro
Hi Gunnar,
Thank you for your great work!

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

Title:
  LightDM sets wrong environment variables

Status in accountsservice package in Ubuntu:
  Fix Released
Status in lightdm package in Ubuntu:
  Invalid

Bug description:
  LightDM sets wrong GDM_LANG and LANGUAGE environment variables.

  ikuya@UbuntuWily6:~$ env |grep LANG
  LANG=ja_JP.UTF-8
  GDM_LANG=en
  LANGUAGE=en

  they should be:
  ikuya@UbuntuWily6:~$ env |grep LANG
  LANG=ja_JP.UTF-8
  GDM_LANG=ja
  LANGUAGE=ja

  According to this bug, every menu shows in English.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: lightdm 1.16.3-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Uname: Linux 4.2.0-14-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Oct  5 23:14:27 2015
  InstallationDate: Installed on 2015-10-05 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151005)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/accountsservice/+bug/1502921/+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 1437767] Re: Icons contain pixellated artifacts

2015-10-06 Thread Alex Baggott
I'm not seeing this on a clean install of 15.10 Beta 2. Does this only
occur on an upgrade to a later release?

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

Title:
  Icons contain pixellated artifacts

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from utopic to vivid beta, many (but apparently not
  all) icons in Unity contain pixellation artifacts, as if it's been
  scaled up very slightly.  Please see the attachment and note the
  launcher, as well as "Security & Privacy" which was highlighted when
  taking the screenshot.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: unity 7.3.2+15.04.20150324.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-10.10-generic 3.19.2
  Uname: Linux 3.19.0-10-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.16.2-0ubuntu5
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Sat Mar 28 19:48:12 2015
  DistUpgraded: 2015-03-28 19:13:12,615 DEBUG enabling apt cron job
  DistroCodename: vivid
  DistroVariant: ubuntu
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:2226]
  InstallationDate: Installed on 2015-03-07 (22 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  MachineType: LENOVO 20CMCTO1WW
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-10-generic 
root=/dev/mapper/ubuntu--vg-root ro acpi_osi=Linux acpi_backlight=vendor 
psmouse.proto=imps quiet splash vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: Upgraded to vivid on 2015-03-29 (0 days ago)
  XorgConf:
   Section "Monitor"
   Identifier ""
   DisplaySize276 156# In millimeters
   EndSection
  dmi.bios.date: 01/23/2015
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N10ET28W (1.05 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20CMCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50512 STD
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN10ET28W(1.05):bd01/23/2015:svnLENOVO:pn20CMCTO1WW:pvrThinkPadX250:rvnLENOVO:rn20CMCTO1WW:rvrSDK0E50512STD:cvnLENOVO:ct10:cvrNone:
  dmi.product.name: 20CMCTO1WW
  dmi.product.version: ThinkPad X250
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.12.1+15.04.20150303-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.59-0ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.0-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.0-0ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917-1~exp1ubuntu2build1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu2build1
  xserver.bootTime: Sat Mar 28 19:26:54 2015
  xserver.configfile: /etc/X11/xorg.conf
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1005 
   vendor LGD
  xserver.version: 2:1.17.1-0ubuntu3

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1437767/+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 1502921] Re: LightDM sets wrong environment variables

2015-10-06 Thread Ikuya Awashiro
Hi Robert,
According to the attached screenshot, GDM_LANG does not set.

** Changed in: lightdm (Ubuntu)
   Status: New => Invalid

** Attachment added: "UbuntuGNOMEWily4.png"
   
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1502921/+attachment/4485953/+files/UbuntuGNOMEWily4.png

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

Title:
  LightDM sets wrong environment variables

Status in accountsservice package in Ubuntu:
  Fix Released
Status in lightdm package in Ubuntu:
  Invalid

Bug description:
  LightDM sets wrong GDM_LANG and LANGUAGE environment variables.

  ikuya@UbuntuWily6:~$ env |grep LANG
  LANG=ja_JP.UTF-8
  GDM_LANG=en
  LANGUAGE=en

  they should be:
  ikuya@UbuntuWily6:~$ env |grep LANG
  LANG=ja_JP.UTF-8
  GDM_LANG=ja
  LANGUAGE=ja

  According to this bug, every menu shows in English.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: lightdm 1.16.3-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Uname: Linux 4.2.0-14-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Oct  5 23:14:27 2015
  InstallationDate: Installed on 2015-10-05 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151005)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/accountsservice/+bug/1502921/+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 1491043] Re: libxcb 1.10 has important bug fixed in 1.11

2015-10-06 Thread Robert Hooker
** Changed in: libxcb (Ubuntu Trusty)
 Assignee: Robert Hooker (sarvatt) => (unassigned)

** Changed in: libxcb (Ubuntu Vivid)
 Assignee: Robert Hooker (sarvatt) => (unassigned)

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

Title:
  libxcb 1.10 has important bug fixed in 1.11

Status in libxcb package in Ubuntu:
  Fix Released
Status in libxcb source package in Trusty:
  Triaged
Status in libxcb source package in Vivid:
  Triaged

Bug description:
  libxcb 1.10 has serious bug which prevents multi-threaded OpenGL applications 
from working.
  It crashes app with message like:
  ../../src/xcb_conn.c:186: write_vec: Assertion `!c->out.queue_len' failed.
  It is described on:
  http://lists.freedesktop.org/archives/xcb/2013-December/009027.html
  Please release upgrade to 1.11 version which as far as I know fixed this 
issues for Ubuntu 15.04.

  Kubuntu 15.04

  libxcb1:
Zainstalowana: 1.10-2ubuntu1
Kandydująca:   1.10-2ubuntu1
Tabela wersji:
   *** 1.10-2ubuntu1 0
  500 http://pl.archive.ubuntu.com/ubuntu/ vivid/main amd64 Packages
  100 /var/lib/dpkg/status

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libxcb/+bug/1491043/+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 1482181] Re: Media keys (ctrl-alt-t, brightness, play/pause) don't work randomly after logging

2015-10-06 Thread Treviño
*** This bug is a duplicate of bug 1459571 ***
https://bugs.launchpad.net/bugs/1459571

** This bug has been marked a duplicate of bug 1459571
   Keyboard shortcuts stop working

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

Title:
  Media keys (ctrl-alt-t, brightness, play/pause) don't work randomly
  after logging

Status in Unity:
  Triaged
Status in unity package in Ubuntu:
  Triaged
Status in unity-settings-daemon package in Ubuntu:
  Invalid

Bug description:
  I've installed 15.10 and I can't open a terminal using ctrl-alt-t or
  use any other media keys. All system shorcuts as well don't work.

  Note that this started at least in 14.10.

  Restarting Unity "fixes" it (or logging out/logging back), so it seems
  a race between Unity and settings daemon at startup.

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1482181/+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 1502099] Re: apt-get crashed with SIGSEGV in strlen()

2015-10-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1497534 ***
https://bugs.launchpad.net/bugs/1497534

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1497534, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1502099/+attachment/4481840/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1502099/+attachment/4481842/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1502099/+attachment/4481845/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1502099/+attachment/4481846/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1502099/+attachment/4481847/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1502099/+attachment/4481848/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1502099/+attachment/4481849/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1497534
   apt-get crashed with SIGSEGV in strlen()

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  apt-get crashed with SIGSEGV in strlen()

Status in apt package in Ubuntu:
  New

Bug description:
  update

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: apt 1.0.9.10ubuntu7
  ProcVersionSignature: Ubuntu 4.2.0-12.14-generic 4.2.1
  Uname: Linux 4.2.0-12-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  Date: Fri Oct  2 07:15:12 2015
  ExecutablePath: /usr/bin/apt-get
  InstallationDate: Installed on 2015-08-30 (32 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 
(20150826.1)
  ProcCmdline: apt-get upgrade
  SegvAnalysis:
   Segfault happened at: 0x7f244c4bc7d0 :   movdqa 0x40(%rax),%xmm8
   PC (0x7f244c4bc7d0) ok
   source "0x40(%rax)" (0x56088537d000) not located in a known VMA region 
(needed readable region)!
   destination "%xmm8" ok
  SegvReason: reading unknown VMA
  Signal: 11
  SourcePackage: apt
  StacktraceTop:
   strlen () at ../sysdeps/x86_64/strlen.S:203
   debTranslationsIndex::IndexURI[abi:cxx11](char const*) const () from 
/usr/lib/x86_64-linux-gnu/libapt-pkg.so.4.16
   debTranslationsIndex::Exists() const () from 
/usr/lib/x86_64-linux-gnu/libapt-pkg.so.4.16
   ?? () from /usr/lib/x86_64-linux-gnu/libapt-pkg.so.4.16
   pkgCacheGenerator::MakeStatusCache(pkgSourceList&, OpProgress*, MMap**, 
bool) () from /usr/lib/x86_64-linux-gnu/libapt-pkg.so.4.16
  Title: apt-get crashed with SIGSEGV in strlen()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1502099/+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 1501074] Re: I don't know what went wrong

2015-10-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1482439 ***
https://bugs.launchpad.net/bugs/1482439

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1482439, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1501074/+attachment/4479317/+files/CoreDump.gz

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1501074/+attachment/4479320/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1501074/+attachment/4479321/+files/ProcStatus.txt

** This bug has been marked a duplicate of bug 1482439
   wpa_supplicant crashed with SIGSEGV in get_iface_by_dbus_path()

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  I don't know what went wrong

Status in wpa package in Ubuntu:
  New

Bug description:
  problem detected upon log in. dont know what happened.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: wpasupplicant 2.4-0ubuntu2
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  Date: Tue Sep 29 17:00:43 2015
  ExecutablePath: /sbin/wpa_supplicant
  InstallationDate: Installed on 2015-09-28 (0 days ago)
  InstallationMedia: Lubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150825)
  ProcCmdline: /sbin/wpa_supplicant -u -s -O /run/wpa_supplicant
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
  SegvAnalysis: Skipped: missing required field "Disassembly"
  Signal: 11
  SourcePackage: wpa
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/wpa/+bug/1501074/+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 1501585] Re: tracker-extract crashed with SIGSEGV in gst_base_parse_push_frame()

2015-10-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1301914 ***
https://bugs.launchpad.net/bugs/1301914

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1301914, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1501585/+attachment/4480466/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1501585/+attachment/4480468/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1501585/+attachment/4480470/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1501585/+attachment/4480471/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1501585/+attachment/4480472/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1501585/+attachment/4480473/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1501585/+attachment/4480474/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1301914

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  tracker-extract crashed with SIGSEGV in gst_base_parse_push_frame()

Status in tracker package in Ubuntu:
  New

Bug description:
  Bug report notification after logging in.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: tracker-extract 1.4.1-1ubuntu2
  ProcVersionSignature: Ubuntu 4.2.0-13.15-generic 4.2.1
  Uname: Linux 4.2.0-13-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CrashCounter: 1
  CurrentDesktop: GNOME
  Date: Wed Sep 30 22:50:32 2015
  ExecutablePath: /usr/lib/tracker/tracker-extract
  InstallationDate: Installed on 2015-08-20 (41 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Beta amd64 (20150326)
  ProcCmdline: /usr/lib/tracker/tracker-extract
  ProcEnviron:
   PATH=(custom, user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SegvAnalysis:
   Segfault happened at: 0x7fca231605bd:mov%r13,0x48(%rax)
   PC (0x7fca231605bd) ok
   source "%r13" ok
   destination "0x48(%rax)" (0x0048) not located in a known VMA region 
(needed writable region)!
   Stack memory exhausted (SP below stack segment)
  SegvReason: writing NULL VMA
  Signal: 11
  SourcePackage: tracker
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0
   gst_base_parse_push_frame () from 
/usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0
  Title: tracker-extract crashed with SIGSEGV in gst_base_parse_push_frame()
  UpgradeStatus: Upgraded to wily on 2015-08-29 (32 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tracker/+bug/1501585/+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 1503283] [NEW] /sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/reset_count denial on mako

2015-10-06 Thread Jamie Strandboge
Public bug reported:

It was reported to me via email that when running the webbrowser-app under 
confinement, the following denial was seen:
audit(1443714660.662:190): apparmor="DENIED" operation="open" 
profile="webbrowser-app" 
name="/sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/reset_count" pid=4228 
comm="Chrome_InProcGp" requested_mask="r" denied_mask="r" fsuid=32011 ouid=0

No other details are known at this time, but apparmor-easyprof-ubuntu
ships other /sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/ rules for
our reference devices.

wily already has this change, but for the stable-phone-overlay we need
to investigate if adding the rule will trigger a recompile for non-mako
devices.

** Affects: apparmor-easyprof-ubuntu (Ubuntu)
 Importance: Medium
 Assignee: Jamie Strandboge (jdstrand)
 Status: Invalid

** Changed in: apparmor-easyprof-ubuntu (Ubuntu)
   Importance: Undecided => Medium

** Changed in: apparmor-easyprof-ubuntu (Ubuntu)
   Status: New => Triaged

** Changed in: apparmor-easyprof-ubuntu (Ubuntu)
 Assignee: (unassigned) => Jamie Strandboge (jdstrand)

** Changed in: apparmor-easyprof-ubuntu (Ubuntu)
   Status: Triaged => Invalid

** Description changed:

  It was reported to me via email that when running the webbrowser-app under 
confinement, the following denial was seen:
  audit(1443714660.662:190): apparmor="DENIED" operation="open" 
profile="webbrowser-app" 
name="/sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/reset_count" pid=4228 
comm="Chrome_InProcGp" requested_mask="r" denied_mask="r" fsuid=32011 ouid=0
  
  No other details are known at this time, but apparmor-easyprof-ubuntu
  ships other /sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/ rules for
  our reference devices.
  
- This is fine to upload to wily, but for the stable-phone-overlay we need
+ wily already has this change, but for the stable-phone-overlay we need
  to investigate if adding the rule will trigger a recompile for non-mako
  devices.

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

Title:
  /sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/reset_count denial on
  mako

Status in apparmor-easyprof-ubuntu package in Ubuntu:
  Invalid

Bug description:
  It was reported to me via email that when running the webbrowser-app under 
confinement, the following denial was seen:
  audit(1443714660.662:190): apparmor="DENIED" operation="open" 
profile="webbrowser-app" 
name="/sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/reset_count" pid=4228 
comm="Chrome_InProcGp" requested_mask="r" denied_mask="r" fsuid=32011 ouid=0

  No other details are known at this time, but apparmor-easyprof-ubuntu
  ships other /sys/devices/platform/kgsl-3d0.0/kgsl/kgsl-3d0/ rules for
  our reference devices.

  wily already has this change, but for the stable-phone-overlay we need
  to investigate if adding the rule will trigger a recompile for non-
  mako devices.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor-easyprof-ubuntu/+bug/1503283/+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 1503011] Re: hud-service crashed with signal 7 in Columbus::LevenshteinIndex::insertWord()

2015-10-06 Thread Bryan Quigley
** Information type changed from Private to Public

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

Title:
  hud-service crashed with signal 7 in
  Columbus::LevenshteinIndex::insertWord()

Status in hud package in Ubuntu:
  New

Bug description:
  No obvious crash happened.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: hud 14.10+15.10.20150820.1-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Uname: Linux 4.2.0-14-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Oct  5 11:50:12 2015
  ExecutablePath: /usr/lib/x86_64-linux-gnu/hud/hud-service
  InstallationDate: Installed on 2015-01-08 (269 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Alpha amd64 (20150108)
  ProcCmdline: /usr/lib/x86_64-linux-gnu/hud/hud-service
  ProcEnviron:
   PATH=(custom, no user)
   SHELL=/bin/bash
   LANG=en_US.UTF-8
   LANGUAGE=en_US
   XDG_RUNTIME_DIR=
  Signal: 7
  SourcePackage: hud
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libcolumbus.so.1
   ?? () from /usr/lib/x86_64-linux-gnu/libcolumbus.so.1
   ?? () from /usr/lib/x86_64-linux-gnu/libcolumbus.so.1
   ?? () from /usr/lib/x86_64-linux-gnu/libcolumbus.so.1
   Columbus::LevenshteinIndex::insertWord(Columbus::Word const&, unsigned int) 
() from /usr/lib/x86_64-linux-gnu/libcolumbus.so.1
  Title: hud-service crashed with signal 7 in 
Columbus::LevenshteinIndex::insertWord()
  UpgradeStatus: Upgraded to wily on 2015-08-12 (53 days ago)
  UserGroups: adm autopilot cdrom dip libvirtd lpadmin lxd plugdev sambashare 
sudo wireshark

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hud/+bug/1503011/+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 1474695] Re: Video playback broken with Qt 5.5

2015-10-06 Thread Jim Hodapp
Can you get the log for mediaplayer-app as well? This will have the
qtmultimedia/qtubuntu-media debug output.

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

Title:
  Video playback broken with Qt 5.5

Status in Canonical System Image:
  New
Status in qtvideo-node package in Ubuntu:
  New

Bug description:
  Video playback is broken with Qt 5.5 (tested on mako). Eg sintel
  trailer just shows a black screen, and no audio. Pure music playback
  does work elsewhere.

  More information at https://wiki.ubuntu.com/Touch/QtTesting

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1474695/+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


Re: [Touch-packages] [Bug 1437767] Re: Icons contain pixellated artifacts

2015-10-06 Thread armageddon08
It is possible that this could be an issue only for upgrade cases. In my
case I upgraded my 14.10 to 15.04 and faced this issue. This was the first
time I went through the upgrade process. Before this I have always done a
clean install and never faced the issue.

On Tue, Oct 6, 2015, 6:51 PM Alex Baggott 
wrote:

> I'm not seeing this on a clean install of 15.10 Beta 2. Does this only
> occur on an upgrade to a later release?
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1437767
>
> Title:
>   Icons contain pixellated artifacts
>
> Status in Unity:
>   Confirmed
> Status in unity package in Ubuntu:
>   Confirmed
>
> Bug description:
>   After upgrading from utopic to vivid beta, many (but apparently not
>   all) icons in Unity contain pixellation artifacts, as if it's been
>   scaled up very slightly.  Please see the attachment and note the
>   launcher, as well as "Security & Privacy" which was highlighted when
>   taking the screenshot.
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 15.04
>   Package: unity 7.3.2+15.04.20150324.1-0ubuntu1
>   ProcVersionSignature: Ubuntu 3.19.0-10.10-generic 3.19.2
>   Uname: Linux 3.19.0-10-generic x86_64
>   .tmp.unity.support.test.0:
>
>   ApportVersion: 2.16.2-0ubuntu5
>   Architecture: amd64
>   CompizPlugins: No value set for
> `/apps/compiz-1/general/screen0/options/active_plugins'
>   CompositorRunning: compiz
>   CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
>   CompositorUnredirectFSW: true
>   CurrentDesktop: Unity
>   Date: Sat Mar 28 19:48:12 2015
>   DistUpgraded: 2015-03-28 19:13:12,615 DEBUG enabling apt cron job
>   DistroCodename: vivid
>   DistroVariant: ubuntu
>   GraphicsCard:
>Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09)
> (prog-if 00 [VGA controller])
>  Subsystem: Lenovo Device [17aa:2226]
>   InstallationDate: Installed on 2015-03-07 (22 days ago)
>   InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64
> (20141022.1)
>   MachineType: LENOVO 20CMCTO1WW
>   ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-10-generic
> root=/dev/mapper/ubuntu--vg-root ro acpi_osi=Linux acpi_backlight=vendor
> psmouse.proto=imps quiet splash vt.handoff=7
>   SourcePackage: unity
>   UpgradeStatus: Upgraded to vivid on 2015-03-29 (0 days ago)
>   XorgConf:
>Section "Monitor"
>Identifier ""
>DisplaySize276 156# In millimeters
>EndSection
>   dmi.bios.date: 01/23/2015
>   dmi.bios.vendor: LENOVO
>   dmi.bios.version: N10ET28W (1.05 )
>   dmi.board.asset.tag: Not Available
>   dmi.board.name: 20CMCTO1WW
>   dmi.board.vendor: LENOVO
>   dmi.board.version: SDK0E50512 STD
>   dmi.chassis.asset.tag: No Asset Information
>   dmi.chassis.type: 10
>   dmi.chassis.vendor: LENOVO
>   dmi.chassis.version: None
>   dmi.modalias:
> dmi:bvnLENOVO:bvrN10ET28W(1.05):bd01/23/2015:svnLENOVO:pn20CMCTO1WW:pvrThinkPadX250:rvnLENOVO:rn20CMCTO1WW:rvrSDK0E50512STD:cvnLENOVO:ct10:cvrNone:
>   dmi.product.name: 20CMCTO1WW
>   dmi.product.version: ThinkPad X250
>   dmi.sys.vendor: LENOVO
>   version.compiz: compiz 1:0.9.12.1+15.04.20150303-0ubuntu1
>   version.ia32-libs: ia32-libs N/A
>   version.libdrm2: libdrm2 2.4.59-0ubuntu1
>   version.libgl1-mesa-dri: libgl1-mesa-dri 10.5.0-0ubuntu1
>   version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
>   version.libgl1-mesa-glx: libgl1-mesa-glx 10.5.0-0ubuntu1
>   version.xserver-xorg-core: xserver-xorg-core 2:1.17.1-0ubuntu3
>   version.xserver-xorg-input-evdev: xserver-xorg-input-evdev
> 1:2.9.0-1ubuntu2
>   version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.5.0-1ubuntu2
>   version.xserver-xorg-video-intel: xserver-xorg-video-intel
> 2:2.99.917-1~exp1ubuntu2build1
>   version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau
> 1:1.0.11-1ubuntu2build1
>   xserver.bootTime: Sat Mar 28 19:26:54 2015
>   xserver.configfile: /etc/X11/xorg.conf
>   xserver.errors:
>
>   xserver.logfile: /var/log/Xorg.0.log
>   xserver.outputs:
>product id1005
>vendor LGD
>   xserver.version: 2:1.17.1-0ubuntu3
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/unity/+bug/1437767/+subscriptions
>

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

Title:
  Icons contain pixellated artifacts

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from utopic to vivid beta, many (but apparently not
  all) icons in Unity contain pixellation artifacts, as if it's been
  scaled up very slightly.  Please see the attachment and note the
  launcher, as well as "Security & Privacy" which was highlighted when
  taking the screenshot.

  ProblemType: Bug
  DistroRelease: Ubuntu 

[Touch-packages] [Bug 1503286] [NEW] ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root failed: Device or resource busy" [multipath]

2015-10-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

== Comment: #0 - Manjunatha H R  - 2015-09-25 11:05:36 ==
Booting of Ubuntu15.10 lpar fails and control falls to initramfs.

uname -a
--
Linux (none) 4.2.0-10-generic #12-Ubuntu SMP Tue Sep 15 19:46:04 UTC 2015 
ppc64le GNU/Linux


Boot log:
-
  Booting a command list

Loading Linux 4.2.0-10-generic ...
Loading initial ramdisk ...
OF stdout device is: /vdevice/vty@3000
Preparing to boot Linux version 4.2.0-10-generic (buildd@fisher04) (gcc version 
5.2.1 20150911 (Ubuntu 5.2.1-17ubuntu4) ) #12-Ubuntu SMP Tue Sep 15 19:46:04 
UTC 2015 (Ubuntu 4.2.0-10.12-generic 4.2.0)
Detected machine type: 0101
Max number of cores passed to firmware: 256 (NR_CPUS = 2048)
Calling ibm,client-architecture-support... done
command line: BOOT_IMAGE=/boot/vmlinux-4.2.0-10-generic 
root=UUID=822dd709-5b69-45a9-aba5-63cb55768ffb ro splash quiet 
topology_updates=off
memory layout at init:
  memory_limit :  (16 MB aligned)
  alloc_bottom : 0bf8
  alloc_top: 1000
  alloc_top_hi : 1000
  rmo_top  : 1000
  ram_top  : 1000
found display   : /pci@800202c/display@0, opening... done
instantiating rtas at 0x0eb6... done
prom_hold_cpus: skipped
copying OF device tree...
Building dt strings...
Building dt structure...
Device tree strings 0x0bf9 -> 0x0bf91965
Device tree struct  0x0bfa -> 0x0bfe
Quiescing Open Firmware ...
Booting Linux via __start() ...
 -> smp_release_cpus()
spinning_secondaries = 199
 <- smp_release_cpus()
 <- setup_system()
[2.868103] [drm:radeon_device_init [radeon]] *ERROR* Unable to find PCI I/O 
BAR
[3.074553] [drm:radeon_atombios_init [radeon]] *ERROR* Unable to find PCI 
I/O BAR; using MMIO for ATOM IIO
[5.060785] lpfc 0002:90:00.0: 0:1303 Link Up Event x1 received Data: x1 x0 
x80 x0 x0 x0 0
Scanning for Btrfs filesystems
fsck from util-linux 2.26.2
/dev/sdn2 is in use.
e2fsck: Cannot continue, aborting.

fsck exited with status code 8
[   36.233086]  rport-0:0-9: blocked FC remote port time out: removing rport
mount: mounting /dev/sdn2 on /root failed: Device or resource busy
Target filesystem doesn't have requested /sbin/init.
mount: mounting /dev on /root/dev failed: No such file or directory
No init found. Try passing init= bootarg.

BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in commands.

(initramfs)
-


This lpar is having multipath disks and boot disk is on a multipath disk.
Boot passes only whenever fsck tries to scan boot disk via :  /dev/dm OR 
/dev/mapper/mpath

Boot Pass scenarios:

1. Boot passed when fsck tried scanning "/dev/mapper/mpathb"
fsck from util-linux 2.26.2
/dev/mapper/mpathb-part2: clean, 81802/3139584 files, 1040598/12558080 blocks

2. Boot passed when fsck tried scanning  "/dev/dm-3"
Scanning for Btrfs filesystems
fsck from util-linux 2.26.2
/dev/dm-3: clean, 81802/3139584 files, 1040605/12558080 blocks


Boot fails, whenever fsck is called on /dev/sd 

Boot fail scenario: Boot failed when fsck is called on "/dev/sdn"
-
Scanning for Btrfs filesystems
fsck from util-linux 2.26.2
/dev/sdn2 is in use.
e2fsck: Cannot continue, aborting.

fsck exited with status code 8
[   36.108653]  rport-0:0-9: blocked FC remote port time out: removing rport
mount: mounting /dev/sdn2 on /root failed: Device or resource busy
Target filesystem doesn't have requested /sbin/init.

mount: mounting /dev on /root/dev failed: No such file or directory
No init found. Try passing init= bootarg.

BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in commands.

(initramfs)
-

Contact info:

Manju (manju...@in.ibm.com)  A.P. (apu...@us.ibm.com)

== Comment: #12 - Mauricio Faria De Oliveira  - 2015-10-02 
13:51:29 ==
Hi Manju and Alton,

I could not reproduce this bug in 2 attempts.
The LPAR booted successfully, using the root=UUID= parameter.

By looking at this message from the description:
> mount: mounting /dev/sdn2 on /root failed: Device or resource busy

It should have happened because multipath udev rules failed to update
the /dev/disk/by-id/ symlink from /dev/sdn to /dev/dm-X, but
multipathing the path was successful (so it got locked/in-use).

If you can reproduce it again, please leave the LPAR in the failing state (in 
the initramfs), reopen this bug and ping me.
I'd be happy to debug it.

Thanks!

== Comment: #15 - Mauricio Faria De Oliveira  - 2015-10-05 
19:59:56 ==
This is probably a race between the resolve_device() call in mountroot() and 
the multipath discovery triggered by udev rules.

If resolve_device() runs before the root device is multipathed, $ROOT is set to 
an individual path (eg, /dev/sdf2) rather than its multipah device (eg, 
/d

[Touch-packages] [Bug 1503291] [NEW] FTBFS on amd64 due to pep8 errors

2015-10-06 Thread Łukasz Zemczak
Public bug reported:

It seems that ubuntuone-client-data during the test-rebuild [1] in wily
fails to build from source on amd64 due to some PEP8 errors on package
build. Log:

make[1]: Entering directory '/«PKGBUILDDIR»'
./run-tests
+ python ./setup.py build clean
running build
running build_i18n
intltool-update -p -g ubuntuone-client-data
running build_icons
running build_help
running clean
WARNING: the following files are not recognized by DistUtilsExtra.auto:
  PKG-INFO
  po/LINGUAS
  run-tests
  ubuntuone-icons.svg
  ubuntuone.icns
  ubuntuone.ico
++ which python3
+ '[' -x /usr/bin/python3 ']'
+ python3 ./setup.py build clean
running build
running clean
+ pyflakes setup.py
+ pep8 --repeat --exclude=.pc . setup.py
./setup.py:45:1: E402 module level import not at top of file
./setup.py:46:1: E402 module level import not at top of file
setup.py:45:1: E402 module level import not at top of file
setup.py:46:1: E402 module level import not at top of file
debian/rules:7: recipe for target 'override_dh_auto_test' failed
make[1]: *** [override_dh_auto_test] Error 1
make[1]: Leaving directory '/«PKGBUILDDIR»'
make: *** [build] Error 2
debian/rules:4: recipe for target 'build' failed
dpkg-buildpackage: error: debian/rules build gave error exit status 2

[1] http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-
rebuild-20151001-wily.html

** Affects: ubuntuone-client-data (Ubuntu)
 Importance: Undecided
 Assignee: Łukasz Zemczak (sil2100)
 Status: New


** Tags: ftbfs

** Description changed:

  It seems that ubuntuone-client-data during the test-rebuild [1] in wily
  fails to build from source on amd64 due to some PEP8 errors on package
  build. Log:
  
  make[1]: Entering directory '/«PKGBUILDDIR»'
  ./run-tests
  + python ./setup.py build clean
  running build
  running build_i18n
  intltool-update -p -g ubuntuone-client-data
  running build_icons
  running build_help
  running clean
  WARNING: the following files are not recognized by DistUtilsExtra.auto:
-   PKG-INFO
-   po/LINGUAS
-   run-tests
-   ubuntuone-icons.svg
-   ubuntuone.icns
-   ubuntuone.ico
+   PKG-INFO
+   po/LINGUAS
+   run-tests
+   ubuntuone-icons.svg
+   ubuntuone.icns
+   ubuntuone.ico
  ++ which python3
  + '[' -x /usr/bin/python3 ']'
  + python3 ./setup.py build clean
  running build
  running clean
  + pyflakes setup.py
  + pep8 --repeat --exclude=.pc . setup.py
  ./setup.py:45:1: E402 module level import not at top of file
  ./setup.py:46:1: E402 module level import not at top of file
  setup.py:45:1: E402 module level import not at top of file
  setup.py:46:1: E402 module level import not at top of file
  debian/rules:7: recipe for target 'override_dh_auto_test' failed
  make[1]: *** [override_dh_auto_test] Error 1
  make[1]: Leaving directory '/«PKGBUILDDIR»'
  make: *** [build] Error 2
  debian/rules:4: recipe for target 'build' failed
  dpkg-buildpackage: error: debian/rules build gave error exit status 2
+ 
+ [1] http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-
+ rebuild-20151001-wily.html

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

Title:
  FTBFS on amd64 due to pep8 errors

Status in ubuntuone-client-data package in Ubuntu:
  New

Bug description:
  It seems that ubuntuone-client-data during the test-rebuild [1] in
  wily fails to build from source on amd64 due to some PEP8 errors on
  package build. Log:

  make[1]: Entering directory '/«PKGBUILDDIR»'
  ./run-tests
  + python ./setup.py build clean
  running build
  running build_i18n
  intltool-update -p -g ubuntuone-client-data
  running build_icons
  running build_help
  running clean
  WARNING: the following files are not recognized by DistUtilsExtra.auto:
    PKG-INFO
    po/LINGUAS
    run-tests
    ubuntuone-icons.svg
    ubuntuone.icns
    ubuntuone.ico
  ++ which python3
  + '[' -x /usr/bin/python3 ']'
  + python3 ./setup.py build clean
  running build
  running clean
  + pyflakes setup.py
  + pep8 --repeat --exclude=.pc . setup.py
  ./setup.py:45:1: E402 module level import not at top of file
  ./setup.py:46:1: E402 module level import not at top of file
  setup.py:45:1: E402 module level import not at top of file
  setup.py:46:1: E402 module level import not at top of file
  debian/rules:7: recipe for target 'override_dh_auto_test' failed
  make[1]: *** [override_dh_auto_test] Error 1
  make[1]: Leaving directory '/«PKGBUILDDIR»'
  make: *** [build] Error 2
  debian/rules:4: recipe for target 'build' failed
  dpkg-buildpackage: error: debian/rules build gave error exit status 2

  [1] http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-
  rebuild-20151001-wily.html

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to :

[Touch-packages] [Bug 1503286] Re: ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root failed: Device or resource busy" [multipath]

2015-10-06 Thread Gary Gaydos
** Package changed: ubuntu => initramfs-tools (Ubuntu)

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

Title:
  ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root
  failed: Device or resource busy" [multipath]

Status in initramfs-tools package in Ubuntu:
  New

Bug description:
  == Comment: #0 - Manjunatha H R  - 2015-09-25 11:05:36 ==
  Booting of Ubuntu15.10 lpar fails and control falls to initramfs.

  uname -a
  --
  Linux (none) 4.2.0-10-generic #12-Ubuntu SMP Tue Sep 15 19:46:04 UTC 2015 
ppc64le GNU/Linux

  
  Boot log:
  -
Booting a command list

  Loading Linux 4.2.0-10-generic ...
  Loading initial ramdisk ...
  OF stdout device is: /vdevice/vty@3000
  Preparing to boot Linux version 4.2.0-10-generic (buildd@fisher04) (gcc 
version 5.2.1 20150911 (Ubuntu 5.2.1-17ubuntu4) ) #12-Ubuntu SMP Tue Sep 15 
19:46:04 UTC 2015 (Ubuntu 4.2.0-10.12-generic 4.2.0)
  Detected machine type: 0101
  Max number of cores passed to firmware: 256 (NR_CPUS = 2048)
  Calling ibm,client-architecture-support... done
  command line: BOOT_IMAGE=/boot/vmlinux-4.2.0-10-generic 
root=UUID=822dd709-5b69-45a9-aba5-63cb55768ffb ro splash quiet 
topology_updates=off
  memory layout at init:
memory_limit :  (16 MB aligned)
alloc_bottom : 0bf8
alloc_top: 1000
alloc_top_hi : 1000
rmo_top  : 1000
ram_top  : 1000
  found display   : /pci@800202c/display@0, opening... done
  instantiating rtas at 0x0eb6... done
  prom_hold_cpus: skipped
  copying OF device tree...
  Building dt strings...
  Building dt structure...
  Device tree strings 0x0bf9 -> 0x0bf91965
  Device tree struct  0x0bfa -> 0x0bfe
  Quiescing Open Firmware ...
  Booting Linux via __start() ...
   -> smp_release_cpus()
  spinning_secondaries = 199
   <- smp_release_cpus()
   <- setup_system()
  [2.868103] [drm:radeon_device_init [radeon]] *ERROR* Unable to find PCI 
I/O BAR
  [3.074553] [drm:radeon_atombios_init [radeon]] *ERROR* Unable to find PCI 
I/O BAR; using MMIO for ATOM IIO
  [5.060785] lpfc 0002:90:00.0: 0:1303 Link Up Event x1 received Data: x1 
x0 x80 x0 x0 x0 0
  Scanning for Btrfs filesystems
  fsck from util-linux 2.26.2
  /dev/sdn2 is in use.
  e2fsck: Cannot continue, aborting.

  fsck exited with status code 8
  [   36.233086]  rport-0:0-9: blocked FC remote port time out: removing rport
  mount: mounting /dev/sdn2 on /root failed: Device or resource busy
  Target filesystem doesn't have requested /sbin/init.
  mount: mounting /dev on /root/dev failed: No such file or directory
  No init found. Try passing init= bootarg.

  BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
  Enter 'help' for a list of built-in commands.

  (initramfs)
  -

  
  This lpar is having multipath disks and boot disk is on a multipath disk.
  Boot passes only whenever fsck tries to scan boot disk via :  /dev/dm OR 
/dev/mapper/mpath

  Boot Pass scenarios:
  
  1. Boot passed when fsck tried scanning "/dev/mapper/mpathb"
  fsck from util-linux 2.26.2
  /dev/mapper/mpathb-part2: clean, 81802/3139584 files, 1040598/12558080 blocks

  2. Boot passed when fsck tried scanning  "/dev/dm-3"
  Scanning for Btrfs filesystems
  fsck from util-linux 2.26.2
  /dev/dm-3: clean, 81802/3139584 files, 1040605/12558080 blocks

  
  Boot fails, whenever fsck is called on /dev/sd 

  Boot fail scenario: Boot failed when fsck is called on "/dev/sdn"
  -
  Scanning for Btrfs filesystems
  fsck from util-linux 2.26.2
  /dev/sdn2 is in use.
  e2fsck: Cannot continue, aborting.

  fsck exited with status code 8
  [   36.108653]  rport-0:0-9: blocked FC remote port time out: removing rport
  mount: mounting /dev/sdn2 on /root failed: Device or resource busy
  Target filesystem doesn't have requested /sbin/init.

  mount: mounting /dev on /root/dev failed: No such file or directory
  No init found. Try passing init= bootarg.

  BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
  Enter 'help' for a list of built-in commands.

  (initramfs)
  -

  Contact info:
  
  Manju (manju...@in.ibm.com)  A.P. (apu...@us.ibm.com)

  == Comment: #12 - Mauricio Faria De Oliveira  - 
2015-10-02 13:51:29 ==
  Hi Manju and Alton,

  I could not reproduce this bug in 2 attempts.
  The LPAR booted successfully, using the root=UUID= parameter.

  By looking at this message from the description:
  > mount: mounting /dev/sdn2 on /root failed: Device or resource busy

  It should have happened because multipath udev rules failed to update
  the /dev/disk/by-id/ symlink from /dev/sdn to /dev/d

[Touch-packages] [Bug 1500997] Re: ibus-ui-gtk3 crashed with SIGSEGV in g_closure_invoke()

2015-10-06 Thread Apport retracing service
*** This bug is a duplicate of bug 1494871 ***
https://bugs.launchpad.net/bugs/1494871

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1494871, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1500997/+attachment/4479010/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1500997/+attachment/4479012/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1500997/+attachment/4479015/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1500997/+attachment/4479016/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1500997/+attachment/4479017/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1500997/+attachment/4479018/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1500997/+attachment/4479019/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of private bug 1494871

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  ibus-ui-gtk3 crashed with SIGSEGV in g_closure_invoke()

Status in ibus package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: ibus 1.5.10-1ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Sep 29 19:51:13 2015
  ExecutablePath: /usr/lib/ibus/ibus-ui-gtk3
  InstallationDate: Installed on 2015-09-20 (9 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  ProcCmdline: /usr/lib/ibus/ibus-ui-gtk3
  SegvAnalysis:
   Segfault happened at: 0x7efdeda85d7a:cmp(%rsi),%rdx
   PC (0x7efdeda85d7a) ok
   source "(%rsi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rdx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: ibus
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: ibus-ui-gtk3 crashed with SIGSEGV in g_closure_invoke()
  UpgradeStatus: Upgraded to wily on 2015-09-29 (0 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ibus/+bug/1500997/+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 998911] Re: Can't open dash when no windows are open, if not my cursor is on the launcher/panel

2015-10-06 Thread Alex Baggott
Thank you for taking the time to report this bug. We have tried to
recreate this on the latest release of Ubuntu and cannot reproduce it.
This bug is being marked as Invalid. If you believe the problem to still
exist in the latest version of Ubuntu, please comment on why that is the
case and change the bug status to NEW.

** Changed in: unity (Ubuntu)
   Status: Confirmed => Invalid

** Changed in: unity
   Status: Triaged => Invalid

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

Title:
  Can't open dash when no windows are open, if not my cursor is on the
  launcher/panel

Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  Hi! I'm running Ubuntu 12.04 x64 desktop edition and Unity
  5.12-0ubuntu1. I don't know how to gather more information that you
  might need but please just ask and tell me how to fetch it and I'll
  provide it.

  I'm experiencing something odd on my desktop. When I press the super
  key and have no windows open I can't open the dash. But if I have
  either a window open or my cursor located on either the launcher or
  the top-panel it works. This doesn't occur on my girlfriend's login,
  only mine.

  What more information can I provide?
  --- 
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  DistroRelease: Ubuntu 12.04
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  NonfreeKernelModules: nvidia
  Package: unity 5.12-0ubuntu1.1
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcVersionSignature: Ubuntu 3.2.0-26.41-generic 3.2.19
  Tags: precise third-party-packages
  Uname: Linux 3.2.0-26-generic x86_64
  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/unity/+bug/998911/+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 1366209] Re: Returned to the greeter screen when logging in.

2015-10-06 Thread Abby
So, I tried that and now my bug has gotten worse. I can't even get to
login screen

** Attachment added: "1444139464251370140945.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1366209/+attachment/4485996/+files/1444139464251370140945.jpg

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

Title:
  Returned to the greeter screen when logging in.

Status in lightdm package in Ubuntu:
  Incomplete

Bug description:
  If I log in as Guest or root, I can get into the account.  However, if
  I use my normal user account, I just get returned to the login screen.
  If I use gdm as my desktop manager, I can get to my user account.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: lightdm 1.10.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-35.62-generic 3.13.11.6
  Uname: Linux 3.13.0-35-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.3
  Architecture: amd64
  Date: Fri Sep  5 17:49:46 2014
  InstallationDate: Installed on 2014-08-19 (16 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  ProcEnviron:
   TERM=linux
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1366209/+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 1502663] Re: dialog doesn't fit screen

2015-10-06 Thread Krittika
** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) => Krittika (krittika-kalra)

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

Title:
  dialog doesn't fit screen

Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  dialog doesn't fit screenit doesn't consider the content size

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1502663/+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 1011989] Re: global menubar Integration with firefox 13 has a long delay

2015-10-06 Thread Alex Baggott
Thank you for taking the time to report this bug. We have tried to
recreate this on the latest release of Ubuntu and cannot reproduce it.
This bug is being marked as Invalid. If you believe the problem to still
exist in the latest version of Ubuntu, please comment on why that is the
case and change the bug status to NEW.

** Changed in: unity
   Status: Confirmed => Invalid

** Changed in: unity (Ubuntu)
   Status: Confirmed => Invalid

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

Title:
  global menubar Integration with firefox 13 has a long delay

Status in DBus Menu:
  New
Status in Unity:
  Invalid
Status in unity package in Ubuntu:
  Invalid

Bug description:
  The reaction of the global menubar in Firefox is slow - especially on
  displaying the menu item chosen in HUD.

  Steps to reproduce:
  a) Start firefox with extension activated
  b) Tap ALT key (HUD appears)
  c) Type e.g. "addons" - "Tools > Add-ons" appears as the first entry with a 
noticable delay
  d) Press ENTER -> Long delay (several seconds) until addons tab appears

  Same also for other menu items.
  As using normal menus works really slick, the global menu is a productivity 
slow-downer in this case.
  Compared to Nautilus there the HUD has a fast reaction, also LibreOffice HUD 
reaction is fast.
  I found that Thunderbird has a similar delay as firefox although it seems 
worse in Firefox.

  Firefox 13 on Ubuntu 12.04 with latest updates.
  Hardware: Dell Latitude E5500, Intel® Core™2 Duo CPU P8400 @ 2.26GHz × 2 
(32-bit architecture), 4 GB Memory (currently used 1,2 GB)

To manage notifications about this bug go to:
https://bugs.launchpad.net/libdbusmenu/+bug/1011989/+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 1393515] Re: browser allows browsing the phone filesystem

2015-10-06 Thread Olivier Tilloy
Since version 0.23+15.10.20151005-0ubuntu1, webbrowser-app runs under
apparmor confinement, so browsing the filesystem is denied.

** No longer affects: webbrowser-app (Ubuntu RTM)

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

Title:
  browser allows browsing the phone filesystem

Status in Canonical System Image:
  Fix Committed
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  Using a URL like: file:/// gets you to the root of the phone
  filesystem ... i assume this is not actually desired since we even
  block the filemanager app to go higher up then $HOME without requiring
  a password.

  The webbrowser-app should either:
   * behave like the file-manager (see bug #1347010 for details)
   * file:/// should be disabled altogether on the phone
   * webbrowser-app should run confined which would force the use of
 content-hub by limiting file:/// access to those paths allowed by
 policy

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1393515/+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 1077201] Re: Unity Launcher steals minimize app animation end point from other docks

2015-10-06 Thread Alex Baggott
As part of the big bug review for 16.04 LTS I have tested this on 15.10
and the bug is still there. I think this is a feature request rather
than a bug.

** Changed in: unity (Ubuntu)
   Status: Confirmed => Opinion

** Changed in: docky
   Status: Invalid => Opinion

** Changed in: cairo-dock-core
   Status: Invalid => Opinion

** Changed in: awn
   Status: New => Opinion

** Changed in: unity
   Status: Confirmed => Opinion

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

Title:
  Unity Launcher steals minimize app animation end point from other
  docks

Status in Awn:
  Opinion
Status in Cairo-Dock Core:
  Opinion
Status in Docky:
  Opinion
Status in Unity:
  Opinion
Status in unity package in Ubuntu:
  Opinion

Bug description:
  If I use a dock app other than Unity Launcher (e.g. Docky, AWN, Cairo
  Dock, Plank etc.) and use an animation for minimizing my open windows
  (for example, 'Magic Lamp'), the animation should be ending on my dock
  app's icon for that window. However, more often than not, Unity's
  Launcher steals that end point, so on minimizing the animation's end
  point goes to the Launcher instead on the other dock app as it should.
  Same thing with the start point for the restore animation. This is
  most frustrating for me, it looks disgusting.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.16.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic x86_64
  ApportVersion: 2.0.1-0ubuntu15
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,decor,move,snap,grid,vpswitch,compiztoolbox,commands,regex,winrules,imgpng,animation,mousepoll,resize,place,gnomecompat,unitymtgrabhandles,wall,workarounds,mag,expo,fade,session,scale,ezoom,unityshell,dbus]
  Date: Fri Nov  9 22:20:01 2012
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64+mac 
(20120425.1)
  MarkForUpload: True
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/awn/+bug/1077201/+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 1472903] Re: Camera flash black screen one time after open camera app.

2015-10-06 Thread Bill Filler
** Changed in: canonical-devices-system-image
Milestone: None => ww40-2015

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

Title:
  Camera flash black screen one time after open camera app.

Status in camera-app:
  In Progress
Status in Canonical System Image:
  Confirmed
Status in camera-app package in Ubuntu:
  In Progress

Bug description:
  system-image-cli -i
  current build number: 62
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-07-09 02:09:42
  version version: 62
  version ubuntu: 20150708.1
  version device: 20150529-8e13c5f
  version custom: 20150707-800-29-17-vivid
  Precondition:
  The camera didn't run in the background
  Step by step
  1.Open the camera and check the screen.
  Expected result:
  Camera is opened normally.
  Actual result:
  open camera, camera screen flash black screen one time.

To manage notifications about this bug go to:
https://bugs.launchpad.net/camera-app/+bug/1472903/+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 1104632] Re: Application spread view (Compiz scale) doesn't work properly after using "Show Desktop"

2015-10-06 Thread Alex Baggott
As part of the big bug review for 16.04 LTS I have tested this on 15.10
and the bug is still there.

** Tags added: desktop-bugscrub-triaged

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

Title:
  Application spread view (Compiz scale) doesn't work properly after
  using "Show Desktop"

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  
  What steps will reproduce the problem?

  1. Open two or more windows of an application like Nautilus so that all are 
visible on the screen
  2. Use the "Show Desktop" button to hide the windows
  3. Activate the window spread by clicking at the icon of the application you 
launched two times

  
  What is the expected output?

  - all windows of the application (from current workspace) are shown in
  the spread, represented by a thumbnail

  
  What do you see instead?

  - all windows are technically "shown" but only the window activated by the 
first click at the icon has a working thumbnail
  - the area where the other window-thumbnails should be located is functional 
but the thumbnails are missing

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: unity 6.12.0daily13.01.21-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-1.5-generic 3.8.0-rc4
  Uname: Linux 3.8.0-1-generic x86_64
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Ist ein Verzeichnis: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  310.19  Thu Nov  8 00:52:03 
PST 2012
   GCC version:  gcc-Version 4.7.2 (Ubuntu/Linaro 4.7.2-19ubuntu1)
  .proc.driver.nvidia.warnings.fbdev:
   Your system is not currently configured to drive a VGA console
   on the primary VGA device. The NVIDIA Linux graphics driver
   requires the use of a text-mode VGA console. Use of other console
   drivers including, but not limited to, vesafb, may result in
   corruption and stability problems, and is not supported.
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.8-0ubuntu2
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  Date: Fri Jan 25 02:19:52 2013
  DistUpgraded: Fresh install
  DistroCodename: raring
  DistroVariant: ubuntu
  DkmsStatus: nvidia-310, 310.19, 3.8.0-1-generic, x86_64: installed
  GraphicsCard:
   NVIDIA Corporation GF114 [GeForce GTX 560 Ti] [10de:1200] (rev a1) (prog-if 
00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:8390]
  InstallationDate: Installed on 2013-01-22 (2 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130122)
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-1-generic 
root=UUID=db108b5c-1f1d-4fe4-99bd-234f619ae6cf ro quiet splash nomodeset 
video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/11/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P2.20
  dmi.board.name: P67 Extreme4 Gen3
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.20:bd05/11/2012:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnP67Extreme4Gen3:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.
  version.compiz: compiz 1:0.9.9~daily13.01.21-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.41-0ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.1-0ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.1-0ubuntu1
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.13.1.901-0ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.0.0-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.19-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.6-0ubuntu1
  xserver.bootTime: Thu Jan 24 15:13:16 2013
  xserver.configfile: default
  xserver.errors:
   open /dev/dri/card0: No such file or directory
   open /dev/dri/card0: No such file or directory
  xserver.logfile: /var/log/Xorg.0.l

[Touch-packages] [Bug 1474225] Re: Screen rotates itself to landscape when the phone is laying on the desk

2015-10-06 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: unity8 (Ubuntu)
   Status: New => Confirmed

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

Title:
  Screen rotates itself to landscape when the phone is laying on the
  desk

Status in qtubuntu-sensors:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Screen rotates itself to landscape when the phone is laying on the
  desk.

  I might be mistaken but this bug seems to be a new issue that arrived
  with the full shell rotation feature in wily. Using a phone while it's
  laying flat on the desk it sometimes rotates itself to landscape.

  Seems like we might have some over-sensitive accelerometer logic.

  $ system-image-cli -i
  current build number: 255
  device name: mako
  channel: ubuntu-touch/devel-proposed/ubuntu
  last update: 2015-07-14 03:41:29
  version version: 255
  version ubuntu: 20150714
  version device: 20150708
  version custom: 20150714

To manage notifications about this bug go to:
https://bugs.launchpad.net/qtubuntu-sensors/+bug/1474225/+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 1503291] Re: FTBFS on amd64 due to pep8 errors

2015-10-06 Thread Łukasz Zemczak
Here's a debdiff with the fix for the issue.

** Patch added: "Fix PEP8 errors during build"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntuone-client-data/+bug/1503291/+attachment/4486033/+files/fix_ftbfs_setup_pep8.debdiff

** Branch linked: lp:~seb128/ubuntuone-client-data/import-pep8-valid

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

Title:
  FTBFS on amd64 due to pep8 errors

Status in ubuntuone-client-data package in Ubuntu:
  New

Bug description:
  It seems that ubuntuone-client-data during the test-rebuild [1] in
  wily fails to build from source on amd64 due to some PEP8 errors on
  package build. Log:

  make[1]: Entering directory '/«PKGBUILDDIR»'
  ./run-tests
  + python ./setup.py build clean
  running build
  running build_i18n
  intltool-update -p -g ubuntuone-client-data
  running build_icons
  running build_help
  running clean
  WARNING: the following files are not recognized by DistUtilsExtra.auto:
    PKG-INFO
    po/LINGUAS
    run-tests
    ubuntuone-icons.svg
    ubuntuone.icns
    ubuntuone.ico
  ++ which python3
  + '[' -x /usr/bin/python3 ']'
  + python3 ./setup.py build clean
  running build
  running clean
  + pyflakes setup.py
  + pep8 --repeat --exclude=.pc . setup.py
  ./setup.py:45:1: E402 module level import not at top of file
  ./setup.py:46:1: E402 module level import not at top of file
  setup.py:45:1: E402 module level import not at top of file
  setup.py:46:1: E402 module level import not at top of file
  debian/rules:7: recipe for target 'override_dh_auto_test' failed
  make[1]: *** [override_dh_auto_test] Error 1
  make[1]: Leaving directory '/«PKGBUILDDIR»'
  make: *** [build] Error 2
  debian/rules:4: recipe for target 'build' failed
  dpkg-buildpackage: error: debian/rules build gave error exit status 2

  [1] http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-
  rebuild-20151001-wily.html

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntuone-client-data/+bug/1503291/+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 1393515] Re: browser allows browsing the phone filesystem

2015-10-06 Thread Pat McGowan
** Changed in: canonical-devices-system-image
Milestone: ww46-2015 => ww40-2015

** Changed in: canonical-devices-system-image
   Status: Confirmed => Fix Committed

** Changed in: webbrowser-app (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  browser allows browsing the phone filesystem

Status in Canonical System Image:
  Fix Committed
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  Using a URL like: file:/// gets you to the root of the phone
  filesystem ... i assume this is not actually desired since we even
  block the filemanager app to go higher up then $HOME without requiring
  a password.

  The webbrowser-app should either:
   * behave like the file-manager (see bug #1347010 for details)
   * file:/// should be disabled altogether on the phone
   * webbrowser-app should run confined which would force the use of
 content-hub by limiting file:/// access to those paths allowed by
 policy

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1393515/+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 1452386] Re: [gst-hybris] Support COLOR_QCOM_FormatYVU420SemiPlanar32m color format.

2015-10-06 Thread Łukasz Zemczak
This bug was fixed in the package gst-plugins-bad1.0 1.4.5-1ubuntu8 in
https://launchpad.net/~ci-train-ppa-service/+archive/ubuntu/stable-
phone-overlay

---

gst-plugins-bad1.0 (1.4.5-1ubuntu8) vivid; urgency=medium

  * Fix reference handling in mir sink

gst-plugins-bad1.0 (1.4.5-1ubuntu7) vivid; urgency=medium

  [ Alberto Aguirre ]
  * Refreshing adding-mirsink-and-android-media-over-hybris-support.patch:
+ Remove non-existant headers/types as platform-api 3 ua_ui_xxx apis
  have been deprecated and removed

gst-plugins-bad1.0 (1.4.5-1ubuntu6) vivid; urgency=medium

  * debian/patches/mirclient-requires.patch, debian/build-deps.in: Explicitly
include mirclient's CFLAGS and LIBS even though they are only indirectly
(by platform-api) required. Resolves FTBFS and can be removed once bug
#1465958 is fixed.

gst-plugins-bad1.0 (1.4.5-1ubuntu5) vivid; urgency=medium

  * adding-mirsink-and-android-media-over-hybris-support.patch: use
ubuntu-platform-api pkg-config information for building sources that
need to be able to find mir headers.  LP: #1465958.

gst-plugins-bad1.0 (1.4.5-1ubuntu4) vivid; urgency=medium

  * No-change rebuild for the libnettle6 transition.

gst-plugins-bad1.0 (1.4.5-1ubuntu3) vivid; urgency=medium

  * androidmedia-support-COLOR_QCOM_FormatYVU420SemiPlanar32m.patch:
+ Adding support for COLOR_QCOM_FormatYVU420SemiPlanar32m (LP: #1452386)

 -- Alfonso Sanchez-Beato (email Canonical)   Fri, 02 Oct 2015 16:45:22 +0200


** Changed in: gst-plugins-bad1.0 (Ubuntu RTM)
   Status: New => Fix Released

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

Title:
  [gst-hybris] Support COLOR_QCOM_FormatYVU420SemiPlanar32m color
  format.

Status in gst-plugins-bad1.0 package in Ubuntu:
  Fix Released
Status in gst-plugins-bad1.0 package in Ubuntu RTM:
  Fix Released

Bug description:
  COLOR_QCOM_FormatYVU420SemiPlanar32m is essentially
  GST_VIDEO_FORMAT_NV12, but with stride and plane heights aligned to
  32. Adding support is as simple as adding android-gst color format
  mapping, and using same code as COLOR_QCOM_FormatYUV420SemiPlanar to
  handle software conversion.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gst-plugins-bad1.0/+bug/1452386/+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 1480877] Re: Access points' "PropertiesChanged" dbus signals freeze UI on mobile devices

2015-10-06 Thread Łukasz Zemczak
This bug was fixed in the package network-manager 0.9.10.0-4ubuntu15.1.8
in https://launchpad.net/~ci-train-ppa-service/+archive/ubuntu/stable-
phone-overlay

---

network-manager (0.9.10.0-4ubuntu15.1.8) vivid; urgency=medium

  * d/p/0002-wifi-cull-the-scan-list-before-signalling-ScanDone-b.patch:
Fix duplicate 'LastSeen' PropertiesChanged signals being emitted
after scanning (LP: #1480877).
  * d/p/fix-ofono-plugin-leaks.patch: fix memory leaks in the ofono
settings plugin.
  * d/p/rm-scofono-plugin-dbus.patch: Remove unused plugin DBus code.
  * d/p/CVE-2015-1322.patch: Drop CVE which applied to removed DBus code
in ofono settings plugin.

 -- Tony Espy   Fri, 02 Oct 2015 10:54:24 -0400


** Changed in: network-manager (Ubuntu RTM)
   Status: Fix Committed => Fix Released

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

Title:
  Access points' "PropertiesChanged" dbus signals freeze UI on mobile
  devices

Status in Canonical System Image:
  Fix Committed
Status in indicator-network package in Ubuntu:
  Incomplete
Status in location-service package in Ubuntu:
  Incomplete
Status in network-manager package in Ubuntu:
  Fix Released
Status in network-manager package in Ubuntu RTM:
  Fix Released

Bug description:
  Krillin, rc-proposed, r83

  
  DESCRIPTION:
  I've been trying to track down the cause of the occasional UI freezes on my 
Krillin device, and I noticed that whenever the UI freezes for 2-4 seconds, I 
get a burst of "PropertiesChanged" signals in dbus-monitor

  Here's a log of what's shown in dbus-monitor:
  http://pastebin.ubuntu.com/11992322/

  I'd guess the problem is in the code that actually catches the signals
  and acts accordingly.

  HOW TO REPRODUCE: 
  1) Move to a place where many wifi hotspots are available
  2) Connect the device via USB and run "phablet-shell" and then "dbus-monitor"
  3) Use the device while keeping an eye on dbus-monitor output

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1480877/+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 1501966] Re: support changing Apparmor hats

2015-10-06 Thread Robie Basak
** Changed in: openssh (Ubuntu)
   Importance: Undecided => Wishlist

** Tags added: needs-upstream-report

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

Title:
  support changing Apparmor hats

Status in openssh package in Ubuntu:
  New

Bug description:
  Some older versions of OpenSSH had a patch allowing the daemon to
  change Apparmor hats to apply different containment profiles to
  different code paths (AUTHENTICATED, EXEC, PRIVSEP, etc).

  This feature would need to be ported to recent OpenSSH versions and
  sent upstream for inclusion in the portable branch.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1501966/+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 1500768] Re: python3.4.3 SRU break requests

2015-10-06 Thread Sebastien Bacher
you can't introduce regressions or incompatible changes in a LTS and
then trying to deal with those through -backport, some users could have
production code relying on us that needs to keep working, behaviour
changes don't have their place in stable updates even if that's to fix
bugs. If there are cases which can't be fixed we should probably revert
and suggest users who want those fixes to update to more recent Ubuntu
versions

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

Title:
  python3.4.3 SRU break requests

Status in python3.4 package in Ubuntu:
  Triaged
Status in python3.4 source package in Trusty:
  Triaged

Bug description:
  Sicne the upgade to python 3.4.3 on trusty, I'm getting this error when using 
a squid proxy:
  
https://jenkins.qa.ubuntu.com/view/All/job/udtc-trusty-tests/1946/label=ps-trusty-desktop-amd64-1,type=large/testReport/tests.large.test_android/AndroidSDKTests/test_default_android_sdk_install/

  The code is using python-requests, with verify=True for ssl connection
  (default). Some tests are testing that invalid certificates are
  rejected:  https://github.com/ubuntu/ubuntu-
  make/blob/master/umake/network/download_center.py#L129

  Rerunning the same code with previous trusty package (3.4.0~trusty1)
  doesn't show up this issue. It seems that SNI is broken for the trusty
  version of python3-requests with 3.4.3. (See the FAQ http://www
  .python-requests.org/en/latest/community/faq/ with "What are “hostname
  doesn’t match” errors?" and the stackoverflow question.

  I did run a test, grabbing requests 2.7 and backporting it to trusty
  (I needed to as well to take python3-urllib3 willy version).

  So, 3.4.3 has an incompatible change for existing projects and people
  with proxys are starting to see some breakage like in
  https://bugs.launchpad.net/ubuntu/+source/ubuntu-make/+bug/1499890.

  Can we get it fix somehow, reverting the incompatible change breaking
  SNI (I wonder if this is "Changed in version 3.4.3: This class now
  performs all the necessary certificate and hostname checks by default.
  To revert to the previous, unverified, behavior
  ssl._create_unverified_context() can be passed to the context
  parameter." in https://docs.python.org/3/library/http.client.html or
  something else) so that existing code can either get a new compatible
  python-requests or avoid incompatible changes in python 3.4.3?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.4/+bug/1500768/+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 1502921] Re: LightDM sets wrong environment variables

2015-10-06 Thread Gunnar Hjalmarsson
On 2015-10-06 15:09, Ikuya Awashiro wrote:
> According to the attached screenshot, GDM_LANG does not set.

It's probably because of this Ubuntu patch:

http://bazaar.launchpad.net/~ubuntu-
branches/ubuntu/wily/gdm/wily/view/head:/debian/patches/revert_override_LANG_with_accountservices.patch

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

Title:
  LightDM sets wrong environment variables

Status in accountsservice package in Ubuntu:
  Fix Released
Status in lightdm package in Ubuntu:
  Invalid

Bug description:
  LightDM sets wrong GDM_LANG and LANGUAGE environment variables.

  ikuya@UbuntuWily6:~$ env |grep LANG
  LANG=ja_JP.UTF-8
  GDM_LANG=en
  LANGUAGE=en

  they should be:
  ikuya@UbuntuWily6:~$ env |grep LANG
  LANG=ja_JP.UTF-8
  GDM_LANG=ja
  LANGUAGE=ja

  According to this bug, every menu shows in English.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: lightdm 1.16.3-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Uname: Linux 4.2.0-14-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Mon Oct  5 23:14:27 2015
  InstallationDate: Installed on 2015-10-05 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151005)
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/accountsservice/+bug/1502921/+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 1503315] [NEW] Webbrowser application closing the application when last tab is gone

2015-10-06 Thread Alexandre Abreu
Public bug reported:

Webbrowser currently closes the whole application when last tab is gone.
This is rather disturbing as a default behavior. It might be OK for
mobile, but for desktop it is very foreign from the way that apps
usually work.

** Affects: ubuntu-ux
 Importance: Undecided
 Status: New

** Affects: webbrowser-app (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: ubuntu-ux
   Importance: Undecided
   Status: New

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

Title:
  Webbrowser application closing the application when last tab is gone

Status in Ubuntu UX:
  New
Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  Webbrowser currently closes the whole application when last tab is
  gone. This is rather disturbing as a default behavior. It might be OK
  for mobile, but for desktop it is very foreign from the way that apps
  usually work.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1503315/+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 1502173] Re: Python warnings: modules imported without specifying a version first

2015-10-06 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** 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/1502173

Title:
  Python warnings: modules imported without specifying a version first

Status in apport package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  here is the problem:

  $ /usr/share/apport/apport-gtk
  /usr/share/apport/apport-gtk:16: PyGIWarning: Wnck was imported without 
specifying a version first. Use gi.require_version('Wnck', '3.0') before import 
to ensure that the right version gets loaded.
from gi.repository import GLib, Wnck, GdkX11, Gdk
  /usr/share/apport/apport-gtk:16: PyGIWarning: GdkX11 was imported without 
specifying a version first. Use gi.require_version('GdkX11', '3.0') before 
import to ensure that the right version gets loaded.
from gi.repository import GLib, Wnck, GdkX11, Gdk

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: apport-gtk 2.19-0ubuntu1
  Uname: Linux 4.2.2-040202-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Fri Oct  2 16:17:14 2015
  EcryptfsInUse: Yes
  PackageArchitecture: all
  SourcePackage: apport
  UpgradeStatus: Upgraded to wily on 2015-10-02 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1502173/+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 1502551] Re: unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1501179 ***
https://bugs.launchpad.net/bugs/1501179

** Information type changed from Private to Public

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

Title:
  unity-panel-service crashed with SIGSEGV in
  gtk_menu_tracker_remove_items()

Status in glib2.0 package in Ubuntu:
  Fix Released

Bug description:
  Some recent upgrade in wily causes crashes in the unity panel menu
  integration with gtk2 apps.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Sat Oct  3 21:04:01 2015
  ExecutablePath: /usr/lib/unity/unity-panel-service
  InstallationDate: Installed on 2010-09-24 (1835 days ago)
  InstallationMedia: Ubuntu 10.04.1 LTS "Lucid Lynx" - Release amd64 
(20100816.1)
  ProcCmdline: /usr/lib/unity/unity-panel-service
  SegvAnalysis:
   Segfault happened at: 0x7f06803433ec:mov(%rdi),%rbx
   PC (0x7f06803433ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: Upgraded to wily on 2015-08-17 (48 days ago)
  UserGroups: adm admin autopilot cdrom dialout libvirtd lpadmin mythtv plugdev 
sambashare sbuild src sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1502551/+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 1500768] Re: python3.4.3 SRU break requests

2015-10-06 Thread Sebastien Bacher
** Tags added: regression-update

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

Title:
  python3.4.3 SRU break requests

Status in python3.4 package in Ubuntu:
  Triaged
Status in python3.4 source package in Trusty:
  Triaged

Bug description:
  Sicne the upgade to python 3.4.3 on trusty, I'm getting this error when using 
a squid proxy:
  
https://jenkins.qa.ubuntu.com/view/All/job/udtc-trusty-tests/1946/label=ps-trusty-desktop-amd64-1,type=large/testReport/tests.large.test_android/AndroidSDKTests/test_default_android_sdk_install/

  The code is using python-requests, with verify=True for ssl connection
  (default). Some tests are testing that invalid certificates are
  rejected:  https://github.com/ubuntu/ubuntu-
  make/blob/master/umake/network/download_center.py#L129

  Rerunning the same code with previous trusty package (3.4.0~trusty1)
  doesn't show up this issue. It seems that SNI is broken for the trusty
  version of python3-requests with 3.4.3. (See the FAQ http://www
  .python-requests.org/en/latest/community/faq/ with "What are “hostname
  doesn’t match” errors?" and the stackoverflow question.

  I did run a test, grabbing requests 2.7 and backporting it to trusty
  (I needed to as well to take python3-urllib3 willy version).

  So, 3.4.3 has an incompatible change for existing projects and people
  with proxys are starting to see some breakage like in
  https://bugs.launchpad.net/ubuntu/+source/ubuntu-make/+bug/1499890.

  Can we get it fix somehow, reverting the incompatible change breaking
  SNI (I wonder if this is "Changed in version 3.4.3: This class now
  performs all the necessary certificate and hostname checks by default.
  To revert to the previous, unverified, behavior
  ssl._create_unverified_context() can be passed to the context
  parameter." in https://docs.python.org/3/library/http.client.html or
  something else) so that existing code can either get a new compatible
  python-requests or avoid incompatible changes in python 3.4.3?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.4/+bug/1500768/+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 1447142] Re: systemd: ntpdate is started too soon (before the network)

2015-10-06 Thread Robie Basak
Once you're replied, please change the bug status back to New.

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

Title:
  systemd: ntpdate is started too soon (before the network)

Status in ntp package in Ubuntu:
  Incomplete

Bug description:
  Here is what I see in journalctl:  ntpdate cannot do DNS resolution
  because NetworkManager has not finished configuring the network
  interface.

  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 0.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  init!
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  update_system_hostname
  Apr 21 22:01:13 xeelee NetworkManager[1493]:interface-parser: 
parsing file /etc/network/interfaces
  Apr 21 22:01:13 xeelee NetworkManager[1493]:interface-parser: 
finished parsing file /etc/network/interfaces
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  management mode: unmanaged
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  devices added (path: 
/sys/devices/pci:00/:00:1c.2/:03:00.0/net/wlan0,
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  device added (path: 
/sys/devices/pci:00/:00:1c.2/:03:00.0/net/wlan0,
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  devices added (path: 
/sys/devices/pci:00/:00:1c.3/:04:00.0/net/eth0,
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  device added (path: 
/sys/devices/pci:00/:00:1c.3/:04:00.0/net/eth0, i
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 1.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  devices added (path: 
/sys/devices/virtual/net/lo, iface: lo)
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdc [USB JMicron], no ATA 
CHECK POWER STATUS support, ignoring -n Directive
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 2.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  device added (path: 
/sys/devices/virtual/net/lo, iface: lo): no ifupdown configur
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdc [USB JMicron], is SMART 
capable. Adding to "monitor" list.
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 3.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  end _init.
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdc [USB JMicron], state 
read from /var/lib/smartmontools/smartd.WDC_WD40EZRX_00SPE
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host ntp.ubuntu.com: Name or 
service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  Loaded plugin ifupdown: 
(C) 2008 Canonical Ltd.  To report bugs please use the Ne
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdd [USB JMicron], opened
  Apr 21 22:01:13 xeelee ntpdate[1563]: no servers can be used, exiting
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  Loaded plugin keyfile: 
(c) 2007 - 2013 Red Hat, Inc.  To report bugs please use t
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdd [USB JMicron], WDC 
WD40EZRX-00SPEB0, S/N:WD-WCC4E0267943, WWN:5-0014ee-25e7069b
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: Acquired 
D-Bus service com.canonical.NMOfono
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: init!
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: end _init.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  Loaded plugin ofono: (C) 
2013 Canonical Ltd.  To report bugs please use the Netwo
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  (25444896) ... 
get_connections.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  (25444896) ... 
get_connections (managed=false): return empty list.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: 
(25249376) ... get_connections.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: 
(25249376) connections count: 0
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  get unmanaged devices 
count: 0
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdd [USB JMicron], found in 
smartd database: Western Digital Caviar Green (AF, SATA
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  monitoring kernel 
firmware directory '/lib/firmware'.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  monitoring ifupdown state 
file '/run/network/ifstate'.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  rfkill1: found WiFi radio 
killswitch (at /sys/devices/pci:00/:00:1c.2/000
  Apr 21 22:01:13 xeelee systemd[1]: Stopped LSB: Start NTP daemon.
  Apr 21 22:01:13 xeelee systemd[1]: Started Authenticate and Authorize Users 
to Run Privileged Tasks.
  Apr 21 22:01:13 xeelee systemd[1]: Started Accounts Service.
  Apr 21 22:01:13 xeelee systemd[1]: Mounted Arbitrary Executable File Formats 
File System.
  Apr 21 22:01:13 xeelee systemd[1]: Started Enable support for additional 
executable 

[Touch-packages] [Bug 1447142] Re: systemd: ntpdate is started too soon (before the network)

2015-10-06 Thread Robie Basak
Thank you for reporting this bug and helping to make Ubuntu better.

Can you explain why this is actually a problem please? Won't timesyncd
suffice on a desktop that uses NetworkManager now? Is the time on your
system actually falling out of sync, or is the problem just the noise of
the error message?

** Changed in: ntp (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  systemd: ntpdate is started too soon (before the network)

Status in ntp package in Ubuntu:
  Incomplete

Bug description:
  Here is what I see in journalctl:  ntpdate cannot do DNS resolution
  because NetworkManager has not finished configuring the network
  interface.

  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 0.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  init!
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  update_system_hostname
  Apr 21 22:01:13 xeelee NetworkManager[1493]:interface-parser: 
parsing file /etc/network/interfaces
  Apr 21 22:01:13 xeelee NetworkManager[1493]:interface-parser: 
finished parsing file /etc/network/interfaces
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  management mode: unmanaged
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  devices added (path: 
/sys/devices/pci:00/:00:1c.2/:03:00.0/net/wlan0,
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  device added (path: 
/sys/devices/pci:00/:00:1c.2/:03:00.0/net/wlan0,
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  devices added (path: 
/sys/devices/pci:00/:00:1c.3/:04:00.0/net/eth0,
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  device added (path: 
/sys/devices/pci:00/:00:1c.3/:04:00.0/net/eth0, i
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 1.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  devices added (path: 
/sys/devices/virtual/net/lo, iface: lo)
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdc [USB JMicron], no ATA 
CHECK POWER STATUS support, ignoring -n Directive
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 2.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  device added (path: 
/sys/devices/virtual/net/lo, iface: lo): no ifupdown configur
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdc [USB JMicron], is SMART 
capable. Adding to "monitor" list.
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host 3.ubuntu.pool.ntp.org: 
Name or service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  end _init.
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdc [USB JMicron], state 
read from /var/lib/smartmontools/smartd.WDC_WD40EZRX_00SPE
  Apr 21 22:01:13 xeelee ntpdate[1563]: Can't find host ntp.ubuntu.com: Name or 
service not known (-2)
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  Loaded plugin ifupdown: 
(C) 2008 Canonical Ltd.  To report bugs please use the Ne
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdd [USB JMicron], opened
  Apr 21 22:01:13 xeelee ntpdate[1563]: no servers can be used, exiting
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  Loaded plugin keyfile: 
(c) 2007 - 2013 Red Hat, Inc.  To report bugs please use t
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdd [USB JMicron], WDC 
WD40EZRX-00SPEB0, S/N:WD-WCC4E0267943, WWN:5-0014ee-25e7069b
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: Acquired 
D-Bus service com.canonical.NMOfono
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: init!
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: end _init.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  Loaded plugin ofono: (C) 
2013 Canonical Ltd.  To report bugs please use the Netwo
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  (25444896) ... 
get_connections.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  (25444896) ... 
get_connections (managed=false): return empty list.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: 
(25249376) ... get_connections.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  SCPlugin-Ofono: 
(25249376) connections count: 0
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  get unmanaged devices 
count: 0
  Apr 21 22:01:13 xeelee smartd[1495]: Device: /dev/sdd [USB JMicron], found in 
smartd database: Western Digital Caviar Green (AF, SATA
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  monitoring kernel 
firmware directory '/lib/firmware'.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  monitoring ifupdown state 
file '/run/network/ifstate'.
  Apr 21 22:01:13 xeelee NetworkManager[1493]:  rfkill1: found WiFi radio 
killswitch (at /sys/devices/pci:00/:00:1c.2/000
  Apr 21 22:01:13 xeelee systemd[1]: Stopped LSB: Start NTP daemon.
  Apr 21 22:01:13 xeelee systemd[1]: St

[Touch-packages] [Bug 1501028] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in Unity:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  Wily Beta 2 
  Gedit a text file
  got this error

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  Uname: Linux 3.17.1-031701-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Tue Sep 29 19:42:52 2015
  ExecutablePath: /usr/lib/unity/unity-panel-service
  InstallationDate: Installed on 2015-09-28 (1 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcEnviron:
   PATH=(custom, no user)
   SHELL=/bin/bash
   LANG=en_US.UTF-8
   LANGUAGE=en_US
   XDG_RUNTIME_DIR=
  SegvAnalysis:
   Segfault happened at: 0x7f38be4603ec:mov(%rdi),%rbx
   PC (0x7f38be4603ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  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/unity/+bug/1501028/+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 1500341] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  This was just one of the usual storm of error reports while starting a
  pre-release version of Ubuntu.  I am not even actively aware of the
  related symptoms, just reporting it as requested by Apport.  Feel free
  to keep open or to close as best suits you.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  Uname: Linux 4.3.0-040300rc3-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Sep 28 10:16:37 2015
  DistUpgraded: 2015-09-03 15:02:03,761 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 0b) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:05cb]
  InstallationDate: Installed on 2014-08-01 (423 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  MachineType: Dell Inc. Latitude E7440
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.3.0-040300rc3-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash
  SegvAnalysis:
   Segfault happened at: 0x7fe0ac9083ec:mov(%rdi),%rbx
   PC (0x7fe0ac9083ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: Upgraded to wily on 2015-09-03 (24 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo vboxusers
  dmi.bios.date: 05/19/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A15
  dmi.board.name: 0P9C43
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA15:bd05/19/2015:svnDellInc.:pnLatitudeE7440:pvr01:rvnDellInc.:rn0P9C43:rvr:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E7440
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Mon Sep 28 10:11:45 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id4413 
   vendor AUO
  xserver.version: 2:1.17.2-1ubuntu7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1500341/+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 1500711] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  NA

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  Uname: Linux 4.3.0-040300rc3-lowlatency x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Tue Sep 29 12:50:12 2015
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus:
   bbswitch, 0.7, 4.3.0-040300rc3-lowlatency, x86_64: installed
   bcmwl, 6.30.223.248+bdcom, 4.3.0-040300rc3-lowlatency, x86_64: installed
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. Device [1043:178d]
 Subsystem: ASUSTeK Computer Inc. Device [1043:178d]
  InstallationDate: Installed on 2015-09-28 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  MachineType: ASUSTeK COMPUTER INC. X550JK
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.3.0-040300rc3-lowlatency 
root=UUID=d334646c-757c-4b26-be38-a610e5012917 ro quiet splash
  SegvAnalysis:
   Segfault happened at: 0x7fe2608d23ec:mov(%rdi),%rbx
   PC (0x7fe2608d23ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 07/09/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: X550JK.302
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: X550JK
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK COMPUTER INC.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrX550JK.302:bd07/09/2014:svnASUSTeKCOMPUTERINC.:pnX550JK:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnX550JK:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
  dmi.product.name: X550JK
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK COMPUTER INC.
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Tue Sep 29 12:31:49 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id1116 
   vendor LGD
  xserver.version: 2:1.17.2-1ubuntu7

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

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

[Touch-packages] [Bug 1500791] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  Using 15.10 beta.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  Uname: Linux 4.0.9-040009-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Tue Sep 29 15:24:17 2015
  ExecutablePath: /usr/lib/unity/unity-panel-service
  InstallationDate: Installed on 2013-07-31 (790 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcEnviron:
   PATH=(custom, user)
   SHELL=/bin/bash
   LANG=en_IN.UTF-8
   LANGUAGE=en_IN:en
   XDG_RUNTIME_DIR=
  SegvAnalysis: Failure: Unknown offset literal: [rdi]
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: Upgraded to wily on 2015-09-25 (3 days ago)
  UserGroups: adm cdrom dip lp lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1500791/+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 1499439] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  Bug occurred on login when trying to open some basic applications
  (firefox, xchat, pidgin)

  Possibly related: my HDMI screen (I have dual monitors) has lines
  running through it causing all text to be slightly disjointed. This
  started after updates run yesterday morning. And it shows up when
  reaching the login screen. My DVI monitor does not have this issue.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 3.19.0-25.26-generic 3.19.8-ckt2
  Uname: Linux 3.19.0-25-generic x86_64
  NonfreeKernelModules: fglrx
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Thu Sep 24 08:39:29 2015
  DistUpgraded: 2015-08-18 11:13:22,826 DEBUG running apport_crash()
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus: fglrx-updates-core, 15.201, 3.19.0-25-generic, x86_64: installed
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Barts PRO [Radeon HD 6850] 
[1002:6739] (prog-if 00 [VGA controller])
 Subsystem: ASUSTeK Computer Inc. EAH6850 [Radeon HD 6850] [1043:03b4]
  InstallationDate: Installed on 2012-09-18 (1101 days ago)
  InstallationMedia: Ubuntu 12.04.1 LTS "Precise Pangolin" - Release amd64 
(20120822.4)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-25-generic 
root=UUID=5bdcf5b5-da83-44c1-b6c3-9c68b6ba3166 ro quiet splash vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7ff490c093ec:mov(%rdi),%rbx
   PC (0x7ff490c093ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: Upgraded to wily on 2015-08-18 (36 days ago)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo vboxusers
  dmi.bios.date: 10/16/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1604
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: SABERTOOTH 990FX
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1604:bd10/16/2012:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnSABERTOOTH990FX:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.fglrx-installer: fglrx-installer N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video

[Touch-packages] [Bug 1500640] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  BootLog:
   
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,staticswitcher,workarounds,scale,expo,ezoom,dbus]
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Tue Sep 29 00:35:33 2015
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroVariant: ubuntu
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV770 [Radeon HD 4850] [1002:9442] 
(prog-if 00 [VGA controller])
 Subsystem: PC Partner Limited / Sapphire Technology Radeon HD 4850 512MB 
GDDR3 [174b:e810]
  InstallationDate: Installed on 2015-09-28 (0 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150924)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-11-generic.efi.signed 
root=UUID=b5735c59-9ce9-4a3c--1e2eef678b76 ro noprompt persistent quiet 
splash vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7f5f334923ec:mov(%rdi),%rbx
   PC (0x7f5f334923ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UdevLog: Error: [Errno 2] File o directory non esistente: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 04/07/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A97 R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A97R2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To be filled by O.E.M.
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Mon Sep 28 23:03:27 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.17.2-1ubuntu7
  xserver.video_driver: radeon

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

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

[Touch-packages] [Bug 1500750] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  Got this apport crash notification very soon after upgrading from
  15.04 to 15.10.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Tue Sep 29 10:21:35 2015
  DistUpgraded: 2015-09-29 08:22:25,147 DEBUG running apport_crash()
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 4.2.0-11-generic, x86_64: installed
   virtualbox, 5.0.4, 3.19.0-28-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 09) (prog-if 00 [VGA controller])
 Subsystem: Acer Incorporated [ALI] Device [1025:079b]
 Subsystem: Acer Incorporated [ALI] Device [1025:079b]
  MachineType: Acer Aspire V5-573G
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-11-generic 
root=/dev/mapper/vg5-ubuntu ro quiet splash vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7fcc3685e3ec:mov(%rdi),%rbx
   PC (0x7fcc3685e3ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: Upgraded to wily on 2015-09-29 (0 days ago)
  UserGroups: adm cdrom dialout dip libvirtd lpadmin plugdev sambashare sudo 
video wireshark
  dmi.bios.date: 11/28/2013
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V2.25
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: Dazzle_HW
  dmi.board.vendor: Acer
  dmi.board.version: Type2 - A01 Board Version
  dmi.chassis.type: 10
  dmi.chassis.vendor: Chassis Manufacturer
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV2.25:bd11/28/2013:svnAcer:pnAspireV5-573G:pvrTBDbyOEM:rvnAcer:rnDazzle_HW:rvrType2-A01BoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
  dmi.product.name: Aspire V5-573G
  dmi.product.version: TBD by OEM
  dmi.sys.vendor: Acer
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Tue Sep 29 09:44:08 2015
  xserver.configfile: default
  xserver.errors:
   Failed to load module "nvidia" (module does not exist, 0)
   Failed to load module "nvidia" (module does not exist, 0)
   NOUVEAU(G0): Failed to initialise context object: 2D_NVC0 (0)
   NOUVEAU(G0): Error initialising acceleration.  Falling back to NoAccel
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id4845 
   vendor AUO
  xserver.version: 2:1.17.2-1ubuntu7

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

[Touch-packages] [Bug 1499133] Re: unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in
  gtk_menu_tracker_remove_items()

Status in Unity:
  Triaged
Status in unity package in Ubuntu:
  Triaged

Bug description:
  Crash in panel using Eclipse (not sure if Eclipse trigger this bug)

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 3.16.0-22.29-generic 3.16.4
  Uname: Linux 3.16.0-22-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  BootLog:
   
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Thu Sep 24 03:39:33 2015
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus: virtualbox, 5.0.4: added
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Madison [Mobility Radeon HD 5650/5750 
/ 6530M/6550M] [1002:68c1] (prog-if 00 [VGA controller])
 Subsystem: Acer Incorporated [ALI] Mobility Radeon HD 5650 [1025:042f]
  InstallationDate: Installed on 2014-05-08 (503 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  MachineType: Acer Aspire 5943G
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-22-generic 
root=UUID=e9be64c9-5b7e-438a-ac82-6b89bf946a86 ro quiet splash vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7f24b28143ec:mov(%rdi),%rbx
   PC (0x7f24b28143ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 10/21/2010
  dmi.bios.vendor: Acer
  dmi.bios.version: V1.15
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: Aspire 5943G
  dmi.board.vendor: Acer
  dmi.board.version: V1.15
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: V1.15
  dmi.modalias: 
dmi:bvnAcer:bvrV1.15:bd10/21/2010:svnAcer:pnAspire5943G:pvrV1.15:rvnAcer:rnAspire5943G:rvrV1.15:cvnAcer:ct10:cvrV1.15:
  dmi.product.name: Aspire 5943G
  dmi.product.version: V1.15
  dmi.sys.vendor: Acer
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Thu Sep 24 02:58:04 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.17.2-1ubuntu7
  xserver.video_driver: radeon

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1499133/+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 1499762] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  the active window was 
  StockMarketEye;
  the top menu bar did not display correctly,
  items missing from Files dropdown list,
  then this crash occurred.

  Software Updater was run this morning for Wily Werewolf daily.
  StockMarketEye was current version at that time, not updated.
  attempt to verify the version number was unsuccessful,
  the top menu bar did not display correctly,
  items missing from Files dropdown list,
  then this crash occurred.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Fri Sep 25 10:39:41 2015
  ExecutablePath: /usr/lib/unity/unity-panel-service
  InstallationDate: Installed on 2015-07-16 (71 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150716)
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcEnviron:
   PATH=(custom, no user)
   SHELL=/bin/bash
   LANG=en_US.UTF-8
   LANGUAGE=en_US
   XDG_RUNTIME_DIR=
  SegvAnalysis:
   Segfault happened at: 0x7f2cff2c73ec:mov(%rdi),%rbx
   PC (0x7f2cff2c73ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  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/ubuntu/+source/unity/+bug/1499762/+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 1500987] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  .

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Tue Sep 29 19:40:15 2015
  DistUpgraded: 2015-09-18 21:30:03,920 DEBUG running apport_crash()
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 5.0.4, 3.19.0-28-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-10-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
  EcryptfsInUse: Yes
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   NVIDIA Corporation GK107GLM [Quadro K2000M] [10de:0ffb] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: Lenovo Device [17aa:21f6]
  InstallationDate: Installed on 2015-07-06 (84 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: LENOVO 2447MU0
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-11-generic 
root=UUID=624eaf1a-52a9-4780-aed5-d37d39a1be28 ro rootflags=subvol=@ 
thinkpad-acpi.brightness_enable=1 acpi_backlight=vendor
  SegvAnalysis:
   Segfault happened at: 0x7f1b00f533ec:mov(%rdi),%rbx
   PC (0x7f1b00f533ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: Upgraded to wily on 2015-09-18 (10 days ago)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 01/22/2015
  dmi.bios.vendor: LENOVO
  dmi.bios.version: G5ETA1WW (2.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 2447MU0
  dmi.board.vendor: LENOVO
  dmi.board.version: 0B98401 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvrG5ETA1WW(2.61):bd01/22/2015:svnLENOVO:pn2447MU0:pvrThinkPadW530:rvnLENOVO:rn2447MU0:rvr0B98401WIN:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 2447MU0
  dmi.product.version: ThinkPad W530
  dmi.sys.vendor: LENOVO
  upstart.unity-panel-service.log:
   (unity-panel-service:27483): GLib-CRITICAL **: Source ID 362 was not found 
when attempting to remove it
   
   (unity-panel-service:27483): Gtk-CRITICAL **: 
gtk_label_set_text_with_mnemonic: assertion 'str != NULL' failed
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Tue Sep 29 19:35:53 2015
  xserver.configfile: default
  xserver.errors:
   Failed to load module "nvidia" (module does not exist, 0)
   Failed to load module "nvidia" (module does not exist, 0)
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.17.2-1ubuntu7
  xserver.vid

[Touch-packages] [Bug 1300713] Re: unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

2015-10-06 Thread Andrea Azzarone
Copy paste from bug #1499133:

under valgrind it shows that invalid read

==4150== 1 errors in context 1 of 1:
==4150== Invalid read of size 4
==4150== at 0x444FE59: gtk_menu_tracker_remove_items (gtkmenutracker.c:290)
==4150== by 0x444FE59: gtk_menu_tracker_model_changed (gtkmenutracker.c:451)
==4150== by 0x55D1D11: ffi_call_SYSV (sysv.S:65)
==4150== by 0x55D198B: ffi_call (ffi.c:389)
==4150== by 0x4D183AC: g_cclosure_marshal_generic (in 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0.4600.0)
==4150== by 0x4D17B8A: g_closure_invoke (in 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0.4600.0)
==4150== by 0x4D29FFB: signal_emit_unlocked_R (in 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0.4600.0)
==4150== by 0x4D32C95: g_signal_emit_valist (in 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0.4600.0)
==4150== by 0x4D32FC4: g_signal_emit (in 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0.4600.0)
==4150== by 0x4BF4F6B: g_menu_model_items_changed (in 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0.4600.0)
==4150== by 0x4BF852D: g_dbus_menu_group_changed (in 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0.4600.0)
==4150== by 0x4BF8C07: g_dbus_menu_path_signal (in 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0.4600.0)
==4150== by 0x4C10DCE: emit_signal_instance_in_idle_cb (in 
/usr/lib/i386-linux-gnu/libgio-2.0.so.0.4600.0)
==4150== by 0x4DAC40F: g_idle_dispatch (in 
/lib/i386-linux-gnu/libglib-2.0.so.0.4600.0)
==4150== by 0x4DAFB9A: g_main_context_dispatch (in 
/lib/i386-linux-gnu/libglib-2.0.so.0.4600.0)
==4150== by 0x4DAFF88: g_main_context_iterate.isra.29 (in 
/lib/i386-linux-gnu/libglib-2.0.so.0.4600.0)
==4150== by 0x4DB0338: g_main_loop_run (in 
/lib/i386-linux-gnu/libglib-2.0.so.0.4600.0)
==4150== by 0x442F99D: gtk_main (gtkmain.c:1219)
==4150== by 0x804C313: main (in /usr/lib/unity/unity-panel-service)

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

Title:
  unity-panel-service crashed with SIGSEGV in
  gtk_menu_tracker_remove_items()

Status in Unity:
  Confirmed
Status in indicator-appmenu package in Ubuntu:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  starting vitualbox and evolution

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: unity-services 7.1.2+14.04.20140328.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7
  Uname: Linux 3.13.0-20-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Apr  1 13:03:29 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExecutablePath: /usr/lib/unity/unity-panel-service
  InstallationDate: Installed on 2014-03-27 (4 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Beta amd64 (20140325.1)
  MachineType: MEDION X761X
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcEnviron:
   PATH=(custom, no user)
   LANGUAGE=de_DE
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-20-generic.efi.signed 
root=UUID=f8dca303-39ef-4b95-b466-d28268e7dcf4 ro quiet splash vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7f82a8bdfffc:mov(%rdi),%rbx
   PC (0x7f82a8bdfffc) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 10/23/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E1771IM7.500
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: X761X
  dmi.board.vendor: MEDION
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To be filled by O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE1771IM7.500:bd10/23/2013:svnMEDION:pnX761X:pvrTobefilledbyO.E.M.:rvnMEDION:rnX761X:rvrTobefilledbyO.E.M.:cvnToBeFilledByO.E.M.:ct10:cvrTobefilledbyO.E.M.:
  dmi.product.name: X761X
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: MEDION
  version.compiz: compiz 1:0.9.11+14.04.20140328-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl

[Touch-packages] [Bug 1499464] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  I don't know what the bug was, I just saw got the reporting thing
  popping up.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-10.12-generic 4.2.0
  Uname: Linux 4.2.0-10-generic x86_64
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: Unity
  Date: Thu Sep 24 13:04:56 2015
  ExecutablePath: /usr/lib/unity/unity-panel-service
  InstallationDate: Installed on 2014-03-01 (572 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcEnviron:
   PATH=(custom, user)
   SHELL=/bin/bash
   LANG=en_CA.UTF-8
   LANGUAGE=en_CA:en
   XDG_RUNTIME_DIR=
  SegvAnalysis:
   Segfault happened at: 0x7f52b8b6c3ec:mov(%rdi),%rbx
   PC (0x7f52b8b6c3ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1499464/+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 1348954] Re: update Python3 for trusty

2015-10-06 Thread Steve Langasek
python3.4 3.4.3-1ubuntu1~14.04.1 has been removed from trusty-updates
due to bug #1500768 which is a regression introduced in this SRU.  This
SRU can be reconsidered once this regression has been resolved.

** Tags removed: verification-done

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

Title:
  update Python3 for trusty

Status in python3-defaults package in Ubuntu:
  New
Status in python3-stdlib-extensions source package in Trusty:
  Fix Released
Status in python3.4 source package in Trusty:
  Triaged

Bug description:
  update Python3 for trusty.

  Rationale: the LTS was released with 3.4.0, the first 3.4 release
  which certainly had some issues. The idea is to update the python3.4
  packages to the version found in 15.04 (vivid), which currently
  doesn't have any outstanding issues.  A test rebuild of the trusty
  main component was done without showing any regressions during the
  package builds.

  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20150317-trusty.html
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20150501-updates-trusty.html

  To validate this SRU, I'm proposing to use the results from the test
  rebuild, plus evaluating the testsuite results of the python3.4
  package itself.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3-defaults/+bug/1348954/+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 1348954] Re: update Python3 for trusty

2015-10-06 Thread Steve Langasek
python3.4 3.4.3-1ubuntu1~14.04.1 has been removed from trusty-updates
due to bug #1500768 which is a regression introduced in this SRU.  This
SRU can be reconsidered once this regression has been resolved.

** Changed in: python3.4 (Ubuntu Trusty)
   Status: Fix Released => Triaged

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

Title:
  update Python3 for trusty

Status in python3-defaults package in Ubuntu:
  New
Status in python3-stdlib-extensions source package in Trusty:
  Fix Released
Status in python3.4 source package in Trusty:
  Triaged

Bug description:
  update Python3 for trusty.

  Rationale: the LTS was released with 3.4.0, the first 3.4 release
  which certainly had some issues. The idea is to update the python3.4
  packages to the version found in 15.04 (vivid), which currently
  doesn't have any outstanding issues.  A test rebuild of the trusty
  main component was done without showing any regressions during the
  package builds.

  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20150317-trusty.html
  
http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-rebuild-20150501-updates-trusty.html

  To validate this SRU, I'm proposing to use the results from the test
  rebuild, plus evaluating the testsuite results of the python3.4
  package itself.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3-defaults/+bug/1348954/+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 1500941] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  This report happened when logging and while loading web browsers
  (firefox and chrome) and pidgin

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Tue Sep 29 10:45:58 2015
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus:
   virtualbox, 5.0.4, 4.2.0-10-generic, x86_64: installed
   virtualbox, 5.0.4, 4.2.0-11-generic, x86_64: installed
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Intel Corporation 2nd Generation Core Processor Family Integrated Graphics 
Controller [8086:0116] (rev 09) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:1854]
  InstallationDate: Installed on 2015-09-21 (7 days ago)
  InstallationMedia: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20150920)
  MachineType: Hewlett-Packard HP 1000 Notebook PC
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-11-generic.efi.signed 
root=UUID=2aa2ef58-9ec5-4368-8ffd-0503f603cd62 ro quiet splash vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7f57eaf0a3ec:mov(%rdi),%rbx
   PC (0x7f57eaf0a3ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 06/13/2013
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.3A
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 1854
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 64.2A
  dmi.chassis.asset.tag: Classis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.3A:bd06/13/2013:svnHewlett-Packard:pnHP1000NotebookPC:pvr088C1130591610100:rvnHewlett-Packard:rn1854:rvr64.2A:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP 1000 Notebook PC
  dmi.product.version: 088C1130591610100
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Tue Sep 29 10:43:48 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id   13146 
   vendor SEC
  xserver.version: 2:1.17.2-1ubuntu7

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch

[Touch-packages] [Bug 1503320] [NEW] Xorg freeze - general protection fault with fglrx on 4.2 kernel

2015-10-06 Thread Richard Ayotte
Public bug reported:

X won't start with fglrx or fglrx-updates on Wily.

[   27.388442] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, 
Starnberg, GERMANY' taints kernel.
[   27.388449] Disabling lock debugging due to kernel taint
[   27.416878] fglrx: module verification failed: signature and/or required key 
missing - tainting kernel
[   27.460461] <6>[fglrx] Maximum main memory to use for locked dma buffers: 
3790 MBytes.
[   27.460701] <6>[fglrx]   vendor: 1002 device: 679a revision: 0 count: 1
[   27.461101] <6>[fglrx] ioport: bar 4, base 0xa000, size: 0x100
[   27.461364] ACPI: PCI Interrupt Link [APC3] enabled at IRQ 18
[   27.461612] general protection fault:  [#1] SMP 
[   27.461724] Modules linked in: fglrx(POE+) snd_hda_codec_hdmi snd_hda_intel 
snd_hda_codec input_leds snd_hda_core amd64_edac_mod(+) edac_core snd_hwdep 
serio_raw k8temp(+) edac_mce_amd amd_iommu_v2 snd_intel8x0(+) snd_ac97_codec 
shpchp ac97_bus snd_mpu401_uart snd_pcm i2c_nforce2 ns558 snd_seq_midi 
snd_seq_midi_event snd_rawmidi 8250_fintek mac_hid snd_seq snd_seq_device 
snd_timer asus_atk0110 snd gameport soundcore parport_pc ppdev lp parport 
autofs4 btrfs xor raid6_pq hid_generic usbhid hid pata_acpi forcedeth pata_amd 
sata_nv floppy
[   27.463451] CPU: 1 PID: 278 Comm: systemd-udevd Tainted: P   OE   
4.2.0-14-generic #16-Ubuntu
[   27.463494] Hardware name: System manufacturer System Product Name/A8N-E, 
BIOS ASUS A8N-E ACPI BIOS Revision 1013 04/07/2006
[   27.463537] task: 8800bfabb200 ti: 88013a0b4000 task.ti: 
88013a0b4000
[   27.463578] RIP: 0010:[]  [] 
firegl_trace+0x61/0x1e0 [fglrx]
[   27.463925] RSP: 0018:88013a0b7aa8  EFLAGS: 00010282
[   27.463964] RAX: 0001 RBX: 88013a0b7b87 RCX: 12cf
[   27.464006] RDX: c0577430 RSI: c037ac91 RDI: 0004
[   27.464012] RBP: 0001 R08:  R09: c05e04f0
[   27.464012] R10: 8800b9326000 R11: c0385bf0 R12: 000d
[   27.464012] R13:  R14:  R15: c05e04f0
[   27.464012] FS:  7f2db918f8c0() GS:88013fd0() 
knlGS:
[   27.464012] CS:  0010 DS:  ES:  CR0: 80050033
[   27.464012] CR2: 7f2db91ad000 CR3: 00013a0a9000 CR4: 06e0
[   27.464012] Stack:
[   27.464012]  12cf0092 c0577430 0096 
0096
[   27.464012]  88013a0b7b08 8168e1dc 88013a513400 
0004
[   27.464012]  88013a513400 88013a0b7b96 0286 
811cfa83
[   27.464012] Call Trace:
[   27.464012]  [] ? pci_conf1_read+0xbc/0x100
[   27.464012]  [] ? __kmalloc+0xa3/0x250
[   27.464012]  [] ? KCL_MEM_SmallBufferAlloc+0x13/0x20 
[fglrx]
[   27.464012]  [] ? KCL_STR_Memcpy+0xe/0x10 [fglrx]
[   27.464012]  [] ? asyncIOInit+0xa6/0xe0 [fglrx]
[   27.464012]  [] ? asyncioSvcInitContext+0x30/0x30 [fglrx]
[   27.464012]  [] ? asyncioSvcInstallFn+0x40/0x40 [fglrx]
[   27.464012]  [] ? klist_next+0x25/0x100
[   27.464012]  [] ? asyncioSvcRemoveFn+0x80/0x80 [fglrx]
[   27.464012]  [] ? KAS_Initialize+0x113/0x1b0 [fglrx]
[   27.464012]  [] ? firegl_init+0xe2/0xf0 [fglrx]
[   27.464012]  [] ? 
firegl_find_interrupt_by_sourceid+0x50/0x50 [fglrx]
[   27.464012]  [] ? IRQMGR_CallbackWrapper+0x20/0x20 [fglrx]
[   27.464012]  [] ? firegl_init_module+0x27e/0x1000 [fglrx]
[   27.464012]  [] ? 0xc1012000
[   27.468510]  [] ? do_one_initcall+0xb3/0x200
[   27.468510]  [] ? preempt_schedule_common+0x22/0x40
[   27.468510]  [] ? _cond_resched+0x1c/0x30
[   27.468510]  [] ? kmem_cache_alloc_trace+0x89/0x1f0
[   27.468510]  [] ? do_init_module+0x28/0x1e7
[   27.468510]  [] ? do_init_module+0x60/0x1e7
[   27.468510]  [] ? load_module+0x1676/0x1c10
[   27.468510]  [] ? __symbol_put+0x40/0x40
[   27.468510]  [] ? SyS_finit_module+0x9a/0xc0
[   27.468510]  [] ? entry_SYSCALL_64_fastpath+0x16/0x75
[   27.468510] Code: df 00 00 00 48 89 54 24 08 89 4c 24 04 ff e6 0f 29 7b f1 
0f 29 73 e1 0f 29 6b d1 0f 29 63 c1 0f 29 5b b1 0f 29 53 a1 0f 29 4b 91 <0f> 29 
43 81 e8 26 9a fc ff 48 89 c7 e8 5e ae fd ff 44 89 e1 c1 
[   27.469827] RIP  [] firegl_trace+0x61/0x1e0 [fglrx]
[   27.469827]  RSP 
[   27.471417] ---[ end trace 8a2116025344bc47 ]---

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: xorg 1:7.7+7ubuntu4
ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
Uname: Linux 4.2.0-14-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.19-0ubuntu1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Tue Oct  6 10:14:22 2015
DistUpgraded: 2015-10-05 18:28:39,309 DEBUG enabling apt cron job
DistroCodename: wily
DistroVariant: ubuntu
DkmsStatus:
 fglrx-updates-core, 15.201, 4.2.0-14-generic, x86_64: installed
 virtualbox, 5.0.4, 3.19.0-30-generic, x86_64: installed
 virtualbox, 5.0.4, 4.2.0-14-generic, x86_64: installed
ExtraDebuggingInte

[Touch-packages] [Bug 1264554] Re: python3.4 autopkg test failures

2015-10-06 Thread Steve Langasek
python3.4 3.4.3-1ubuntu1~14.04.1 has been removed from trusty-updates
due to bug #1500768 which is a regression introduced in this SRU.  This
SRU can be reconsidered once this regression has been resolved.

** Changed in: python3.4 (Ubuntu Trusty)
   Status: Fix Released => Triaged

** Tags removed: verification-done

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

Title:
  python3.4 autopkg test failures

Status in python3.3 package in Ubuntu:
  Won't Fix
Status in python3.4 package in Ubuntu:
  Fix Released
Status in python3.4 source package in Trusty:
  Triaged

Bug description:
  see
  
https://jenkins.qa.ubuntu.com/view/Trusty/view/AutoPkgTest/job/trusty-adt-python3.4/24/

  disabled these in the autopkg tests for now. need some investigation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3.3/+bug/1264554/+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 1503315] Re: Webbrowser application closing the application when last tab is gone

2015-10-06 Thread Olivier Tilloy
This is by design, and consistent with what other desktop browsers do
(chromium, firefox).

** Changed in: webbrowser-app (Ubuntu)
   Status: New => Invalid

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

Title:
  Webbrowser application closing the application when last tab is gone

Status in Ubuntu UX:
  New
Status in webbrowser-app package in Ubuntu:
  Invalid

Bug description:
  Webbrowser currently closes the whole application when last tab is
  gone. This is rather disturbing as a default behavior. It might be OK
  for mobile, but for desktop it is very foreign from the way that apps
  usually work.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1503315/+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 1503018] Re: Messages are not broken into lines on full word boundaries

2015-10-06 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/revert_nbsp_replace

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

Title:
  Messages are not broken into lines on full word boundaries

Status in Canonical System Image:
  Confirmed
Status in messaging-app package in Ubuntu:
  Confirmed

Bug description:
  The breaks are made within words and the formatting looks bad.

  This has regressed since ota6 in stable

  MX4 running 130 proposed

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1503018/+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 1300713] Re: unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

2015-10-06 Thread Andrea Azzarone
** Also affects: indicator-appmenu (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: indicator-appmenu (Ubuntu)
   Status: New => Confirmed

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

Title:
  unity-panel-service crashed with SIGSEGV in
  gtk_menu_tracker_remove_items()

Status in Unity:
  Confirmed
Status in indicator-appmenu package in Ubuntu:
  Confirmed
Status in unity package in Ubuntu:
  Confirmed

Bug description:
  starting vitualbox and evolution

  ProblemType: Crash
  DistroRelease: Ubuntu 14.04
  Package: unity-services 7.1.2+14.04.20140328.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-20.42-generic 3.13.7
  Uname: Linux 3.13.0-20-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Tue Apr  1 13:03:29 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExecutablePath: /usr/lib/unity/unity-panel-service
  InstallationDate: Installed on 2014-03-27 (4 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Beta amd64 (20140325.1)
  MachineType: MEDION X761X
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcEnviron:
   PATH=(custom, no user)
   LANGUAGE=de_DE
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-20-generic.efi.signed 
root=UUID=f8dca303-39ef-4b95-b466-d28268e7dcf4 ro quiet splash vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7f82a8bdfffc:mov(%rdi),%rbx
   PC (0x7f82a8bdfffc) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 10/23/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E1771IM7.500
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: X761X
  dmi.board.vendor: MEDION
  dmi.board.version: To be filled by O.E.M.
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To be filled by O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE1771IM7.500:bd10/23/2013:svnMEDION:pnX761X:pvrTobefilledbyO.E.M.:rvnMEDION:rnX761X:rvrTobefilledbyO.E.M.:cvnToBeFilledByO.E.M.:ct10:cvrTobefilledbyO.E.M.:
  dmi.product.name: X761X
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: MEDION
  version.compiz: compiz 1:0.9.11+14.04.20140328-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.15.0-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.10-1ubuntu2
  xserver.bootTime: Tue Apr  1 07:30:04 2014
  xserver.configfile: /etc/X11/xorg.conf
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.version: 2:1.15.0-1ubuntu7

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1300713/+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 1436694] Re: when the system was opening :systemd-journald crashed with SIGSEGV in __find_specmb()

2015-10-06 Thread Bryan Quigley
This was a in-development Ubuntu 15.04 release and systemd has seen
upgrades since then.  Have you been able to reproduce it since then?

** Changed in: systemd (Ubuntu)
   Status: New => Incomplete

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

Title:
  when the system was opening :systemd-journald crashed with SIGSEGV in
  __find_specmb()

Status in systemd package in Ubuntu:
  Incomplete

Bug description:
  I have opened xubuntu than i have seen 4 windows alert. I have closed
  3 of 4 than cliched one of them and report this.

  ProblemType: Crash
  DistroRelease: Ubuntu 15.04
  Package: systemd 219-4ubuntu9
  ProcVersionSignature: Ubuntu 3.19.0-9.9-generic 3.19.1
  Uname: Linux 3.19.0-9-generic i686
  NonfreeKernelModules: wl
  ApportVersion: 2.16.2-0ubuntu4
  Architecture: i386
  Date: Wed Mar 25 18:12:17 2015
  ExecutablePath: /lib/systemd/systemd-journald
  InstallationDate: Installed on 2014-12-21 (94 days ago)
  InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release i386 (20140723)
  MachineType: ASUSTeK Computer INC. 1015PW
  ProcCmdline: /lib/systemd/systemd-journald
  ProcEnviron:
   LANG=it_IT.UTF-8
   PATH=(custom, no user)
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-9-generic 
root=UUID=4d7cab7b-ad63-4fe0-985f-dfb06a812a95 ro quiet splash vt.handoff=7
  Signal: 11
  SourcePackage: systemd
  StacktraceTop:
   __find_specmb (format=0xb77a4f69 "%s: IO error, rotating.") at 
printf-parse.h:108
   _IO_vfprintf_internal (s=0xbff08500, format=0xb77a4f69 "%s: IO error, 
rotating.", ap=0xbff08eb8 "X\217\351\270\332!x\267\b}{\267\373\377\377\377\t") 
at vfprintf.c:1315
   ___vsnprintf_chk (s=0xbff0863c "", maxlen=, flags=1, 
slen=2048, format=0xb77a4f69 "%s: IO error, rotating.", args=0xbff08eb8 
"X\217\351\270\332!x\267\b}{\267\373\377\377\377\t") at vsnprintf_chk.c:63
   ?? ()
   ?? ()
  Title: systemd-journald crashed with SIGSEGV in __find_specmb()
  UpgradeStatus: Upgraded to vivid on 2015-03-18 (7 days ago)
  UserGroups:
   
  dmi.bios.date: 05/06/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 1301
  dmi.board.asset.tag: To Be Filled By O.E.M.
  dmi.board.name: 1015PE
  dmi.board.vendor: ASUSTeK Computer INC.
  dmi.board.version: x.xx
  dmi.chassis.asset.tag: 0x
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer INC.
  dmi.chassis.version: x.x
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1301:bd05/06/2011:svnASUSTeKComputerINC.:pn1015PW:pvrx.x:rvnASUSTeKComputerINC.:rn1015PE:rvrx.xx:cvnASUSTeKComputerINC.:ct10:cvrx.x:
  dmi.product.name: 1015PW
  dmi.product.version: x.x
  dmi.sys.vendor: ASUSTeK Computer INC.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1436694/+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 1500735] Re: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

2015-10-06 Thread Andrea Azzarone
*** This bug is a duplicate of bug 1300713 ***
https://bugs.launchpad.net/bugs/1300713

** This bug is no longer a duplicate of bug 1499133
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()
** This bug has been marked a duplicate of bug 1300713
   unity-panel-service crashed with SIGSEGV in gtk_menu_tracker_remove_items()

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

Title:
  unity-panel-service crashed with SIGSEGV in ffi_call_unix64()

Status in unity package in Ubuntu:
  New

Bug description:
  nautilus crash

  ProblemType: Crash
  DistroRelease: Ubuntu 15.10
  Package: unity-services 7.3.2+15.10.20150921-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
  Uname: Linux 4.2.0-11-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CrashCounter: 1
  CurrentDesktop: Unity
  Date: Tue Sep 29 09:32:08 2015
  DistUpgraded: 2015-09-18 12:16:03,431 DEBUG enabling apt cron job
  DistroCodename: wily
  DistroVariant: ubuntu
  DkmsStatus:
   i915-4.0.4-3.19, 1, 3.19.0-15-generic, x86_64: installed
   i915-4.0.4-3.19, 1, 3.19.0-25-generic, x86_64: installed
   vboxhost, 5.0.4, 4.2.0-10-generic, x86_64: installed
   vboxhost, 5.0.4, 4.2.0-11-generic, x86_64: installed
  ExecutablePath: /usr/lib/unity/unity-panel-service
  GraphicsCard:
   Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] 
(rev 0b) (prog-if 00 [VGA controller])
 Subsystem: Dell Device [1028:05cb]
  InstallationDate: Installed on 2015-08-03 (56 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  MachineType: Dell Inc. Latitude E7440
  ProcCmdline: /usr/lib/unity/unity-panel-service
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-11-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash nomdmonddf nomdmonisw 
vt.handoff=7
  SegvAnalysis:
   Segfault happened at: 0x7fc1983b43ec:mov(%rdi),%rbx
   PC (0x7fc1983b43ec) ok
   source "(%rdi)" (0x) not located in a known VMA region (needed 
readable region)!
   destination "%rbx" ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity
  StacktraceTop:
   ?? () from /usr/lib/x86_64-linux-gnu/libgtk-3.so.0
   ffi_call_unix64 () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   ffi_call () from /usr/lib/x86_64-linux-gnu/libffi.so.6
   g_cclosure_marshal_generic () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
   g_closure_invoke () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
  Title: unity-panel-service crashed with SIGSEGV in ffi_call_unix64()
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: Upgraded to wily on 2015-09-18 (10 days ago)
  UserGroups: adm cdrom dip libvirtd lpadmin plugdev sambashare sudo vboxusers 
wireshark
  dmi.bios.date: 02/02/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A14
  dmi.board.name: 03HFCG
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA14:bd02/02/2015:svnDellInc.:pnLatitudeE7440:pvr01:rvnDellInc.:rn03HFCG:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E7440
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.12.2+15.10.20150908-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu7
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
  xserver.bootTime: Tue Sep 29 08:50:35 2015
  xserver.configfile: default
  xserver.errors:
   
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
   product id4413 
   vendor AUO
  xserver.version: 2:1.17.2-1ubuntu7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1500735/+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 1489037] Re: Change default alarm sound to "Alarm clock.ogg"

2015-10-06 Thread Jean-Baptiste Lallement
** Changed in: canonical-devices-system-image
Milestone: None => ww40-2015

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

Title:
  Change default alarm sound to "Alarm clock.ogg"

Status in Canonical System Image:
  In Progress
Status in indicator-datetime package in Ubuntu:
  In Progress

Bug description:
  With OTA-6 (as per bug 1354370), the default alarm sound has been
  changed from "Suru arpeggio.ogg" to "Alarm clock.ogg". Indicator-
  datetime will have to set this as default on its end.

  Note: Clock App will set "Alarm clock.ogg" as the default alarm sound
  for new alarms created by the user starting with clock app v3.5.362.
  This bug is to ensure that the fallback alarm played by indicator-
  datetime is also "Alarm clock.ogg" (which is used when the user sets
  an invalid alarm tone).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1489037/+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 1499392] Re: OpenSSH Security and SHA1

2015-10-06 Thread Eldin Hadzic
Hello Colin, Hello Seth,

Seth that sounds great :-). I totally agree you.

Colin and that´s the same Problem we had on Scaleway, but I am sure that
we are finding a solution :-).

I would love to participate @ the discussion.

Have a nice day,

Eldin Hadzic

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

Title:
  OpenSSH Security and SHA1

Status in openssh package in Ubuntu:
  Confirmed

Bug description:
  We should enhance Security by disabling SHA1 or, if not possible
  (older Clients) by changing the KexAlgorithms, Ciphers and MACs order.

  For e.g. by :

  1. If we add Support for older Clients we should change this:

   OpenSSH Security 

  KexAlgorithms 
curve25519-sha...@libssh.org,diffie-hellman-group-exchange-sha256,diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1
  Ciphers 
chacha20-poly1...@openssh.com,aes256-...@openssh.com,aes128-...@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
  MACs 
hmac-sha2-512-...@openssh.com,hmac-sha2-256-...@openssh.com,hmac-ripemd160-...@openssh.com,umac-128-...@openssh.com,hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,umac-...@openssh.com

  2.  If we just Support new Clients we should change this :

  [...]
  HostKey /etc/ssh/ssh_host_rsa_key
  HostKey /etc/ssh/ssh_host_ed25519_key
  [...]

   OpenSSH Security 

  KexAlgorithms 
curve25519-sha...@libssh.org,diffie-hellman-group-exchange-sha256
  Ciphers 
chacha20-poly1...@openssh.com,aes256-...@openssh.com,aes128-...@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
  MACs 
hmac-sha2-512-...@openssh.com,hmac-sha2-256-...@openssh.com,hmac-ripemd160-...@openssh.com,umac-128-...@openssh.com,hmac-sha2-512,hmac-sha2-256,hmac-ripemd160,umac-...@openssh.com

  For more Information about my report go here:

  https://github.com/scaleway/image-ubuntu/pull/35

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1499392/+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 1503330] [NEW] New upstream bugfix release 1.1.4 (LXC MRE)

2015-10-06 Thread Stéphane Graber
Public bug reported:

We have released LXC 1.1.4 upstream:
https://linuxcontainers.org/lxc/news

This will be the first and last upstream bugfix release to hit vivid.
The upstream changes are detailed at the URL above.

The MRE was reviewed by Martin Pitt here:
https://lists.ubuntu.com/archives/technical-board/2014-April/001869.html

As for testing, this version went through both automated testing (all
the tests present in lxc-tests + the python3 API tests) as well as
manual testing done by myself, LXC contributors and LXC users who've
been building the git stable branch for a while now.

Until now, vivid was on a patched version of 1.1.2, basically 1.1.2 +
security updates. LXC 1.1.4 contains all those same security updates, a
bunch more bugfixes (160 or so when combining 1.1.3 and 1.1.4 together).
This also makes the LXC in both vivid and wily to be identical,
simplifying maintenance until vivid goes EOL.

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

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

Title:
  New upstream bugfix release 1.1.4 (LXC MRE)

Status in lxc package in Ubuntu:
  New

Bug description:
  We have released LXC 1.1.4 upstream:
  https://linuxcontainers.org/lxc/news

  This will be the first and last upstream bugfix release to hit vivid.
  The upstream changes are detailed at the URL above.

  The MRE was reviewed by Martin Pitt here:
  https://lists.ubuntu.com/archives/technical-
  board/2014-April/001869.html

  As for testing, this version went through both automated testing (all
  the tests present in lxc-tests + the python3 API tests) as well as
  manual testing done by myself, LXC contributors and LXC users who've
  been building the git stable branch for a while now.

  Until now, vivid was on a patched version of 1.1.2, basically 1.1.2 +
  security updates. LXC 1.1.4 contains all those same security updates,
  a bunch more bugfixes (160 or so when combining 1.1.3 and 1.1.4
  together). This also makes the LXC in both vivid and wily to be
  identical, simplifying maintenance until vivid goes EOL.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1503330/+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 1489037] Re: Change default alarm sound to "Alarm clock.ogg"

2015-10-06 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

** Changed in: canonical-devices-system-image
   Status: New => In Progress

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Alejandro J. Cura (alecu)

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

Title:
  Change default alarm sound to "Alarm clock.ogg"

Status in Canonical System Image:
  In Progress
Status in indicator-datetime package in Ubuntu:
  In Progress

Bug description:
  With OTA-6 (as per bug 1354370), the default alarm sound has been
  changed from "Suru arpeggio.ogg" to "Alarm clock.ogg". Indicator-
  datetime will have to set this as default on its end.

  Note: Clock App will set "Alarm clock.ogg" as the default alarm sound
  for new alarms created by the user starting with clock app v3.5.362.
  This bug is to ensure that the fallback alarm played by indicator-
  datetime is also "Alarm clock.ogg" (which is used when the user sets
  an invalid alarm tone).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1489037/+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 1482808] Re: timedatectl status prints old timezone

2015-10-06 Thread Bryan Quigley
This has been fixed in Ubuntu 15.10 (at least).

** Changed in: systemd (Ubuntu)
   Status: New => Fix Released

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

Title:
  timedatectl status prints old timezone

Status in systemd package in Ubuntu:
  Fix Released

Bug description:
  # lsb_release -rd
  Description:  Ubuntu 14.04.3 LTS
  Release:  14.04

  # apt-cache policy systemd-services
  systemd-services:
Installed: 204-5ubuntu20.13
Candidate: 204-5ubuntu20.13
Version table:
   *** 204-5ubuntu20.13 0
  500 http://archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 
Packages
  100 /var/lib/dpkg/status

  
  # timedatectl status
Local time: Sat 2015-08-08 01:09:36 UTC
Universal time: Sat 2015-08-08 01:09:36 UTC
  Timezone: Etc/UTC (UTC, +)

  # echo 'Europe/Moscow' >/etc/timezone
  # dpkg-reconfigure -f noninteractive tzdata

  Current default time zone: 'Europe/Moscow'

  # timedatectl status
Local time: Sat 2015-08-08 04:10:58 MSK
Universal time: Sat 2015-08-08 01:10:58 UTC
  RTC time: Sat 2015-08-08 01:10:57
  Timezone: Etc/UTC (MSK, +0300)

  # cat /etc/timezone
  Europe/Moscow

  Should be "Timezone: Europe/Moscow (MSK, +0300)"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1482808/+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 1450396] Re: Gigabyte P35-DS3: does not stay suspended with default "ug" wake-on-lan setting

2015-10-06 Thread Jan Rathmann
Ok, I made a resume trace with my workaround deactivated on Kernel
4.3-rc4, while the bug (= waking up automatically) appeared.

I have attached two dmesg files: The first one contains the output
directly after resume. The second one contains the output directly after
the next reboot. I'm not sure which one is more useful in my case.

Kind regards,
Jan

** Attachment added: "Output of dmesg directly after resume"
   
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1450396/+attachment/4486123/+files/dmesg-directly-after-resume.txt

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

Title:
  Gigabyte P35-DS3: does not stay suspended with default "ug" wake-on-
  lan setting

Status in linux package in Ubuntu:
  Incomplete
Status in systemd package in Ubuntu:
  Triaged

Bug description:
  === Update: This bug was reported from BIOS version F13 of my board,
  in the meantime I upgraded to the most recent version F14, but this
  had no impact on the bug. ===

  Hello,

  using Suspend-to-RAM on my system has stopped working reliably on
  Vivid when booting with Systemd. When I try to suspend my PC the
  following happens:

  - PC turns off
  - PC unwantedly wakes up (turns on) by itself again. This time span until it 
turns on again can reach from a second (almost immediately) until two or three 
minutes.
  - In a few cases (<25%), the PC stays suspended properly.

  A way to workaround this problem is to boot my PC with Upstart instead
  of Systemd, then this problem never happens (and has never happened in
  any of the previous Ubuntu versions since 2008). Thus it seems to be a
  bug somehow related to Systemd.

  Other steps I have tried to solve the problem (without any success):

  - Checking BIOS settings, all options are set that way that the PC should 
never wake up by any event other than pressing the power button.
  - Checking by running "cat /proc/acpi/wakeup | grep enabled" if any device 
could cause wake up events. This lists my USB controller, but deactivating it 
(with commands like "echo USB0 > /proc/acpi/wakeup") had no success on the 
problem. Also suspend while running Upstart works fine despite the USB 
controller listed as "enabled".

  In the system logs I could see no hint what causes the undesired wake-
  ups.

  Allthough there is one factor which seems to have a certain influence:
  If I close programs like Pidgin, Skype or Firefox that cause
  continuous network traffic, the chance is higher that my PC will stay
  suspened (while runinng Systemd).

  Kind regards,
  Jan

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: systemd 219-7ubuntu3
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  Uname: Linux 3.19.0-15-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Apr 30 11:24:46 2015
  InstallationDate: Installed on 2015-04-16 (13 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Beta amd64 (20150415)
  MachineType: Gigabyte Technology Co., Ltd. P35-DS3
  ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-3.19.0-15-generic 
root=/dev/mapper/internal--ssd-root ro rootflags=subvol=@ quiet splash
  SourcePackage: systemd
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/10/2008
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F13
  dmi.board.name: P35-DS3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF13:bd07/10/2008:svnGigabyteTechnologyCo.,Ltd.:pnP35-DS3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP35-DS3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P35-DS3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450396/+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 1503332] [NEW] Blank page when access to local URL (file://…) is denied

2015-10-06 Thread Olivier Tilloy
Public bug reported:

Since version 0.23+15.10.20151005-0ubuntu1, webbrowser-app is running under 
apparmor confinement.
This means that access to the local filesystem is denied (file://… URLs). There 
is no user feedback when that happens other than a blank page, which is not 
really great UX. A user-friendly error message to inform that browsing the 
local filesystem is restricted would be better.

** Affects: ubuntu-ux
 Importance: Undecided
 Status: New

** Affects: webbrowser-app (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: ubuntu-ux
   Importance: Undecided
   Status: New

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

Title:
  Blank page when access to local URL (file://…) is denied

Status in Ubuntu UX:
  New
Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  Since version 0.23+15.10.20151005-0ubuntu1, webbrowser-app is running under 
apparmor confinement.
  This means that access to the local filesystem is denied (file://… URLs). 
There is no user feedback when that happens other than a blank page, which is 
not really great UX. A user-friendly error message to inform that browsing the 
local filesystem is restricted would be better.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1503332/+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 1503332] Re: Blank page when access to local URL (file://…) is denied

2015-10-06 Thread Olivier Tilloy
I had a quick look at how we can detect that access was denied, and it
seems that the only difference with a normal load sequence (load
started, load committed, load succeeded) is that the HTTP status code is
always 0 for all events in the sequence.

A "load succeeded" event with an HTTP status code of 0 might be enough
to indicate that access was denied, need to double check.

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

Title:
  Blank page when access to local URL (file://…) is denied

Status in Ubuntu UX:
  New
Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  Since version 0.23+15.10.20151005-0ubuntu1, webbrowser-app is running under 
apparmor confinement.
  This means that access to the local filesystem is denied (file://… URLs). 
There is no user feedback when that happens other than a blank page, which is 
not really great UX. A user-friendly error message to inform that browsing the 
local filesystem is restricted would be better.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1503332/+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 1450396] Re: Gigabyte P35-DS3: does not stay suspended with default "ug" wake-on-lan setting

2015-10-06 Thread Jan Rathmann
** Attachment added: "Output of dmesg after next reboot"
   
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1450396/+attachment/4486124/+files/dmesg-after-next-reboot.txt

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

Title:
  Gigabyte P35-DS3: does not stay suspended with default "ug" wake-on-
  lan setting

Status in linux package in Ubuntu:
  Incomplete
Status in systemd package in Ubuntu:
  Triaged

Bug description:
  === Update: This bug was reported from BIOS version F13 of my board,
  in the meantime I upgraded to the most recent version F14, but this
  had no impact on the bug. ===

  Hello,

  using Suspend-to-RAM on my system has stopped working reliably on
  Vivid when booting with Systemd. When I try to suspend my PC the
  following happens:

  - PC turns off
  - PC unwantedly wakes up (turns on) by itself again. This time span until it 
turns on again can reach from a second (almost immediately) until two or three 
minutes.
  - In a few cases (<25%), the PC stays suspended properly.

  A way to workaround this problem is to boot my PC with Upstart instead
  of Systemd, then this problem never happens (and has never happened in
  any of the previous Ubuntu versions since 2008). Thus it seems to be a
  bug somehow related to Systemd.

  Other steps I have tried to solve the problem (without any success):

  - Checking BIOS settings, all options are set that way that the PC should 
never wake up by any event other than pressing the power button.
  - Checking by running "cat /proc/acpi/wakeup | grep enabled" if any device 
could cause wake up events. This lists my USB controller, but deactivating it 
(with commands like "echo USB0 > /proc/acpi/wakeup") had no success on the 
problem. Also suspend while running Upstart works fine despite the USB 
controller listed as "enabled".

  In the system logs I could see no hint what causes the undesired wake-
  ups.

  Allthough there is one factor which seems to have a certain influence:
  If I close programs like Pidgin, Skype or Firefox that cause
  continuous network traffic, the chance is higher that my PC will stay
  suspened (while runinng Systemd).

  Kind regards,
  Jan

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: systemd 219-7ubuntu3
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  Uname: Linux 3.19.0-15-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Apr 30 11:24:46 2015
  InstallationDate: Installed on 2015-04-16 (13 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Beta amd64 (20150415)
  MachineType: Gigabyte Technology Co., Ltd. P35-DS3
  ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-3.19.0-15-generic 
root=/dev/mapper/internal--ssd-root ro rootflags=subvol=@ quiet splash
  SourcePackage: systemd
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/10/2008
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F13
  dmi.board.name: P35-DS3
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF13:bd07/10/2008:svnGigabyteTechnologyCo.,Ltd.:pnP35-DS3:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnP35-DS3:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: P35-DS3
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1450396/+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 1366209] Re: Returned to the greeter screen when logging in.

2015-10-06 Thread Gunnar Hjalmarsson
Sorry to hear that, Abby - your installation seems to be in a bad shape.
You probably need some support on how to fix your Ubuntu installation,
and since this is a bug report, it's not the right place for doing that.
We haven't even confirmed yet that there is a bug.

I would suggest that you seek help at e.g. http://askubuntu.com/

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

Title:
  Returned to the greeter screen when logging in.

Status in lightdm package in Ubuntu:
  Incomplete

Bug description:
  If I log in as Guest or root, I can get into the account.  However, if
  I use my normal user account, I just get returned to the login screen.
  If I use gdm as my desktop manager, I can get to my user account.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: lightdm 1.10.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-35.62-generic 3.13.11.6
  Uname: Linux 3.13.0-35-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.3
  Architecture: amd64
  Date: Fri Sep  5 17:49:46 2014
  InstallationDate: Installed on 2014-08-19 (16 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  ProcEnviron:
   TERM=linux
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: lightdm
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1366209/+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 1503343] [NEW] had a bunch of probs not sure what from

2015-10-06 Thread trevor
Public bug reported:

had a previous virus removed and poof not sure whats missing now

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 3.19.0-30.34~14.04.1-generic 3.19.8-ckt6
Uname: Linux 3.19.0-30-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.15
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Tue Oct  6 07:49:35 2015
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 NVIDIA Corporation GF100 [GeForce GTX 470] [10de:06cd] (rev a3) (prog-if 00 
[VGA controller])
   Subsystem: NVIDIA Corporation Device [10de:079f]
InstallationDate: Installed on 2015-12-01 (-55 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 002: ID 046d:c318 Logitech, Inc. Illuminated Keyboard
 Bus 002 Device 003: ID 1532:0016 Razer USA, Ltd DeathAdder Mouse
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: XFX XFX nForce 790i Ultra 3-Way SLI
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-30-generic 
root=UUID=2670867f-b36e-445b-85e7-9f56874fd599 ro vesafb.invalid=1 
plymouth:debug nopat drm.debug=0xe
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/12/2008
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 6.00 PG
dmi.board.name: XFX nForce 790i Ultra 3-Way SLI
dmi.board.vendor: XFX
dmi.board.version: 1
dmi.chassis.type: 3
dmi.chassis.vendor: XFX
dmi.chassis.version: XFX nForce 790i Ultra 3-Way SLI
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd12/12/2008:svnXFX:pnXFXnForce790iUltra3-WaySLI:pvr1:rvnXFX:rnXFXnForce790iUltra3-WaySLI:rvr1:cvnXFX:ct3:cvrXFXnForce790iUltra3-WaySLI:
dmi.product.name: XFX nForce 790i Ultra 3-Way SLI
dmi.product.version: 1
dmi.sys.vendor: XFX
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri N/A
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Tue Oct  6 07:27:06 2015
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputRazer Razer DeathAdder MOUSE, id 8
 inputLogitech Logitech Illuminated Keyboard KEYBOARD, id 9
 inputLogitech Logitech Illuminated Keyboard KEYBOARD, id 10
xserver.errors:
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.17.1-0ubuntu3~trusty1
xserver.video_driver: nouveau

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


** Tags: amd64 apport-bug compiz-0.9 trusty ubuntu

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

Title:
  had a bunch of probs not sure what from

Status in xorg package in Ubuntu:
  New

Bug description:
  had a previous virus removed and poof not sure whats missing now

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.19.0-30.34~14.04.1-generic 3.19.8-ckt6
  Uname: Linux 3.19.0-30-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.15
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Tue Oct  6 07:49:35 2015
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   NVIDIA Corporation GF100 [GeForce GTX 470] [10de:06cd] (rev a3) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:079f]
  InstallationDate: Installed on 2015-12-01 (-55 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 002: ID 046d:c318 Logitech, Inc. Illu

[Touch-packages] [Bug 1499711] Re: System stopped adjusting display settings when a new display is plugged in

2015-10-06 Thread Franck
Tested with the dock by plugging a display directly on the VGA port:
nothing happens, ie I have to go into settings to have the external
display recognized.

** Summary changed:

- System stopped adjusting display settings when docking/undocking
+ System stopped adjusting display settings when a new display is plugged in

** Description changed:

  Since I upgraded to wily (beta), my laptop stopped adjusting display
  settings when I dock or undock it (with an external display attached to
- the docking station).
+ the docking station), or even when I attached a new display directly on
+ the laptop.
  
- To get the setting applied, I have to open the System settings
- application. No need to change anything, nor to choose Display settings,
- simply opening the the general settings app makes it work.
+ Expected result: when I dock my laptop, the system recognizes the new
+ configuration and applies the corresponding display settings
+ 
+ Actual result: nothing happens
+ For example, when docked, I have the laptop main display off, and the 
external monitor on. When I undock, the main display stays off, until I... (see 
below)
+ 
+ To get the setting applied, I have to either:
+ - open the System settings application. No need to change anything, nor to 
choose Display settings, simply opening the general settings app makes it work.
+ - or: switch to console and back to X (ctrl+alt+F6 / Ctrl+F7)
  
  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: ubuntu-settings 15.10.3
  ProcVersionSignature: Ubuntu 4.2.0-11.13-lowlatency 4.2.1
  Uname: Linux 4.2.0-11-lowlatency x86_64
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Sep 25 14:23:55 2015
  InstallationDate: Installed on 2014-12-13 (285 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  PackageArchitecture: all
  SourcePackage: ubuntu-settings
  UpgradeStatus: Upgraded to wily on 2015-09-21 (4 days ago)

** Tags added: regression-release

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

Title:
  System stopped adjusting display settings when a new display is
  plugged in

Status in ubuntu-settings package in Ubuntu:
  New

Bug description:
  Since I upgraded to wily (beta), my laptop stopped adjusting display
  settings when I dock or undock it (with an external display attached
  to the docking station), or even when I attached a new display
  directly on the laptop.

  Expected result: when I dock my laptop, the system recognizes the new
  configuration and applies the corresponding display settings

  Actual result: nothing happens
  For example, when docked, I have the laptop main display off, and the 
external monitor on. When I undock, the main display stays off, until I... (see 
below)

  To get the setting applied, I have to either:
  - open the System settings application. No need to change anything, nor to 
choose Display settings, simply opening the general settings app makes it work.
  - or: switch to console and back to X (ctrl+alt+F6 / Ctrl+F7)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: ubuntu-settings 15.10.3
  ProcVersionSignature: Ubuntu 4.2.0-11.13-lowlatency 4.2.1
  Uname: Linux 4.2.0-11-lowlatency x86_64
  ApportVersion: 2.18.1-0ubuntu1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Sep 25 14:23:55 2015
  InstallationDate: Installed on 2014-12-13 (285 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Release amd64 (20141022.1)
  PackageArchitecture: all
  SourcePackage: ubuntu-settings
  UpgradeStatus: Upgraded to wily on 2015-09-21 (4 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-settings/+bug/1499711/+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 1499311] DpkgLog.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "DpkgLog.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486155/+files/DpkgLog.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
  version.xs

[Touch-packages] [Bug 1499311] Re: scroll wheel locks computer up.

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Tags added: apport-collected compiz-0.9 ubuntu wily

** Description changed:

  At random times the scroll wheel will cause the computer to freeze/lock
  up. For a moment there is a change in the way the desktop looks, but I
  cannot tell what it was that changed. Computer will not respond.
  Harddrive seems to be quiet.  I can move the mouse pointer around but it
  will then disappear.
  
  It has crashed in firefox and also blender 2.76rc1.
  
  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
+ --- 
+ .tmp.unity.support.test.0:
+  
+ ApportVersion: 2.19-0ubuntu1
+ Architecture: amd64
+ CasperVersion: 1.365
+ CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
+ CompositorRunning: compiz
+ CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
+ CompositorUnredirectFSW: true
+ CurrentDesktop: Unity
+ DistUpgraded: Fresh install
+ DistroCodename: wily
+ DistroRelease: Ubuntu 15.10
+ DistroVariant: ubuntu
+ GraphicsCard:
+  NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
+Subsystem: NVIDIA Corporation Device [10de:055f]
+  NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
+Subsystem: NVIDIA Corporation Device [10de:055f]
+ LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
+ MachineType: Hewlett-Packard HP xw8600 Workstation
+ Package: xorg 1:7.7+7ubuntu4
+ PackageArchitecture: amd64
+ ProcEnviron:
+  TERM=xterm
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
+ ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
+ Tags:  wily ubuntu compiz-0.9
+ UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
+ Uname: Linux 4.2.0-14-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 09/20/2012
+ dmi.bios.vendor: Hewlett-Packard
+ dmi.bios.version: 786F5 v01.46
+ dmi.board.name: 0A98h
+ dmi.board.vendor: Hewlett-Packard
+ dmi.board.version: NA
+ dmi.chassis.asset.tag: 2UA8450L0V
+ dmi.chassis.type: 6
+ dmi.chassis.vendor: Hewlett-Packard
+ dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
+ dmi.product.name: HP xw8600 Workstation
+ dmi.sys.vendor: Hewlett-Packard
+ version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
+ version.ia32-libs: ia32-libs N/A
+ version.libdrm2: libdrm2 2.4.64-1
+ version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
+ version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
+ version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
+ version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
+ version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
+ version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
+ version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
+ version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.11-1ubuntu3
+ xserver.bootTime: Tue Oct  6 15:51:30 2015
+ xserver.configfile: default
+ xserver.errors:
+  Failed to load module "nvidia" (module does not exist, 0)
+  Failed to load module "nvidia" (module does not exist, 0)
+  NOUVEAU(G0): 

[Touch-packages] [Bug 1499311] GconfCompiz.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "GconfCompiz.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486156/+files/GconfCompiz.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
 

[Touch-packages] [Bug 1503348] Re: Dropdown IndicatorEntry's in unity panel service aren't free'd

2015-10-06 Thread Launchpad Bug Tracker
** Branch linked: lp:~3v1n0/unity/ups-delete-dropdown-entries

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

Title:
  Dropdown IndicatorEntry's in unity panel service aren't free'd

Status in Unity:
  In Progress
Status in unity package in Ubuntu:
  In Progress

Bug description:
  We create some "fake" IndicatorEntry's inside unity panel service, but
  we don't free them correctly.

To manage notifications about this bug go to:
https://bugs.launchpad.net/unity/+bug/1503348/+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 1499311] JournalErrors.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "JournalErrors.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486157/+files/JournalErrors.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubu

[Touch-packages] [Bug 1499311] Dependencies.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486154/+files/Dependencies.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
 

[Touch-packages] [Bug 1499311] UnitySupportTest.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "UnitySupportTest.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486166/+files/UnitySupportTest.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808

[Touch-packages] [Bug 1499311] XorgLogOld.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "XorgLogOld.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486168/+files/XorgLogOld.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
 

[Touch-packages] [Bug 1499311] Lspci.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1499311/+attachment/4486160/+files/Lspci.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
  version.xs

[Touch-packages] [Bug 1499311] ProcModules.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486164/+files/ProcModules.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
 

[Touch-packages] [Bug 1499311] XorgLog.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "XorgLog.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486167/+files/XorgLog.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubuntu3
  version.xs

[Touch-packages] [Bug 1499311] xserver.devices.txt

2015-10-06 Thread Christopher Wesley Joyner
apport information

** Attachment added: "xserver.devices.txt"
   
https://bugs.launchpad.net/bugs/1499311/+attachment/4486171/+files/xserver.devices.txt

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

Title:
  scroll wheel locks computer up.

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  At random times the scroll wheel will cause the computer to
  freeze/lock up. For a moment there is a change in the way the desktop
  looks, but I cannot tell what it was that changed. Computer will not
  respond. Harddrive seems to be quiet.  I can move the mouse pointer
  around but it will then disappear.

  It has crashed in firefox and also blender 2.76rc1.

  --xinput output--
  Virtual core pointer  id=2[master pointer  (3)]
 Virtual core XTEST pointerid=4[slave  pointer  (2)]
 Turcom TS-6580id=10   [slave  pointer  (2)]
 Logitech Lenovo USB Optical Mouse id=11   [slave  pointer  (2)]
 Virtual core keyboard id=3[master keyboard (2)]
 Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
 Power Button  id=6[slave  keyboard (3)]
  Power Button  id=7[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=8[slave  keyboard (3)]
  Chicony Saitek Eclipse II Keyboardid=9[slave  keyboard (3)]
  HP WMI hotkeysid=12   [slave  keyboard (3)]

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-49.65~14.04.1-generic 3.16.7-ckt15
  Uname: Linux 3.16.0-49-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Thu Sep 24 06:55:37 2015
  InstallationDate: Installed on 2015-09-16 (7 days ago)
  InstallationMedia: Kubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150219.1)
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.19-0ubuntu1
  Architecture: amd64
  CasperVersion: 1.365
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  DistUpgraded: Fresh install
  DistroCodename: wily
  DistroRelease: Ubuntu 15.10
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
   NVIDIA Corporation G92GL [Quadro FX 3700] [10de:061a] (rev a2) (prog-if 00 
[VGA controller])
 Subsystem: NVIDIA Corporation Device [10de:055f]
  LiveMediaBuild: Ubuntu 15.10 "Wily Werewolf" - Alpha amd64 (20151006)
  MachineType: Hewlett-Packard HP xw8600 Workstation
  Package: xorg 1:7.7+7ubuntu4
  PackageArchitecture: amd64
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: file=/cdrom/preseed/username.seed boot=casper 
initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  ProcVersionSignature: Ubuntu 4.2.0-14.16-generic 4.2.2
  Tags:  wily ubuntu compiz-0.9
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 4.2.0-14-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/20/2012
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: 786F5 v01.46
  dmi.board.name: 0A98h
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: NA
  dmi.chassis.asset.tag: 2UA8450L0V
  dmi.chassis.type: 6
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvr786F5v01.46:bd09/20/2012:svnHewlett-Packard:pnHPxw8600Workstation:pvr:rvnHewlett-Packard:rn0A98h:rvrNA:cvnHewlett-Packard:ct6:cvr:
  dmi.product.name: HP xw8600 Workstation
  dmi.sys.vendor: Hewlett-Packard
  version.compiz: compiz 1:0.9.12.2+15.10.20151002-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.0.0-1ubuntu1
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 11.0.0-1ubuntu1
  version.xserver-xorg-core: xserver-xorg-core 2:1.17.2-1ubuntu9
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:7.5.0+git20150819-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20150808-0ubu

<    1   2   3   4   >