[Desktop-packages] [Bug 1261726] [NEW] libupower-glib-dev not Multiarch:same

2013-12-17 Thread Jani Monoses
Public bug reported:

xnox janimo`: no =) that failure is because libupower-glib-dev is not
Multi-arch:same, thus it's not installable for cross-compilation
purposes

Context: trying to cross-build powerd
http://paste.ubuntu.com/6588448/

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


** Tags: multiarch

** Tags added: multiarch

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

Title:
  libupower-glib-dev not Multiarch:same

Status in “upower” package in Ubuntu:
  New

Bug description:
  xnox janimo`: no =) that failure is because libupower-glib-dev is
  not Multi-arch:same, thus it's not installable for cross-compilation
  purposes

  Context: trying to cross-build powerd
  http://paste.ubuntu.com/6588448/

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

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


[Desktop-packages] [Bug 1046776] Re: Publish to Picasa Web gives login failure

2013-03-24 Thread Jani Monoses
This is present in raring.

** Changed in: shotwell (Ubuntu)
   Status: Fix Released = Confirmed

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

Title:
  Publish to Picasa Web gives login failure

Status in “shotwell” package in Ubuntu:
  Confirmed

Bug description:
  Choosing a picture and trying to Publish it to Picasa Web Album
  returns login failure:

  Service https://www.googleapis.com/oauth2/v1/userinfo returned HTTP
  status code 401 Unauthorized

  Publishing to flickr works.
  Empathy chat via google(talk) works.

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

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


[Desktop-packages] [Bug 1123930] Re: memleak in plugins/orientation/gsd-orientation-manager.c

2013-02-13 Thread Jani Monoses
Thanks for the catch, I need to remember why I did not calculate the
paths only once, as there should be no need to build the same paths in
each timer invocation.

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

Title:
  memleak in plugins/orientation/gsd-orientation-manager.c

Status in Ubuntu on the Nexus 7:
  New
Status in “gnome-settings-daemon” package in Ubuntu:
  New
Status in “gnome-settings-daemon” source package in Raring:
  New

Bug description:
  in plugins/orientation/gsd-orientation-manager.c mpu_timer(), the code
  is leaking g_build_filename() calls. The implication of this leak is
  severe since it's called very often. The graph attached show evolution
  of memory usage of g-s-d over a period of 10h or so and g-s-d leaked
  9MB during that time.

  a proposed patch:
  --- gsd-orientation-manager.c.orig2013-02-12 12:31:34.0 +0100
  +++ gsd-orientation-manager.c 2013-02-13 10:35:19.496823747 +0100
  @@ -438,13 +438,19 @@
   static gboolean mpu_timer(GsdOrientationManager *manager) {
int x, y;
static gboolean first = TRUE;
  + gchar *filename_x = NULL;
  + gchar *filename_y = NULL;
OrientationUp orientation = manager-priv-prev_orientation;
   
   if (manager-priv-xrandr_proxy == NULL)
   return TRUE;
   
  - x = read_sysfs_attr_as_int(g_build_filename(manager-priv-sysfs_path, 
in_accel_x_raw, NULL));
  - y = read_sysfs_attr_as_int(g_build_filename(manager-priv-sysfs_path, 
in_accel_y_raw, NULL));
  + filename_x = g_build_filename(manager-priv-sysfs_path, 
in_accel_x_raw, NULL);
  + filename_y = g_build_filename(manager-priv-sysfs_path, 
in_accel_y_raw, NULL);
  + x = read_sysfs_attr_as_int(filename_x);
  + y = read_sysfs_attr_as_int(filename_y);
  + g_free(filename_x);
  + g_free(filename_y);
   
if (x  MPU_THRESHOLD)
orientation = ORIENTATION_NORMAL;

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: gnome-settings-daemon 3.6.4-0ubuntu5
  ProcVersionSignature: Ubuntu 3.8.0-5.10-generic 3.8.0-rc6
  Uname: Linux 3.8.0-5-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Wed Feb 13 10:36:35 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: Upgraded to raring on 2012-01-31 (378 days ago)

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

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


[Desktop-packages] [Bug 1123930] Re: memleak in plugins/orientation/gsd-orientation-manager.c

2013-02-13 Thread Jani Monoses
** Patch added: Precalculate the two sysfs paths
   
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1123930/+attachment/3526378/+files/gsd-debdiff.diff

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

Title:
  memleak in plugins/orientation/gsd-orientation-manager.c

Status in Ubuntu on the Nexus 7:
  New
Status in “gnome-settings-daemon” package in Ubuntu:
  New
Status in “gnome-settings-daemon” source package in Raring:
  New

Bug description:
  in plugins/orientation/gsd-orientation-manager.c mpu_timer(), the code
  is leaking g_build_filename() calls. The implication of this leak is
  severe since it's called very often. The graph attached show evolution
  of memory usage of g-s-d over a period of 10h or so and g-s-d leaked
  9MB during that time.

  a proposed patch:
  --- gsd-orientation-manager.c.orig2013-02-12 12:31:34.0 +0100
  +++ gsd-orientation-manager.c 2013-02-13 10:35:19.496823747 +0100
  @@ -438,13 +438,19 @@
   static gboolean mpu_timer(GsdOrientationManager *manager) {
int x, y;
static gboolean first = TRUE;
  + gchar *filename_x = NULL;
  + gchar *filename_y = NULL;
OrientationUp orientation = manager-priv-prev_orientation;
   
   if (manager-priv-xrandr_proxy == NULL)
   return TRUE;
   
  - x = read_sysfs_attr_as_int(g_build_filename(manager-priv-sysfs_path, 
in_accel_x_raw, NULL));
  - y = read_sysfs_attr_as_int(g_build_filename(manager-priv-sysfs_path, 
in_accel_y_raw, NULL));
  + filename_x = g_build_filename(manager-priv-sysfs_path, 
in_accel_x_raw, NULL);
  + filename_y = g_build_filename(manager-priv-sysfs_path, 
in_accel_y_raw, NULL);
  + x = read_sysfs_attr_as_int(filename_x);
  + y = read_sysfs_attr_as_int(filename_y);
  + g_free(filename_x);
  + g_free(filename_y);
   
if (x  MPU_THRESHOLD)
orientation = ORIENTATION_NORMAL;

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: gnome-settings-daemon 3.6.4-0ubuntu5
  ProcVersionSignature: Ubuntu 3.8.0-5.10-generic 3.8.0-rc6
  Uname: Linux 3.8.0-5-generic x86_64
  ApportVersion: 2.8-0ubuntu4
  Architecture: amd64
  Date: Wed Feb 13 10:36:35 2013
  MarkForUpload: True
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: gnome-settings-daemon
  UpgradeStatus: Upgraded to raring on 2012-01-31 (378 days ago)

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

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


[Desktop-packages] [Bug 1076567] Re: When in portrait mode, touches don't cause click actions, just drags

2013-01-24 Thread Jani Monoses
** Changed in: ubuntu-nexus7
   Status: Fix Committed = Fix Released

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

Title:
  When in portrait mode, touches don't cause click actions, just drags

Status in Ubuntu on the Nexus 7:
  Fix Released
Status in “xorg-server” package in Ubuntu:
  Fix Released

Bug description:
  (Possibly this is related to / a dupe of bug #1075415)

  When the device is rotated to portrait mode, button and link clicking
  do not work.  Rotating back to landscape mode causes it to resume
  working.  Click and drag works fine.  Using an external mouse works
  ok, as do other non-touch input solutions.

  [Test case]
  1.  xrotate portrait
  2.  touch and drag on background
  3.  quickly touch and release an icon on the launcher
  4.  firefox www.ubuntu.com
  5.  touch on any hyperlink

  Expected behavior:  Steps 3 should launch the app, step 5 should navigate to 
the web page
  Actual: Steps 3 and 5 have no effect

  [Discussion]
  I had initially thought the input was being mis-calibrated when rotated (e.g. 
bad matrix transform?) but that proved not to be the case.  As long as you're 
just doing drags it seems to work (although it's a big glitchy), it just never 
left-clicks.

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

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


[Desktop-packages] [Bug 1031449] Re: rhythmbox leaking memory

2013-01-24 Thread Jani Monoses
** Changed in: ubuntu-nexus7
   Status: New = Invalid

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

Title:
  rhythmbox leaking memory

Status in The Rhythmbox Music Management Application:
  New
Status in Ubuntu on the Nexus 7:
  Invalid
Status in “rhythmbox” package in Ubuntu:
  Confirmed
Status in “rhythmbox” source package in Quantal:
  Confirmed

Bug description:
  Memory usage : 10.9% and constantly increasing (that's over 400 MB on
  my system with 4 GB)

  Playing a playlist of MP3 files.

  This can't be normal, right?

  -Lev

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: rhythmbox 2.96-0ubuntu4.1
  ProcVersionSignature: Ubuntu 3.2.0-27.43-generic 3.2.21
  Uname: Linux 3.2.0-27-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu11
  Architecture: amd64
  Date: Tue Jul 31 14:07:07 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  ProcEnviron:
   LANGUAGE=en_CA:en
   TERM=xterm
   PATH=(custom, no user)
   LANG=en_CA.UTF-8
   SHELL=/bin/bash
  SourcePackage: rhythmbox
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Desktop-packages] [Bug 1068442] Re: physical rotation doesn't rotate screen and input automatically

2013-01-18 Thread Jani Monoses
The kernel already had this just was not entirely obvious.
https://blueprints.launchpad.net/ubuntu/+spec/desktop-r-arm-input-sensor-drivers

So the remaining task is hooking up g-s-d instead of using a standalone
daemon as in the test app linked from the blueprint.

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

Title:
  physical rotation doesn't rotate screen and input automatically

Status in Ubuntu on the Nexus 7:
  Triaged
Status in “gnome-settings-daemon” package in Ubuntu:
  Triaged

Bug description:
  Once Bug# 1092952 is solved and we are able to listen for rotate
  events from the kernel, then we need to hook this signal in with the
  gnome-settings-daemon code that tracks rotation status and performs
  the xinput and xrandr rotation events.

  Bryce has written an xrotate script that maybe we could attach to the
  rotation events, but in theory we shouldn't need it.

  Bryce adds, Theoretically there should be code in gnome-settings-
  daemon (or gnome-desktop) which listens for xrandr events and rotates
  the input.  So when we have proper handling of the sensor we can hook
  that to the gtk events and let g-s-d rotate the input, and then
  xrotate simply becomes a debugging tool.

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

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


[Desktop-packages] [Bug 1098835] Re: Can't input password when login

2013-01-18 Thread Jani Monoses
I wonder if we should start onboard by default at that screen since the
user will need to enter a password if it is not in autologin mode.

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

Title:
  Can't input password when login

Status in Ubuntu on the Nexus 7:
  New
Status in “onboard” package in Ubuntu:
  Incomplete

Bug description:
  I set my account doesn't login automatically,when I start the Nexus
  7,I need to input account password,but the keyboard doesn't show up,so
  I can't input password when login.

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

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


[Desktop-packages] [Bug 1071922] Re: double tap does not open folders or files

2012-11-06 Thread Jani Monoses
As per the initial comment, and as of the latest image, thunar and mouse
settings both handle double tap fine.

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

Title:
  double tap does not open folders or files

Status in Ubuntu on the Nexus 7:
  Confirmed
Status in “nautilus” package in Ubuntu:
  Confirmed

Bug description:
  On the Nexus7 device double-tapping does not work in Nautilus. Even single 
taps are not always registered.
  In thunar navigating via double tap works fine.
  The mouse settings panel's double tap timeout test works fine.

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

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


[Desktop-packages] [Bug 1071922] [NEW] double tap does not open folders

2012-10-26 Thread Jani Monoses
Public bug reported:

On the Nexus7 device double-tapping does not work in Nautilus. Even single taps 
are not always registered.
In thunar navigating via double tap works fine.
The mouse settings panel's double tap timeout test works fine.

** Affects: ubuntu-nexus7
 Importance: Undecided
 Status: Confirmed

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


** Tags: mobile

** Tags added: mobile

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

** Changed in: ubuntu-nexus7
   Status: New = Confirmed

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

Title:
  double tap does not open folders

Status in Ubuntu on the Nexus 7:
  Confirmed
Status in “nautilus” package in Ubuntu:
  New

Bug description:
  On the Nexus7 device double-tapping does not work in Nautilus. Even single 
taps are not always registered.
  In thunar navigating via double tap works fine.
  The mouse settings panel's double tap timeout test works fine.

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-23 Thread Jani Monoses
finally succeeded after disabling base on armhf too.

** Changed in: libreoffice (Ubuntu Precise)
   Status: Confirmed = Fix Released

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Fix Released
Status in “libreoffice” source package in Precise:
  Fix Released

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-22 Thread Jani Monoses
The armhf build may be due to Base being enabled there (it is not on armel)
According to the Debian maintainer this should work around it

http://anonscm.debian.org/gitweb/?p=pkg-
openoffice/libreoffice.git;a=blobdiff;f=rules;h=231d8a4724e6dc9e3a5572956c884ff54fe656b9;hp=d6ecdb2e3b321227128279c50165932ae6d46606;hb=17df62d42032133099da5a6533af0867335d1d8c;hpb=6bb9680004e13ba50cdc9a1d863fbc821a1e3e55

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Confirmed
Status in “libreoffice” source package in Precise:
  Confirmed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-21 Thread Jani Monoses
FTBFS again much later at the install step.

** Changed in: libreoffice (Ubuntu Precise)
   Status: Fix Released = Confirmed

** Changed in: libreoffice (Ubuntu Precise)
 Assignee: Riku Voipio (riku-voipio) = Jani Monoses (jani)

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Confirmed
Status in “libreoffice” source package in Precise:
  Confirmed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-16 Thread Jani Monoses
latest iteration, passes bridge tests in libo master tree.
subject to cleanups and further testing though

** Patch added: latest patch
   
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/900636/+attachment/2744778/+files/libohf.diff

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Confirmed
Status in “libreoffice” source package in Precise:
  Confirmed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-16 Thread Jani Monoses
Diff agaist git master as of 3 days ago so it contains all 3 changesets,
should be appliable to the Ubuntu/Debian package.

** Patch added: patch with all changes
   
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/900636/+attachment/2745258/+files/libodeb.diff

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Confirmed
Status in “libreoffice” source package in Precise:
  Confirmed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-16 Thread Jani Monoses
Three commits in git master fix this

** Changed in: libreoffice (Ubuntu Precise)
   Status: Confirmed = Fix Committed

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Fix Committed
Status in “libreoffice” source package in Precise:
  Fix Committed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-15 Thread Jani Monoses
Updated patch agains master, parts of the previous one were commited in
upstream git.

** Patch added: vfp changes
   
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/900636/+attachment/2742838/+files/libohf.diff

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Confirmed
Status in “libreoffice” source package in Precise:
  Confirmed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-14 Thread Jani Monoses
Patch against git master, WIP. It still crashes in the bridge tests but it 
crashes a bit later.
Not yet for upstream commiting, still debugging it.

** Patch added: some progress
   
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/900636/+attachment/2738994/+files/libohf.diff

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Confirmed
Status in “libreoffice” source package in Precise:
  Confirmed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 900636] Re: libreoffice ftbfs on armhf

2012-02-08 Thread Jani Monoses
@bjoern-michaelsen: I am looking at the bridge code and will ask around
the libo channel once I have proper questions.

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

Title:
  libreoffice ftbfs on armhf

Status in “libreoffice” package in Ubuntu:
  Confirmed
Status in “libreoffice” source package in Precise:
  Confirmed

Bug description:
  in precise,

  /bin/bash: line 1: 11191 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'
  Retrying 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/testtools/source/bridgetest

  Making:all_bridgetest.dpslo
  cd ../../unxlngr.pro/lib  :  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 \
  -ro uno_services.rdb -ro uno_types.rdb \
  -s com.sun.star.test.bridge.BridgeTest -- \
  com.sun.star.test.bridge.CppTestObject
  /bin/bash: line 1: 11210 Segmentation fault  
LD_LIBRARY_PATH=/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
 
/build/buildd/libreoffice-3.4.4/libreoffice-build/build/libreoffice-3.4.3.2/solver/340/unxlngr.pro/bin/uno
 -ro uno_services.rdb -ro uno_types.rdb -s com.sun.star.test.bridge.BridgeTest 
-- com.sun.star.test.bridge.CppTestObject
  dmake:  Error code 139, while making 'runtest'

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

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


[Desktop-packages] [Bug 857299] Re: banshee window remain white on startup on pandaboard

2011-10-04 Thread Jani Monoses
Installing the pixbuf gtk theme (the lack of which also resulted in some
warnings) does not help either.

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

Title:
  banshee window remain white on startup on pandaboard

Status in “banshee” package in Ubuntu:
  Confirmed

Bug description:
  when i start banshee on pandaboard with an FS dist-upgraded this
  morning, banshee window is white. I can see the menu, i cannot close
  the app, i need to kill it.

  note that i don't know if it worked in the past as this is the first
  time i try.

  when i start from command line i get the attached error log.

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

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


[Desktop-packages] [Bug 379382] Re: gnome-screenshot (Alt-Printscreen) black/blanks out top of windows in multi monitor xinerama

2011-09-28 Thread Jani Monoses
Seems to be fixed in the oneiric 3.2 version.

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

Title:
  gnome-screenshot (Alt-Printscreen) black/blanks out top of windows in
  multi monitor xinerama

Status in gnome-utils - GNOME Desktop Utilities:
  Fix Released
Status in “gnome-utils” package in Ubuntu:
  In Progress

Bug description:
  I have Ubuntu 9.04 configured in a multi-monitor Xinerama setup of a
  centre monitor 1600x1200 and two smaller monitors 1280x1024 on either
  side i.e. different resolutions across the screens.

  In Ubuntu 9.04 gnome-screenshot now black/blanks-out the top 210
  pixels of any screenshot I take of an individual window (i.e. Alt-
  Printscreen) regardless of which monitor I take it on. The number of
  pixels blanked out seems dependent on the difference in the y-offset
  across the screens as configured in xorg.conf. Taking a screenshot of
  the whole desktop works properly. The problem did not occur at all in
  Ubuntu 8.10.

  Here's the relevant extract from my xorg.conf:
  Section ServerLayout
Identifier Layout0
Screen  0  ScreenCentre 1280 0
Screen  1  ScreenLeft 0 210
Screen  2  ScreenRight 2880 210
Option Xinerama On
  EndSection

  Note that the left and right monitors are slightly lower on my desk
  than the centre monitor so I've set their y-offsets in xorg.conf to
  210 pixels (from what otherwise should be 1200-1024=176 pixels) so
  that when I drag windows between monitors the widows appear at the
  same level.

  I'll attach a screenshot of the whole desktop to illustrate the xorg
  offsets, and screenshots of individual windows which illustrate the
  problem.

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-utils/+bug/379382/+subscriptions

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


[Desktop-packages] [Bug 696551] Re: LibreOffice - test and re-enable binfilter build on ARM

2011-08-31 Thread Jani Monoses
binfilter is being removed upstream, no point in having it enabled at
this point.

** Changed in: libreoffice (Ubuntu)
   Status: Confirmed = Won't Fix

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

Title:
  LibreOffice - test and re-enable binfilter build on ARM

Status in “libreoffice” package in Ubuntu:
  Won't Fix

Bug description:
  Test and re-enable binfilter build on ARM, not merged from OOo

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

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


[Desktop-packages] [Bug 576638] Re: Default spanish setting no longer works

2011-08-30 Thread Jani Monoses
Thanks, uploaded, in the moderation queue due to beta1 freeze.

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

Title:
  Default spanish setting no longer works

Status in “gnome-utils” package in Ubuntu:
  In Progress

Bug description:
  Binary package hint: gnome-utils

  es.dict.org is down for two years (per
  https://bugs.launchpad.net/bugs/183867), why is still available in
  default when it is clear that it does not work?

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

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