Bug#1040245: wget-style scroll bars in syslog after Debian 11->12 upgrade

2023-12-03 Thread Jonny Grant
Hi
Also seeing this issue in  1.9.5 in ubuntu

https://github.com/fwupd/fwupd/discussions/6485



Bug#1026264: The "emerald-theme" wallpaper is not displayed in GNOME

2022-12-17 Thread Jonny

Package: desktop-base
Version: 12.0.1
Severity: minor

Hi,
the "homeworld-theme" wallpaper is specified in the "emerald-theme".

emerald-theme/wallpaper/gnome-background.xml:
   height="1024">/usr/share/desktop-base/homeworld-theme/wallpaper/contents/images/1280x1024.svg
   height="1200">/usr/share/desktop-base/homeworld-theme/wallpaper/contents/images/1600x1200.svg

 ...

s/homeworld-theme/emerald-theme/



Bug#970440: apt-get update could show that not running as root when it fails

2020-09-16 Thread Jonny Grant
Package: apt
Version: 2.0.2ubuntu0.1 

Current output:

$ apt-get update
Reading package lists... Done
E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission 
denied)
E: Unable to lock directory /var/lib/apt/lists/
W: Problem unlinking the file /var/cache/apt/pkgcache.bin - RemoveCaches (13: 
Permission denied)
W: Problem unlinking the file /var/cache/apt/srcpkgcache.bin - RemoveCaches 
(13: Permission denied)


Expected output:

$ apt-get update
Reading package lists... Done
E: Could not open lock file /var/lib/apt/lists/lock not running as root - open 
Permission denied
E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission 
denied)
E: Unable to lock directory /var/lib/apt/lists/
W: Problem unlinking the file /var/cache/apt/pkgcache.bin - RemoveCaches (13: 
Permission denied)
W: Problem unlinking the file /var/cache/apt/srcpkgcache.bin - RemoveCaches 
(13: Permission denied)


it's easy enough to check uid is 0 by calling getuid()

There's no real reason to show the errno value 13, we don't all know these by 
heart. you could put EPERM if you wish to use the macro name



Bug#943354: New upstream release

2019-10-23 Thread Jonny Lamb
Package: openconnect
Version: 8.02-1
Severity: wishlist

8.0.4 was released a few months ago, and has support for Pulse Connect Secure, 
which is something my company's VPN now requires. It'd be great for the package 
to be updated to at least that version.

Thanks,
-- 
Jonny Lamb



Bug#920267: POST with Negotiation sending no content

2019-01-23 Thread Jonny Lamb
Package: libcurl4
Version: 7.63.0-1
Severity: important
Tags: patch

7.63.0-1 broke POST requests with Negotiation (Content-Length is
always 0). 7.62.0-1 is fine, so I bisected and found the offending
commit[0]. This commit has already been reverted upstream[1] so please
could you either include this revert or ask for a .1 point release and
upload that. I've attached a patch for the first option -- feel free
not to use it.

Thanks,

0. https://github.com/curl/curl/commit/07ebaf8378
1. https://github.com/curl/curl/pull/3275

-- 
Jonny Lamb>From 8438ce5840116f3e1b3128abe6edb568a1e84001 Mon Sep 17 00:00:00 2001
From: Jonny Lamb 
Date: Wed, 23 Jan 2019 11:47:32 +
Subject: [PATCH] Add 12_revert_http_negotiate.patch from upstream which
 reverts changes which breaks HTTP Negotiate POST requests.

---
 debian/changelog  |  7 +++
 debian/patches/12_revert_http_negotiate.patch | 87 +++
 debian/patches/series |  1 +
 3 files changed, 95 insertions(+)
 create mode 100644 debian/patches/12_revert_http_negotiate.patch

diff --git a/debian/changelog b/debian/changelog
index 60ce1ff..3816865 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+curl (7.63.0-2) UNRELEASED; urgency=medium
+
+  * Add 12_revert_http_negotiate.patch from upstream which reverts changes
+which breaks HTTP Negotiate POST requests.
+
+ -- Jonny Lamb   Wed, 23 Jan 2019 11:32:20 +
+
 curl (7.63.0-1) unstable; urgency=medium
 
   * New upstream release
diff --git a/debian/patches/12_revert_http_negotiate.patch 
b/debian/patches/12_revert_http_negotiate.patch
new file mode 100644
index 000..646067e
--- /dev/null
+++ b/debian/patches/12_revert_http_negotiate.patch
@@ -0,0 +1,87 @@
+From ebe658c1e5a6577178981a7f406794699305be5c Mon Sep 17 00:00:00 2001
+From: Daniel Stenberg 
+Date: Fri, 4 Jan 2019 23:34:50 +0100
+Subject: [PATCH] Revert "http_negotiate: do not close connection until
+ negotiation is completed"
+
+This reverts commit 07ebaf837843124ee670e5b8c218b80b92e06e47.
+
+This also reopens PR #3275 which brought the change now reverted.
+
+Fixes #3384
+Closes #3439
+---
+ lib/http.c   |  3 ++-
+ lib/http_negotiate.c | 10 +-
+ 2 files changed, 3 insertions(+), 10 deletions(-)
+
+diff --git a/lib/http.c b/lib/http.c
+index 8866fdf0a7..303535af6b 100644
+--- a/lib/http.c
 b/lib/http.c
+@@ -5,7 +5,7 @@
+  *| (__| |_| |  _ <| |___
+  * \___|\___/|_| \_\_|
+  *
+- * Copyright (C) 1998 - 2018, Daniel Stenberg, , et al.
++ * Copyright (C) 1998 - 2019, Daniel Stenberg, , et al.
+  *
+  * This software is licensed as described in the file COPYING, which
+  * you should have received as part of this distribution. The terms
+@@ -616,6 +616,7 @@ output_auth_headers(struct connectdata *conn,
+ result = Curl_output_negotiate(conn, proxy);
+ if(result)
+   return result;
++authstatus->done = TRUE;
+ negdata->state = GSS_AUTHSENT;
+   }
+   else
+diff --git a/lib/http_negotiate.c b/lib/http_negotiate.c
+index 444265d11f..4713d1bd5c 100644
+--- a/lib/http_negotiate.c
 b/lib/http_negotiate.c
+@@ -5,7 +5,7 @@
+  *| (__| |_| |  _ <| |___
+  * \___|\___/|_| \_\_|
+  *
+- * Copyright (C) 1998 - 2016, Daniel Stenberg, , et al.
++ * Copyright (C) 1998 - 2019, Daniel Stenberg, , et al.
+  *
+  * This software is licensed as described in the file COPYING, which
+  * you should have received as part of this distribution. The terms
+@@ -49,7 +49,6 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, bool 
proxy,
+ 
+   /* Point to the correct struct with this */
+   struct negotiatedata *neg_ctx;
+-  struct auth *authp;
+ 
+   if(proxy) {
+ userp = conn->http_proxy.user;
+@@ -58,7 +57,6 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, bool 
proxy,
+   data->set.str[STRING_PROXY_SERVICE_NAME] : "HTTP";
+ host = conn->http_proxy.host.name;
+ neg_ctx = >state.proxyneg;
+-authp = >data->state.authproxy;
+   }
+   else {
+ userp = conn->user;
+@@ -67,7 +65,6 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, bool 
proxy,
+   data->set.str[STRING_SERVICE_NAME] : "HTTP";
+ host = conn->host.name;
+ neg_ctx = >state.negotiate;
+-authp = >data->state.authhost;
+   }
+ 
+   /* Not set means empty */
+@@ -98,11 +95,6 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, 
bool proxy,
+ 
+   if(result)
+ Curl_auth_spnego_cleanup(neg_ctx);
+-  else
+-/* If the status is different than 0 and we encountered no errors
+-it means we have to continue. 0 is the OK value for both GSSAPI
+-(GSS_S_COMPLETE) and SSPI (SEC_E_OK) */
+-authp->done = !neg_ctx->status;
+ 
+   return result;
+ }
diff --git a/debian/patches/series b/debian/patche

Bug#906594: apt-get could offer alternative packages with similar names

2018-08-18 Thread Jonny Grant



Package: apt
Version: 1.6.3 (amd64)

Ubuntu LTS

Can apt-get offer alternatives when "E: Unable to locate package 
libasan" ?  Obviously I was hunting for libasan2



# apt-get install libasan
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libasan
root@asus:~# apt-get install libasan2
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  gcc-5-base
The following NEW packages will be installed
  gcc-5-base libasan2
0 to upgrade, 2 to newly install, 0 to remove and 3 not to upgrade.
Need to get 281 kB of archives.
After this operation, 1,147 kB of additional disk space will be used.
Do you want to continue? [Y/n]



Bug#874326: apt-get should provide a clear message if not root

2017-09-04 Thread Jonny Grant

Package: apt
Version: 1.2.24

Basically apt-get must run as root, so therefore the message should be 
appropriate. Can apt-get not provide a clearer message when that is the 
case?


Expected output
===

$ apt-get update
Reading package lists... Done
E: Permission denied. apt-get must be run as root user
$


Current output
==

$ apt-get update
Reading package lists... Done
W: chmod 0700 of directory /var/lib/apt/lists/partial failed - 
SetupAPTPartialDirectory (1: Operation not permitted)
E: Could not open lock file /var/lib/apt/lists/lock - open (13: 
Permission denied)

E: Unable to lock directory /var/lib/apt/lists/
W: Problem unlinking the file /var/cache/apt/pkgcache.bin - RemoveCaches 
(13: Permission denied)
W: Problem unlinking the file /var/cache/apt/srcpkgcache.bin - 
RemoveCaches (13: Permission denied)

$



Bug#871922: Crashes when you visit a webpage

2017-08-12 Thread Jonny
Package: libnss3
Version: 2:3.32-1

I can't see the Web page at all. Try to view crashes.
$ firefox https://www.google.com
ExceptionHandler::GenerateDump cloned child 2906
ExceptionHandler::SendContinueSignalToChild sent continue signal to child
ExceptionHandler::WaitForContinueSignal waiting for continue signal...
$

If you open an empty (about:blank) page, it will not crash. libnss3 2:3.31-1 
does not crash. This crash also occurs on the i386 CPU machine. It does not 
crash on another amd64 CPU machine. I don't know if it's relevant, but the 
i386 CPU on this machine does not support SSE2.



Bug#866742: whois man page typo grammar

2017-07-01 Thread Jonny Grant

Package: whois
Version: 5.2.11

Some feedback about the man page grammar:

"It should be rewritten to use a dynamics strings library."

"dynamics" - this word doesn't need an "s" at the end.

Thank you, Jonny



Bug#853153: It can't start by a segmentation fault

2017-02-01 Thread Jonny
Steven wrote:
> I don't have any LynxEM+ hardware to test with until next week, but I've
> attached a patch for xserver-xorg-video-siliconmotion, if Jonny would
> like to try rebuilding with this perhaps.
Thank you! I ran the whole distance.


Xorg.0.log
Description: Binary data


Bug#853153: It can't start by a segmentation fault

2017-01-31 Thread Jonny
Steven wrote:
> Thanks.  What exactly is this machine?
IBM ThinkPad i 1200? It is a very old machine.

> but there is not much detail in the backtrace.
> 
> If you are able to install Xorg 1.19.1 again, please try to also install
> xserver-xorg-video-siliconmotion-dbgsym and
> xserver-xorg-core-dbgsym, from this APT respository:
> 
> deb http://debug.mirrors.debian.org/debian-debug/ sid-debug main
> 
> then the Xorg.log should give a more detailed backtrace.
I am not made to make a core dumped even if I install it. Is there the 
necessary procedure any place other than "ulimit -c unlimited?"



Bug#853153: It can't start by a segmentation fault

2017-01-30 Thread Jonny
Steven wrote:
> Exactly what graphics hardware do you have?  Please could you show
> relevant output from dmesg/lspci describing what it is?  Or even better,
> a Xorg.log for the version that works correctly?
I attached an output result of "lspci -vv" as "lspci.log."
The log of Xorg of the version that can start is "1.18-Xorg.0.log."

> Actually your log doesn't seem to describe any issue with graphics, but
> rather something to do with dbus, either crashed or not running:
> 
> | (EE) dbus-core: error connecting to system bus:
> | org.freedesktop.DBus.Error.FileNotFound (Failed to connect to socket
> | /var/run/dbus/system_bus_socket: No such file or directory)
> 
> Did you try rebooting the machine before starting Xorg?  Perhaps you
> could find something relevant in your logs with:
> $ cd /var/log && sudo grep dbus dpkg.log syslog
The log that is in condition that dbus is installed is "1.19-Xorg.0.log."


lspci.log
Description: Binary data


1.18-Xorg.0.log
Description: Binary data


1.19-Xorg.0.log
Description: Binary data


Bug#853153: It can't start by a segmentation fault

2017-01-30 Thread Jonny
Package: xserver-xorg-video-siliconmotion
Version: 1:1.7.9-1
Severity: critical

Hi,

it was not able to start at all after I was rebuilt in xorg-server after 1.19.
It can start in xserver-xorg-core 2:1.18.4-2 and 
xserver-xorg-video-siliconmiton 1:1.7.8-2.


Xorg.0.log
Description: Binary data


xorg.conf
Description: Binary data


Bug#833053: Syntax error in the script that setupcon outputs

2016-07-31 Thread Jonny
Package: console-setup
Version: 1.148

Hi,

if you choose "Do not change the boot/kernel font" in debconf questions '"VGA" 
has a traditional appearance and has medium coverage of ...', and outputs the 
"/etc/console-setup/cached_setup_font.sh" such as the following.

#!/bin/sh



if ls /dev/fb* >/dev/null 2>/dev/null; then
for i in /dev/vcs[0-9]*; do
{

} < /dev/tty${i#/dev/vcs} > /dev/tty${i#/dev/vcs}
done
fi

mkdir -p /run/console-setup
> /run/console-setup/font-loaded
for i in /dev/vcs[0-9]*; do
{
printf '\033%%G'
} < /dev/tty${i#/dev/vcs} > /dev/tty${i#/dev/vcs}
done

This script Line 9 is the syntax error.


--- /a/setupcon
+++ /b/setupcon
@@ -911,7 +911,7 @@
 if ls /dev/fb* >/dev/null 2>/dev/null; then
 for i in /dev/vcs[0-9]*; do
 {
-$commands_f
+${commands_f:-:}
 } < /dev/tty\${i#/dev/vcs} > /dev/tty\${i#/dev/vcs}
 done
 fi



Bug#832595: Option "-f" There are two in the man page

2016-07-27 Thread Jonny
Package: console-setup
Version: 1.147

Hi,
I found a typo in the man page.
   -f, --font-only
  Setup the font only, do not setup the keyboard or the  terminal.
  On  Linux  this configuration should be repeated each time a new
  console driver is activated (for example when the  frame  buffer
  becomes active).

   -f, --terminal-only
  Setup the terminal only, do not setup the keyboard or the font.

Correctly is "-t, --terminal-only".



Bug#827362: RM: librtfcomp -- RoM; unmaintained

2016-06-15 Thread Jonny Lamb

Package: ftp.debian.org
Severity: normal

Hi,

This used to be useful but all the SynCE parts that used it have been 
removed from the archive so let's get rid of this too.


Thanks,
--
Jonny Lamb



Bug#827360: RM: synce-serial -- RoM; unmaintained

2016-06-15 Thread Jonny Lamb

Package: ftp.debian.org
Severity: normal

Hi,

synce-serial stopped being useful for real-world devices many years ago. 
Its replacement, synce-hal, was removed from the archive a while ago 
too. Let's get rid of this one finally.


Thanks,

--
Jonny Lamb



Bug#827269: finally remove refdbg variant

2016-06-14 Thread Jonny Lamb

Source: glib2.0
Version: 2.48.1-1
Severity: normal
Tags: patch

Hi,

I just filed for the removal of refdbg itself (#827268) so let's get rid 
of this variant finally too. I've attached an untested patch to do 
exactly that.


Cheerio,
--
Jonny Lamb
Index: debian/clean
===
--- debian/clean(revision 49072)
+++ debian/clean(working copy)
@@ -1,6 +1,5 @@
 debian/libgio-fam.install
 debian/libglib2.0-0.install
-debian/libglib2.0-0-refdbg.install
 debian/libglib2.0-0-dbg.install
 debian/libglib2.0-dev.install
 debian/libglib2.0-udeb.install
Index: debian/control
===
--- debian/control  (revision 49072)
+++ debian/control  (working copy)
@@ -173,20 +173,3 @@
 Description: GLib Input, Output and Streaming Library (fam module)
  GIO is the input, output and streaming API of GLib. This package
  provides a fam file and directory monitoring backend for it.
-
-Package: libglib2.0-0-refdbg
-Section: devel
-Priority: extra
-Architecture: any
-Depends: ${misc:Depends},
- ${shlibs:Depends},
- libglib2.0-0 (= ${binary:Version})
-Multi-Arch: same
-Description: GLib library of C routines - refdbg library
- GLib is a library containing many useful C routines for things such
- as trees, hashes, lists, and strings.  It is a useful general-purpose
- C library used by projects such as GTK+, GIMP, and GNOME.
- .
- This package contains the shared library built with
- --disable-Bsymbolic so that it can be used with refdbg, a GObject
- refcount debugger.
Index: debian/control.in
===
--- debian/control.in   (revision 49072)
+++ debian/control.in   (working copy)
@@ -173,20 +173,3 @@
 Description: GLib Input, Output and Streaming Library (fam module)
  GIO is the input, output and streaming API of GLib. This package
  provides a fam file and directory monitoring backend for it.
-
-Package: @REFDBG_PKG@
-Section: devel
-Priority: extra
-Architecture: any
-Depends: ${misc:Depends},
- ${shlibs:Depends},
- @SHARED_PKG@ (= ${binary:Version})
-Multi-Arch: same
-Description: GLib library of C routines - refdbg library
- GLib is a library containing many useful C routines for things such
- as trees, hashes, lists, and strings.  It is a useful general-purpose
- C library used by projects such as GTK+, GIMP, and GNOME.
- .
- This package contains the shared library built with
- --disable-Bsymbolic so that it can be used with refdbg, a GObject
- refcount debugger.
Index: debian/libglib2.0-0-refdbg.install.in
===
--- debian/libglib2.0-0-refdbg.install.in   (revision 49072)
+++ debian/libglib2.0-0-refdbg.install.in   (nonexistent)
@@ -1 +0,0 @@
-usr/lib/${DEB_HOST_MULTIARCH}/libgobject*.so* 
usr/lib/${DEB_HOST_MULTIARCH}/refdbg
Index: debian/libglib2.0-0-refdbg.lintian-overrides
===
--- debian/libglib2.0-0-refdbg.lintian-overrides(revision 49072)
+++ debian/libglib2.0-0-refdbg.lintian-overrides(nonexistent)
@@ -1 +0,0 @@
-libglib2.0-0-refdbg binary: unstripped-binary-or-object
Index: debian/rules
===
--- debian/rules(revision 49072)
+++ debian/rules(working copy)
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 DEB_BUILDDIR = debian/build
-DEB_MAKE_FLAVORS = deb udeb refdbg
+DEB_MAKE_FLAVORS = deb udeb
 DISABLE_UPDATE_UPLOADERS := 1
 
 include /usr/share/cdbs/1/rules/autoreconf.mk
@@ -39,7 +39,6 @@
 UDEB_PKG := libglib$(APIVER)-udeb
 DOC_PKG := libglib$(APIVER)-doc
 DEBUG_PKG := $(SHARED_PKG)-dbg
-REFDBG_PKG := libglib$(APIVER)-$(SONAME)-refdbg
 
 DEB_MAKE_DESTDIRSKEL = $(CURDIR)/debian/install/@FLAVOR@
 
@@ -48,11 +47,8 @@
 DEB_DH_INSTALL_ARGS += --sourcedir=debian/install/deb
 DEB_DH_INSTALL_ARGS_$(TEST_PKG) += --sourcedir=debian/install/deb -X.la
 DEB_DH_INSTALL_ARGS_$(UDEB_PKG) += --sourcedir=debian/install/udeb
-DEB_DH_INSTALL_ARGS_$(REFDBG_PKG) += --sourcedir=debian/install/refdbg
 
 DEB_DH_MAKESHLIBS_ARGS_$(SHARED_PKG) += -V --add-udeb=$(UDEB_PKG) -- -c4
-DEB_DH_MAKESHLIBS_ARGS_$(REFDBG_PKG) = --no-act
-DEB_DH_STRIP_ARGS_$(REFDBG_PKG) = --no-act --no-ddebs
 # Don't put the symbols in the -dbg package
 DEB_DH_STRIP_ARGS_$(UDEB_PKG) =
 
@@ -101,10 +97,6 @@
 DEB_CONFIGURE_FLAGS_udeb := \
--disable-selinux
 
-DEB_CONFIGURE_FLAGS_refdbg := \
-   --disable-Bsymbolic \
-   --enable-debug=yes
-
 pre-build::
mkdir -p debian/stamp-makefile-check \
 debian/tmp-xdg-runtime-dir
@@ -122,7 +114,7 @@
 
 common-install-arch::
set -e; for file in libgio-fam.install libglib2.0-0.install \
-   libglib2.0-0-refdbg.install libglib2.0-0-dbg.install \
+   libglib2.0-0

Bug#827268: RM: refdbg -- RoM; old version; never part of unstable

2016-06-14 Thread Jonny Lamb

Package: ftp.debian.org
Severity: normal

Hi,

refdbg was always a bit of a pain, never really got used, never got into 
unstable, and there are better ways to conduct this kind of debugging 
nowadays. Let's get rid of it!


Thanks,
--
Jonny Lamb



Bug#824034: $ignore_services breaks on close parentheses

2016-05-11 Thread Jonny Lamb

Package: logwatch
Version: 7.4.3-1
Severity: normal
Tags: patch

The "secure" script's $ignore_services option is space separated but 
uses \b to match items, which breaks when a service name ends in a close 
parenthesis (such as "wordpress(example.com)").


Here's a patch that fixes the problem here. Use a different approach if 
you fancy.


Cheerio,
--
Jonny Lamb
diff --git a/scripts/services/secure b/scripts/services/secure
index 31f7ba6..387f5fd 100755
--- a/scripts/services/secure
+++ b/scripts/services/secure
@@ -190,7 +190,7 @@ while (defined($ThisLine = )) {
$ThisLine =~ s/\[ID [0-9]+ [a-z]+\.[a-z]+\] //;
my $temp = $ThisLine;
$temp =~ s/^([^[:]+).*/$1/;
-   if ($Ignore =~ /\b\Q$temp\E\b/i) { next; }
+   if ($Ignore =~ /(\s|^)\Q$temp\E(\s|$)/i) { next; }
 
#current sarge
if ($ThisLine =~ /^[^ :]*:( [0-9:\[\]\.]+|) \(pam_(unix|securetty)\)/i ) 
{next; }


Bug#808208: Failure to update the database of the Safe Browsing

2015-12-17 Thread Jonny
Package: iceweasel
Version: 43.0-1

Hi,

the database is not updated with the Safe Browsing in 
~/.cache/mozilla/firefox/*/safebrowsing/.
The Browser Console you can see the following error message:
> TypeError: provider is undefined SafeBrowsing.jsm:83:5



Bug#801823: apt

2015-10-14 Thread Jonny Grant

Package: apt
Version: 1.0
Severity: normal

Hello
I saw apt-get update   has Warnings, but does not show the line number. 
Looking at sources.list I see the urls don't exist. Could line numbers 
be added?



[snip]
Fetched 4,050 kB in 20s (201 kB/s) 


Reading package lists... Done
W: Duplicate sources.list entry http://dl.google.com/linux/chrome/deb/ 
stable/main amd64 Packages 
(/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-amd64_Packages)
W: Duplicate sources.list entry http://dl.google.com/linux/chrome/deb/ 
stable/main i386 Packages 
(/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-i386_Packages)

W: You may want to run apt-get update to correct these problems

# apt-get --version
apt 1.0.1ubuntu2 for amd64 compiled on Aug  1 2015 19:20:48



Bug#798941: /etc/cron.d directory is necessary for installation

2015-09-14 Thread Jonny
Package: popularity-contest
Version: 1.63

Hi,

maintainer script will stop.

Setting up popularity-contest (1.63) ...
/var/lib/dpkg/info/popularity-contest.postinst: 46: /var/lib/dpkg/info/populari
ty-contest.postinst: cannot create /etc/cron.d/popularity-contest: Directory no
nexistent
dpkg: error processing package popularity-contest (--configure):
 subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
 popularity-contest
E: Sub-process /usr/bin/dpkg returned an error code (1)



Bug#788035: closed by Salvatore Bonaccorso car...@debian.org (Re: Bug#788035: libio-socket-ssl-perl: ICANN patch (https://bugs.debian.org/767692) making IO::Socket::SSL unusable)

2015-06-11 Thread Jonny Schulz
Hi together,

what do you think when the update comes? Unfortunately we cannot use
Debian Jessie until the new package is available.

Cheers
Jonny


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



Bug#788035: libio-socket-ssl-perl: ICANN patch (https://bugs.debian.org/767692) making IO::Socket::SSL unusable

2015-06-07 Thread Jonny Schulz
Package: libio-socket-ssl-perl
Version: 2.002-2
Severity: important

Dear Maintainer,

you can reproduce the error as follows:

#--
#!/usr/bin/perl
use strict;
use warnings;
use IO::Socket::SSL;

fork;

eval {
IO::Socket::SSL-new(
PeerAddr = 'www.bloonix.de',
SSL_verifycn_scheme = 'http',
SSL_ca_path = '/etc/ssl/certs',
PeerPort = '443',
SSL_verify_mode = 1,
Timeout = 10
) or die error=$!, ssl_error=$SSL_ERROR;
};

print ($@ ? $$ err: $@ : $$ ok\n);
#--

Output:

14580 err: cannot find END ICANN DOMAINS at 
/usr/share/perl5/IO/Socket/SSL/PublicSuffix.pm line 296, DATA line 1.
14579 ok

The problem seems to be patch 
0001-use-only-ICANN-part-in-public-suffix-list.patch. IO::Socket::SSL crashes 
if the process is forked and is unusable.

Cheers
Jonny


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

Kernel: Linux 3.16.0-4-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libio-socket-ssl-perl depends on:
ii  libnet-ssleay-perl  1.65-1+b1
ii  netbase 5.3
ii  perl5.20.2-3+deb8u1

Versions of packages libio-socket-ssl-perl recommends:
ii  libio-socket-inet6-perl 2.72-1
ii  libnet-libidn-perl  0.12.ds-2+b1
ii  libsocket6-perl 0.25-1+b1
ii  perl5.20.2-3+deb8u1
ii  perl-base [libsocket-perl]  5.20.2-3+deb8u1

Versions of packages libio-socket-ssl-perl suggests:
ii  ca-certificates  20141019

-- 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#786794: Very slow display of SVG file

2015-05-25 Thread Jonny
Package: librsvg2-bin
Version: 2.40.9-2

Hi,

Part of the SVG file display is very slow:
$ wget http://svn.debianart.org/themes/spacefun/wallpaper/wallpaper.svg
$ rsvg-view-3 wallpaper.svg

In version 2.40.5-1 it will be displayed immediately.


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



Bug#785586: sync user is missing

2015-05-17 Thread Jonny
Package: release-notes
Severity: minor
tags: patch

There is no sync user in the list of system users:
https://www.debian.org/releases/jessie/amd64/release-notes/ch-information.en.html#base-passwd-hardening

processing of base-passwd.preinst is as follows:
cat  /etc/passwd 'EOF'
root:*:0:0:root:/root:/bin/bash
daemon:*:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:*:2:2:bin:/bin:/usr/sbin/nologin
sys:*:3:3:sys:/dev:/usr/sbin/nologin
sync:*:4:65534:sync:/bin:/bin/sync
games:*:5:60:games:/usr/games:/usr/sbin/nologin
man:*:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:*:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:*:8:8:mail:/var/mail:/usr/sbin/nologin
news:*:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:*:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:*:13:13:proxy:/bin:/usr/sbin/nologin
www-data:*:33:33:www-data:/var/www:/usr/sbin/nologin
backup:*:34:34:backup:/var/backups:/usr/sbin/nologin
list:*:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:*:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:*:41:41:Gnats Bug-Reporting System 
(admin):/var/lib/gnats:/usr/sbin/nologin
nobody:*:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
EOF
--- a/release-notes/en/issues.dbk
+++ b/release-notes/en/issues.dbk
@@ -781,6 +781,9 @@
   parasys/para
 /listitem
 listitem
+  parasync/para
+/listitem
+listitem
   paragames/para
 /listitem
 listitem


Bug#768135: grub-install is Illegal instruction

2014-11-05 Thread Jonny
Package: grub-legacy
Version: 0.97-68
Severity: grave

hi,

grub-install command does not function at all.

# grub-install /dev/sda1
/proc/devices: No entry for device-mapper found
/proc/devices: No entry for device-mapper found
Searching for GRUB installation directory ... found: /boot/grub
/proc/devices: No entry for device-mapper found
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Segmentation fault
Illegal instruction
Segmentation fault
Installation finished. No error reported.
This is the contents of the device map /boot/grub/device.map.
Check if this is correct or not. If any of the lines is incorrect,
fix it and re-run the script `grub-install'.

(hd0)   /dev/sda
# cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 8
model name  : Celeron (Coppermine)
stepping: 6
microcode   : 0xb
cpu MHz : 698.538
cache size  : 128 KB
fdiv_bug: no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov 
pse36 mmx fxsr sse
bogomips: 1397.07
clflush size: 32
cache_alignment : 32
address sizes   : 36 bits physical, 32 bits virtual
power management:


grub-install of 0.97-67 will operate normally.


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



Bug#730629: steam: ~/.steam/steam.sh not: found

2013-12-15 Thread Jonny
I can confirm this and after a little bit of investigation is found out, 
why this happens.

The culprit appears to be the install script under /usr/games/steam.
Here's why:

#!/bin/sh
# Copyright (C) 2013 Michael Gilbert mgilb...@debian.org
# License: MIT
set -e

real=/usr/games/steam.real
config=$HOME/.steam
ubuntu32=$config/ubuntu12_32
exe=$ubuntu32/steam

# launch steam / do an initial update when the exe does not already exist
test ! -d $config  rm -rf $config  mkdir -p $config || true
test ! -e $config/steam.sh  rm -rf $config/package $exe || true
test ! -d $ubuntu32  rm -rf $ubuntu32  mkdir -p $ubuntu32 || true
test ! -x $exe  rm -rf $exe  cp $real $exe  $ubuntu32/steam || true
$config/steam.sh $@

take a look at line 13 and go figure!
Right! If $HOME/.steam/steam.sh is missing, so is the routine to create 
or copy it there from somewhere.

I have tried to find the file inside the package but no success until now.


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



Bug#704511: include a debug package

2013-04-02 Thread Jonny Lamb
Source: grilo
Version: 0.2.5-1
Severity: wishlist

I've added a debug package to grilo. See attached.

Cheerio,
-- 
Jonny Lamb
diff -Nruad -Nruad grilo-0.2.5.orig/debian/changelog 
grilo-0.2.5/debian/changelog
--- grilo-0.2.5.orig/debian/changelog   2013-03-20 22:52:09.0 +0100
+++ grilo-0.2.5/debian/changelog2013-04-02 10:05:31.0 +0200
@@ -1,3 +1,9 @@
+grilo (0.2.5-2) UNRELEASED; urgency=low
+
+  * Add libgrilo-0.2-1-dbg debug package.
+
+ -- Jonny Lamb jo...@debian.org  Tue, 02 Apr 2013 10:01:08 +0200
+
 grilo (0.2.5-1) experimental; urgency=low
 
   * New upstream release.
diff -Nruad -Nruad grilo-0.2.5.orig/debian/control grilo-0.2.5/debian/control
--- grilo-0.2.5.orig/debian/control 2013-03-20 22:52:09.0 +0100
+++ grilo-0.2.5/debian/control  2013-04-02 09:59:19.0 +0200
@@ -107,6 +107,30 @@
  .
  This package contains the documentation.
 
+Package: libgrilo-0.2-1-dbg
+Section: debug
+Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Depends: libgrilo-0.2-1 (= ${binary:Version}),
+ ${misc:Depends}
+Recommends: grilo-plugins-0.2-dbg
+Description: Framework for discovering and browsing media - debugging symbols
+ Grilo is a framework focused on making media discovery and browsing
+ easy for application developers.
+ .
+ More precisely, Grilo provides:
+   * A single, high-level API that abstracts the differences among
+ various media content providers, allowing application developers
+ to integrate content from various services and sources easily.
+   * A collection of plugins for accessing content from various media
+ providers. Developers can share efforts and code by writing
+ plugins for the framework that are application agnostic.
+   * A flexible API that allows plugin developers to write plugins of
+ various kinds.
+ .
+ This package contains the debugging symbols for Grilo.
+
 Package: gir1.2-grilo-0.2
 Section: introspection
 Architecture: any
diff -Nruad -Nruad grilo-0.2.5.orig/debian/rules grilo-0.2.5/debian/rules
--- grilo-0.2.5.orig/debian/rules   2013-03-20 22:52:09.0 +0100
+++ grilo-0.2.5/debian/rules2013-04-02 09:59:23.0 +0200
@@ -19,3 +19,6 @@
 override_dh_shlibdeps:
dh_shlibdeps
dh_girepository
+
+override_dh_strip:
+   dh_strip --dbg-package=libgrilo-0.2-1-dbg


Bug#704512: include a debug package

2013-04-02 Thread Jonny Lamb
Source: grilo-plugins
Version: 0.2.6-1
Severity: wishlist

I've added a debug package to grilo-plugins. See attached.

Cheerio,
-- 
Jonny Lamb
diff -Nruad -Nruad grilo-plugins-0.2.6.orig/debian/changelog 
grilo-plugins-0.2.6/debian/changelog
--- grilo-plugins-0.2.6.orig/debian/changelog   2013-03-21 09:46:59.0 
+0100
+++ grilo-plugins-0.2.6/debian/changelog2013-04-02 10:06:09.0 
+0200
@@ -1,3 +1,9 @@
+grilo-plugins (0.2.6-2) UNRELEASED; urgency=low
+
+  * Add grilo-plugins-0.2-dbg debug package.
+
+ -- Jonny Lamb jo...@debian.org  Tue, 02 Apr 2013 10:05:43 +0200
+
 grilo-plugins (0.2.6-1) experimental; urgency=low
 
   * New upstream release.
diff -Nruad -Nruad grilo-plugins-0.2.6.orig/debian/control 
grilo-plugins-0.2.6/debian/control
--- grilo-plugins-0.2.6.orig/debian/control 2013-03-21 09:46:59.0 
+0100
+++ grilo-plugins-0.2.6/debian/control  2013-04-02 10:00:17.0 +0200
@@ -68,3 +68,26 @@
* UPnP
* Vimeo
* Youtube
+
+Package: grilo-plugins-0.2-dbg
+Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Depends: grilo-plugins-0.2 (= ${binary:Version}),
+ ${misc:Depends}
+Description: Framework for discovering and browsing media - Plugin debugging 
symbols
+ Grilo is a framework focused on making media discovery and browsing
+ easy for application developers.
+ .
+ More precisely, Grilo provides:
+   * A single, high-level API that abstracts the differences among
+ various media content providers, allowing application developers
+ to integrate content from various services and sources easily.
+   * A collection of plugins for accessing content from various media
+ providers. Developers can share efforts and code by writing
+ plugins for the framework that are application agnostic.
+   * A flexible API that allows plugin developers to write plugins of
+ various kinds.
+ .
+ This package contains the debugging symbols for the Grilo plugins in
+ grilo-plugins-0.2.
diff -Nruad -Nruad grilo-plugins-0.2.6.orig/debian/rules 
grilo-plugins-0.2.6/debian/rules
--- grilo-plugins-0.2.6.orig/debian/rules   2013-03-21 09:46:59.0 
+0100
+++ grilo-plugins-0.2.6/debian/rules2013-04-02 10:00:14.0 +0200
@@ -7,3 +7,6 @@
dh_auto_install --destdir=debian/tmp
 
 override_dh_makeshlibs:
+
+override_dh_strip:
+   dh_strip --dbg-package=grilo-plugins-0.2-dbg


Bug#701874: [Pkg-telepathy-maintainers] Bug#701874: RFP: telepathy-logger 0.8.0

2013-02-28 Thread Jonny Lamb
Il giorno gio, 28/02/2013 alle 11.12 +0100, Daniele E. Domenichelli ha
scritto:
 I have a git clone here[1] with the updated version packaged, feel
 free to pull from it.
 
 [1]https://gitorious.org/drdanz-debian/telepathy-logger/commits/debian-experimental

Cool, thanks. This looks good apart from:

E: libtelepathy-logger3-dbg:
arch-dependent-file-not-in-arch-specific-directory
usr/lib/debug/usr/lib/telepathy/telepathy-logger
N: 
N:This package is Multi-Arch same, but it installs an ELF binary
in the
N:directory that is not architecture-specific.
N:
N:Refer to https://wiki.ubuntu.com/MultiarchSpec for details.
N:
N:Severity: serious, Certainty: possible
N:
N:Check: binaries, Type: binary, udeb
N: 

-- 
Jonny Lamb


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



Bug#700741: Paste to textview fails

2013-02-16 Thread Jonny
Package: libgtk2.0-0
Version: 2.24.10-2

I can not paste the hogehoge:
$ leafpad 
$ printf %s hogehoge | xclip -l 1
...middle-click to leafpad.

Description xclip -l has happened:
   -l, -loops
  number of X selection requests (pastes into X  applications)  to
  wait  for  before  exiting,  with a value of 0 (default) causing
  xclip to wait for an unlimited number of requests until  another
  application  (possibly another invocation of xclip) takes owner-
  ship of the selection


I can paste it when I appoint numbers more than 3:
$ printf %s hogehoge | xclip -l 3
...middle-click to leafpad.


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



Bug#700604: Segmentation fault in incorrect arithmetic expression

2013-02-15 Thread Jonny
Thorsten wrote:
 This is not acceptable, it means that there is use of
 uninitialised memory somewhere. Unfortunately I think
 valgrind, which is the tool of choice for this, isn’t
 ported to m68k yet… I’ll try to find it nevertheless.
 
 An strace is not useful for segfaults in user space
 applications, by the way – it only displays syscalls.

Is it good in this?

$ valgrind ./mksh -c 'echo $((++(VAR)))'
==3417== Memcheck, a memory error detector
==3417== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==3417== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
==3417== Command: ./mksh -c echo\ $((++(VAR)))
==3417==
==3417== Use of uninitialised value of size 4
==3417==at 0x11B565: assign_check.isra.0.3422 (expr.c:650)
==3417==by 0x49C6EB6: ???
==3417==
==3417== Invalid read of size 1
==3417==at 0x11B565: assign_check.isra.0.3422 (expr.c:650)
==3417==by 0x49C6EB6: ???
==3417==  Address 0x1c is not stack'd, malloc'd or (recently) free'd
==3417==
==3417==
==3417== Process terminating with default action of signal 11 (SIGSEGV)
==3417==  Access not within mapped region at address 0x1C
==3417==at 0x11B565: assign_check.isra.0.3422 (expr.c:650)
==3417==by 0x49C6EB6: ???
==3417==  If you believe this happened as a result of a stack
==3417==  overflow in your program's main thread (unlikely but
==3417==  possible), you can try to increase the size of the
==3417==  main thread stack using the --main-stacksize= flag.
==3417==  The main thread stack size used in this run was 8388608.
==3417==
==3417== HEAP SUMMARY:
==3417== in use at exit: 26,058 bytes in 330 blocks
==3417==   total heap usage: 456 allocs, 126 frees, 29,722 bytes allocated
==3417==
==3417== LEAK SUMMARY:
==3417==definitely lost: 0 bytes in 0 blocks
==3417==indirectly lost: 0 bytes in 0 blocks
==3417==  possibly lost: 0 bytes in 0 blocks
==3417==still reachable: 26,058 bytes in 330 blocks
==3417== suppressed: 0 bytes in 0 blocks
==3417== Rerun with --leak-check=full to see details of leaked memory
==3417==
==3417== For counts of detected and suppressed errors, rerun with: -v
==3417== Use --track-origins=yes to see where uninitialised values come from
==3417== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 15 from 8)


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



Bug#700604: Segmentation fault in incorrect arithmetic expression

2013-02-14 Thread Jonny
Package: mksh
Version: 40.9.20120630-5

Hi,

mksh crashes when evaluating the expression ++():
$ strace mksh -c 'echo $((++(VAR)))'
execve(/bin/mksh, [mksh, -c, echo $((++(VAR)))], [/* 16 vars */]) = 0
brk(0)  = 0xb77dc000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7771000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=31208, ...}) = 0
mmap2(NULL, 31208, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7769000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libc.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240o\1\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1437864, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7768000
mmap2(NULL, 1452408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb7605000
mprotect(0xb7761000, 4096, PROT_NONE)   = 0
mmap2(0xb7762000, 12288, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15c) = 0xb7762000
mmap2(0xb7765000, 10616, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7765000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/libgcc_s.so.1, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260$\0\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=114788, ...}) = 0
mmap2(NULL, 117840, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb75e8000
mmap2(0xb7604000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b) = 0xb7604000
close(3)= 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb75e7000
set_thread_area({entry_number:-1 - 6, base_addr:0xb75e76c0, limit:1048575, 
seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, 
useable:1}) = 0
mprotect(0xb7762000, 8192, PROT_READ)   = 0
mprotect(0xb77d5000, 4096, PROT_READ)   = 0
mprotect(0xb778f000, 4096, PROT_READ)   = 0
munmap(0xb7769000, 31208)   = 0
getpid()= 1396
geteuid32() = 1001
getpgrp()   = 1394
getppid()   = 1394
brk(0)  = 0xb77dc000
brk(0xb77fd000) = 0xb77fd000
rt_sigaction(SIGINT, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, {0xb77c6ba0, [], 0}, NULL, 8) = 0
rt_sigaction(SIGQUIT, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, {0xb77c6ba0, [], 0}, NULL, 8) = 0
rt_sigaction(SIGTERM, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, {0xb77c6ba0, [], 0}, NULL, 8) = 0
rt_sigaction(SIGHUP, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGHUP, {0xb77c6ba0, [], 0}, NULL, 8) = 0
fcntl64(3, F_DUPFD, 24) = 24
fcntl64(24, F_SETFD, FD_CLOEXEC)= 0
close(3)= 0
ioctl(24, TIOCGWINSZ, {ws_row=57, ws_col=204, ws_xpixel=0, ws_ypixel=0}) = 0
close(24)   = 0
gettimeofday({1360913837, 608926}, NULL) = 0
gettimeofday({1360913837, 609625}, NULL) = 0
stat64(/home/JO, {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
stat64(., {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
getuid32()  = 1001
getgid32()  = 1001
getegid32() = 1001
rt_sigprocmask(SIG_BLOCK, NULL, [], 8)  = 0
gettimeofday({1360913837, 613998}, NULL) = 0
fstat64(0, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 2), ...}) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
rt_sigaction(SIGCHLD, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGCHLD, {0xb77c6ba0, [], 0}, NULL, 8) = 0
rt_sigaction(SIGWINCH, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGWINCH, {0xb77c6ba0, [], 0}, NULL, 8) = 0
rt_sigaction(SIGALRM, {SIG_IGN, [], 0}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGALRM, {0xb77c6ba0, [], 0}, NULL, 8) = 0
--- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0x1f} ---
+++ killed by SIGSEGV +++


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



Bug#700232: Segmentation fault in here-document and syntax error

2013-02-10 Thread Jonny
Package: dash
Version: 0.5.7-3

Hi,

When a here-document and a syntax error are combined, dash crashes:
$ strace dash -c ': EOF; fi'
execve(/bin/dash, [dash, -c, : EOF; fi], [/* 16 vars */]) = 0
brk(0)  = 0x8063000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb771a000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=31208, ...}) = 0
mmap2(NULL, 31208, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7712000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libc.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240o\1\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1437864, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7711000
mmap2(NULL, 1452408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb75ae000
mprotect(0xb770a000, 4096, PROT_NONE)   = 0
mmap2(0xb770b000, 12288, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15c) = 0xb770b000
mmap2(0xb770e000, 10616, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb770e000
close(3)= 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb75ad000
set_thread_area({entry_number:-1 - 6, base_addr:0xb75ad6c0, limit:1048575, 
seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, 
useable:1}) = 0
mprotect(0xb770b000, 8192, PROT_READ)   = 0
mprotect(0xb7738000, 4096, PROT_READ)   = 0
munmap(0xb7712000, 31208)   = 0
getpid()= 2016
rt_sigaction(SIGCHLD, {0x80563f0, ~[RTMIN RT_1], 0}, NULL, 8) = 0
geteuid32() = 1001
brk(0)  = 0x8063000
brk(0x8084000)  = 0x8084000
getppid()   = 2015
stat64(/home/JO, {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
stat64(., {st_mode=S_IFDIR|0750, st_size=4096, ...}) = 0
rt_sigaction(SIGINT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGINT, {0x80563f0, ~[RTMIN RT_1], 0}, NULL, 8) = 0
rt_sigaction(SIGQUIT, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGQUIT, {SIG_DFL, ~[RTMIN RT_1], 0}, NULL, 8) = 0
rt_sigaction(SIGTERM, NULL, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, {SIG_DFL, ~[RTMIN RT_1], 0}, NULL, 8) = 0
pipe([3, 4])= 0
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++


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



Bug#699288: Segmentation fault in kill %string

2013-01-29 Thread Jonny
Package: ksh
Version: 93u+20120801-1

Hi,

ksh crashes when passing a %string to the kill command:
$ strace ksh -c kill %a
execve(/usr/bin/ksh, [ksh, -c, kill %a], [/* 16 vars */]) = 0
brk(0)  = 0x81b3000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb772d000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=31208, ...}) = 0
mmap2(NULL, 31208, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7725000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libdl.so.2, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\n\0\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=9844, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7724000
mmap2(NULL, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb772
mmap2(0xb7722000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7722000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libutil.so.1, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \n\0\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=9800, ...}) = 0
mmap2(NULL, 12424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb771c000
mmap2(0xb771e000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb771e000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libm.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2604\0\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=148996, ...}) = 0
mmap2(NULL, 151680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb76f6000
mmap2(0xb771a000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23) = 0xb771a000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libc.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240o\1\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1437864, ...}) = 0
mmap2(NULL, 1452408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb7593000
mprotect(0xb76ef000, 4096, PROT_NONE)   = 0
mmap2(0xb76f, 12288, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15c) = 0xb76f
mmap2(0xb76f3000, 10616, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb76f3000
close(3)= 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7592000
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7591000
set_thread_area({entry_number:-1 - 6, base_addr:0xb7592b40, limit:1048575, 
seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, 
useable:1}) = 0
mprotect(0xb76f, 8192, PROT_READ)   = 0
mprotect(0xb771a000, 4096, PROT_READ)   = 0
mprotect(0xb771e000, 4096, PROT_READ)   = 0
mprotect(0xb7722000, 4096, PROT_READ)   = 0
mprotect(0x81a, 36864, PROT_READ)   = 0
mprotect(0xb774b000, 4096, PROT_READ)   = 0
munmap(0xb7725000, 31208)   = 0
mmap2(NULL, 81920, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb757d000
rt_sigaction(SIGSEGV, {0x81206f0, [], SA_INTERRUPT}, {SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGSEGV, {SIG_DFL, [], SA_INTERRUPT}, {0x81206f0, [], 
SA_INTERRUPT}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [SEGV], NULL, 8) = 0
getpid()= 495
getppid()   = 494
getuid32()  = 1001
geteuid32() = 1001
getgid32()  = 1001
getegid32() = 1001
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
getrlimit(RLIMIT_NPROC, {rlim_cur=1495, rlim_max=1495}) = 0
open(/proc/sys/kernel/ngroups_max, O_RDONLY) = 3
read(3, 65536\n, 31)  = 6
close(3)= 0
umask(0)= 027
umask(027)  = 0
getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=4*1024}) = 0
fcntl64(0, F_GETFL) = 0x2 (flags O_RDWR)
stat64(/dev/null, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B9600 opost isig icanon echo ...}) = 0
_llseek(0, 0, 0xbf88eba0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
fstat64(0, 

Bug#698834: should have a versioned dep on libtrilead-putty-extension-java

2013-01-24 Thread Jonny Lamb
Package: jenkins
Version: 1.480.2+dfsg-1~exp1
Severity: minor

jenkins has a Build-Depends-Indep on libtrilead-putty-extension-java but
it should be versioned to (= 1.2-1~) I reckon. It failed to build
without:

Missing:
--
1) org.jvnet.hudson:trilead-ssh2:jar:debian

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.jvnet.hudson
-DartifactId=trilead-ssh2 -Dversion=debian -Dpackaging=jar
-Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file
there: 
  mvn deploy:deploy-file -DgroupId=org.jvnet.hudson
-DartifactId=trilead-ssh2 -Dversion=debian -Dpackaging=jar
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
1) org.jenkins-ci.main:jenkins-core:jar:1.480.2
2) org.kohsuke:trilead-putty-extension:jar:debian
3) org.jvnet.hudson:trilead-ssh2:jar:debian

-- 
Jonny Lamb


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



Bug#698835: should depend on net-tools and psutils

2013-01-24 Thread Jonny Lamb
Package: jenkins
Version: 1.480.2+dfsg-1~exp1
Severity: normal

jenkins' init script uses both 'ps' and 'netstat' executables but the
package doesn't depend on net-tools or psutils.

For example:

% sudo /etc/init.d/jenkins start
[] Starting Jenkins Continuous Integration Server:
jenkins/etc/init.d/jenkins: line 71: netstat: command not found
. ok 

-- 
Jonny Lamb


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



Bug#698835: correction

2013-01-24 Thread Jonny Lamb
retitle 698835 should depend on net-tools and procps
kthxbye

Sorry, I meant procps, not psutils.

-- 
Jonny Lamb


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



Bug#698678: * in ${name/pattern/string} matches no character string

2013-01-21 Thread Jonny
Package: mksh
Version: 40.9.20120630-4

Hi,

I do not match character string at all when I appoint only * in a pattern 
of ${name/pattern/string}:
$ v=abc; print ${v/*/0}
abc
$ print ${v/?*/0}
0


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



Bug#698411: EXIT trap and pipeline and subshell

2013-01-17 Thread Jonny
Package: bash
Version: 4.2+dfsg-0.1

Hi,

bash starts a subshell by a pipeline:
$ : | exit; echo current shell
current shell

EXIT trap action is carried out in the subshell:
$ (trap 'echo exit subshell' EXIT; exit); echo current shell
exit subshell
current shell

However, as for the subshell, EXIT trap action is not carried out:
$ : | { trap 'echo exit subshell' EXIT; exit; }; echo current shell
current shell


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



Bug#697289: kill $$ kills the parent

2013-01-03 Thread Jonny
Package: posh
Version: 0.11

Happy New Year.


When kill does oneself, a parent is finished forcibly:
 #!/bin/bash
 posh -c '/bin/kill $$'
 echo 0

echo 0 is not executed.


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



Bug#696823: trap action is not executed in shall exit error

2012-12-28 Thread Jonny
Thank you for an answer. Well noted.


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



Bug#696823: trap action is not executed in shall exit error

2012-12-27 Thread Jonny
Package: mksh
Version: 40.9.20120630-4

Hi,

following code:
 #!/bin/sh
 trap 'echo 0' EXIT
 unset v
 ${v?}

bash and dash will run the echo 0, mksh does not perform.
Is this the intended behavior?


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



Bug#590032: ntpdate is slow

2012-02-27 Thread Jonny
I found a report of the same symptoms
http://lists.busybox.net/pipermail/buildroot/2011-March/042075.html

Bugs that have been registered
http://bugs.ntp.org/show_bug.cgi?id=1853



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



Bug#661000: undefined symbol: nomgc

2012-02-23 Thread Jonny
Package: file
Version: 5.10-1
Severity: grave

Hi,

file command does not work at all:
 $ file /
 file: symbol lookup error: /usr/lib/libmagic.so.1: undefined symbol: nomgc



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



Bug#661000: undefined symbol: nomgc

2012-02-23 Thread Jonny
This is sid on i386. Attach the results of strace.
execve(/usr/bin/file, [file, /], [/* 30 vars */]) = 0
brk(0)  = 0x804c000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7718000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=26279, ...}) = 0
mmap2(NULL, 26279, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7711000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/usr/lib/libmagic.so.1, O_RDONLY) = 3
read(3, 
\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\24\36\0\0004\0\0\0..., 512) = 
512
fstat64(3, {st_mode=S_IFREG|0644, st_size=43956, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb771
mmap2(NULL, 42920, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb7705000
mmap2(0xb770f000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa) = 0xb770f000
mprotect(0xbf8cf000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC|PROT_GROWSDOWN) = 0
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/usr/lib/i386-linux-gnu/libz.so.1, O_RDONLY) = 3
read(3, 
\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\32\0\0004\0\0\0..., 512) 
= 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=90192, ...}) = 0
mmap2(NULL, 92868, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb76ee000
mmap2(0xb7704000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15) = 0xb7704000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libc.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240o\1\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1413288, ...}) = 0
mmap2(NULL, 1427832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb7591000
mprotect(0xb76e7000, 4096, PROT_NONE)   = 0
mmap2(0xb76e8000, 12288, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x156) = 0xb76e8000
mmap2(0xb76eb000, 10616, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb76eb000
close(3)= 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb759
set_thread_area({entry_number:-1 - 6, base_addr:0xb75906c0, limit:1048575, 
seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, 
useable:1}) = 0
mprotect(0xb76e8000, 8192, PROT_READ)   = 0
writev(2, [{file, 4}, {: , 2}, {symbol lookup error, 19}, {: , 2}, 
{/usr/lib/libmagic.so.1, 22}, {: , 2}, {undefined symbol: nomgc, 23}, 
{, 0}, {, 0}, {\n, 1}], 10file: symbol lookup error: 
/usr/lib/libmagic.so.1: undefined symbol: nomgc
) = 75
exit_group(127) = ?
execve(/usr/bin/file, [file, /], [/* 30 vars */]) = 0
brk(0)  = 0x804c000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb777c000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=26203, ...}) = 0
mmap2(NULL, 26203, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7775000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/usr/lib/libmagic.so.1, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300.\0\0004\0\0\0..., 
512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=130744, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xb7774000
mmap2(NULL, 129896, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb7754000
mmap2(0xb7773000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f) = 0xb7773000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/usr/lib/i386-linux-gnu/libz.so.1, O_RDONLY) = 3
read(3, 
\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\32\0\0004\0\0\0..., 512) 
= 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=90192, ...}) = 0
mmap2(NULL, 92868, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0xb773d000
mmap2(0xb7753000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15) = 0xb7753000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/i386-linux-gnu/i686/cmov/libc.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240o\1\0004\0\0\0..., 
512) = 512
fstat64(3, 

Bug#661000: undefined symbol: nomgc

2012-02-23 Thread Jonny
Has been resolved:
 # rm /usr/lib/libmagic.so.1*
 $ file /
 /: directory

I do not understand the cause that an old library was left.



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



Bug#631746: T-Code and Try-Code cannot be used

2011-06-26 Thread Jonny
Package: uim-tcode
Version: 1:1.7.0-1
Severity: wishlist

Please remove neither tcode.scm nor trycode.scm.

These are used as a code table file. There is a Japanese document about this:
http://code.google.com/p/uim-doc-ja/wiki/UimTutcode#T-Code%E3%82%84Try-Code%E3%81%A8%E3%81%97%E3%81%A6%E4%BD%BF%E3%81%86



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



Bug#622605: Moar info

2011-04-20 Thread Jonny Lamb
forwarded 622605 https://bugs.freedesktop.org/show_bug.cgi?id=36413
kthxbye

I wrote,
 Any ideas?

Turns out I'm not so hot on C precedence bugs in the evening. It
didn't take long this morning to find the real cause of this
problem. I made a patch for upstream and filed a bug (see forwarded
address).

Looking at the other rotting patches in the PackageKit bug tracker, I
wouldn't wait for it to be included upstream; you should include this
patch in the Debian package. Let me know if you need a sponsor.

Cheers,

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#622605: Backtrace and patch

2011-04-19 Thread Jonny Lamb
reassign 622605 packagekit
notfound 622605 2.32.0-2
found 622605 0.6.12-2
tags 622605 + patch
kthxbye

Here's a backtrace. I built my own package hence the presence of the
actual line of pk-client.c, and never actually installed.

Program received signal SIGSEGV, Segmentation fault.
0x77752cf7 in pk_client_create_helper_argv_envp (state=0x7b5270, 
argv=0x7fffe248, envp=0x7fffe240) at pk-client.c:1878
1878*envp[envpi++] = g_strdup_printf (DISPLAY=%s, 
display);
(gdb) bt
#0  0x77752cf7 in pk_client_create_helper_argv_envp (state=0x7b5270, 
argv=0x7fffe248, envp=0x7fffe240) at pk-client.c:1878
#1  0x77752e26 in pk_client_create_helper_socket (state=0x7b5270) at 
pk-client.c:1917
#2  0x7775328d in pk_client_get_tid_cb (object=0x6cb830, res=0x811300, 
state=0x7b5270) at pk-client.c:2017
#3  0x74ebffc9 in complete_in_idle_cb (data=0x72ad0e40)
at 
/build/buildd-glib2.0_2.28.1-1+b1-amd64-6erLbp/glib2.0-2.28.1/./gio/gsimpleasyncresult.c:757
#4  0x72e532e2 in g_main_dispatch (context=0x66af10) at 
/build/buildd-glib2.0_2.28.1-1+b1-amd64-6erLbp/glib2.0-2.28.1/./glib/gmain.c:2440
#5  g_main_context_dispatch (context=0x66af10) at 
/build/buildd-glib2.0_2.28.1-1+b1-amd64-6erLbp/glib2.0-2.28.1/./glib/gmain.c:3013
#6  0x72e579a8 in g_main_context_iterate (context=0x66af10, 
block=value optimized out, dispatch=value optimized out, self=value 
optimized out)
at 
/build/buildd-glib2.0_2.28.1-1+b1-amd64-6erLbp/glib2.0-2.28.1/./glib/gmain.c:3091
#7  0x72e57eb5 in g_main_loop_run (loop=0x824e00) at 
/build/buildd-glib2.0_2.28.1-1+b1-amd64-6erLbp/glib2.0-2.28.1/./glib/gmain.c:3299
#8  0x7578f5f7 in IA__gtk_main () at 
/tmp/buildd/gtk+2.0-2.24.1/gtk/gtkmain.c:1255
#9  0x0040ab01 in ?? ()
#10 0x72792c4d in __libc_start_main (main=value optimized out, 
argc=value optimized out, ubp_av=value optimized out, 
init=value optimized out, fini=value optimized out, rtld_fini=value 
optimized out, stack_end=0x7fffe678) at libc-start.c:228
#11 0x0040a839 in ?? ()
#12 0x7fffe678 in ?? ()
#13 0x001c in ?? ()
#14 0x0001 in ?? ()
#15 0x7fffe96c in ?? ()
#16 0x in ?? ()

So I looked into this and I'm really confused as to why this
segfaults. I also don't know how the attached patch fixes this for me.

Any ideas?

-- 
Jonny Lamb, UK
jo...@debian.org
--- packagekit-0.6.12.orig/lib/packagekit-glib2/pk-client.c 2011-04-19 
19:58:40.33793 +0100
+++ packagekit-0.6.12/lib/packagekit-glib2/pk-client.c  2011-04-19 
19:58:56.249900251 +0100
@@ -1841,13 +1841,14 @@
 static gboolean
 pk_client_create_helper_argv_envp (PkClientState *state,
   gchar ***argv,
-  gchar ***envp)
+  gchar ***envp_out)
 {
const gchar *dialog = NULL;
const gchar *display;
const gchar *term;
gboolean ret;
guint envpi = 0;
+   gchar **envp;
 
/* check we have the right file */
ret = g_file_test (/usr/bin/debconf-communicate,
@@ -1859,23 +1860,24 @@
*argv = g_new0 (gchar *, 2);
*argv[0] = g_strdup (/usr/bin/debconf-communicate);
 
-   *envp = g_new0 (gchar *, 8);
-   *envp[envpi++] = g_strdup (DEBCONF_DB_REPLACE=configdb);
-   *envp[envpi++] = g_strdup (DEBCONF_DB_OVERRIDE=Pipe{infd:none 
outfd:none});
+   *envp_out = g_new0 (gchar *, 8);
+   envp = *envp_out;
+   envp[envpi++] = g_strdup (DEBCONF_DB_REPLACE=configdb);
+   envp[envpi++] = g_strdup (DEBCONF_DB_OVERRIDE=Pipe{infd:none 
outfd:none});
if (pk_debug_is_verbose ())
-   *envp[envpi++] = g_strdup (DEBCONF_DEBUG=.);
+   envp[envpi++] = g_strdup (DEBCONF_DEBUG=.);
 
/* do we have an available terminal to use */
term = g_getenv (TERM);
if (term != NULL) {
-   *envp[envpi++] = g_strdup_printf (TERM=%s, term);
+   envp[envpi++] = g_strdup_printf (TERM=%s, term);
dialog = dialog;
}
 
/* do we have access to the display */
display = g_getenv (DISPLAY);
if (display != NULL) {
-   *envp[envpi++] = g_strdup_printf (DISPLAY=%s, display);
+   envp[envpi++] = g_strdup_printf (DISPLAY=%s, display);
if (g_strcmp0 (g_getenv (KDE_FULL_SESSION), true) == 0)
  dialog = kde;
else
@@ -1884,7 +1886,7 @@
 
/* indicate a prefered frontend */
if (dialog != NULL) {
-   *envp[envpi++] = g_strdup_printf (DEBIAN_FRONTEND=%s, dialog);
+   envp[envpi++] = g_strdup_printf (DEBIAN_FRONTEND=%s, dialog);
g_debug (using frontend %s, dialog);
}
 out:


Bug#622265: TERM=screen.mlterm breaks dircolors

2011-04-11 Thread Jonny
Package: screen
Version: 4.0.3-14

As for TERM=screen.mlterm, the output of dircolors empties.

$ echo $TERM
mlterm
$ dircolors
LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;...
export LS_COLORS

$ screen
$ echo $TERM
screen.mlterm
$ dircolors
LS_COLORS='';
export LS_COLORS

$ exit
$ TERM=screen screen
$ echo $TERM
screen
$ dircolors
LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;...
export LS_COLORS



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



Bug#618894: Possible fix

2011-03-21 Thread Jonny Lamb
On Mon, Mar 21, 19:21:14 +0100, Lubomír Sedlář wrote:
 The problem seems to be caused by missing dependency on
 gsettings-desktop-schemas. After installing the package, gitg
 started to work again.

Good to hear, I'll add that as a dependency.

 However, it still complains about 'memory' backend and does not save
 the settings.

Do you have dconf installed?

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#617475: Neither ogv nor webm are reproduced accurately

2011-03-09 Thread Jonny
Mike wrote:
 If you download the file, does it play in a media player (totem, vlc,
 mplayer, pick your favourite) ?

It is built-in media player.



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



Bug#617475: Neither ogv nor webm are reproduced accurately

2011-03-09 Thread Jonny
Mike wrote:
 
 The question is whether the same file plays fine in another media
 player.

There is no problem in mplayer.
attachment: mplayer-ss.png

Bug#617475: Neither ogv nor webm are reproduced accurately

2011-03-09 Thread Jonny
Mike wrote:
 Can you try with a build from mozilla.org ?
 ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/4.0b12/linux-i686/en-US/firefox-4.0b12.tar.bz2
 
 (to sort out if that could come from our cairo)
It is the same as Iceweasel 4.0~b12-1.

It confirmed it with past firefox nighty build. The change between
http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2010/12/2010-12-15-03-mozilla-central/firefox-4.0b9pre.en-US.linux-i686.tar.bz2
and
http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2010/12/2010-12-16-03-mozilla-central/firefox-4.0b9pre.en-US.linux-i686.tar.bz2
is a cause.



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



Bug#617313: [Pkg-telepathy-maintainers] Bug#617313: empathy: Empathy becomes inaccessible without a tray dock

2011-03-08 Thread Jonny Lamb
On Tue, Mar 08, 01:28:31 +0100, Fredrik Tolf wrote:
 When running a window manager that does not include a
 system tray/dock/notification area, the Empathy window becomes
 inaccessible if closed. It closes the window, assuming the user
 to be able to reaccess it via the non-existing tray, and also
 enters that state automatically upon startup, so there's really
 no way at all of bringing it back other than starting a temporary
 tray program like stalonetray or trayer.

Actually there is. If you try to run empathy again from the command
line or from some application menu, it will pop up the main window
again due to the single-instance nature of the application. Empathy
should also start as visible as it was left on the last execution.

Empathy is a GNOME application. GNOME has a system tray area. I'm
tempted to wontfix this bug.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#617475: Neither ogv nor webm are reproduced accurately

2011-03-08 Thread Jonny
Package: iceweasel
Version: 4.0~b12-1
Severity: important

Hi,

The image of ogv and webm is not displayed accurately.


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

Kernel: Linux 2.6.37 (PREEMPT)
Locale: LANG=ja_JP.utf8, LC_CTYPE=ja_JP.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages iceweasel depends on:
ii  debianutils  3.4.4   Miscellaneous utilities specific t
ii  fontconfig   2.8.0-2.1   generic font configuration library
ii  libc62.11.2-11   Embedded GNU C Library: Shared lib
ii  libgcc1  1:4.5.2-5   GCC support library
ii  libglib2.0-0 2.28.1-1+b1 The GLib library of C routines
ii  libgtk2.0-0  2.20.1-2The GTK+ graphical user interface
ii  libnspr4-0d  4.8.7-2 NetScape Portable Runtime Library
ii  libstdc++6   4.5.2-5 The GNU Standard C++ Library v3
ii  procps   1:3.2.8-10  /proc file system utilities
ii  xulrunner-2.02.0~b12-1   XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  libgssapi-krb5-21.8.3+dfsg-5 MIT Kerberos runtime libraries - k
pn  mozplugger  none   (no description available)
pn  ttf-lyx | latex-xft-fonts   none   (no description available)
pn  ttf-mathematica4.1  none   (no description available)
pn  xfonts-mathml   none   (no description available)
pn  xprint  none   (no description available)

Versions of packages xulrunner-2.0 depends on:
ii  libasound2  1.0.23-2.1   shared library for ALSA applicatio
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libbz2-1.0  1.0.5-6  high-quality block-sorting file co
ii  libc6   2.11.2-11Embedded GNU C Library: Shared lib
ii  libcairo2   1.10.2-4 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.4.6-1  simple interprocess messaging syst
ii  libevent-1.4-2  1.4.13-stable-1  An asynchronous event notification
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.4-1  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.5.2-5GCC support library
ii  libglib2.0-02.28.1-1+b1  The GLib library of C routines
ii  libgtk2.0-0 2.20.1-2 The GTK+ graphical user interface
ii  libhunspell-1.2-0   1.3.1-1  spell checker and morphological an
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG
ii  libmozjs4d  2.0~b12-1The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d 4.8.7-2  NetScape Portable Runtime Library
ii  libnss3-1d  3.12.9-1 Network Security Service libraries
ii  libpango1.0-0   1.28.3-2~sid1Layout and rendering of internatio
ii  libpixman-1-0   0.21.4-2 pixel-manipulation library for X a
ii  libreadline66.1-3GNU readline and history libraries
ii  libsqlite3-03.7.5-1  SQLite 3 shared library
ii  libstartup-notification 0.10-1   library for program launch feedbac
ii  libstdc++6  4.5.2-5  The GNU Standard C++ Library v3
ii  libvpx0 0.9.6-1  VP8 video codec (shared library)
ii  libx11-62:1.4.1-5X11 client-side library
ii  libxext62:1.2.0-2X11 miscellaneous extension librar
ii  libxrender1 1:0.9.6-1X Rendering Extension client libra
ii  libxt6  1:1.1.0-2X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages xulrunner-2.0 suggests:
pn  libcanberra0  none (no description available)
ii  libdbus-glib-1-2  0.88-2.1   simple interprocess messaging syst
pn  libgconf2-4   none (no description available)
pn  libgnomeui-0  none (no description available)
pn  libgnomevfs2-0none (no description available)
ii  libnotify1 [libnotify1-gtk2.1 0.5.0-2sends desktop notifications to a n



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



Bug#614550: ckbcomp command doesn't operate

2011-02-22 Thread Jonny
Package: console-setup
Version: 1.69

ckbcomp command doesn't operate by the combination with xkb-data 2.1-1:
 # ckbcomp us
 Unknown name $sun_t6_custom

xkb-data 2.1-1 is in experimental.



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



Bug#612773: Please move ko_*.png to uim-common

2011-02-10 Thread Jonny
Package: uim-hangul
Version: 1:1.6.1-2
Severity: wishlist

Please put ko_direct.png, ko_hangulchar.png and ko_hangulword.png in the 
uim-common package. These are common icons of the Korean input method. The 
Byeoru module uses these icons for the mode status part of uim-toolbar-*. 



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



Bug#611329: Look module is unregistered

2011-01-27 Thread Jonny
Package: uim-common
Version: 1:1.6.1-2
Severity: wishlist

The Look module cannot be used. 
Please register by the uim-module-manager command.

# uim-module-manager --register look --path /etc/uim



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



Bug#609307: RFP: yash -- yet another shell

2011-01-08 Thread Jonny
Package: wnpp
Severity: wishlist

* Package name: yash
  Version : 2.25
  Upstream Author : Magicant magic...@users.sourceforge.jp
* URL : http://sourceforge.jp/projects/yash/
* License : GPL
  Programming Lang: C
  Description : yet another shell

Yash is a command line shell that conforms to the POSIX.1 (IEEE Std
1003.1, 2008 Edition) standard for the most part. Actually, it is much
more POSIX-compliant than other shell like bash and zsh.

Yash also has its own features beyond POSIX, such as:
  * global aliases
  * random numbers
  * socket redirections and other special redirections
  * right prompt
  * command completion



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



Bug#580804: dh-make --createorig don't create orig.tar file

2011-01-06 Thread Jonny
Hi,

it fails in making orig.tar.gz:
 $ dh_make -s --createorig
snip
 Hit enter to confirm:
 tar: Cowardly refusing to create an empty archive
 Try `tar --help' or `tar --usage' for more information.

The argument of tar seems not to suffice.

--- dh_make.orig
+++ dh_make
@@ -515,7 +515,7 @@
}
} else {
if ($create_orig_tar) {
-   system('tar', 'cfz', 
../$package_name\_$version.orig.tar.gz);
+   system('tar', 'cfz', 
../$package_name\_$version.orig.tar.gz, .);
} else {
print Could not find 
$package_name\_$version.orig.tar.gz\n;
print Either specify an alternate file to use 
with -f,\n;



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



Bug#602990: [Pkg-telepathy-maintainers] Bug#602990: empathy: Starting Empathy - won't connect to Gtalk (have to re-enter account info to connect)

2010-11-10 Thread Jonny Lamb
On Tue, Nov 09, 19:45:05 -0800, Nerius Landys wrote:
 I close Empathy again.  Reopen.  Same problem, not connecting to Gtalk.

Looking at both your Empathy and Pidgin screenshots it appears both
clients are refusing to connect because they think you are not
connected to the internet. I cannot speak for Pidgin, but Empathy uses
Network Manager to detect whether an internet connection is present.

If for whatever reason, you want to force it always to try and connect
regardless of the connectivity Network Manager reports (which is odd,
and why it is the default), then run the following:

   gconftool-2 --set --type=boolean /apps/empathy/use_conn false

(Also note that more recent versions of Empathy use GSettings instead
of GConf, so this will only work with earlier versions of Empathy.)

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#600476: Im-switch is changed from Depends to Recommends

2010-10-17 Thread Jonny
Package: uim-common
Version: 1:1.5.7-9
Severity: wishlist

Please change im-switch from Depends to Recommends. 
SCIM, iBus and GCIN are Recommends.

 Package: uim-common
snip
 Depends: im-switch

 Package: scim
snip
 Recommends: scim-gtk2-immodule (= 1.4.9-5), im-config | im-switch, 
 scim-bridge-agent

 Package: ibus
snip
 Recommends: im-config | im-switch, ibus-gtk | ibus-qt4

 Package: gcin
snip
 Recommends: gcin-qt3-immodule, im-switch, anthy



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



Bug#576403: [Pkg-telepathy-maintainers] Bug#576403: empathy: Incomplete previous conversation history

2010-08-06 Thread Jonny Lamb
reassign 576403 telepathy-gabble
forwarded 576403 https://bugs.freedesktop.org/show_bug.cgi?id=27913
kthxbye

On Sun, Apr 04, 10:31:41 +0200, Julien Valroff wrote:
 Hi again,  All my apologies for flooding the BTS, this report should be the
 last...  When joining a chat room, empathy only displays parts of the previous
 conversations whereas other Jabber clients do display them completely.  It
 seems the missing parts are received as 'private messages' as the empathy 
 icons
 blinks, but nothing is displayed when I click on it.  I do not know if this is
 linked to the server or not, but I have noticed it when using 
 chat.jabberfr.org
 (I haven't tested other servers).  Cheers, Julien

This is actually a gabble bug...

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#591639: libhildon: FTBFS: **Error**: autoconf failed.

2010-08-05 Thread Jonny Lamb
reassign 591639 pkg-config
forcemerge 591547 591639
kthxbye

On Wed, Aug 04, 08:20:49 -0400, Cyril Brulebois wrote:
 | configure:11137: error: possibly undefined macro: AS_MESSAGE_LOG_FDdnl
 |   If this token and others are legitimate, please use m4_pattern_allow.
 |   See the Autoconf documentation.
 | **Error**: autoconf failed.

buh boh, thanks pkg-config!

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#591810: sapwood: FTBFS: configure:11498: error: possibly undefined macro: AS_MESSAGE_LOG_FDdnl

2010-08-05 Thread Jonny Lamb
reassign 591810 pkg-config
forcemerge 591547 591810
kthxbye

On Thu, Aug 05, 19:26:55 +0200, Philipp Kern wrote:
  configure:11498: error: possibly undefined macro: AS_MESSAGE_LOG_FDdnl
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
  autoreconf: /usr/bin/autoconf failed with exit status: 1

buh boh, thanks pkg-config!

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#589378: [Pkg-telepathy-maintainers] Bug#589378: empathy: Does not allow me to change status via the contact list window

2010-08-05 Thread Jonny Lamb
tags 589378 + moreinfo
kthxbye

On Sat, Jul 17, 07:41:56 -0400, Deniz Akcal wrote:
 I cannot change the status via the contact list window when using the MSN
 instant messaging protocol (have not tested other instant messaging
 protocols). I cannot even change it from the GNOME panel! If more information
 is needed, do not hesitate to contact me.

I'm confused.

Here is the first result for a Google image search for empathy
contact list:

http://people.collabora.co.uk/~cassidy/blog/empathy-contact-list-error.jpg

The Available text is editable because it's a GtkComboBoxEntry
widget. Can't you just edit that and set a status there? It works
here.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#588187: [Pkg-telepathy-maintainers] Bug#588187: empathy: fails to connect to Google Talk service

2010-08-05 Thread Jonny Lamb
tags 588187 + moreinfo
kthxbye

On Mon, Jul 05, 20:33:48 -0300, Ernesto Domato wrote:
 Please let me know what else I can do to help you with this bug report.

We need a debug log. Please follow the following instructions and
attach a debug log to this bug for the gabble connection manager:

http://live.gnome.org/Empathy/Debugging

Cheers,

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#588318: [Pkg-telepathy-maintainers] Bug#588318: Bug#588318: empathy sometimes crashes with xorg error

2010-08-05 Thread Jonny Lamb
forwarded 588318 https://bugzilla.gnome.org/show_bug.cgi?id=590692
kthxbye

On Wed, Jul 14, 15:50:24 +0200, Gianluca Francesco Signorotto wrote:
 I tried to do this and in fact the program crashes.

Yeah, it's far too easy to reproduce this. Here's the forwarded bug,
although the libchamplain guys think it's fixed. I should probably
reassign it here too.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#576267: Please package Hildon 2.2 for Debian

2010-08-01 Thread Jonny Lamb
On Fri, Apr 02, 12:54:14 +0200, Thomas Perl wrote:
 Hildon 2.2 has been available for several months. The current version
 can be downloaded from:
 
   http://repository.maemo.org/pool/fremantle/free/libh/libhildon/
 
 As of today, the latest version is 2.2.15-1+0m5 which can be downloaded
 from the above link.

So I started looking at this today. Unfortunately it totally depends
on maemo's GTK+, which has loads of changes. I started moving these
changes from said GTK+ to libhildon (like Riku did with HildonSizeType
already) but it's not so easy (addition to widgets' private structs,
etc.).

Not sure what to do yet.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#590914: [Pkg-telepathy-maintainers] Bug#590914: telepathy-idle: does not identify with NickServ

2010-08-01 Thread Jonny Lamb
retitle 590914 Add NickServ password support
forward 590914 https://bugs.freedesktop.org/show_bug.cgi?id=16177
severity 590914 wishlist
kthxbye

On Sat, Jul 31, 01:57:36 -0400, Luca Capello wrote:
 ** (telepathy-idle:4438): DEBUG: msg_queue_timeout_cb: called
 ** (telepathy-idle:4438): DEBUG: iface_send_impl: sent PASS $PASSWORD^M
  to IOChannel 0x12afae0
 ** (telepathy-idle:4438): DEBUG: msg_queue_timeout_cb: called
 ** (telepathy-idle:4438): DEBUG: iface_send_impl: sent NICK gismo^M
  to IOChannel 0x12afae0
 ** (telepathy-idle:4438): DEBUG: msg_queue_timeout_cb: called
 ** (telepathy-idle:4438): DEBUG: iface_send_impl: sent USER gismo \
  8 * :Luca Capello^M
  to IOChannel 0x12afae0
 ** (telepathy-idle:4438): DEBUG: _parse_message: parsing \
  :charm.oftc.net 001 gismo :Welcome to the OFTC Internet Relay \
  Chat Network gismo

So I don't know much about the IRC protocol other than it's a bit
crap. It turns out that if you send PASS foo then after successful
connection, some servers will use this password when the NickServ pops
up. Freenode does this, which is why I was confused when it worked
fine for me. OFTC does not do this, which of course is why you saw it.

So there you go. We've all learned something new. This is actually a
wishlist bug for adding a nickserv-password connection parameter to
idle. There's already a bug about this upstream. Maybe I'll do that
now.

Cheers,

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#590914: [Pkg-telepathy-maintainers] Bug#590914: telepathy-idle: does not identify with NickServ

2010-07-30 Thread Jonny Lamb
On Thu, Jul 29, 23:02:49 -0400, Luca Capello wrote:
 Hi there!

Hello!

 Well, the subject says all.  The information I have in the IRC account are
 correct (username and password), but upon connection I always get the 
 following
 NickServ message:
 
   This nickname is registered and protected.  If it is your nickname, you may
   authenticate yourself to services with the IDENTIFY command.  You are 
 getting
   this message because you are not on the access list for the gismo nickname.

Odd, I assume you're using Empathy? I just tried it here and it worked
fine.

 And sending the identify $PASSWORD message just after works without any
 problem.  Trying to debug what happening as explained at [1] did not produce
 any useful output except:
 
   (telepathy-idle:9839): tp-glib-DEBUG: started version 0.1.6 (telepathy-glib
 version 0.11.10)

Did you add IDLE_DEBUG=all when you started telepathy-idle manually?

Also, are you sure it's an idle account you've created? Is the
telepathy-haze process running? You can see other connection managers
by seeing which telepathy-* processes are up, or much prettier,
loading the debug dialog in Empathy (Help-Debug) and seeing which one
is whirring! You cn also, look in your
.mission-control/accounts/accounts.cfg and see if you a idle/irc/...
key, or if not, what else do you have with irc in the name.

Oh so many things to try! Failing that, I'll come and have a look at
it myself during DebConf (I assume by your timezone you're there)!

Cheers,

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#590032: ntpdate is slow

2010-07-22 Thread Jonny
Package: ntpdate
Version: 1:4.2.6.p2+dfsg-1

Hello,
1:4.2.6.p2+dfsg-1 is much slower than 1:4.2.6.p1+dfsg-1.

1:4.2.6.p1+dfsg-1:
# time ntpdate ntp.nict.jp /dev/null

real0m2.988s
user0m0.030s
sys 0m0.010s


1:4.2.6.p2+dfsg-1:
# time ntpdate ntp.nict.jp /dev/null

real0m10.961s
user0m0.030s
sys 0m0.000s


strace-1:4.2.6.p1+dfsg-1.txt.gz
Description: Binary data


strace-1:4.2.6.p2+dfsg-1.txt.gz
Description: Binary data


Bug#587086: A part of command doesn't operate

2010-06-25 Thread Jonny
Package: dash
Version: 0.5.6.1-1~exp0

hello,

It seems to be very broken:
 $ dpkg-buildpackage -rfakeroot
 /bin/sh: Can't open /usr/bin/which
 /bin/sh: Can't open /usr/bin/which
 /bin/sh: Can't open /usr/bin/which
 dpkg-buildpackage: error: fakeroot not found, either install the fakeroot
 package, specify a command with the -r option, or run this as root
 $ git pull
 /bin/sh: Can't open /usr/lib/git-core/git-pull
 git: 'pull' is not a git command. See 'git --help'.
 
 Did you mean this?
 pull


There is no problem in dash 0.5.5.1-7 and original dash 0.5.6.1.



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



Bug#584952: gitg: memory error / assertion failed

2010-06-08 Thread Jonny Lamb
On Mon, Jun 07, 21:14:30 -0400, Eric Cooper wrote:
 Do you know if there is a simple way to build the debugging version
 with pbuilder?  I prefer to use that so I don't need all the -dev and -dbg
 packages installed in my main system.

I guess if you remove the call to dh_strip in debian/rules and build
that it should build gitg with debugging symbols.

You will still need to have glib (et al.) dbg packages installed
though.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#584952: gitg: memory error / assertion failed

2010-06-08 Thread Jonny Lamb
Please don't forget to CC the bug (584...@bdo) when replying to my
emails.

On Tue, Jun 08, 07:32:17 -0400, Eric Cooper wrote:
 I have it running under gdb now and will let you know what I find.

Great, thanks!

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#584952: gitg: memory error / assertion failed

2010-06-07 Thread Jonny Lamb
On Mon, Jun 07, 15:13:43 -0400, Eric Cooper wrote:
 I got this crash:
 
 ***MEMORY-ERROR***: gitg[9783]: GSlice: assertion failed: 
 sinfo-n_allocated  0
 [1]+  Aborted gitg
 
 I had been using a gitg window with view all branches, and had
 recently typed control-R to refresh the view after a commit.  The same
 crash happened in an earlier session, but it doesn't happen every
 time.

Please could you get a backtrace to see where this happens? You will
have to build gitg from source and run the binary and make sure you
have the GLib dbg package installed, then simply run gitg in gdb and
ask for a backtrace when it aborts.

Cheers,

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#525937: refdbg: changing back from ITP to RFP

2010-05-29 Thread Jonny Lamb
retitle 525937 ITP: refdbg -- GObject Refcount Debugger
owner 525937 !
kthxbye

On Tue, May 25, 17:06:42 +, Lucas Nussbaum wrote:
 This is an automatic email to change the status of refdbg back from ITP
 (Intent to Package) to RFP (Request for Package), because this bug hasn't seen
 any activity during the last 12 months.

Yeah, sorry about that. I actually made packages for this ages ago[0]
but hit some spurious problems which I never solved. Hopefully I can
get around this sometime soon.

0. http://people.debian.org/~jonny/refdbg/

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#581867: Segfault is done with ${*:n}

2010-05-16 Thread Jonny
Package: mksh
Version: 39.3-3
Severity: important

Hello,

segmentation fault is obtained according to the following procedure:
 $ set 0
 $ echo ${*:0}
 Segmentation fault



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



Bug#581867: Segfault is done with ${*:n}

2010-05-16 Thread Jonny
Thorsten wrote:
 Severity: important
 
 Is this severity justified? The fix will be disabling this idiom
 anyway ($* is a vector, like $@, just expanded differently; to
 trim it you must assign it to a string beforehand; this was al-
 ways the case with things like ${foo#bar} and has merely been
 overseen during addition of the ${foo:bar} and ${foo/bar} trim
 operations), and I would like to not do a new upload to Debian
 right now (there will be a new upstream release soonish anyway,
 but I’ll need to dig through some more Austin mailing list posts
 first to see if anything else needs fixing first).
 
 If you don’t reply I will downgrade the severity. ETA for the
 new upload is probably a month at best unless real life keeps
 me this busy as it is right now.

It was thought that the crash bug of /bin/sh was an important bug.
There is no other speculation.



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



Bug#581605: gitg: Aborted on gtktextview assertion

2010-05-14 Thread Jonny Lamb
tags 581605 + moreinfo
kthxbye

On Fri, May 14, 11:07:55 +0200, Matijs van Zuijlen wrote:
 After clicking several times on different parts the timeline, gitg
 dumped core.

Timeline? Which widget are you referring to exactly?

 I have not been able to repeat this behavior.

Hmm, me neither with some testing just now.

 Backtrace attached.

Unfortunately, I don't currently understand the inner workings of
GtkTextView. This is likely to be a GTK+ bug if gitg isn't doing
anything silly with the text view.

Cheers,

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#581605: gitg: Aborted on gtktextview assertion

2010-05-14 Thread Jonny Lamb
tags 581605 + unreproducible
kthxbye

On Fri, May 14, 12:34:19 +0200, Matijs van Zuijlen wrote:
 Indeed: The line before the assert is triggered has the following comment:
 
   /* This can have the odd side effect of triggering a scroll, which should
* flip onscreen_validated back to FALSE, but should also get us
* back into this function to turn it on again.
*/
 
 That's a lot of 'should's, and apparently one of them failed.

Heh, sounds like GTK+!

Well, let me know if you can give any more information about this, or
can reliably reproduce it. I'm not sure what else I can do now.

Thanks,

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#581493: RM: pywbxml -- ROM; low popcon; no rdepends

2010-05-13 Thread Jonny Lamb
Package: ftp.debian.org
Severity: wishlist

No-one uses pywbxml anymore. Let's get rid of it.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#579856: patch

2010-05-13 Thread Jonny Lamb
FWIW, here's the patch.

-- 
Jonny Lamb, UK
jo...@debian.org
From 6b95357e183d3d2b15e5a5a66f8027d828af1e4c Mon Sep 17 00:00:00 2001
From: Jonny Lamb jo...@debian.org
Date: Wed, 12 May 2010 15:38:58 +0100
Subject: [PATCH] Use gtk_show_uri instead of trying to spawn nautilus.

Signed-off-by: Jonny Lamb jo...@debian.org
---
 src/synce-trayicon.c |   17 ++---
 1 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/src/synce-trayicon.c b/src/synce-trayicon.c
index af66f21..fa940d1 100644
--- a/src/synce-trayicon.c
+++ b/src/synce-trayicon.c
@@ -798,25 +798,20 @@ static void
 menu_explore (GtkWidget *menu_item, SynceTrayIcon *self)
 {
   const gchar *name = NULL;
-  gchar *arg_str = NULL;
+  gchar *uri = NULL;
   GError *error = NULL;
 
   GtkWidget *device_menu = gtk_widget_get_parent(menu_item);
   name = gtk_menu_get_title(GTK_MENU(device_menu));
 
-  arg_str = g_strdup_printf(synce://%s/, name);
-  
-  char *argv[4] = {
-  nautilus, -n, arg_str, NULL
-  };
-  
-  if (!g_spawn_async(NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, error)) {
-  g_warning(%s: failed to explore '%s': %s, G_STRFUNC, arg_str, error-message);
+  uri = g_strdup_printf(synce://%s/, name);
+
+  if (!gtk_show_uri(gtk_widget_get_screen(menu_item), uri, gtk_get_current_event_time (), error)) {
+  g_warning(%s: failed to explore '%s': %s, G_STRFUNC, uri, error-message);
   g_error_free(error);
-  return;
   }
 
-  g_free(arg_str);
+  g_free(uri);
 }
 
 static void
-- 
1.7.0.4



Bug#579856: synce-trayicon: missing dependency on nautilus

2010-05-12 Thread Jonny Lamb
On Sat, May 01, 19:25:03 +0200, JCF Ploemen wrote:
 Synce-trayicon uses nautilus for its Explore with Filemanager function,
 but doesn't have a corresponding dependency. As a result, trying to use
 this functionality fails (silenty) on any system that doesn't already
 happen to have nautilus installed, which is commonly the case for any
 non-gnome desktop. As soon as the 'nautilus' package is installed,
 everything works as expected.

Haha, this is pretty funny:

  ...
  char *argv[4] = {
  nautilus, -n, arg_str, NULL
  };

  if (!g_spawn_async(NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, 
error)) {
  ...

I've written a patch to use gtk_show_uri() instead, so nautilus is no
longer a requirement. I'll probably add nautilus to Recommands still
though.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#579856: synce-trayicon: missing dependency on nautilus

2010-05-12 Thread Jonny Lamb
Actually, this still won't work as we haven't got synce-gvfs in the
archive, I think.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#572833: odccm: Uses deprecated libgnet

2010-05-12 Thread Jonny Lamb
reassign 572833 ftp.debian.org
retitle 572833 RM: odccm -- RoM; superseded by synce-hal
severity 572833 wishlist
kthxbye

On Sat, Mar 06, 23:07:15 +0100, Emilio Pozuelo Monfort wrote:
 You told me back in August that odccm should probably be removed. You may want
 to do so now :)

Great idea!

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#580608: Issue of illegal hardware instruction

2010-05-07 Thread Jonny
Package: chromium-browser
Version: 5.0.375.29~r46008-1
Severity: grave

Hello, it doesn't start at all.

$ /usr/bin/chromium-browser
Illegal instruction
$ cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 8
model name  : Celeron (Coppermine)
stepping: 6
cpu MHz : 698.513
cache size  : 128 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pse36
 mmx fxsr sse
bogomips: 1397.02
clflush size: 32
cache_alignment : 32
address sizes   : 36 bits physical, 32 bits virtual
power management:



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



Bug#580608: [Pkg-chromium-maint] Bug#580608: Issue of illegal hardware instruction

2010-05-07 Thread Jonny
Giuseppe wrote:
 Please paste the output of:
 reportbug --template chromium-browser

okey.

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

Kernel: Linux 2.6.33.3
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.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.375.29~r46008-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  libdbus-1-3  1.2.24-1simple interprocess messaging syst
ii  libdbus-glib-1-2 0.86-1  simple interprocess messaging syst
ii  libevent-1.4-2   1.4.13-stable-1 An asynchronous event notification
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.4-1   GCC support library
ii  libgconf2-4  2.28.1-3GNOME configuration database syste
ii  libglib2.0-0 2.24.1-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-1The 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.4-1 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  libxml2  2.7.7.dfsg-2GNOME XML library
ii  libxrender1  1:0.9.5-2   X Rendering Extension client libra
ii  libxslt1.1   1.1.26-3XSLT processing library - runtime
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:
ii  chromium-browser-l10 5.0.375.29~r46008-1 chromium-browser language 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#580298: krinterror not found

2010-05-04 Thread Jonny
Package: sysv-rc
Version: 2.88dsf-2
Severity: minor

Hello, typo was found.

--- invoke-rc.d.orig
+++ invoke-rc.d
@@ -303,7 +303,7 @@
 printerror WARNING: invoke-rc.d called for ${INITSCRIPTID} during
 printerror shutdown sequence printerror enabling safe mode:
 printerror initscript policy layer disabled
-krinterror 
+printerror 
 fi

 ## Verifies the existance of proper S??initscriptID and K??initscriptID



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



Bug#579815: Segfault is done with nested function

2010-04-30 Thread Jonny
Package: dash
Version: 0.5.5.1-3
Severity: important

Hi,

the procedure to make dash crash was found:
 $ alias x=echo
 $ x() { echo; }
 $ x
 Segmentation fault



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



Bug#579543: Segfault is done with command

2010-04-28 Thread Jonny
Package: dash
Version: 0.5.5.1-3
Severity: important

Hi,

the method of making dash crash was found:
 $ command --
 Segmentation fault



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



Bug#573530: typo in debian/copyright

2010-03-11 Thread Jonny
Package: libcairo2
Version: 1.8.10-2
Severity: minor

 Cairo is free software.

 Every source file in the implementation of cairo is available to be
 redistributed and/or modified under the terms of either the GNU Lesser
 General Public License (LPGL) version 2.1 or the Mozilla Public
 License (MPL) version 1.1.  Some files are available under more
 liberal terms, but we believe that in all cases, each file may be used
 under either the LGPL or the MPL.

LPGL.



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



Bug#571667: gitg: tagging insists on filling in a message

2010-02-28 Thread Jonny Lamb
forwarded 571667 https://bugzilla.gnome.org/show_bug.cgi?id=611434
kthxbye

On Fri, Feb 26, 23:02:43 +0100, Gerfried Fuchs wrote:
  When one wants to tag a commit gitg insists on filling in a message for
 the tag, even if one unchecks the signing of the tag. Given that
 messages only are contained in signed tags this somehow makes no sense
 and is a bit inconvenient. :)

I wrote a patch for this and filed a bug upstream with the patch. I'll
make a new upload once it goes into upstream's git.

-- 
Jonny Lamb, UK
jo...@debian.org



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



Bug#571052: samba 3.5.0rc3 experimental install broke ssh on my box, had to install experimental ssh as well

2010-02-22 Thread Jonny Kent
Package: samba
Version: 2:3.5.0~rc3~dfsg-1
Severity: important

 realize this is only an rc however I thought it should be pointed out that the 
install broke ssh.
once experimental ssh was installed ssh was ok again. Thanks for this release, 
I eagerly await the final version.

-- System Information:
Debian Release: squeeze/sid
  APT prefers karmic-updates
  APT policy: (500, 'karmic-updates'), (500, 'karmic-security'), (500, 'karmic')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31-14-server (SMP w/8 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 samba depends on:
ii  adduser 3.110ubuntu7 add and remove users and groups
ii  debconf [debcon 1.5.27ubuntu2Debian configuration management sy
ii  libacl1 2.2.47-2 Access control list shared library
ii  libattr11:2.4.43-3   Extended attribute shared library
ii  libc6   2.10.1-0ubuntu16 GNU C Library: Shared libraries
ii  libcap2 1:2.16-5ubuntu1  support for getting/setting POSIX.
ii  libcomerr2  1.41.9-1ubuntu3  common error description library
ii  libcups21.4.1-5ubuntu2.2 Common UNIX Printing System(tm) - 
ii  libgssapi-krb5- 1.8+dfsg~alpha1-7MIT Kerberos runtime libraries - k
ii  libk5crypto31.8+dfsg~alpha1-7MIT Kerberos runtime libraries - C
ii  libkrb5-3   1.8+dfsg~alpha1-7MIT Kerberos runtime libraries
ii  libldap-2.4-2   2.4.18-0ubuntu1  OpenLDAP libraries
ii  libpam-modules  1.1.0-2ubuntu1   Pluggable Authentication Modules f
ii  libpam-runtime  1.1.0-2ubuntu1   Runtime support for the PAM librar
ii  libpam0g1.1.0-2ubuntu1   Pluggable Authentication Modules l
ii  libpopt01.15-1   lib for parsing cmdline parameters
ii  libtalloc2  2.0.1-1  hierarchical pool based memory all
ii  libwbclient02:3.5.0~rc3~dfsg-1   Samba winbind client library
ii  lsb-base4.0-0ubuntu5 Linux Standard Base 4.0 init scrip
ii  procps  1:3.2.8-1ubuntu3 /proc file system utilities
ii  samba-common2:3.5.0~rc3~dfsg-1   common files used by both the Samb
ii  update-inetd4.31 inetd configuration file updater
ii  zlib1g  1:1.2.3.3.dfsg-13ubuntu3 compression library - runtime

Versions of packages samba recommends:
ii  logrotate 3.7.8-4ubuntu1 Log rotation utility

Versions of packages samba suggests:
pn  ctdb  none (no description available)
pn  ldb-tools none (no description available)
pn  openbsd-inetd | inet-superser none (no description available)
pn  smbldap-tools none (no description available)

-- debconf information:
  samba/run_mode: daemons
  samba/generate_smbpasswd: true



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



Bug#570224: [Pkg-telepathy-maintainers] Bug#570224: empathy: fails to reconnect when network connection is lost, and remade

2010-02-17 Thread Jonny Lamb
On Wed, Feb 17, 10:56:54 -0200, Gustavo Noronha Silva wrote:
 Few weeks ago, when my wireless disconnected for some reason, and
 reconnected, Empathy would automatically reconnect. Now it just stays
 there, with a green icon, but not really connected. The only way I
 could find to get it to reconnect is to exit the program, and start it
 over.

Can you get some empathy logs please?

http://live.gnome.org/Empathy/Debugging

-- 
Jonny Lamb, UK
jo...@debian.org



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100217160553.ga20...@geminiani.jonnylamb.com



Bug#567039: Shouldn't this be filed upstream?

2010-02-04 Thread Jonny Lamb
On Thu, Feb 04, 11:22:49 -0500, The Anarcat wrote:
 Has the upstream maintainer been contacted so that everyone benefits
 from the security fix?

No, it was a Debian-specific problem.

-- 
Jonny Lamb, UK
jo...@debian.org



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



  1   2   3   4   5   >