Bug#298994:

2020-07-30 Thread Adrian Lang



Bug#764403: primus-libs:amd64: libGL is too old with driconf/xdriinfo and nouveau

2014-10-08 Thread Adrian Lang
On Tue, 7 Oct 2014 23:24:12 -0700 Vincent Cheng vch...@debian.org wrote:
 By normal driver, do you mean the proprietary nvidia driver?

No, I mean intel driver with intel card.

 Does this error still persist if you try rebuilding primus?

Yes, I just rebuilt primus and primus-libs:amd64 and I still get the
same error.

Regards,
Adrian


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#764403: primus-libs:amd64: libGL is too old with driconf/xdriinfo and nouveau

2014-10-07 Thread Adrian Lang
Package: primus-libs
Version: 0~20131127-2
Severity: important

With linux 3.14-2 and xserver-xorg-video-nouveau 1:1.0.11-1, I get the following
errors with primus:

$ optirun -b primus xdriinfo
libGL is too old.
$ optirun -b primus driconf
libGL is too old.
$ primusrun driconf
libGL is too old.
$ primusrun xdriinfo
libGL is too old.

Using virtualgl or normal driver does not give these errors.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.14-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages primus-libs:amd64 depends on:
ii  libc6   2.19-11
ii  libgcc1 1:4.9.1-16
ii  libstdc++6  4.9.1-16
ii  libx11-62:1.6.2-3

primus-libs:amd64 recommends no packages.

primus-libs:amd64 suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#673606: Testable repo?

2014-04-28 Thread Adrian Lang
Hi,

is there anything testable for Netbeans 7.4 yet? The package's git repo
does not show any changes.

Regards,
Adrian


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#725130: RFP: chromedriver - standalone server which implements selenium WebDriver's wire protocol for Chromium

2014-02-12 Thread Adrian Lang
On 22.12.2013 14:35, Vincent Bernat wrote:

 Please, find attached a patch to add Chromium WebDriver in a dedicated
 package. The driver will be in /usr/lib/chromium/chromedriver2_server.

I updated your patch, since chromedriver2 is now called chromedriver[1].
It compiles fine with 31.0.1650.63-2, btw.

[1] https://codereview.chromium.org/24162008
From be5e7857609a18d7c823e1424943bd722cc1a733 Mon Sep 17 00:00:00 2001
From: Vincent Bernat ber...@debian.org
Date: Wed, 12 Feb 2014 09:43:31 +0100
Subject: [PATCH] Compile Chrome WebDriver to be used with Selenium. Closes:
 #725130.

---
 debian/changelog   |  6 ++
 debian/chromium-chromedriver.install   |  1 +
 debian/chromium.install|  3 ++-
 debian/control | 17 +
 debian/patches/chromedriver-revision.patch | 11 +++
 debian/patches/series  |  1 +
 debian/rules   |  1 +
 7 files changed, 39 insertions(+), 1 deletion(-)
 create mode 100644 debian/chromium-chromedriver.install
 create mode 100644 debian/patches/chromedriver-revision.patch

diff --git a/debian/changelog b/debian/changelog
index 7eaadf4..f69c765 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+chromium-browser (31.0.1650.63-2) UNRELEASED; urgency=low
+
+  * Compile Chrome WebDriver to be used with Selenium. Closes: #725130.
+
+ -- Vincent Bernat ber...@debian.org  Sat, 21 Dec 2013 16:59:55 +0100
+
 chromium-browser (31.0.1650.63-1) unstable; urgency=medium
 
   * New upstream stable release:
diff --git a/debian/chromium-chromedriver.install b/debian/chromium-chromedriver.install
new file mode 100644
index 000..ddc9dba
--- /dev/null
+++ b/debian/chromium-chromedriver.install
@@ -0,0 +1 @@
+usr/lib/chromium/chromedriver
diff --git a/debian/chromium.install b/debian/chromium.install
index bee8972..3c40da8 100644
--- a/debian/chromium.install
+++ b/debian/chromium.install
@@ -1,6 +1,7 @@
 debian/tmp/etc
 debian/tmp/usr/bin
-debian/tmp/usr/lib/chromium/chrom*
+debian/tmp/usr/lib/chromium/chromium
+debian/tmp/usr/lib/chromium/chrome-sandbox
 debian/tmp/usr/lib/chromium/*.pak
 debian/tmp/usr/lib/chromium/resources/extension/demo/library.js
 debian/tmp/usr/lib/chromium/content_resources.pak
diff --git a/debian/control b/debian/control
index 4f5fb90..38bef74 100644
--- a/debian/control
+++ b/debian/control
@@ -161,3 +161,20 @@ Description: page inspector for the chromium browser
  .
  This package contains 'inspector', allowing web developers to inspect any
  element of a web page at runtime (HTML, JavaScript, CSS, ..).
+
+Package: chromium-chromedriver
+Architecture: i386 amd64
+Depends: ${shlibs:Depends}, ${misc:Depends}, chromium (= ${binary:Version})
+Description: WebDriver driver for the Chromium Browser
+ Chromedriver serves as a bridge between Chromium Browser and Selenium
+ WebDriver.
+ .
+ See http://code.google.com/p/selenium/wiki/ChromeDriver for details.
+
+Package: chromium-chromedriver-dbg
+Architecture: i386 amd64
+Section: debug
+Priority: extra
+Depends: ${shlibs:Depends}, ${misc:Depends}, chromium-chromedriver (= ${binary:Version})
+Description: chromium-chromedriver debug symbols
+ Debug symbols for the chromium-chromedriver package.
diff --git a/debian/patches/chromedriver-revision.patch b/debian/patches/chromedriver-revision.patch
new file mode 100644
index 000..c502c1f
--- /dev/null
+++ b/debian/patches/chromedriver-revision.patch
@@ -0,0 +1,11 @@
+--- a/src/chrome/test/chromedriver/embed_version_in_cpp.py
 b/src/chrome/test/chromedriver/embed_version_in_cpp.py
+@@ -25,7 +25,7 @@
+   options, args = parser.parse_args()
+ 
+   version = open(options.version_file, 'r').read().strip()
+-  revision = lastchange.FetchVersionInfo(None).revision.strip()
++  revision = undef
+   global_string_map = {
+   'kChromeDriverVersion': version + '.' + revision
+   }
diff --git a/debian/patches/series b/debian/patches/series
index ac5b58b..6162e40 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -19,3 +19,4 @@ third-party-cookies-off-by-default.patch
 ps-print.patch
 window-placement.patch
 no-promo.patch
+chromedriver-revision.patch
diff --git a/debian/rules b/debian/rules
index 20d6799..8384e1e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -310,6 +310,7 @@ GYP_DEFINES += use_pulseaudio=1
 BUILD_TARGETS := \
 	chrome \
 	chrome_sandbox \
+	chromedriver \
 	$(NULL)
 
 TESTS_TARGETS := \
-- 
1.8.5.3



Bug#721322: couchdb: Should depend on erlang-os-mon and erlang-xmerl

2013-08-30 Thread Adrian Lang
Package: couchdb
Version: 1.4.0-2
Severity: normal

After the recent upgrade to 1.4.0, I get the following error when starting 
couchdb:

{init terminating in do_boot,{{badmatch,{error,{no such file or 
directory,os_mon.app}}},[{couch,start,0,[{file,couch.erl},{line,18}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

With erlang-os-mon installed, I get:

{init terminating in 
do_boot,{{badmatch,{error,{{app_would_not_start,xmerl},{couch_app,start,[normal,[/etc/couchdb/default.ini,/etc/couchdb/local.ini]],[{couch,start,0,[{file,couch.erl},{line,18}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

With erlang-xmerl, it finally starts.


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'stable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.10-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages couchdb depends on:
ii  adduser3.113+nmu3
ii  erlang-base1:16.b.1-dfsg-5
ii  libc6  2.17-92+b1
ii  libcurl3   7.32.0-1
ii  libgcc11:4.8.1-9
ii  libicu48   4.8.1.1-12
ii  libjs-jquery   1.7.2+dfsg-3
ii  libjs-jquery-form  8-2
ii  libjs-underscore   1.4.4-2
ii  libmozjs185-1.01.8.5-1.0.0+dfsg-4+b1
ii  libnspr4   2:4.10-1
ii  libstdc++6 4.8.1-9
ii  lsb-base   4.1+Debian12
ii  procps 1:3.3.8-2

couchdb recommends no packages.

couchdb suggests no packages.

-- Configuration Files:
/etc/couchdb/local.ini [Errno 13] Permission denied: u'/etc/couchdb/local.ini'

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#714263: couchdb: Fails to start with Erlang 16

2013-06-27 Thread Adrian Lang
Package: couchdb
Version: 1.2.0-5
Severity: important

couchdb fails with the following message:

{init terminating in 
do_boot,{{badmatch,{error,{{app_would_not_start,ssl},{couch_app,start,[normal,[/etc/couchdb/default.ini,/etc/couchdb/local.ini]],[{couch,start,0,[{file,couch.erl},{line,18}]},{init,start_it,1,[]},{init,start_em,1,[]}]}}

After downgrading to stable’s R15, couchdb starts again.

See also #713748 and https://issues.apache.org/jira/browse/COUCHDB-1696.

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'stable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.9-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages couchdb depends on:
ii  adduser  3.113+nmu3
ii  erlang-base  1:16.b.1-dfsg-2
ii  erlang-crypto1:16.b.1-dfsg-2
ii  erlang-eunit 1:16.b.1-dfsg-2
ii  erlang-inets 1:16.b.1-dfsg-2
ii  erlang-os-mon1:16.b.1-dfsg-2
ii  erlang-ssl   1:16.b.1-dfsg-2
ii  erlang-syntax-tools  1:16.b.1-dfsg-2
ii  erlang-tools 1:16.b.1-dfsg-2
ii  erlang-xmerl 1:16.b.1-dfsg-2
ii  libc62.17-5
ii  libcurl3 7.31.0-2
ii  libgcc1  1:4.8.1-4
ii  libicu48 4.8.1.1-12
ii  libjs-jquery 1.7.2+dfsg-2
ii  libjs-jquery-form8-2
ii  libmozjs185-1.0  1.8.5-1.0.0+dfsg-4+b1
ii  libstdc++6   4.8.1-4
ii  lsb-base 4.1+Debian12
ii  procps   1:3.3.8-2

couchdb recommends no packages.

couchdb suggests no packages.

-- Configuration Files:
/etc/couchdb/local.ini [Errno 13] Permission denied: u'/etc/couchdb/local.ini'

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#701498: (no subject)

2013-02-26 Thread Adrian Lang
Hi,

 Ok. For the internal mic, this could be the cancelling out problem; see 
 the Inverted Internal Mic section of this blog post [1] for more 
 information.

Muting one channel didn't help.

Regards,
Adrian


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#701498: hda: Internal mic does not work with CX20590

2013-02-23 Thread Adrian Lang
Package: src:linux
Version: 3.2.35-2
Severity: normal

There are two microphones in alsamixer and Gnome 3 audio settings (i. e.,
pulseaudio), but I can't get any sound using either of them. I think that's the
same problem as reported to [openSUSE] and [Ubuntu].

The problem persists with 3.7 (3.7.8-1~experimental.1) from experimental.

[openSUSE]
http://forums.opensuse.org/english/get-technical-help-here/laptop/469210-opensuse-12-1-cannot-get-internal-mic-work-lenovo-g770-laptop.html
[Ubuntu]
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/938644

-- Package-specific info:
** Version:
Linux version 3.2.0-4-amd64 (debian-ker...@lists.debian.org) (gcc version 4.6.3 
(Debian 4.6.3-14) ) #1 SMP Debian 3.2.35-2

** Command line:
BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/sda2_crypt ro quiet 
nouveau.noaccel=0

** Tainted: O (4096)
 * Out-of-tree module has been loaded.

** Kernel log:
[8.846241] hub 4-0:1.0: 3 ports detected
[8.847164] snd_hda_intel :00:1b.0: irq 51 for MSI/MSI-X
[8.847227] snd_hda_intel :00:1b.0: setting latency timer to 64
[8.885064] hda_codec: CX20590: BIOS auto-probing.
[8.885918] input: HDA Digital PCBeep as 
/devices/pci:00/:00:1b.0/input/input6
[8.887735] i915 :00:02.0: power state changed by ACPI to D0
[8.887759] i915 :00:02.0: power state changed by ACPI to D0
[8.887776] i915 :00:02.0: setting latency timer to 64
[8.911846] mtrr: no more MTRRs available
[8.911848] [drm] MTRR allocation failed.  Graphics performance may suffer.
[8.912179] i915 :00:02.0: irq 52 for MSI/MSI-X
[8.912183] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[8.912184] [drm] Driver supports precise vblank timestamp query.
[8.912273] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[8.912338] vgaarb: device changed decodes: 
PCI::00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[8.912340] vgaarb: transferring owner from PCI::00:02.0 to 
PCI::01:00.0
[9.156836] usb 4-1: new high-speed USB device number 2 using ehci_hcd
[9.288867] usb 4-1: New USB device found, idVendor=8087, idProduct=0024
[9.288877] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[9.289488] hub 4-1:1.0: USB hub found
[9.289576] hub 4-1:1.0: 8 ports detected
[9.388871] EXT4-fs (dm-0): re-mounted. Opts: 
errors=remount-ro,discard,commit=600
[9.400162] usb 3-1: new high-speed USB device number 2 using ehci_hcd
[9.513375] fbcon: inteldrmfb (fb0) is primary device
[9.515374] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 
0x1c0b1, caps: 0xd047b3/0xb4/0xa
[9.515397] psmouse serio1: synaptics: serio: Synaptics pass-through port at 
isa0060/serio1/input0
[9.532263] usb 3-1: New USB device found, idVendor=8087, idProduct=0024
[9.532271] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[9.532888] hub 3-1:1.0: USB hub found
[9.532976] hub 3-1:1.0: 6 ports detected
[9.565797] input: SynPS/2 Synaptics TouchPad as 
/devices/platform/i8042/serio1/input/input7
[9.701002] Console: switching to colour frame buffer device 200x56
[9.714262] fb0: inteldrmfb frame buffer device
[9.714266] drm: registered panic notifier
[9.753380] acpi device:01: registered as cooling_device4
[9.753903] input: Video Bus as 
/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input8
[9.754073] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
[9.761178] acpi device:0b: registered as cooling_device5
[9.761709] input: Video Bus as 
/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input9
[9.761861] ACPI: Video Device [VID1] (multi-head: yes  rom: yes  post: no)
[9.761933] [drm] Initialized i915 1.6.0 20080730 for :00:02.0 on minor 0
[9.803348] usb 3-1.6: new high-speed USB device number 3 using ehci_hcd
[9.901353] usb 3-1.6: New USB device found, idVendor=04f2, idProduct=b221
[9.901363] usb 3-1.6: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[9.901369] usb 3-1.6: Product: Integrated Camera
[9.901374] usb 3-1.6: Manufacturer: Chicony Electronics Co., Ltd.
[9.914693] Linux media interface: v0.10
[9.921501] Linux video capture interface: v2.00
[9.925408] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b221)
[9.927593] input: Integrated Camera as 
/devices/pci:00/:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input10
[9.927887] usbcore: registered new interface driver uvcvideo
[9.927896] USB Video Class driver (1.1.1)
[   10.942755] RPC: Registered named UNIX socket transport module.
[   10.942758] RPC: Registered udp transport module.
[   10.942759] RPC: Registered tcp transport module.
[   10.942760] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   10.946382] FS-Cache: Loaded
[   10.951782] FS-Cache: Netfs 'nfs' registered for caching
[   10.955515] Installing knfsd 

Bug#698912: banshee: Crash on next track

2013-01-25 Thread Adrian Lang
Package: banshee
Version: 2.6.0-5
Severity: important

Banshee started crashing whenever a track finishes and the next track should
start playing. I'm playing the »Music/Unheard« playlist with or without shuffle
modes. My music library is mounted via gvfs using SSH and mapped to a directory
by gvfs-fuse.

I am on unstable with a bit of experimental.

I attached two outputs of banshee --debug.

-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.7-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages banshee depends on:
ii  gnome-icon-theme 3.4.0-2
ii  gstreamer1.0-plugins-bad [gstreamer1.0-audi  1.0.5-1
ii  gstreamer1.0-plugins-base1.0.5-1
ii  gstreamer1.0-plugins-good [gstreamer1.0-aud  1.0.5-1
ii  gstreamer1.0-pulseaudio [gstreamer1.0-audio  1.0.5-1
ii  libboo2.0.9-cil  0.9.5~git20110729.r1.202a430-2
ii  libc62.13-38
ii  libcairo21.12.2-2
ii  libdbus-glib1.0-cil  0.5.0-4
ii  libdbus1.0-cil   0.7.0-5
ii  libgconf2.0-cil  2.24.2-2
ii  libgdata2.1-cil  2.1.0.0-1
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libgkeyfile1.0-cil   0.1-4
ii  libglib2.0-0 2.34.3-1
ii  libglib2.0-cil   2.12.10-5
ii  libgpod4 0.8.2-7
ii  libgstreamer-plugins-base1.0-0   1.0.5-1
ii  libgstreamer1.0-01.0.5-1
ii  libgtk-sharp-beans-cil   2.14.1-3
ii  libgtk2.0-0  2.24.10-2
ii  libgtk2.0-cil2.12.10-5
ii  libgudev1.0-cil  0.1-3
ii  libkarma00.1.2-2.3
ii  libmono-addins0.2-cil0.6.2-2
ii  libmono-cairo4.0-cil 2.10.8.1-6
ii  libmono-corlib4.0-cil2.10.8.1-6
ii  libmono-posix4.0-cil 2.10.8.1-6
ii  libmono-sharpzip4.84-cil 2.10.8.1-6
ii  libmono-system-core4.0-cil   2.10.8.1-6
ii  libmono-system-xml4.0-cil2.10.8.1-6
ii  libmono-system4.0-cil2.10.8.1-6
ii  libmono-zeroconf1.0-cil  0.9.0-4
ii  libmtp9  1.1.3-35-g0ece104-4
ii  libnotify0.4-cil 0.4.0~r3032-5
ii  libpango1.0-01.30.0-1
ii  libsoup-gnome2.4-1   2.38.1-2
ii  libsoup2.4-1 2.38.1-2
ii  libsqlite3-0 3.7.15.2-1
ii  libtaglib2.0-cil 2.0.4.0-1
ii  libwebkitgtk-1.0-0   1.8.1-3.3
ii  libwnck222.30.7-1
ii  libx11-6 2:1.5.0-1
ii  libxrandr2   2:1.3.2-2
ii  libxxf86vm1  1:1.1.2-1
ii  mono-runtime 2.10.8.1-6

Versions of packages banshee recommends:
ii  avahi-daemon 0.6.31-1
pn  brasero  none
ii  gstreamer1.0-pulseaudio  1.0.5-1
ii  media-player-info17-1

Versions of packages banshee suggests:
pn  banshee-dbgnone
pn  gstreamer1.0-ffmpegnone
ii  gstreamer1.0-plugins-bad   1.0.5-1
ii  gstreamer1.0-plugins-ugly  1.0.5-1

-- no debconf information
[12 Debug 08:50:50.189] (libbanshee:player) [Gapless] Requesting next track
Stacktrace:

  at (wrapper managed-to-native) Gtk.Application.gtk_main () IL 0xe, 
0x
  at Gtk.Application.Run () IL 0x0, 0xb
  at Banshee.Gui.GtkBaseClient.Run () IL 0xd, 0x0005f
  at Banshee.Gui.GtkBaseClient.Startup () IL 0xf, 0x00049
  at Hyena.Gui.CleanRoomStartup.Startup 
(Hyena.Gui.CleanRoomStartup/StartupInvocationHandler) IL 0x00045, 0x0008e
  at Banshee.Gui.GtkBaseClient.StartupT () IL 0x00036, 0x0006b
  at Banshee.Gui.GtkBaseClient.StartupT (string[]) IL 0x0004d, 0x000ff
  at Nereid.Client.Main (string[]) IL 0x1, 0x00017
  at (wrapper runtime-invoke) Module.runtime_invoke_void_object 
(object,intptr,intptr,intptr) IL 0x00050, 0x
  at (wrapper managed-to-native) System.AppDomain.ExecuteAssembly 
(System.AppDomain,System.Reflection.Assembly,string[]) IL 0x0001b, 0x
  at System.AppDomain.ExecuteAssemblyInternal 
(System.Reflection.Assembly,string[]) IL 0x0002f, 0x00047
  at System.AppDomain.ExecuteAssembly 
(string,System.Security.Policy.Evidence,string[]) IL 0xb, 

Bug#698912: banshee: Crash on next track

2013-01-25 Thread Adrian Lang
 I've looked through your logs, and it looks like your either your D-Bus 
 session
 bus daemon died or gconfd died. Try logging out and logging back in, then
 starting Banshee up and seeing if the issue still occurs.

Still occurs. I see both gconfd-2 and (the user's) dbus-daemon running,
too. Right now, I get the following errors before the crash:

(Banshee:10894): GConf-WARNING **: Got Disconnected from DBus.


(Banshee:10894): GConf-WARNING **: The connection to DBus was broken.
Can't reinitialize it.
[11 Warn  09:34:36.904] Could not read GConf key
sources.MusicLibrarySource-Library.separate_by_type - GLib.GException:
No D-BUS daemon running

[…]

Regards,
Adrian


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#698912: [pkg-cli-apps-team] Bug#698912: banshee: Crash on next track

2013-01-25 Thread Adrian Lang
On 25.01.2013 10:05, Chow Loong Jin wrote:
 That's really weird. As it says, there's no D-BUS daemon running. Are you sure
 your dbus daemon is running? Try running notify-send foo (you'll need
 libnotify-bin installed) and seeing if you get a notification from that?

I'm pretty sure:

adrian@katniss:~$ ps x | grep dbus
10300 ?Ss 0:00 /usr/bin/ssh-agent /usr/bin/dbus-launch
--exit-with-session gnome-session
10303 ?S  0:00 /usr/bin/dbus-launch --exit-with-session
gnome-session
10304 ?Ss 0:01 /usr/bin/dbus-daemon --fork --print-pid 5
--print-address 7 --session

notify-send works fine, too.


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#694047: util-linux: addpart fails with larger partition lengths or start positions

2012-11-23 Thread Adrian Lang
Package: util-linux
Version: 2.20.1-5.2
Severity: normal

addpart seems to have serious issues above 2147483648 I think. This results in
partitions starting at 0 or having length 0.

As a workaround I copied partx_add_partition from the current linux-utils repo
and called it, basically like that:


static inline int partx_add_partition(int fd, int partno,
  uint64_t start, uint64_t size)
{
  struct blkpg_ioctl_arg a;
  struct blkpg_partition p;

  p.pno = partno;
  p.start = start  9;
  p.length = size  9;
  p.devname[0] = 0;
  p.volname[0] = 0;
  a.op = BLKPG_ADD_PARTITION;
  a.flags = 0;
  a.datalen = sizeof(p);
  a.data = p;

  return ioctl(fd, BLKPG, a);
}

partx_add_partition(fd, 3, 8392704ULL, 2930259968ULL);


Worked fine.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.6-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages util-linux depends on:
ii  debconf [debconf-2.0]  1.5.46
ii  dpkg   1.16.9
ii  initscripts2.88dsf-34
ii  install-info   4.13a.dfsg.1-10
ii  libblkid1  2.20.1-5.2
ii  libc6  2.13-37
ii  libncurses55.9-10
ii  libselinux12.1.9-5
ii  libslang2  2.2.4-15
ii  libtinfo5  5.9-10
ii  libuuid1   2.20.1-5.2
ii  lsb-base   4.1+Debian9
ii  tzdata 2012i-1
ii  zlib1g 1:1.2.7.dfsg-13

util-linux recommends no packages.

Versions of packages util-linux suggests:
ii  dosfstools  3.0.13-1
ii  kbd 1.15.3-9
pn  util-linux-locales  none

-- debconf information excluded


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#690537: reportbug: Package list does not specify arch

2012-10-15 Thread Adrian Lang
Package: reportbug
Version: 6.4.3
Severity: normal

_Steps to reproduce_

Invoke reportbug with a binary package name which fulfills the following
conditions:

 - it is not a source package name at the same time
 - you have this package installed for multiple architectures

Two packages which match these criteria on my system are libgl1-mesa-dri and
gcc-4.7-base.

_Expected behaviour_

Reportbug detects that all different architectures of this package actually
are the same bug reporting target and the user does not have to select one of
these packages.

_Actual behaviour_

Reportbug gives the following question:


Which of the following installed packages is the bug in?

1 gcc-4.7-base  GCC, the GNU Compiler Collection (base package)

2 gcc-4.7-base  GCC, the GNU Compiler Collection (base package)

3 gcc-4.7-base  Uninstalled/non-existent package

Select one of these packages:


-- Package-specific info:
** Environment settings:
EDITOR=vim
INTERFACE=text

** /home/adrian/.reportbugrc:
reportbug_version 4.8
mode advanced
ui text
email deb...@adrianlang.de
no-cc
header X-Debbugs-CC: deb...@adrianlang.de
smtphost reportbug.debian.org

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.5-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages reportbug depends on:
ii  apt   0.9.7.5
ii  python2.7.3-2
ii  python-reportbug  6.4.3

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail   none
pn  debconf-utilsnone
pn  debsums  none
pn  dlocate  none
pn  emacs22-bin-common | emacs23-bin-common  none
ii  file 5.11-2
ii  gnupg1.4.12-6
pn  postfix | exim4 | mail-transport-agent   none
ii  python-gtk2  2.24.0-3
pn  python-gtkspell  none
pn  python-urwid none
ii  python-vte   1:0.28.2-5
ii  xdg-utils1.1.0~rc1+git20111210-6

Versions of packages python-reportbug depends on:
ii  apt   0.9.7.5
ii  python2.7.3-2
ii  python-debian 0.1.21+nmu2
ii  python-debianbts  1.11
ii  python-support1.0.15

python-reportbug suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#690579: libgl1-mesa-dri:i386: Page fault in unpack_XRGB8888

2012-10-15 Thread Adrian Lang
Package: libgl1-mesa-dri
Version: 8.0.4-2
Severity: normal

When trying to start a specific 32bit game (Lord of the Rings: War in the North)
with 32bit wine and bumblebee's optirun, the crash as described in the attached
crash log happens.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.5-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libgl1-mesa-dri:i386 depends on:
ii  libc6 2.13-35
ii  libdrm-intel1 2.4.33-3
ii  libdrm-nouveau1a  2.4.33-3
ii  libdrm-radeon12.4.33-3
ii  libdrm2   2.4.33-3
ii  libexpat1 2.1.0-1
ii  libffi5   3.0.10-3
ii  libgcc1   1:4.7.2-4
ii  libstdc++64.7.2-4

libgl1-mesa-dri:i386 recommends no packages.

Versions of packages libgl1-mesa-dri:i386 suggests:
pn  libglide3  none

-- no debconf information
Unhandled exception: page fault on read access to 0x003ff702 in 32-bit code 
(0x7c997fd8).
Register dump:
 CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
 EIP:7c997fd8 ESP:0167d9ac EBP:0167da5c EFLAGS:00210202(  R- --  I   - - - )
 EAX:003ff700 EBX:7d44c698 ECX:0640 EDX:5c880630
 ESI:7d5e5720 EDI:00401000
Stack dump:
0x0167d9ac:  7d44c698 0640 5c880630 7c99bdf5
0x0167d9bc:  003ff700 5c880630 0640 7d44c698
0x0167d9cc:  0640 5c880630 0167da5c 7c89d114
0x0167d9dc:  0007 0640 003ff700 5c880630
0x0167d9ec:  1401 5cafbb00 0167da5c 0800
0x0167d9fc:  0167da58 5d7f5818 0040 7c9bcf5c
Backtrace:
=0 0x7c997fd8 unpack_XRGB+0x28(src=0x3ff700, dst=0x5c880630, n=0x640) 
[/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/main/format_unpack.c:167]
 in nouveau_dri.so (0x0167da5c)
  1 0x7c99bdf5 _mesa_unpack_rgba_row+0x24(format=MESA_FORMAT_XRGB, n=0x640, 
src=0x3ff700, dst=0x5c880630) 
[/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/main/format_unpack.c:1597]
 in nouveau_dri.so (0x0167da5c)
  2 0x7c89d114 _mesa_readpixels+0x6e3(ctx=0x5d7a2f00, x=0, y=0, width=0x640, 
height=0x384, format=0x80e1, type=0x1401, packing=0x5d7b1974, pixels=is not 
available) 
[/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/main/readpix.c:337]
 in nouveau_dri.so (0x0167da5c)
  3 0x7c9ca57c st_readpixels+0x7b(ctx=0x5d7a2f00, x=0, y=0, width=0x640, 
height=0x384, format=0x80e1, type=0x1401, pack=0x5d7b1974, dest=0x5c98) 
[/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/state_tracker/st_cb_readpixels.c:54]
 in nouveau_dri.so (0x80e1)
  4 0x7c89dcc5 _mesa_ReadnPixelsARB+0x3c4(x=0, y=0, width=0x640, height=0x384, 
format=0x80e1, type=0x1401, bufSize=0x7fff, pixels=0x5c98) 
[/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/main/readpix.c:876]
 in nouveau_dri.so (0x80e1)
  5 0x7c89dd37 _mesa_ReadPixels+0x46(x=0, y=0, width=0x640, height=0x384, 
format=0x80e1, type=0x1401, pixels=0x5c98) 
[/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/main/readpix.c:884]
 in nouveau_dri.so (0x80e1)
  6 0xf76b54d9 in librrfaker.so (+0x134d8) (0x80e1)
  7 0xf76b558e glReadPixels+0x4d() in librrfaker.so (0x80e1)
  8 0xf76d4c01 in librrfaker.so (+0x32c00) (0x0640)
  9 0xf76d9524 in librrfaker.so (+0x37523) (0x1900)
  10 0xf76da660 in librrfaker.so (+0x3865f) (0x0640)
  11 0xf76dc171 in librrfaker.so (+0x3a170) (0x)
  12 0xf76ab2e8 glXSwapBuffers+0x177() in librrfaker.so (0x7d659500)
  13 0x7ded74c9 in winex11 (+0x374c8) (0x0167e024)
  14 0x7e951872 SwapBuffers+0x61() in gdi32 (0x0167e064)
  15 0x7ebd11ca in wined3d (+0xd11c9) (0x0167e274)
  16 0x7ebce6a6 wined3d_swapchain_present+0x65() in wined3d (0x0167e2d4)
  17 0x7eb3c460 wined3d_device_present+0x6f() in wined3d (0x0167e324)
  18 0x7ec4d8cb in d3d9 (+0xd8ca) (0x0167e374)
0x7c997fd8 unpack_XRGB+0x28 
[/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/main/format_unpack.c:167]
 in nouveau_dri.so: movzbl 0x2(%eax),%ecx
Unable to access file 
'/build/buildd-mesa_8.0.4-2-i386-vBjL17/mesa-8.0.4/build/dri/src/mesa/main/format_unpack.c'
Modules:
Module  Address Debug info  Name (133 modules)
PE33-  337000 Deferredx3daudio1_6
PE34-  356000 Deferredxinput1_3
PE36-  377000 Deferredsteam_api
PE38-  3c7000 Deferredbinkw32
PE40- 10cc000 Export  witn
PE   67b- 683b000 Deferredxaudio2_5
PE  1000-101e5000 Deferredd3dx9_42
ELF 62077000-621ef000 Deferredlibvorbisenc.so.2
ELF 621ef000-6223f000 Deferredlibflac.so.8
ELF 6223f000-62245000 Deferredlibattr.so.1
ELF 62245000-6224b000 Deferredlibasyncns.so.0
ELF 6224b000-622bf000 Deferredlibsndfile.so.1
ELF 622bf000-623b7000 Deferredlibasound.so.2
ELF 

Bug#677201: Rather bug in libwine-unstable

2012-10-06 Thread Adrian Lang
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

libwine:i386 provides the name libwine; maybe a similar solution would
fix the issue for libwine-unstable:i386.

Regards,
Adrian
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iF4EAREIAAYFAlBvzPsACgkQn7ywdhTyHh7QKAD9GRnq09vi1fdZwX8MaTklxfhm
y4P1jPf8ZYT7r4vLR7gA/20aUVJ37gMRmHR4G+O+T0Q2Y3SR8R6RHzw9w1WX+nUO
=Wpt2
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#684270: guayadeque: Crash while switching to next track

2012-08-09 Thread Adrian Lang
On 09.08.2012 10:27, Juan Rios wrote:
 For the backtrace I see the crash is at taglib libraries. It happens with
 every file being played or with a specific one ?

I am quite sure it happens on different files, and it does not happen
all the time, rather once a week. Next time it happens I’ll try to find
out which tracks caused the crash.


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#680926: tasksel: Typo in bug number included in changelog

2012-07-09 Thread Adrian Lang
Package: tasksel
Version: 3.11
Severity: minor

In the 3.11 changelog entry, bug #68067 is marked as closed, while it actually
should be #680678.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (101, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages tasksel depends on:
ii  apt 0.9.7.1
ii  debconf [debconf-2.0]   1.5.45
ii  liblocale-gettext-perl  1.05-7+b1
ii  perl5.14.2-12
ii  tasksel-data3.11

tasksel recommends no packages.

tasksel suggests no packages.

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#679602: task-spooler: Wrong section Tasks

2012-06-30 Thread Adrian Lang
Package: task-spooler
Version: 0.7.3-1
Severity: minor

In aptitude, the package appears in the section ›Tasks‹, though the package
description says it’s in ›Section: misc‹. I guess the problem is the package 
name,
but I’m not sure whether that’s a bug in aptitude or whether non-task packages
are not allowed to have a name starting with ›task-‹.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675773: Refreshed patch

2012-06-27 Thread Adrian Lang
Due to a security upload, the patch had to be refreshed.

reverted:
--- openjpeg-1.3+dfsg/debian/libopenjpeg2.links
+++ openjpeg-1.3+dfsg.orig/debian/libopenjpeg2.links
@@ -1 +0,0 @@
-/usr/lib/libopenjpeg-2.1.3.0.so /usr/lib/libopenjpeg.so.2
diff -u openjpeg-1.3+dfsg/debian/rules openjpeg-1.3+dfsg/debian/rules
--- openjpeg-1.3+dfsg/debian/rules
+++ openjpeg-1.3+dfsg/debian/rules
@@ -4,6 +4,7 @@
 
 # used as trailer in the generated manpages
 UVERSION = $(shell dpkg-parsechangelog | perl -ne 'print $$1\n if (/^Version: (.*?)(?:\.dfsg)?\-.*?$$/)')
+DEB_HOST_MULTIARCH = $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 	EXTRA_CFLAGS += -O0
@@ -72,6 +73,19 @@
 binary-arch: build install
 	dh_testdir
 	dh_testroot
+
+	# install libopenjpeg2 files into multiarch paths
+	mkdir -p debian/libopenjpeg2/usr/lib/$(DEB_HOST_MULTIARCH)
+	cp lib*.so* debian/libopenjpeg2/usr/lib/$(DEB_HOST_MULTIARCH)
+	cd debian/libopenjpeg2/usr/lib/$(DEB_HOST_MULTIARCH) \
+	 ln -s libopenjpeg-*.so libopenjpeg.so.2
+
+	# install libopenjpeg-dev files into multiarch paths
+	mkdir -p debian/libopenjpeg-dev/usr/lib/$(DEB_HOST_MULTIARCH)
+	cp lib*.a debian/libopenjpeg-dev/usr/lib/$(DEB_HOST_MULTIARCH)
+	cd debian/libopenjpeg-dev/usr/lib/$(DEB_HOST_MULTIARCH) \
+	 ln -s libopenjpeg.so.2 libopenjpeg.so
+
 	dh_installchangelogs ChangeLog
 	dh_installdocs
 	dh_installexamples
reverted:
--- openjpeg-1.3+dfsg/debian/libopenjpeg2.install
+++ openjpeg-1.3+dfsg.orig/debian/libopenjpeg2.install
@@ -1 +0,0 @@
-lib*.so* usr/lib/
reverted:
--- openjpeg-1.3+dfsg/debian/libopenjpeg-dev.links
+++ openjpeg-1.3+dfsg.orig/debian/libopenjpeg-dev.links
@@ -1 +0,0 @@
-/usr/lib/libopenjpeg.so.2 /usr/lib/libopenjpeg.so
diff -u openjpeg-1.3+dfsg/debian/libopenjpeg-dev.install openjpeg-1.3+dfsg/debian/libopenjpeg-dev.install
--- openjpeg-1.3+dfsg/debian/libopenjpeg-dev.install
+++ openjpeg-1.3+dfsg/debian/libopenjpeg-dev.install
@@ -2 +1,0 @@
-lib*.a usr/lib
diff -u openjpeg-1.3+dfsg/debian/control openjpeg-1.3+dfsg/debian/control
--- openjpeg-1.3+dfsg/debian/control
+++ openjpeg-1.3+dfsg/debian/control
@@ -3,7 +3,7 @@
 Maintainer: Debian PhotoTools Maintainers pkg-phototools-de...@lists.alioth.debian.org
 Uploaders: Robin Cornelius robin.cornel...@gmail.com, Cyril Brulebois k...@debian.org
 Homepage: http://www.openjpeg.org
-Build-Depends: debhelper (= 5), dpatch (= 2), libtiff4-dev
+Build-Depends: debhelper (= 9), dpatch (= 2), libtiff4-dev
 Standards-Version: 3.7.3
 Section: libs
 Vcs-Browser: http://git.debian.org/?p=pkg-phototools/openjpeg.git
@@ -12,6 +12,7 @@
 Package: libopenjpeg-dev
 Section: libdevel
 Architecture: any
+Multi-Arch: same
 Depends: libopenjpeg2 (= ${binary:Version})
 Description: development files for libopenjpeg2, a JPEG 2000 image library
  Libopenjpeg2 is a library for handling the JPEG 2000 image compression format.
@@ -23,6 +24,8 @@
 Package: libopenjpeg2
 Section: libs
 Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
 Depends: ${shlibs:Depends}
 Description: JPEG 2000 image compression/decompression library
  Libopenjpeg2 is a library for handling the JPEG 2000 image compression format.
@@ -30,6 +33,7 @@
 Package: libopenjpeg2-dbg
 Section: libdevel
 Architecture: any
+Multi-Arch: same
 Depends: libopenjpeg2 (= ${binary:Version})
 Description: debug symbols for libopenjpeg2, a JPEG 2000 image library
  This package contains the debug symbols to match the runtime component of the
@@ -39,7 +43,8 @@
 Package: openjpeg-tools
 Section: graphics
 Architecture: any
-Depends: ${shlibs:Depends}
+Multi-Arch: foreign
+Depends: libopenjpeg2, ${shlibs:Depends}
 Description: command-line tools using the JPEG 2000 library
  This package provides with command-line tools allowing for conversions between
  several formats:
diff -u openjpeg-1.3+dfsg/debian/changelog openjpeg-1.3+dfsg/debian/changelog
--- openjpeg-1.3+dfsg/debian/changelog
+++ openjpeg-1.3+dfsg/debian/changelog
@@ -1,3 +1,10 @@
+openjpeg (1.3+dfsg-4.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Enable multiarch (closes: #675773).
+
+ -- Michael Gilbert mgilb...@debian.org  Sat, 16 Jun 2012 14:32:19 -0400
+
 openjpeg (1.3+dfsg-4.1) unstable; urgency=high

  * Non-maintainer upload by the Security Team.



Bug#678575: xul-ext-firetray: Incompatible with Icedove 11

2012-06-22 Thread Adrian Lang
Package: xul-ext-firetray
Version: 0.3.6-2
Severity: grave
Justification: renders package unusable

Subject says all. There is an upstream version (0.4) which works.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xul-ext-firetray depends on:
ii  libc6   2.13-33
ii  libgcc1 1:4.7.1-1
ii  libstdc++6  4.7.1-1

Versions of packages xul-ext-firetray recommends:
ii  icedove11.0-1
ii  iceweasel  13.0.1-1

xul-ext-firetray suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#673969: simpleid-ldap: Homepage is wrong

2012-05-22 Thread Adrian Lang
Package: simpleid-ldap
Version: 1.0.0-1
Severity: minor

The correct link is https://github.com/simpleid/simpleid-ldap.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#672335: aptitude: FTBFS in incremental_expression.h

2012-05-10 Thread Adrian Lang
Source: aptitude
Version: 0.6.7
Severity: serious
Tags: patch
Justification: fails to build from source (but built successfully in the past)

g++ -DLOCALEDIR=\/usr/share/locale\ -DHAVE_CONFIG_H -I. 
-I../../../../src/generic/apt -I../../.. -I../../.. 
-I../../../../src/generic/apt -I../../../.. -I../../../../src  
-D_FORTIFY_SOURCE=2 -I/usr/include -DHELPDIR=\/usr/share/aptitude\ 
-DPKGDATADIR=\/usr/share/aptitude\  -g -O2 -fPIE -fstack-protector 
--param=ssp-buffer-size=4 -Wformat -Werror=format-security  
-I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include   -I/usr/lib/cwidget 
-I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include   
-I/usr/include/tagcoll-2.0.13 -D_REENTRANT -fno-strict-aliasing -Wall 
-Werror -c -o aptitude_resolver.o 
../../../../src/generic/apt/aptitude_resolver.cc
In file included from 
../../../../src/generic/problemresolver/problemresolver.h:55:0,
 from ../../../../src/generic/apt/aptitude_resolver.h:32,
 from ../../../../src/generic/apt/aptitude_resolver.cc:20:
.../../../../src/generic/problemresolver/incremental_expression.h: In 
instantiation of ‘void var_eT::set_value(T) [with T = bool]’:
.../../../../src/generic/problemresolver/problemresolver.h:4010:2:   required 
from ‘void generic_problem_resolverPackageUniverse::reject_version(const 
version, undo_group*) [with PackageUniverse = aptitude_universe; 
generic_problem_resolverPackageUniverse::version = aptitude_resolver_version]’
.../../../../src/generic/apt/aptitude_resolver.cc:1363:5:   required from here
.../../../../src/generic/problemresolver/incremental_expression.h:536:2: error: 
‘signal_value_changed’ was not declared in this scope, and no declarations were 
found by argument-dependent lookup at the point of instantiation [-fpermissive]
.../../../../src/generic/problemresolver/incremental_expression.h:536:2: note: 
declarations in dependent base ‘expressionbool’ are not found by unqualified 
lookup
.../../../../src/generic/problemresolver/incremental_expression.h:536:2: note: 
use ‘this-signal_value_changed’ instead

-- Package-specific info:
Terminal: xterm
$DISPLAY is set.
which aptitude: /usr/bin/aptitude

aptitude version information:
aptitude 0.6.7 compiled at May  5 2012 03:07:17
Compiler: g++ 4.6.3
Compiled against:
  apt version 4.12.0
  NCurses version 5.9
  libsigc++ version: 2.2.10
  Ept support enabled.
  Gtk+ support disabled.
  Qt support disabled.

Current library versions:
  NCurses version: ncurses 5.9.20110404
  cwidget version: 0.5.16
  Apt version: 4.12.0

aptitude linkage:
linux-gate.so.1 =  (0xb7717000)
libapt-pkg.so.4.12 = /usr/lib/i386-linux-gnu/libapt-pkg.so.4.12 
(0xb71b5000)
libncursesw.so.5 = /lib/i386-linux-gnu/libncursesw.so.5 (0xb7183000)
libtinfo.so.5 = /lib/i386-linux-gnu/libtinfo.so.5 (0xb7162000)
libsigc-2.0.so.0 = /usr/lib/libsigc-2.0.so.0 (0xb715d000)
libcwidget.so.3 = /usr/lib/libcwidget.so.3 (0xb705c000)
libept.so.1.0.5.4.12 = /usr/lib/libept.so.1.0.5.4.12 (0xb700c000)
libxapian.so.22 = /usr/lib/sse2/libxapian.so.22 (0xb6e0d000)
libz.so.1 = /usr/lib/i386-linux-gnu/libz.so.1 (0xb6df5000)
libsqlite3.so.0 = /usr/lib/i386-linux-gnu/libsqlite3.so.0 (0xb6d4d000)
libboost_iostreams.so.1.49.0 = /usr/lib/libboost_iostreams.so.1.49.0 
(0xb6d36000)
libpthread.so.0 = /lib/i386-linux-gnu/i686/cmov/libpthread.so.0 
(0xb6d1d000)
libstdc++.so.6 = /usr/lib/i386-linux-gnu/libstdc++.so.6 (0xb6c31000)
libm.so.6 = /lib/i386-linux-gnu/i686/cmov/libm.so.6 (0xb6c0a000)
libgcc_s.so.1 = /lib/i386-linux-gnu/libgcc_s.so.1 (0xb6bed000)
libc.so.6 = /lib/i386-linux-gnu/i686/cmov/libc.so.6 (0xb6a9)
libutil.so.1 = /lib/i386-linux-gnu/i686/cmov/libutil.so.1 (0xb6a8c000)
libdl.so.2 = /lib/i386-linux-gnu/i686/cmov/libdl.so.2 (0xb6a88000)
libbz2.so.1.0 = /lib/i386-linux-gnu/libbz2.so.1.0 (0xb6a77000)
libuuid.so.1 = /lib/i386-linux-gnu/libuuid.so.1 (0xb6a71000)
librt.so.1 = /lib/i386-linux-gnu/i686/cmov/librt.so.1 (0xb6a68000)
/lib/ld-linux.so.2 (0xb7718000)

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- no debconf information
From 49b626df6ac253bd2d5ac7c9e1b857c5204f5cd3 Mon Sep 17 00:00:00 2001
From: Adrian Lang m...@adrianlang.de
Date: Thu, 10 May 2012 09:37:13 +0200
Subject: [PATCH] Fix FTBFS


diff --git a/src/generic/problemresolver/incremental_expression.h b/src/generic/problemresolver/incremental_expression.h
index da23520..81334ae 100644
--- a/src/generic/problemresolver/incremental_expression.h
+++ b/src/generic/problemresolver/incremental_expression.h
@@ -533,7 +533,7 @@ public:
   {
 	T old_value = value;
 	value = new_value

Bug#672335: (no subject)

2012-05-10 Thread Adrian Lang
retitle FTBFS with g++ 4.7
thanks

More new warnings in g++ 4.7, fixes are attached.

Regards,
Adrian
From f14a272b49a6f4b5c7a68b20c93c0894c267ec0c Mon Sep 17 00:00:00 2001
From: Adrian Lang m...@adrianlang.de
Date: Thu, 10 May 2012 16:58:16 +0200
Subject: [PATCH] Fix build with g++ 4.7

---
 src/generic/apt/aptitude_resolver.h  |2 ++
 src/generic/problemresolver/incremental_expression.h |2 +-
 src/generic/util/dynamic_list_collection.h   |6 +++---
 src/generic/util/dynamic_list_impl.h |6 +++---
 4 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/generic/apt/aptitude_resolver.h b/src/generic/apt/aptitude_resolver.h
index f2fa566..6270d80 100644
--- a/src/generic/apt/aptitude_resolver.h
+++ b/src/generic/apt/aptitude_resolver.h
@@ -450,6 +450,8 @@ public:
 		aptitudeDepCache *cache,
 		pkgPolicy *_policy);
 
+  virtual ~aptitude_resolver() {}
+
   /** \brief Return \b true if the given version will break a hold or
*  install a forbidden version.
*/
diff --git a/src/generic/problemresolver/incremental_expression.h b/src/generic/problemresolver/incremental_expression.h
index da23520..81334ae 100644
--- a/src/generic/problemresolver/incremental_expression.h
+++ b/src/generic/problemresolver/incremental_expression.h
@@ -533,7 +533,7 @@ public:
   {
 	T old_value = value;
 	value = new_value;
-	signal_value_changed(old_value, new_value);
+	this-signal_value_changed(old_value, new_value);
   }
   }
 
diff --git a/src/generic/util/dynamic_list_collection.h b/src/generic/util/dynamic_list_collection.h
index 5539369..50ecc48 100644
--- a/src/generic/util/dynamic_list_collection.h
+++ b/src/generic/util/dynamic_list_collection.h
@@ -254,7 +254,7 @@ namespace aptitude
 
   const std::size_t insert_idx = insert_location - concrete_view.begin();
   concrete_view.insert(insert_location, cell(list, idx, value));
-  signal_inserted(value, insert_idx);
+  this-signal_inserted(value, insert_idx);
 }
 
 templatetypename T
@@ -316,7 +316,7 @@ namespace aptitude
   // removal BEFORE removing it!
   const std::size_t remove_idx = remove_location - concrete_view.begin();
   concrete_view.erase(remove_location);
-  signal_removed(value, remove_idx);
+  this-signal_removed(value, remove_idx);
 }
 }
 
@@ -412,7 +412,7 @@ namespace aptitude
 relocate_target = to_location;
 
   concrete_view.relocate(relocate_target, from_location);
-  signal_moved(value, from_idx, to_idx);
+  this-signal_moved(value, from_idx, to_idx);
 }
 
 templatetypename T
diff --git a/src/generic/util/dynamic_list_impl.h b/src/generic/util/dynamic_list_impl.h
index 6b0b8bc..90edc0f 100644
--- a/src/generic/util/dynamic_list_impl.h
+++ b/src/generic/util/dynamic_list_impl.h
@@ -91,7 +91,7 @@ namespace aptitude
 void dynamic_list_implT::insert(const T t, std::size_t position)
 {
   entries.insert(entries.begin() + position, t);
-  signal_inserted(t, position);
+  this-signal_inserted(t, position);
 }
 
 templatetypename T
@@ -99,7 +99,7 @@ namespace aptitude
 {
   T val = entries[position];
   entries.erase(entries.begin() + position);
-  signal_removed(val, position);
+  this-signal_removed(val, position);
 }
 
 templatetypename T
@@ -129,7 +129,7 @@ namespace aptitude
   const std::size_t idx_to_delete = to  from  ?  from + 1  :  from;
   entries.erase(entries.begin() + idx_to_delete);
 
-  signal_moved(val, from, to);
+  this-signal_moved(val, from, to);
 }
   }
 }
-- 
1.7.10



signature.asc
Description: PGP signature


Bug#669569: Workaround apt-get changelog

2012-04-20 Thread Adrian Lang
Same here. apt-get changelog works for me, though.


signature.asc
Description: PGP signature


Bug#666721: mysql-server-5.5: Upgrade fails in the presence of old libmysqlclient-dev (5.1.62-2)

2012-04-01 Thread Adrian Lang
Package: mysql-server-5.5
Version: 5.5.17-4
Severity: important

While upgrading mysql-server from 5.1.61-2 to 5.5.17-4, the installation of
mysql-server-5.5 fails with the following error message:

Unpacking mysql-server-5.5 (from .../mysql-server-5.5_5.5.17-4_i386.deb) ...
dpkg: error processing
/var/cache/apt/archives/mysql-server-5.5_5.5.17-4_i386.deb (--unpack):
 trying to overwrite '/usr/lib/mysql/plugin/ha_example.so', which is also in
package libmysqlclient-dev 5.1.61-2

Regards,
Adrian

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mysql-server-5.5 depends on:
ii  adduser3.113+nmu1
ii  debconf [debconf-2.0]  1.5.42
ii  libc6  2.13-27
ii  libdbi-perl1.618-1
ii  libgcc11:4.7.0-1
ii  libstdc++6 4.7.0-1
ii  lsb-base   4.1+Debian0
ii  mysql-client-5.5   5.5.17-4
ii  mysql-common   5.5.17-4
ii  mysql-server-core-5.5  5.5.17-4
ii  passwd 1:4.1.5-1
ii  perl   5.14.2-9
ii  psmisc 22.16-1
ii  zlib1g 1:1.2.6.dfsg-2

Versions of packages mysql-server-5.5 recommends:
pn  libhtml-template-perl  none
pn  mailx  none

Versions of packages mysql-server-5.5 suggests:
pn  tinyca  none

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#660791: exaile: Crashes on drag-dropping an artist tree on a playlist

2012-02-21 Thread Adrian Lang
Package: exaile
Version: 0.3.2.2-2
Severity: normal

When I drag an artist tree from the collection tab (configured as ›Artist (Year 
- Album)‹)
to a playlist and drop it, exaile crashes with the following error:

Gtk:ERROR:/build/buildd-gtk+2.0_2.24.9-2-i386-1PqV6B/gtk+2.0-2.24.9/gtk/gtktreestore.c:1117:IA__gtk_tree_store_remove:
 assertion failed: (parent != NULL)


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages exaile depends on:
ii  gstreamer0.10-plugins-good  0.10.30-2.1
ii  librsvg2-common 2.34.2-2
ii  python  2.7.2-10
ii  python-dbus 0.84.0-3
ii  python-gobject  3.1.0-2
ii  python-gst0.10  0.10.22-3
ii  python-gtk2 2.24.0-3
ii  python-mutagen  1.20-1

Versions of packages exaile recommends:
pn  gstreamer0.10-ffmpeg  0.10.13-2
pn  python-cddb   1.4-5.1+b3
pn  python-mmkeys none
pn  python-notify none

Versions of packages exaile suggests:
pn  exaile-plugin-contextinfo   none
pn  exaile-plugin-ipod  none
pn  exaile-plugin-moodbar   none
pn  exfalso 2.3.2-1
pn  gstreamer0.10-plugins-bad   0.10.22-3+b1
pn  gstreamer0.10-plugins-ugly  0.10.18-3+b2
pn  ipython none
pn  notify-osd  none
pn  python-beautifulsoup3.2.0-2
pn  python-eggtrayicon  none
pn  python-pymtpnone
pn  streamrippernone

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#660486: guayadeque: Undefined symbol_ZN18wxSQLite3Statement12ExecuteQueryEb

2012-02-19 Thread Adrian Lang
Package: guayadeque
Version: 0.3.5~ds0-1
Severity: important

Guayadeque crashes shortly after starting to play a track:

04:07:10 PM: Deleted stale lock file 
'/home/adrian/.guayadeque/.guayadeque-adrian'.
04:07:11 PM: Initialized locale ( en_US )
04:07:11 PM: Mount Added...
04:07:11 PM: mount without volume?
04:07:11 PM: Mount Added...
04:07:11 PM: mount without volume?
04:07:11 PM: MediaViewer 'My Music' = '4F4116B3' == 
04:07:11 PM: Library Db Version 21
04:07:11 PM: SetViewMode -1 = 0
04:07:11 PM: guLibPanel::IniPanelData( 13101 )
04:07:11 PM: guLibPanel::DoTextSearch( '' )
04:07:11 PM: OnCollectionCommand 13100  0 0  1
04:07:13 PM: Updating the podcasts...
04:07:13 PM: Indicators_Sound_Available() = 0
04:07:13 PM: Indicators_Sound_Available() = 0
Cannot connect to server socket err = No such file or directory
Cannot connect to server socket
jack server is not running or cannot be started
04:07:18 PM: OnMediaLoaded Cur: 0 1   -1775823904
04:07:18 PM: Track starts at 0 with length 166000
04:07:18 PM: StatusChanged( 0, 0, 0, 0 )
04:07:18 PM: Trying to get url: http://lyrics.wikia.com/Dritte_Wahl:Rausch
04:07:19 PM: Found the lyrics from source: lyrics.wikia.com
04:07:19 PM: Adding pending update track '/home/adrian/.gvfs/daten on 
willow/Musik/0-F/D/Dritte Wahl/Nimm Drei/1 - Rausch.ogg'
guayadeque: symbol lookup error: guayadeque: undefined symbol: 
_ZN18wxSQLite3Statement12ExecuteQueryEb

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.2.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages guayadeque depends on:
ii  gstreamer0.10-plugins-base  0.10.35-1
ii  gstreamer0.10-plugins-good  0.10.30-2.1
ii  libc6   2.13-26
ii  libcurl3-gnutls 7.24.0-1
ii  libdbus-1-3 1.5.8-1
ii  libflac81.2.1-6
ii  libgcc1 1:4.6.2-14
ii  libgdk-pixbuf2.0-0  2.24.1-1
ii  libglib2.0-02.30.2-6
ii  libgpod40.8.2-6
ii  libgstreamer0.10-0  0.10.35-1
ii  libimobiledevice2   1.1.1-3
ii  libsqlite3-03.7.10-1
ii  libstdc++6  4.6.2-14
ii  libtag1c2a  1.7-1
ii  libwxbase2.8-0  2.8.12.1-7
ii  libwxgtk2.8-0   2.8.12.1-7
ii  libwxsqlite3-2.8-0  3.0.0.1~dfsg0-1
ii  libxml2 2.7.8.dfsg-7

guayadeque recommends no packages.

guayadeque suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#653547: megaglest: Segfault on startup in BuildVBOs

2011-12-29 Thread Adrian Lang
Package: megaglest
Version: 3.6.0.2-2
Severity: important

After intro video, megaglest crashes with a segfault. bt full attached.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.1.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages megaglest depends on:
ii  famfamfam-flag-png0.1-2
ii  fonts-liberation  1.07.0-2
ii  fonts-uralic  0.0.20040829-3
ii  libc6 2.13-24
ii  libcurl3-gnutls   7.23.1-3
ii  libfontconfig12.8.0-3
ii  libfreetype6  2.4.8-1
ii  libftgl2  2.1.3~rc5-4
ii  libgcc1   1:4.6.2-9
ii  libgl1-mesa-glx [libgl1]  7.11.2-1
ii  libglew1.61.6.0-4
ii  libglu1-mesa [libglu1]7.11.2-1
ii  libice6   2:1.0.7-2
ii  libircclient1 1.3+dfsg1-3
ii  libjpeg8  8c-2
ii  liblua5.1-0   5.1.4-12
ii  libminiupnpc5 1.5-2
ii  libopenal11:1.13-4
ii  libpng12-01.2.46-3
ii  libsdl1.2debian   1.2.14-6.4
ii  libsm62:1.2.0-2
ii  libstdc++64.6.2-9
ii  libvorbisfile31.3.2-1
ii  libwxbase2.8-02.8.12.1-6
ii  libwxgtk2.8-0 2.8.12.1-6
ii  libx11-6  2:1.4.4-4
ii  libxerces-c28 2.8.0+deb1-2+b2
ii  libxext6  2:1.3.0-3
ii  megaglest-data3.6.0.2-1
ii  p7zip-full9.20.1~dfsg.1-3
ii  ttf-dejavu-core   2.33-2
ii  ttf-wqy-zenhei0.9.45-3.1

megaglest recommends no packages.

megaglest suggests no packages.

-- no debconf information
Starting program: /usr/games/megaglest 
[Thread debugging using libthread_db enabled]
[New Thread 0xb1297b70 (LWP 9170)]
[Thread 0xb1297b70 (LWP 9170) exited]
[New Thread 0xb1297b70 (LWP 9171)]
[New Thread 0xb5297b70 (LWP 9172)]
[New Thread 0xb4a85b70 (LWP 9173)]
[New Thread 0xb0961b70 (LWP 9178)]
[Thread 0xb0961b70 (LWP 9178) exited]
[New Thread 0xb0961b70 (LWP 9179)]
[New Thread 0xac15fb70 (LWP 9180)]
[New Thread 0xab95eb70 (LWP 9181)]
[New Thread 0xa9fffb70 (LWP 9187)]
[New Thread 0xa97feb70 (LWP 9190)]
[Thread 0xa97feb70 (LWP 9190) exited]
[Thread 0xa9fffb70 (LWP 9187) exited]

Program received signal SIGSEGV, Segmentation fault.
0x in ?? ()
#0  0x in ?? ()
No symbol table info available.
#1  0x0845908a in Shared::Graphics::Mesh::BuildVBOs (this=0x868a2b4)
at 
/build/buildd-megaglest_3.6.0.2-2-i386-Vcatpo/megaglest-3.6.0.2/source/shared_lib/sources/graphics/model.cpp:144
No locals.
#2  0x08503831 in Shared::Graphics::Gl::ModelRendererGl::renderMesh 
(this=0x863de60, mesh=0x868a2b4)
at 
/build/buildd-megaglest_3.6.0.2-2-i386-Vcatpo/megaglest-3.6.0.2/source/shared_lib/sources/graphics/gl/model_renderer_gl.cpp:195
texture = 0x16
vertexCount = 22
indexCount = 42
#3  0x08503aea in Shared::Graphics::Gl::ModelRendererGl::render 
(this=0x863de60, model=0x8657278)
at 
/build/buildd-megaglest_3.6.0.2-2-i386-Vcatpo/megaglest-3.6.0.2/source/shared_lib/sources/graphics/gl/model_renderer_gl.cpp:116
i = optimized out
#4  0x081e0d8b in Glest::Game::Renderer::renderMenuBackground (this=0x85da980, 
menuBackground=0x865a758)
at 
/build/buildd-megaglest_3.6.0.2-2-i386-Vcatpo/megaglest-3.6.0.2/source/glest_game/graphics/renderer.cpp:5476
lightPos = {x = 0, y = 0, z = 0, w = 0}
diffLight = {x = 0, y = 0, z = 0, w = 0}
ambLight = {x = 0, y = 0, z = 0, w = 0}
specLight = {x = 0, y = 0, z = 0, w = 0}
dist = -nan(0x40)
fogColor = {x = 0, y = 0, z = 0, w = 0}
#5  0x0823e174 in Glest::Game::MainMenu::render (this=0x865a5d0)
at 
/build/buildd-megaglest_3.6.0.2-2-i386-Vcatpo/megaglest-3.6.0.2/source/glest_game/menu/main_menu.cpp:115
renderer = @0x85da980
#6  0x082216a8 in Glest::Game::Program::loopWorker (this=0xb41005c8)
at 
/build/buildd-megaglest_3.6.0.2-2-i386-Vcatpo/megaglest-3.6.0.2/source/glest_game/main/program.cpp:360
__FUNCTION__ = loopWorker
__PRETTY_FUNCTION__ = void Glest::Game::Program::loopWorker()
chronoLoop = {startCount = 3074872221, accumCount = 0, freq = 1000, 
stopped = true, lastStartCount = 0, 
  lastTickCount = 0, lastResult = 0, lastMultiplier = 0, lastStopped = 
false}
chrono = {startCount = 61210, accumCount = 0, freq = 1000, stopped = 
true, lastStartCount = 0, lastTickCount = 0, 
  lastResult = 0, lastMultiplier = 0, lastStopped = false}
prevState = 0x865a5d0
updateCount = optimized out
#7  0x08218e99 in Glest::Game::glestMain (argc=-1073742980, argv=0xbb8c)
at 
/build/buildd-megaglest_3.6.0.2-2-i386-Vcatpo/megaglest-3.6.0.2/source/glest_game/main/main.cpp:3606
language = {static npos = 

Bug#653547: megaglest: Segfault on startup in BuildVBOs

2011-12-29 Thread Adrian Lang
Hi Mark,

On Thu, 29 Dec 2011 12:17:03 -0800
Mark Vejvoda mark_vejv...@hotmail.com wrote:

 Hello Adrian, the issue appears to be that your opengl driver is
 reporting that your video card supports VBO's (Vertex Buffer Objects)
 but doesn't seem to actually support it. Please run megalgest with the
 following commandline parameter to confirm it works without using
 VBO's:
 
 ./megaglest --disable-vbo

wow, thanks, and sorry for not really investigating this myself before.
Should this bug reassigned to mesa or something more specific?

Regards,
Adrian


signature.asc
Description: PGP signature


Bug#643693: Confirm workaround

2011-10-26 Thread Adrian Lang
I confirm that the workaround proposed in [1] works for me with
xorg-server 2:1.11.1.901-2. I did something like the following:

  apt-get source xorg-server
  cd xorg-server-1.11.1.901/
  apt-get build-dep xorg-server
  curl 
http://cgit.freedesktop.org/xorg/xserver/patch/?id=56c90e29f04727c903bd0f084d23bf44eb1a0a11
  xserver-patch
  patch -R -p1  xserver-patch
  dpkg-buildpackage -us -uc -nc -b
  dpkg -i ../xserver-{xorg-core,common}_*.deb

Regards,
Adrian

[1] https://bugs.freedesktop.org/show_bug.cgi?id=40063


signature.asc
Description: PGP signature


Bug#638911: pidgin: fails to detect connectivity state with network-manager 0.9

2011-08-22 Thread Adrian Lang
Package: pidgin
Version: 2.10.0-1
Severity: normal
Tags: upstream patch

With network-manager 0.9 (from experimental), pidgin gives me Waiting for 
connection on startup since libpurple does not understand the new NM_STATEs 
[1]. The problem has been reported upstream [2]. The attached patch fixes the 
problem for me. Furthermore, instead of assuming no connectivity by default, 
libpurple now assumes connectivity if the NM_STATE is unknown.

[1] 
http://projects.gnome.org/NetworkManager/developers/migrating-to-09/spec.html#type-NM_STATE
[2] http://developer.pidgin.im/ticket/13859

Regards,
Adrian Lang

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages pidgin depends on:
ii  gconf2  2.32.4-1 GNOME configuration database syste
ii  libatk1.0-0 2.0.1-2  ATK accessibility toolkit
ii  libc6   2.13-16  Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-6.1   The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.5.6-1  simple interprocess messaging syst
ii  libdbus-glib-1-20.94-4   simple interprocess messaging syst
ii  libfontconfig1  2.8.0-3  generic font configuration library
ii  libfreetype62.4.6-2  FreeType 2 font engine, shared lib
ii  libgdk-pixbuf2.0-0  2.23.5-3 GDK Pixbuf library
ii  libglib2.0-02.28.6-2 GLib library of C routines
ii  libgstreamer0.10-0  0.10.35-1Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.24.5-4 GTK+ graphical user interface libr
ii  libgtkspell02.0.16-1 a spell-checking addon for GTK's T
ii  libice6 2:1.0.7-2X11 Inter-Client Exchange library
ii  libpango1.0-0   1.28.4-3 Layout and rendering of internatio
ii  libpurple0  2.10.0-1 multi-protocol instant messaging l
ii  libsm6  2:1.2.0-2X11 Session Management library
ii  libx11-62:1.4.4-1X11 client-side library
ii  libxml2 2.7.8.dfsg-4 GNOME XML library
ii  libxss1 1:1.2.1-2X11 Screen Saver extension library
ii  perl-base [perlapi-5.12.4]  5.12.4-4 minimal Perl system
ii  pidgin-data 2.10.0-1 multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.35-1  GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good0.10.30-1  GStreamer plugins from the good 

Versions of packages pidgin suggests:
pn  evolution-data-server none (no description available)
ii  gnome-panel   3.0.0.1-2  launcher and docking facility for 
ii  libsqlite3-0  3.7.7-2SQLite 3 shared library

-- no debconf information
--- network.c.old   2011-08-22 22:32:54.0 +0200
+++ network.c.new   2011-08-22 22:33:00.0 +0200
@@ -829,12 +829,26 @@
{
have_nm_state = TRUE;
nm_state = nm_get_network_state();
-   if (nm_state == NM_STATE_UNKNOWN)
-   purple_debug_warning(network, NetworkManager not 
active. Assuming connection exists.\n);
}
 
-   if (nm_state == NM_STATE_UNKNOWN || nm_state == NM_STATE_CONNECTED)
+   switch (nm_state) {
+   case NM_STATE_UNKNOWN:
+   purple_debug_warning(network, NetworkManager not active. 
Assuming connection exists.\n);
+}
+   case NM_STATE_CONNECTED:
+   case NM_STATE_CONNECTED_LOCAL:
+   case NM_STATE_CONNECTED_SITE:
+   case NM_STATE_CONNECTED_GLOBAL:
return TRUE;
+   case NM_STATE_CONNECTING:
+   case NM_STATE_DISCONNECTING:
+   case NM_STATE_DISCONNECTED:
+   case NM_STATE_ASLEEP:
+   return FALSE;
+   default:
+   purple_debug_warning(network, Unknown NetworkManager 
connection state. Assuming connection exists.\n);
+   return TRUE;
+   }
 
return FALSE;
 


Bug#624197: logcheck-database: update for amavisd-new SPAMMY log entries

2011-04-26 Thread Adrian Lang
Package: logcheck-database
Version: 1.3.13
Severity: normal
Tags: patch

mavisd-new uses SPAMMY since 2.4.1:
http://www.mail-archive.com/amavis-user@lists.sourceforge.net/msg05055.html

patch attached.

-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
1c1
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ amavis\[[[:digit:]]+\]: 
\([-[:digit:]]+\) Passed (CLEAN|SPAM),( LOCAL)?( 
\[(IPv6:)?[[:xdigit:].:]{3,39}\]){0,2} [^]* - [^]*(,[^]*)*,( 
Message-ID: [^]+( \((added by[^)]+|sfid-[_[:xdigit:]]+)\))?,)?( 
Resent-Message-ID: [^]+,)? mail_id: [-+[:alnum:]]+, Hits: 
(-?[.[:digit:]]*)+, size: [[:xdigit:]]+, queued_as: [[:xdigit:]]+( OK 
id=[-[:alnum:]]+)?, [[:digit:]]+ ms$
---
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ amavis\[[[:digit:]]+\]: 
 \([-[:digit:]]+\) Passed (CLEAN|SPAM(MY)?),( LOCAL)?( 
 \[(IPv6:)?[[:xdigit:].:]{3,39}\]){0,2} [^]* - [^]*(,[^]*)*,( 
 Message-ID: [^]+( \((added by[^)]+|sfid-[_[:xdigit:]]+)\))?,)?( 
 Resent-Message-ID: [^]+,)? mail_id: [-+[:alnum:]]+, Hits: 
 (-?[.[:digit:]]*)+, size: [[:xdigit:]]+, queued_as: [[:xdigit:]]+( OK 
 id=[-[:alnum:]]+)?, [[:digit:]]+ ms$


Bug#623675: gnome-games: Missing dependencies

2011-04-22 Thread Adrian Lang
Package: gnome-games
Version: 1:3.0.1.1-1
Severity: normal
Tags: experimental

At least Lights Off and Swell Foop need packages `seed` and 
`gir1.2-gtkclutter-1.0 packages`.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.38-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-games depends on:
ii  gnome-games-data1:3.0.1.1-1  data files for the GNOME games
ii  gnuchess5.07-7   Plays a game of chess, either agai
ii  guile-1.8-libs  1.8.7+1-3Main Guile libraries
ii  libatk1.0-0 2.0.0-1  The ATK accessibility toolkit
ii  libc6   2.11.2-11Embedded GNU C Library: Shared lib
ii  libcairo-gobject2   1.10.2-6 The Cairo 2D vector graphics libra
ii  libcairo2   1.10.2-6 The Cairo 2D vector graphics libra
ii  libcanberra-gtk3-0  0.26-3   Gtk+ 3.0 helper for playing widget
ii  libcanberra00.26-3   a simple abstract interface for pl
ii  libclutter-1.0-01.6.10-3 Open GL based interactive canvas l
ii  libclutter-gtk-1.0-01.0.0-1  Open GL based interactive canvas l
ii  libfontconfig1  2.8.0-2.2generic font configuration library
ii  libfreetype62.4.4-1  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.6.0-4GCC support library
ii  libgconf2-4 2.32.1-2 GNOME configuration database syste
ii  libgdk-pixbuf2.0-0  2.23.3-3 GDK Pixbuf library
ii  libgl1-mesa-glx [libgl1 7.10.2-1 A free implementation of the OpenG
ii  libglib2.0-02.28.6-1 The GLib library of C routines
ii  libglu1-mesa [libglu1]  7.10.2-1 The OpenGL utility library (GLU)
ii  libgmp102:5.0.1+dfsg-7   Multiprecision arithmetic library
ii  libgtk-3-0  3.0.8-1  The GTK+ graphical user interface 
ii  libice6 2:1.0.7-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.28.3-6 Layout and rendering of internatio
ii  librsvg2-2  2.32.1-1 SAX-based renderer library for SVG
ii  librsvg2-common 2.32.1-1 SAX-based renderer library for SVG
ii  libsm6  2:1.2.0-1X11 Session Management library
ii  libsqlite3-03.7.5-1  SQLite 3 shared library
ii  libstdc++6  4.6.0-4  The GNU Standard C++ Library v3
ii  libx11-62:1.4.3-1X11 client-side library
ii  mesa-utils  8.0.1-2  Miscellaneous Mesa GL utilities
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages gnome-games recommends:
pn  gnome-games-extra-datanone (no description available)
ii  gvfs  1.6.4-3userspace virtual filesystem - ser

Versions of packages gnome-games suggests:
pn  gnome-hearts  none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#615770: Patch

2011-03-05 Thread Adrian Lang
Hi,

I attached a patch which fixed the FTBFS for me.

Regards,
Adrian
diff --git a/ext/openssl/config0.m4 b/ext/openssl/config0.m4
index ee5e85c..c1c10ee 100644
--- a/ext/openssl/config0.m4
+++ b/ext/openssl/config0.m4
@@ -12,6 +12,8 @@ if test $PHP_OPENSSL != no; then
   PHP_NEW_EXTENSION(openssl, openssl.c xp_ssl.c, $ext_shared)
   PHP_SUBST(OPENSSL_SHARED_LIBADD)
 
+  PHP_ADD_LIBRARY(crypto)
+
   if test $PHP_KERBEROS != no; then
 PHP_SETUP_KERBEROS(OPENSSL_SHARED_LIBADD)
   fi


signature.asc
Description: PGP signature


Bug#612436: installation-reports: Erroneously warns about a missing NewWorld boot partition

2011-02-08 Thread Adrian Lang
Package: installation-reports
Severity: minor
Tags: squeeze d-i

I used expert installation method since I wanted to encrypt my installation.
partman chose useful defaults for partitions, but warned after accepting the
partition configuration with the following text: No Newworld boot partition
was found, the yaboot boot laoder requires an apple_bootstrap partition at
least 819200 byes in size using the HFS macintosh file system. I ignored the
warning since there was such a partition present. No further problems occured,
installation runs fine.



-- Package-specific info:

Boot method: CD
Image version: Original 6.0.0 powerpc netinst image from 6 Feb 2011
Date: Date and time of the install

Machine: PowerBook G4 Al 1,5 GHz 15
Partitions: df -Tl will do; the raw partition table is preferred


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [ ]
Detect network card:[ ]
Configure network:  [ ]
Detect CD:  [ ]
Load installer modules: [ ]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Install base system:[ ]
Clock/timezone setup:   [ ]
User/password setup:[ ]
Install tasks:  [ ]
Install boot loader:[ ]
Overall install:[ ]

Comments/Problems:

Description of the install, in prose, and any thoughts, comments
  and ideas you had during the initial install.



-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20110106+b1
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux kima 2.6.32-5-powerpc #1 Fri Dec 10 16:30:49 UTC 2010 ppc 
GNU/Linux
lspci -knn: :00:0b.0 Host bridge [0600]: Apple Computer Inc. UniNorth 2 AGP 
[106b:0034]
lspci -knn: Kernel driver in use: agpgart-uninorth
lspci -knn: :00:10.0 VGA compatible controller [0300]: ATI Technologies Inc 
RV350 [Mobility Radeon 9600 M10] [1002:4e50]
lspci -knn: Subsystem: ATI Technologies Inc RV350 [Mobility Radeon 9600 
M10] [1002:4e50]
lspci -knn: Kernel driver in use: radeonfb
lspci -knn: 0001:10:0b.0 Host bridge [0600]: Apple Computer Inc. UniNorth 2 PCI 
[106b:0035]
lspci -knn: 0001:10:12.0 Network controller [0280]: Broadcom Corporation 
BCM4306 802.11b/g Wireless LAN Controller [14e4:4320] (rev 03)
lspci -knn: Subsystem: Apple Computer Inc. Device [106b:004e]
lspci -knn: Kernel driver in use: b43-pci-bridge
lspci -knn: 0001:10:13.0 CardBus bridge [0607]: Texas Instruments PCI1510 PC 
card Cardbus Controller [104c:ac56]
lspci -knn: Kernel driver in use: yenta_cardbus
lspci -knn: 0001:10:17.0 Unassigned class [ff00]: Apple Computer Inc. 
KeyLargo/Intrepid Mac I/O [106b:003e]
lspci -knn: Kernel driver in use: macio
lspci -knn: 0001:10:18.0 USB Controller [0c03]: Apple Computer Inc. 
KeyLargo/Intrepid USB [106b:003f]
lspci -knn: 0001:10:19.0 USB Controller [0c03]: Apple Computer Inc. 
KeyLargo/Intrepid USB [106b:003f]
lspci -knn: 0001:10:1a.0 USB Controller [0c03]: Apple Computer Inc. 
KeyLargo/Intrepid USB [106b:003f]
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: 0001:10:1b.0 USB Controller [0c03]: NEC Corporation USB [1033:0035] 
(rev 43)
lspci -knn: Subsystem: NEC Corporation USB [1033:0035]
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: 0001:10:1b.1 USB Controller [0c03]: NEC Corporation USB [1033:0035] 
(rev 43)
lspci -knn: Subsystem: NEC Corporation USB [1033:0035]
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: 0001:10:1b.2 USB Controller [0c03]: NEC Corporation USB 2.0 
[1033:00e0] (rev 04)
lspci -knn: Subsystem: NEC Corporation USB 2.0 [1033:00e0]
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: 0002:24:0b.0 Host bridge [0600]: Apple Computer Inc. UniNorth 2 
Internal PCI [106b:0036]
lspci -knn: 0002:24:0d.0 Unassigned class [ff00]: Apple Computer Inc. 
UniNorth/Intrepid ATA/100 [106b:003b]
lspci -knn: Kernel driver in use: ide-pmac
lspci -knn: 0002:24:0e.0 FireWire (IEEE 1394) [0c00]: Apple Computer Inc. 
UniNorth 2 FireWire [106b:0031] (rev 81)
lspci -knn: Subsystem: Apple Computer Inc. Device [106b:5811]
lspci -knn: Kernel driver in use: firewire_ohci
lspci -knn: 0002:24:0f.0 Ethernet controller [0200]: Apple Computer Inc. 
UniNorth 2 GMAC (Sun GEM) [106b:0032] (rev 80)
lspci -knn: Kernel driver in use: gem
usb-list: 
usb-list: Bus 01 Device 01: EHCI Host Controller [1d6b:0002]
usb-list:Level 00 Parent 00 Port 00  Class 09(hub  ) Subclass 00 Protocol 00

Bug#525443: libavcodec52: General protection fault

2010-08-20 Thread Adrian Lang
On Thu, 19 Aug 2010 22:51:51 +0200
Gabriele Giacone 1o5g4...@gmail.com wrote:

 could you please try to reproduce it with 0.8.7-3 version in testing
 and 0.8.8~bzr in experimental?
 
 I tried with 0.8.7-3 and it works well.

I tried http://www.youtube.com/watch?v=5ky6vgQfU24. With both it
gave an „An error occured“, but no segfault.

0.8.7-3 .xsession-errors: 

Warning: unrecognized directive XVideo in
rcfile /home/adrian/.gnashpluginrc line 32
Warning: unrecognized directive XVideo in
rcfile /home/adrian/.gnashpluginrc line 32
Warning: unrecognized directive Warning: unrecognized directive
XVideo in rcfile /home/adrian/.gnashpluginrc line 32 XVideo in
rcfile /home/adrian/.gnashpluginrc line 32


0.8.8~bzr .xsession-errors:

Warning: unrecognized directive XVideo in
rcfile /home/adrian/.gnashpluginrc line 32
Warning: unrecognized directive XVideo in
rcfile /home/adrian/.gnashpluginrc line 32
ERROR: Couldn't find Method onYouTubePlayerReady


Regards,
Adrian



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#586473: ifupdown: left behind obsolete /etc/init.d/loopback

2010-06-19 Thread Adrian Lang
Package: ifupdown
Version: 0.6.10
Severity: normal

Cannot migrate to dependency based boot sequencing (package ifupdown left 
obsolete init.d script behind)


$ dpkg-query -W -f='${Conffiles}\n' ifupdown
 /etc/init.d/ifupdown 346208729633adf45e2fa3f2bd3b19c6
 /etc/init.d/ifupdown-clean c6fffaae03271f1641920105ce68796b
 /etc/default/ifupdown fab851ca87c5deb9d6f665e610184648
 /etc/init.d/loopback e1fa0c2883b3cb51898025a453135eba obsolete


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ifupdown depends on:
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip
ii  net-tools 1.60-23The NET-3 networking toolkit

ifupdown recommends no packages.

Versions of packages ifupdown suggests:
ii  dhcp3-client   3.1.3-2   DHCP client
pn  iproutenone(no description available)
ii  ppp2.4.4rel-10.1 Point-to-Point Protocol (PPP) - da

-- debconf information:
  ifupdown/convert-interfaces-hotplug: true
  ifupdown/convert-interfaces: true



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#583390: linux-image-2.6.32-5-686: Hangs with ata frozen on boot

2010-05-27 Thread Adrian Lang
Package: linux-2.6
Version: 2.6.32-13
Severity: important
Tags: sid

After Loading, please wait..., linux hangs for 30 seconds. after that, it 
logs:

ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
ata1.00: cmd a0/01:00:00:80:00/00:00:00:00:00/a0 tag 0 dma 16512 in
 res 40/00:03:00:00:00/00:00:00:00:00/a0 Emask 0x4 (timeout)
ata1.00: status: { DRDY }

These messages are repeated after 40 seconds, and again 40 seconds.

linux-image-2.6.32-3-686 works, linux-image-2.6.33-2-686 and 
linux-image-2.6.34-1-686 show the same behaviour.

-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
not available

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 82G33/G31/P35/P31 Express DRAM 
Controller [8086:29c0] (rev 10)
Subsystem: ASUSTeK Computer Inc. P5KPL-VM Motherboard [1043:82b0]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR- INTx-
Latency: 0
Capabilities: access denied

00:01.0 PCI bridge [0604]: Intel Corporation 82G33/G31/P35/P31 Express PCI 
Express Root Port [8086:29c1] (rev 10) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
Memory behind bridge: fc00-fe9f
Prefetchable memory behind bridge: e000-efff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA+ MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: access denied
Kernel driver in use: pcieport

00:1b.0 Audio device [0403]: Intel Corporation N10/ICH 7 Family High Definition 
Audio Controller [8086:27d8] (rev 01)
Subsystem: ASUSTeK Computer Inc. P5KPL-VM Motherboard [1043:8290]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Interrupt: pin A routed to IRQ 16
Region 0: Memory at fbffc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: access denied
Kernel driver in use: HDA Intel

00:1c.0 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
1 [8086:27d0] (rev 01) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
I/O behind bridge: 1000-1fff
Memory behind bridge: 8000-801f
Prefetchable memory behind bridge: 8020-803f
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: access denied
Kernel driver in use: pcieport

00:1c.1 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 
2 [8086:27d2] (rev 01) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
I/O behind bridge: d000-dfff
Memory behind bridge: fea0-feaf
Prefetchable memory behind bridge: faf0-faff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: access denied
Kernel driver in use: pcieport

00:1d.0 USB Controller [0c03]: Intel Corporation N10/ICH7 Family USB UHCI 
Controller #1 [8086:27c8] (rev 01) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. P5KPL-VM,P5LD2-VM Mainboard [1043:8179]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 

Bug#580474: [Pkg-chromium-maint] Bug#580474: chromium-browser: Cannot leave fullscreen after moving window to another screen

2010-05-10 Thread Adrian Lang
fixed 580474 5.0.375.29~r46008-3
thanks

Seems to work now.




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#580474: chromium-browser: Cannot leave fullscreen after moving window to another screen

2010-05-06 Thread Adrian Lang
Package: chromium-browser
Version: 5.0.342.9~r43360-1
Severity: normal
Tags: experimental

Steps to reproduce:
  * Open Chromium
  * Maximize Chromium
  * Move Chromium window from one screen to another
  * Press F11
  * Press F11 again

Chromium should leave fullscreen mode and stay in normal window mode. Instead, 
it returns to fullscreen mode immediately.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-3-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages chromium-browser depends on:
ii  chromium-browser-ins 5.0.342.9~r43360-1  page inspector for the chromium-br
ii  libasound2   1.0.22-2shared library for ALSA applicatio
ii  libatk1.0-0  1.30.0-1The ATK accessibility toolkit
ii  libbz2-1.0   1.0.5-4 high-quality block-sorting file co
ii  libc62.10.2-6Embedded GNU C Library: Shared lib
ii  libcairo21.8.10-4The Cairo 2D vector graphics libra
ii  libexpat12.0.1-7 XML parsing C library - runtime li
ii  libfontconfig1   2.8.0-2.1   generic font configuration library
ii  libfreetype6 2.3.11-1FreeType 2 font engine, shared lib
ii  libgcc1  1:4.4.2-9   GCC support library
ii  libgconf2-4  2.28.1-3GNOME configuration database syste
ii  libglib2.0-0 2.24.0-1The GLib library of C routines
ii  libgtk2.0-0  2.20.0-3The GTK+ graphical user interface 
ii  libjpeg626b-16.1 The Independent JPEG Group's JPEG 
ii  libnspr4-0d  4.8.4-1 NetScape Portable Runtime Library
ii  libnss3-1d   3.12.6-2Network Security Service libraries
ii  libpango1.0-01.28.0-1Layout and rendering of internatio
ii  libpng12-0   1.2.43-1PNG library - runtime
ii  libstdc++6   4.4.2-9 The GNU Standard C++ Library v3
ii  libx11-6 2:1.3.3-3   X11 client-side library
ii  libxext6 2:1.1.1-3   X11 miscellaneous extension librar
ii  libxrender1  1:0.9.5-2   X Rendering Extension client libra
ii  libxss1  1:1.2.0-2   X11 Screen Saver extension library
ii  lzma 4.43-14 Compression method of 7z format in
ii  xdg-utils1.0.2+cvs20100307-1 desktop integration utilities from
ii  zlib1g   1:1.2.3.4.dfsg-3compression library - runtime

chromium-browser recommends no packages.

Versions of packages chromium-browser suggests:
pn  chromium-browser-l10n none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#565406: ACL can be edited

2010-01-15 Thread Adrian Lang
Package: dokuwiki
Version: 0.0.20080505-4
Tags: security, patch, fixed-upstream
Severity: serious

A major security problem allows to edit the ACL, thus gaining access to a 
closed wiki. See
[bugtracker] for description and patch. The problem is fixed in version 
2009-12-25b, I’ll upload a
package for this version to [mentors] in a few hours.

Regards,
Adrian Lang

[bugtracker] http://bugs.splitbrain.org/index.php?do=detailstask_id=1847 
[mentors] 
http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=dokuwiki






--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550537: udev: Does not mount audio CDs

2009-12-09 Thread Adrian Lang
Hi Marco,

apparently my reply did not get through, maybe for the different sender 
address. I’ll try to check
the current behavior in the next days.

Regards,
Adrian Lang

 Original Message 

Subject: Re: Bug#550537: udev: Does not mount audio CDs
From:Adrian Lang m...@adrianlang.de
Date:Sun, October 11, 2009 10:59 am
To:  Marco d'Itri m...@linux.it
Cc:  550...@bugs.debian.org
--

On Sat, 10 Oct 2009 23:36:46 +0200
m...@linux.it (Marco d'Itri) wrote:

 On Oct 10, Adrian Lang deb...@adrianlang.de wrote:

  Trying to (auto-)mount an audio CD gives an error
 Can you clarify why you believe this is related to udev?
 And what do you mean by mounting an audio CD?

Inserting it while GNOME runs. Same happens when doing
mount /media/cdrom, though. udev was my first guess, thinking about
having the same problem with manual mount it war probably wrong.

Regards,
Adrian


signature.asc
Description: PGP signature


Bug#555107: gnunet-tools: gnunet-setup creates invalid init script

2009-11-08 Thread Adrian Lang
Package: gnunet-tools
Version: 0.8.0c-8
Severity: normal

The /etc/init.d/gnunetd script gnunet-setup created has many syntax errors 
(additional newlines):


#!/bin/sh
#
# Automatically created by gnunet-setup
#

PIDFILE=/var/run/gnunetd//usr/bin/gnunetd.pid
APPNAME=GNUnet

case $1 in
  start)
echo -n Starting $APPNAME: 
/usr/bin/gnunetd
  echo ok || echo failed
;;
  stop)
echo -n Stopping $APPNAME: 
kill `cat $PIDFILE`
  echo ok || echo failed
;;
  reload)
echo -n Reloading $APPNAME: 
kill -HUP `cat $PIDFILE`
  echo ok || echo failed
;;
  restart|force-reload)
echo Restarting $APPNAME...
$0 stop
sleep 1
$0 start
;;
  *)
echo Usage: /etc/init.d//gnunetd {start|stop|reload|restart|force-reload} 
2
exit 1
;;

esac
exit 0


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnunet-tools depends on:
ii  gettext0.17-8GNU Internationalization utilities
ii  gnunet-common  0.8.0c-8  secure, trust-based peer-to-peer f
ii  guile-1.8-libs 1.8.7+1-2 Main Guile libraries
ii  libadns1   1.4-2 Asynchronous-capable DNS client li
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libbz2-1.0 1.0.5-3   high-quality block-sorting file co
ii  libc6  2.10.1-5  GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libextractor1c2a   0.5.23+dfsg-2 extracts meta-data from files of a
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.11-1  FreeType 2 font engine, shared lib
ii  libgcc11:4.4.1-4 GCC support library
ii  libgcrypt111.4.4-4   LGPL Crypto library - runtime libr
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.22.2-2  The GLib library of C routines
ii  libgmp3c2  2:4.3.1+dfsg-3Multiprecision arithmetic library
ii  libgsf-1-114   1.14.16-1 Structured File Library - runtime 
ii  libgtk2.0-02.18.3-1  The GTK+ graphical user interface 
ii  libltdl7   2.2.6a-4  A system independent dlopen wrappe
ii  libncursesw5   5.7+20090803-2shared libraries for terminal hand
ii  libpango1.0-0  1.26.0-1  Layout and rendering of internatio
ii  libqtcore4 4:4.5.3-4 Qt 4 core module
ii  libqtgui4  4:4.5.3-4 Qt 4 GUI module
ii  libstdc++6 4.4.1-4   The GNU Standard C++ Library v3
ii  libxml22.7.6.dfsg-1  GNOME XML library
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

gnunet-tools recommends no packages.

gnunet-tools suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#554623: amule: Please remove new version check

2009-11-05 Thread Adrian Lang
Package: amule
Version: 2.2.5-1.1
Severity: minor

Please remove the new version check since the application is managed by dpkg. 
This includes the preferences setting as well as the log message.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages amule depends on:
ii  amule-common   2.2.5-1.1 common files for the rest of aMule
ii  libc6  2.9-25GNU C Library: Shared libraries
ii  libcrypto++8   5.6.0-5   General purpose cryptographic libr
ii  libgcc11:4.4.1-4 GCC support library
ii  libgeoip1  1.4.6.dfsg-13 A non-DNS IP-to-country resolver l
ii  libstdc++6 4.4.1-4   The GNU Standard C++ Library v3
ii  libupnp3   1:1.6.6-3 Portable SDK for UPnP Devices (sha
ii  libwxbase2.8-0 2.8.7.1-1.1   wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-0  2.8.7.1-1.1   wxWidgets Cross-platform C++ GUI t
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

Versions of packages amule recommends:
pn  amule-utils   none (no description available)

Versions of packages amule suggests:
pn  amule-utils-gui   none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550537: udev: Does not mount audio CDs

2009-10-10 Thread Adrian Lang
Package: udev
Version: 0.141-2
Severity: normal

Trying to (auto-)mount an audio CD gives an error

[  207.374500] hdb: command error: status=0x51 { DriveReady SeekComplete Error }
[  207.374515] hdb: command error: error=0x54 { AbortedCommand LastFailedSense=0
x05 }
[  207.374525] hdb: possibly failed opcode: 0xa0
[  207.377203] ATAPI device hdb:
[  207.377214]   Error: Illegal request -- (Sense key=0x05)
[  207.377224]   Illegal mode for this track or incompatible medium -- (asc=0x64
, ascq=0x00)
[  207.377230]   The failed Read 10 packet command was: 
[  207.377233]   28 00 00 00 00 10 00 00 01 00 00 00 00 00 00 00 
[  207.377255] end_request: I/O error, dev hdb, sector 64

This error repeats multiple times for different sectors and finishes with:

[  207.529710] isofs_fill_super: bread failed, dev=hdb, iso_blknum=16, block=16

Data CDs are mounted just perfectly. The problem persists with 146-5.

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 16
-rw-r--r-- 1 root root  761 Oct 10 23:08 70-persistent-cd.rules
-rw-r--r-- 1 root root  385 Oct 10 22:57 70-persistent-net.rules
-rw-r--r-- 1 root root 7117 Apr 12 00:06 z60_xserver-xorg-input-wacom.rules

-- /sys/:
/sys/dev
/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3/dev
/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4/event4/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-0:1.0/usb_endpoint/usbdev2.1_ep81/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/2-1:1.0/0003:1532:0101.0001/hidraw/hidraw0/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/2-1:1.0/input/input1/event1/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/2-1:1.0/input/input1/mouse0/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/2-1:1.0/usb_endpoint/usbdev2.2_ep81/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/2-1:1.1/0003:1532:0101.0002/hidraw/hidraw1/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/2-1:1.1/input/input2/event2/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/2-1:1.1/usb_endpoint/usbdev2.2_ep82/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/usb_device/usbdev2.2/dev
/sys/devices/pci:00/:00:0b.0/usb2/2-1/usb_endpoint/usbdev2.2_ep00/dev
/sys/devices/pci:00/:00:0b.0/usb2/dev
/sys/devices/pci:00/:00:0b.0/usb2/usb_device/usbdev2.1/dev
/sys/devices/pci:00/:00:0b.0/usb2/usb_endpoint/usbdev2.1_ep00/dev
/sys/devices/pci:00/:00:0b.1/usb1/1-0:1.0/usb_endpoint/usbdev1.1_ep81/dev
/sys/devices/pci:00/:00:0b.1/usb1/dev
/sys/devices/pci:00/:00:0b.1/usb1/usb_device/usbdev1.1/dev
/sys/devices/pci:00/:00:0b.1/usb1/usb_endpoint/usbdev1.1_ep00/dev
/sys/devices/pci:00/:00:0d.0/ide0/0.1/block/hdb/dev
/sys/devices/pci:00/:00:0e.0/host0/target0:0:0/0:0:0:0/block/sda/dev
/sys/devices/pci:00/:00:0e.0/host0/target0:0:0/0:0:0:0/block/sda/sda1/dev
/sys/devices/pci:00/:00:0e.0/host0/target0:0:0/0:0:0:0/block/sda/sda2/dev
/sys/devices/pci:00/:00:0e.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0/dev
/sys/devices/pci:00/:00:0e.0/host1/target1:0:0/1:0:0:0/block/sdb/dev
/sys/devices/pci:00/:00:0e.0/host1/target1:0:0/1:0:0:0/block/sdb/sdb1/dev
/sys/devices/pci:00/:00:0e.0/host1/target1:0:0/1:0:0:0/block/sdb/sdb2/dev
/sys/devices/pci:00/:00:0e.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0/dev
/sys/devices/pci:00/:00:0f.0/host2/target2:0:0/2:0:0:0/block/sdc/dev
/sys/devices/pci:00/:00:0f.0/host2/target2:0:0/2:0:0:0/block/sdc/sdc1/dev
/sys/devices/pci:00/:00:0f.0/host2/target2:0:0/2:0:0:0/block/sdc/sdc2/dev
/sys/devices/pci:00/:00:0f.0/host2/target2:0:0/2:0:0:0/block/sdc/sdc3/dev
/sys/devices/pci:00/:00:0f.0/host2/target2:0:0/2:0:0:0/block/sdc/sdc5/dev
/sys/devices/pci:00/:00:0f.0/host2/target2:0:0/2:0:0:0/bsg/2:0:0:0/dev
/sys/devices/pci:00/:00:0f.0/host3/target3:0:0/3:0:0:0/block/sdd/dev
/sys/devices/pci:00/:00:0f.0/host3/target3:0:0/3:0:0:0/block/sdd/sdd1/dev
/sys/devices/pci:00/:00:0f.0/host3/target3:0:0/3:0:0:0/bsg/3:0:0:0/dev
/sys/devices/pci:00/:00:10.0/:04:08.0/video4linux/radio0/dev
/sys/devices/pci:00/:00:10.0/:04:08.0/video4linux/vbi0/dev
/sys/devices/pci:00/:00:10.0/:04:08.0/video4linux/video0/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/controlC0/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/dmmidi/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/midi/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/midiC0D0/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/pcmC0D0c/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/pcmC0D0p/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/pcmC0D1p/dev
/sys/devices/pci:00/:00:10.0/:04:09.0/sound/card0/pcmC0D2p/dev
/sys/devices/platform/i8042/serio0/input/input0/event0/dev

Bug#548336: epiphany-browser: Segfaults on Preferences menu item

2009-09-25 Thread Adrian Lang
Package: epiphany-browser
Version: 2.28.0-1
Severity: important

On clicking Edit-Preferences, epiphany crashes with

process 26492: type array 97 not a basic type
process 26492: type array 97 not a basic type
process 26492: type invalid 0 not a basic type
process 26492: type invalid 0 not a basic type
process 26492: type struct 114 not a basic type
Program received signal SIGSEGV, Segmentation fault.
0xb7c7cbb6 in ?? () from /lib/libdbus-1.so.3

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages epiphany-browser depends on:
ii  dbus-x111.2.16-2 simple interprocess messaging syst
ii  epiphany-browser-data   2.28.0-1 Data files for the GNOME web brows
ii  gnome-icon-theme2.26.0-1 GNOME Desktop icon theme
ii  iso-codes   3.10.3-1 ISO language, territory, currency,
ii  libavahi-client30.6.25-1 Avahi client library
ii  libavahi-common30.6.25-1 Avahi common library
ii  libavahi-gobject0   0.6.25-1 Avahi GObject library
ii  libc6   2.9-26   GNU C Library: Shared libraries
ii  libdbus-1-3 1.2.16-2 simple interprocess messaging syst
ii  libdbus-glib-1-20.82-1   simple interprocess messaging syst
ii  libgconf2-4 2.26.2-3 GNOME configuration database syste
ii  libgirepository1.0-00.6.5-1  Library for handling GObject intro
ii  libglib2.0-02.22.0-1 The GLib library of C routines
ii  libgnome-keyring0   2.26.1-1 GNOME keyring services library
ii  libgtk2.0-0 2.18.0-1 The GTK+ graphical user interface 
ii  libice6 2:1.0.5-1X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1-gtk2 0.4.5-1  sends desktop notifications to a n
ii  libnspr4-0d 4.8-1NetScape Portable Runtime Library
ii  libnss3-1d  3.12.3.1-1   Network Security Service libraries
ii  libpango1.0-0   1.26.0-1 Layout and rendering of internatio
ii  libseed02.28.0-1 GObject JavaScript bindings for th
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libsoup-gnome2.4-1  2.28.0-1 an HTTP library implementation in 
ii  libsoup2.4-12.28.0-1 an HTTP library implementation in 
ii  libwebkit-1.0-2 1.1.15.1-1   Web content engine library for Gtk
ii  libx11-62:1.2.2-1X11 client-side library
ii  libxml2 2.7.4.dfsg-2 GNOME XML library
ii  libxslt1.1  1.1.24-2 XSLT processing library - runtime 

Versions of packages epiphany-browser recommends:
pn  yelp  none (no description available)

Versions of packages epiphany-browser suggests:
pn  mozpluggernone (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548361: totem: Segfault on start

2009-09-25 Thread Adrian Lang
Package: totem
Version: 2.28.0-2
Severity: important

After start:
process 29857: type array 97 not a basic type
process 29857: type array 97 not a basic type
process 29857: type invalid 0 not a basic type
process 29857: type invalid 0 not a basic type
process 29857: type struct 114 not a basic type

Program received signal SIGSEGV, Segmentation fault.
0xb7d0bbb6 in ?? () from /lib/libdbus-1.so.3

This is probably related to / a dupe of #548336 and rather a fault in libdbus-1.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages totem depends on:
ii  gnome-icon-theme   2.26.0-1  GNOME Desktop icon theme
ii  gstreamer0.10-alsa [gs 0.10.24-2 GStreamer plugin for ALSA
ii  gstreamer0.10-plugins- 0.10.14-2+b1  GStreamer plugins from the bad s
ii  gstreamer0.10-plugins- 0.10.24-2 GStreamer plugins from the base 
ii  gstreamer0.10-plugins- 0.10.16-1 GStreamer plugins from the good 
ii  gstreamer0.10-pulseaud 0.10.16-1 GStreamer plugin for PulseAudio
ii  gstreamer0.10-x0.10.24-2 GStreamer plugins for X11 and Pang
ii  iso-codes  3.10.3-1  ISO language, territory, currency,
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.16-2  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.82-1simple interprocess messaging syst
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.9-5   FreeType 2 font engine, shared lib
ii  libgconf2-42.26.2-3  GNOME configuration database syste
ii  libglib2.0-0   2.22.0-1  The GLib library of C routines
ii  libgstreamer-plugins-b 0.10.24-2 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.24-1 Core GStreamer libraries and eleme
ii  libgtk2.0-02.18.0-1  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libnautilus-extension1 2.28.0-2  libraries for nautilus components 
ii  libpango1.0-0  1.26.0-1  Layout and rendering of internatio
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libtotem-plparser122.28.0-1  Totem Playlist Parser library - ru
ii  libunique-1.0-01.0.8-1   Library for writing single instanc
ii  libx11-6   2:1.2.2-1 X11 client-side library
ii  libxml22.7.4.dfsg-2  GNOME XML library
ii  libxrandr2 2:1.3.0-2 X11 RandR extension library
ii  libxtst6   2:1.0.3-1 X11 Testing -- Resource extension 
ii  libxxf86vm11:1.0.2-1 X11 XFree86 video mode extension l
ii  python 2.5.4-2   An interactive high-level object-o
ii  python-support 1.0.3 automated rebuilding support for P
ii  python2.5  2.5.4-1   An interactive high-level object-o
ii  totem-common   2.28.0-2  Data files for the Totem media pla
ii  totem-plugins  2.28.0-2  Plugins for the Totem media player
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

Versions of packages totem recommends:
ii  gstreamer0.10-ffmpeg0.10.8-2 FFmpeg plugin for GStreamer
ii  gstreamer0.10-plugins-bad   0.10.14-2+b1 GStreamer plugins from the bad s
ii  gstreamer0.10-plugins-ugly  0.10.12-1+b1 GStreamer plugins from the ugly 
ii  totem-mozilla   2.28.0-2 Totem Mozilla plugin

Versions of packages totem suggests:
pn  gnome-codec-install   none (no description available)

Versions of packages totem-gstreamer depends on:
ii  gnome-icon-theme   2.26.0-1  GNOME Desktop icon theme
ii  gstreamer0.10-alsa [gs 0.10.24-2 GStreamer plugin for ALSA
ii  gstreamer0.10-plugins- 0.10.14-2+b1  GStreamer plugins from the bad s
ii  gstreamer0.10-plugins- 0.10.24-2 GStreamer plugins from the base 
ii  gstreamer0.10-plugins- 0.10.16-1 GStreamer plugins from the good 
ii  gstreamer0.10-pulseaud 0.10.16-1 GStreamer plugin for PulseAudio
ii  gstreamer0.10-x0.10.24-2 GStreamer plugins for X11 and Pang
ii  iso-codes  3.10.3-1  ISO language, territory, currency,
ii  libatk1.0-01.28.0-1  The ATK accessibility toolkit
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The 

Bug#548362: claws-mail: Entries are not removed from mail list window when switching folder

2009-09-25 Thread Adrian Lang
Package: claws-mail
Version: 3.7.2-2
Severity: minor

A folder with hide read items is displayed, showing 5 entries. When switching 
to another folder (same setting) with 1 entry, the first entry correctly 
displays the new one, but 4 entries from the old folder are still shown. They 
do not interact and are cleared when the window redraws.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages claws-mail depends on:
ii  libc6 2.9-26 GNU C Library: Shared libraries
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libcompfaceg1 1:1.5.2-5  Compress/decompress images for mai
ii  libdbus-glib-1-2  0.82-1 simple interprocess messaging syst
ii  libenchant1c2a1.4.2-3.3  a wrapper library for various spel
ii  libetpan130.58-1 mail handling library
ii  libgcrypt11   1.4.4-4LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.22.0-1   The GLib library of C routines
ii  libgnutls26   2.8.3-3the GNU TLS library - runtime libr
ii  libgtk2.0-0   2.18.0-1   The GTK+ graphical user interface 
ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libldap-2.4-2 2.4.17-2   OpenLDAP libraries
ii  libpango1.0-0 1.26.0-1   Layout and rendering of internatio
ii  libpisock90.12.4-6   library for communicating with a P
ii  libsm62:1.1.1-1  X11 Session Management library
ii  xdg-utils 1.0.2-6.1  desktop integration utilities from

Versions of packages claws-mail recommends:
ii  aspell-de [aspell-dictionary] 20071211-2 German dictionary for aspell
ii  aspell-en [aspell-dictionary] 6.0-0-5.1  English dictionary for GNU Aspell
pn  claws-mail-i18n   none (no description available)
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X

Versions of packages claws-mail suggests:
pn  claws-mail-docnone (no description available)
pn  claws-mail-tools  none (no description available)
ii  epiphany-browser [www-browser 2.28.0-2   Intuitive GNOME web browser
ii  gedit 2.26.3-1   official text editor of the GNOME 
ii  iceweasel [www-browser]   3.0.14-1   lightweight web browser based on M

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#545872: [DRE-maint] Bug#545872: libapache2-mod-passenger: Does not work with apache-prefork

2009-09-23 Thread Adrian Lang
Hi Micah,

On Tue, September 22, 2009 10:40 pm, Micah Anderson wrote:
 Do you think that the following change to the control file would be
 sufficient:

 Index: debian/control
 ===
 --- debian/control(revision 4156)
 +++ debian/control(working copy)
 @@ -4,7 +4,7 @@
 - apache2-mpm-worker, libapr1-dev, rubygems (= 1.2), debhelper (= 5.0.44),
 + apache2-mpm-worker | apache2-mpm-prefork, libapr1-dev, rubygems (= 1.2), 
 debhelper (= 5.0.44),
   ruby-dev, doxygen, asciidoc (= 8.2), graphviz, rake, cdbs, source-highlight

as long as there is no special reason to prohibit the usage of prefork.

Regards,
Adrian




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#545872: libapache2-mod-passenger: Does not work with apache-prefork

2009-09-09 Thread Adrian Lang
Package: libapache2-mod-passenger
Version: 2.2.4-1lenny1
Severity: normal

The package depends on apache2-mpm-worker while the one from 
http://debian.tryphon.org/ works with apache2-mpm-prefork as well.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#528053: php5-cli: Occasionaly crashes with 'Segmentation fault' after execution is finished

2009-08-29 Thread Adrian Lang
On Thu, 13 Aug 2009 14:11:47 -0500
Raphael Geissert geiss...@debian.org wrote:
 Please install the php5-dbg package and provide a full backtrace

(gdb) run -f test.php
Starting program: /usr/bin/php -f test.php
[Thread debugging using libthread_db enabled]
[New Thread 0xb78816d0 (LWP 3547)]
[New Thread 0xb70abb90 (LWP 3548)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb70abb90 (LWP 3548)]
0xb713be90 in ?? ()
(gdb) backtrace full
#0  0xb713be90 in ?? ()
No symbol table info available.
#1  0xb7894f3b in start_thread () from /lib/libpthread.so.0
No symbol table info available.
#2  0xb7ac4bee in clone () from /lib/libc.so.6
No symbol table info available.

 On what architecture(s) are you experiencing the problem?
x86_64

 How many cores does the CPU have?
2

 Do you have the mysql extension installed?
yes

Thanks for your help,
Adrian Lang



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#528053: php5-cli: Same here

2009-08-05 Thread Adrian Lang
Package: php5-cli
Version: 5.2.6.dfsg.1-1+lenny3
Followup-For: Bug #528053

I have the same problem as well. Occasional segfaults for simple PHP scripts or 
just php --version.

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-028stab056 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages php5-cli depends on:
ii  libbz2-1.0  1.0.5-1  high-quality block-sorting file co
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcomerr2  1.41.3-1 common error description library
ii  libdb4.64.6.21-11Berkeley v4.6 Database Libraries [
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  libmagic1   4.26-1   File type determination library us
ii  libncurses5 5.7+20081213-1   shared libraries for terminal hand
ii  libpcre37.6-2.1  Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8g-15+lenny1 SSL shared libraries
ii  libxml2 2.6.32.dfsg-5GNOME XML library
ii  mime-support3.44-1   MIME files 'mime.types'  'mailcap
ii  php5-common 5.2.6.dfsg.1-1+lenny3Common files for packages built fr
ii  tzdata  2009g-0lenny1time zone and daylight-saving time
ii  ucf 3.0016   Update Configuration File: preserv
ii  zlib1g  1:1.2.3.3.dfsg-12compression library - runtime

php5-cli recommends no packages.

Versions of packages php5-cli suggests:
ii  php-pear   5.2.6.dfsg.1-1+lenny3 PEAR - PHP Extension and Applicati

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#539547: gnome-mount: LUKS-encrypted volume is shown as unmounted in the media list

2009-08-01 Thread Adrian Lang
Package: gnome-mount
Version: 0.8-2
Severity: normal

I tried to create an LUKS-encrypted partition with cryptsetup. The partition 
should span the complete /dev/sdd, a 750 GB GPT-based disk. I followed 
http://www.saout.de/tikiwiki/tiki-index.php?page=EncryptedDeviceUsingLUKS which 
worked well. After Step 5 (Mount the Filesystem) the volume showed up in Main 
Menu - Places and computer:/// with correct size, name, everything fine. Next 
I added the necessary lines to /etc/fstab (for /dev/mapper/sdd1) and 
/etc/crypttab to get the partition mounted on boot with password prompt.

After reboot, the partition is mounted correctly, but Places only shows an 
unmounted 750 GB Medium. Mounting it through Nautilus or Places fails. Removing 
the /etc/fstab entry and rebooting still gives an unmounted, unnamed media, but 
allows to mount it.

Next I tried to remove the crypttab entry as well. After running luksOpen, 
/usr/lib/gvfs/gvfs-hal-volume-monitor spawns gnome-mount for /dev/dm-0 which 
prompts for admin password to mount the disk. If provided, the partition is 
mounted, once again without a label. At this step, an entry for 
/dev/mapper/sdd1 in fstab does not change gnome-mount‘s behavior. Hence I 
determined the UUID of /dev/dm-0 and added an UUID-based fstab entry. Now the 
automatically called gnome-mount fails after luksOpen with a permission error.

Now I re-added the crypttab entry. Along with the UUID fstab entry, I get an 
automatically mounted volume /dev/dm-0 without a name. This is a working, ugly 
workaround.

The main problem is that using crypttab and fstab to automatically mount the 
volume on boot does not work.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-mount depends on:
ii  eject2.1.5+deb1+cvs20081104-6ejects CDs and operates CD-Changer
ii  gconf2   2.26.2-2GNOME configuration database syste
ii  hal  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer
ii  libatk1.0-0  1.26.0-1The ATK accessibility toolkit
ii  libc62.9-12  GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libdbus-1-3  1.2.16-2simple interprocess messaging syst
ii  libdbus-glib 0.80-4  simple interprocess messaging syst
ii  libfontconfi 2.6.0-4 generic font configuration library
ii  libfreetype6 2.3.9-4.1   FreeType 2 font engine, shared lib
ii  libgconf2-4  2.26.2-2GNOME configuration database syste
ii  libglade2-0  1:2.6.4-1   library to load .glade files at ru
ii  libglib2.0-0 2.20.4-1The GLib library of C routines
ii  libgnome-key 2.26.1-1GNOME keyring services library
ii  libgtk2.0-0  2.16.1-2The GTK+ graphical user interface 
ii  libhal-stora 0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer - share
ii  libhal1  0.5.12~git20090406.46dc48-2 Hardware Abstraction Layer - share
ii  libnautilus- 2.26.3-1libraries for nautilus components 
ii  libnotify1 [ 0.4.5-1 sends desktop notifications to a n
ii  libpango1.0- 1.24.5-1Layout and rendering of internatio
ii  libxml2  2.7.3.dfsg-2GNOME XML library

gnome-mount recommends no packages.

Versions of packages gnome-mount suggests:
ii  cryptsetup  2:1.0.7-1configures encrypted block devices
ii  ntfs-3g 1:2009.4.4-1 read-write NTFS driver for FUSE

-- no debconf information



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#530944: linux-image-2.6.29-2-686: drm:i915_get_vblank_counter with i950 after Blank screen

2009-07-25 Thread Adrian Lang
Moritz Muehlenhoff wrote:
 Does this error persist wit 2.6.30 from unstable?

No, the current sid kernel fixes the problem.

Regards,
Adrian Lang





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#530944: linux-image-2.6.29-2-686: drm:i915_get_vblank_counter with i950 after Blank screen

2009-05-28 Thread Adrian Lang
Package: linux-image-2.6.29-2-686
Version: 2.6.29-5
Severity: normal

I am running an MSI Wind Netbook with Intel 950 VGA.

After blanking screen (due to closing lid, locking screen, hibernate oder 
suspend) the screen does not resume but stay
black. When moving the mouse it flickers. Keyboard remains responsive.

dmesg shows:

[drm:i915_get_vblank_counter] *ERROR* trying to get vblank count for disabled 
pipe 0

gdm works fine after getting restarted.

The problem occurs with 2.6.29 as well as with 2.6.26.

http://www.gossamer-threads.com/lists/linux/kernel/1035744 seems related, but 
nomodeset did not help.

-- Package-specific info:
** Version:
Linux version 2.6.29-2-686 (Debian 2.6.29-5) (wa...@debian.org) (gcc version 
4.3.3 (Debian 4.3.3-10) ) #1 SMP Sun May 17 17:56:29 UTC 2009

** Command line:
root=UUID=fc35c8d0-018f-4397-8be0-114924c2a6a3 ro quiet nomodeset 

** Tainted: G (1024)

** Kernel log:
[ 4430.006413] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4430.006422] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4430.010121] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4430.010140] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4432.779994] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4432.780005] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4432.783761] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4432.783771] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.527095] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.527114] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.530502] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.530520] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.655983] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.656002] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.659599] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.659615] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.786819] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.786834] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.790411] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.790426] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.905762] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.905777] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4433.909430] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4433.909444] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.034383] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.034394] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.037866] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.037885] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.163245] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.163264] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.166603] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.166617] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.294936] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.294951] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.298645] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.298659] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.343225] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.343240] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.347518] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.347531] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.407081] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.407096] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.410674] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.410683] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.470937] atkbd.c: Unknown key pressed (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.470952] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.474702] atkbd.c: Unknown key released (translated set 2, code 0xf7 on 
isa0060/serio0).
[ 4434.474716] atkbd.c: Use 'setkeycodes e077 keycode' to make it known.
[ 4434.534903] atkbd.c: Unknown key pressed (translated set 

Bug#525443: libavcodec52: General protection fault

2009-04-24 Thread Adrian Lang
Package: libavcodec52
Version: 3:0.svn20090303-1
Severity: important

Error occurs with gnash 0.8.5-1 on http://www.youtube.com/watch?v=DJ4PMYphIJU 
and http://www.youtube.com/watch?v=5ky6vgQfU24.

Dmesg shows:

[ 4482.807391] gtk-gnash[10322] general protection ip:b6a86fe5 sp:bf9cc204 
error:0 in libavcodec.so.52.20.0[b66a8000+4b9000]
[ 4519.558333] gtk-gnash[10326] general protection ip:b69e4fe5 sp:bf827864 
error:0 in libavcodec.so.52.20.0[b6606000+4b9000]
[ 4549.227751] gtk-gnash[10335] general protection ip:b6a3afe5 sp:bfb7fbe4 
error:0 in libavcodec.so.52.20.0[b665c000+4b9000]
[ 4868.835980] gtk-gnash[10442] general protection ip:b69fdfe5 sp:bfa432a4 
error:0 in libavcodec.so.52.20.0[b661f000+4b9000]
[ 5052.422316] gtk-gnash[10527] general protection ip:b6ab5fe5 sp:bfcf8de4 
error:0 in libavcodec.so.52.20.0[b66d7000+4b9000]


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libavcodec52 depends on:
ii  libavutil493:0.svn20090303-1 ffmpeg utility library
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libfaad0   2.6.1-3.1 freeware Advanced Audio Decoder - 
ii  libgsm11.0.12-1  Shared libraries for GSM speech co
ii  libschroedinger-1.0-0  1.0.5-1   library for encoding/decoding of D
ii  libspeex1  1.2~rc1-1 The Speex codec runtime library
ii  libtheora0 1.0-2 The Theora Video Compression Codec
ii  libvorbis0a1.2.0.dfsg-4  The Vorbis General Audio Compressi
ii  libvorbisenc2  1.2.0.dfsg-4  The Vorbis General Audio Compressi
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

libavcodec52 recommends no packages.

libavcodec52 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#520103: enigmail: Crashes icedove on key management

2009-03-17 Thread Adrian Lang
Package: enigmail
Version: 2:0.95.0+1-4
Severity: important

Icedove freezes when opening key management, trying to import an attached key 
or fetching a key from a key server. /var/log/messages does not show any 
message, top shows no cpu usage from enigmail/gpg/icedove.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages enigmail depends on:
ii  gnupg 1.4.9-4GNU privacy guard - a free PGP rep
ii  icedove   2.0.0.19-1 free/unbranded thunderbird mail/ne
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-3  GCC support library
ii  libnspr4-0d   4.7.1-4NetScape Portable Runtime Library
ii  libstdc++64.3.3-3The GNU Standard C++ Library v3

enigmail recommends no packages.

enigmail suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#519263: pidgin: Links do not open in browser when clicked

2009-03-11 Thread Adrian Lang
Package: pidgin
Version: 2.5.5-1
Severity: normal

A received link is displayed as usual, but left-clicking it or right-clicking 
and selecting Open link in browser does nothing. I am running Iceweasel from 
squeeze (3.0.6-1).

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages pidgin depends on:
ii  gconf2 2.24.0-7  GNOME configuration database syste
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.12-1  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.80-3simple interprocess messaging syst
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.18.4-2  The GLib library of C routines
ii  libgstreamer0.10-0 0.10.22-2 Core GStreamer libraries and eleme
ii  libgtk2.0-02.14.7-4  The GTK+ graphical user interface 
ii  libgtkspell0   2.0.13-2  a spell-checking addon for GTK's T
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.22.4-2  Layout and rendering of internatio
ii  libpurple0 2.5.5-1   multi-protocol instant messaging l
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxss11:1.1.3-1 X11 Screen Saver extension library
ii  perl   5.10.0-19 Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.1 5.10.0-19 minimal Perl system
ii  pidgin-data2.5.5-1   multi-protocol instant messaging c
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.22-3  GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good0.10.8-4.1 GStreamer plugins from the good 

Versions of packages pidgin suggests:
pn  evolution-data-server none (no description available)
ii  gnome-panel   2.20.3-5   launcher and docking facility for 
ii  libsqlite3-0  3.5.9-6SQLite 3 shared library

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#512473: gcj-4.3: Uses StringBuilder in 1.4 mode

2009-01-20 Thread Adrian Lang
Package: gcj-4.3
Version: 4.3.2-2
Severity: normal

Consider the following class:

public class Testclass {
public void testfunc() {
int i = 5;
new String(i is  + i);
}
}


now compile with

gcj -fsource=1.4 -C Testclass.java



$ grep StringBuilder *
Binary file Testclass.class matches


As you may see, java.lang.StringBuilder is used in this classfile.
However, Java 2 Platform SE v1.4 has no such class.
(http://java.sun.com/j2se/1.4.2/docs/api/java/lang/package-summary.html)

A class compiled for 1.4 should use java.lang.StringBuffer instead.

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-486
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gcj-4.3 depends on:
ii  gcc-4.34.3.2-1.1 The GNU C compiler
ii  gcj-4.3-base   4.3.2-2   The GNU Compiler Collection (gcj b
ii  gij-4.34.3.2-2   The GNU Java bytecode interpreter
ii  java-common0.30  Base of all Java packages
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libc6-dev  2.7-18GNU C Library: Development Librari
ii  libecj-java3.3.0+0728-9  Eclipse Java compiler (library)
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libgcj-bc  4.3.2-2   Link time only library for use wit
ii  libgcj9-0  4.3.2-2   Java runtime library for use with
ii  libgcj9-dev4.3.2-2   Java development headers for use w
ii  libgcj9-jar4.3.2-2   Java runtime library for use with
ii  libgmp3c2  2:4.2.2+dfsg-3Multiprecision arithmetic library
ii  libmpfr1ldbl   2.3.1.dfsg.1-2multiple precision floating-point
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages gcj-4.3 recommends:
ii  fastjar 2:0.95-4 Jar creation utility
ii  libecj-java-gcj 3.3.0+0728-9 Eclipse Java compiler (native libr

Versions of packages gcj-4.3 suggests:
pn  java-gcj-compat-dev   none (no description available)
pn  libgcj9-dbg   none (no description available)

-- no debconf information




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#509023: aptitude: crashes in visual mode when applying changes

2008-12-17 Thread Adrian Lang
Package: aptitude
Version: 0.4.11.11-1~lenny1
Severity: normal

System is running as a guest in Linux-Vserver, connected via ssh.
aptitude starts well, update and preview of changes runs without problems.
when trying to apply changes, aptitude hangs. An empty tab named Package 
Download is visible,
status bar shows
Total Progress:.
One ^C closes visual mode, but keeps aptitude running:

 vserver160:~# aptitude


Another ^C returns to shell.

Same happens when trying to quit aptitude in visual mode. After confirming 
'yes',
aptitude remains unchanged and the cursor keeps blinking without reacting or 
closing.
^C response is the same.

-- Package-specific info:
aptitude 0.4.11.11 compiled at Dec  5 2008 02:43:34
Compiler: g++ 4.3.2
Compiled against:
  apt version 4.6.0
  NCurses version 5.6
  libsigc++ version: 2.0.18
  Ept support enabled.

Current library versions:
  NCurses version: ncurses 5.6.20080830
  cwidget version: 0.5.12
  Apt version: 4.6.0
libapt-pkg-libc6.7-6.so.4.6 = /usr/lib/libapt-pkg-libc6.7-6.so.4.6 
(0xb7eb7000)
libncursesw.so.5 = /lib/libncursesw.so.5 (0xb7e79000)
libsigc-2.0.so.0 = /usr/lib/libsigc-2.0.so.0 (0xb7e72000)
libcwidget.so.3 = /usr/lib/libcwidget.so.3 (0xb7dae000)
libept.so.0 = /usr/lib/libept.so.0 (0xb7ced000)
libxapian.so.15 = /usr/lib/libxapian.so.15 (0xb7b97000)
libz.so.1 = /usr/lib/libz.so.1 (0xb7b83000)
libpthread.so.0 = /lib/libpthread.so.0 (0xb7b6b000)
libstdc++.so.6 = /usr/lib/libstdc++.so.6 (0xb7a7c000)
libm.so.6 = /lib/libm.so.6 (0xb7a56000)
libgcc_s.so.1 = /lib/libgcc_s.so.1 (0xb7a4b000)
libc.so.6 = /lib/libc.so.6 (0xb790d000)
libutil.so.1 = /lib/libutil.so.1 (0xb7909000)
libdl.so.2 = /lib/libdl.so.2 (0xb7905000)
/lib/ld-linux.so.2 (0xb7f7e000)
Terminal: xterm
$DISPLAY not set.
`which aptitude`: /usr/bin/aptitude
aptitude version information:

aptitude linkage:

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-028test005
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.7-6 0.7.19+b1  Advanced front-end for dpkg
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libcwidget3   0.5.12-3   high-level terminal interface libr
ii  libept0   0.5.22 High-level library for managing De
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libncursesw5  5.6+20080830-2 shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.17-2   type-safe Signal Framework for C++
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  libxapian15   1.0.7-4Search engine library
ii  zlib1g1:1.2.3-13 compression library - runtime

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do none (no description available)
pn  libparse-debianchangelog-perl none (no description available)

-- no debconf information




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org