Bug#1071694: reportbug: crosshurd does not extract gnumach

2024-05-23 Thread João
Package: crosshurd
Version: 1.7.60
Severity: important
User: debian-h...@lists.debian.org
Usertags: hurd
X-Debbugs-Cc: debian-h...@lists.debian.org

Dear Maintainer,

Due to recent changes in packages aand file names for gnumach, gnumach
package is not extracted after being downloaded, so the resulting hurd
system is unbootable.

Many thanks,
João

-- System Information:
Debian Release: 12.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 6.1.0-21-686-pae (SMP w/2 CPU threads; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages crosshurd depends on:
ii  dialog1.3-20230209-1
ii  dpkg-dev  1.21.22

Versions of packages crosshurd recommends:
pn  attr   
pn  eatmydata  

crosshurd suggests no packages.

-- no debconf information


Bug#1014987: netsurf: FTBFS on the Hurd - refresh patch

2024-04-16 Thread João
X-Debbugs-CC: debian-h...@lists.debian.org

Dear Maintainer,

Refreshing the patch fixing the FTBFS on the hurd to version 3.11 of netsurf.

I don't know if the framebuffer package should be built on the hurd. With the
attached patch the package builds, but when I try to run the program with the
SDL frontend, it crashes. But perhaps it is not expected to work.
In any case that would be the case for a separate bug report.

Many thanks,
João
--- netsurf-3.11.orig/netsurf/frontends/framebuffer/fetch.c
+++ netsurf-3.11/netsurf/frontends/framebuffer/fetch.c
@@ -48,13 +48,16 @@
  */
 static nsurl *get_resource_url(const char *path)
 {
-	char buf[PATH_MAX];
+	char *buf = NULL;
 	nsurl *url = NULL;
 
 	if (strcmp(path, "favicon.ico") == 0)
 		path = "favicon.png";
 
-	netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), &url);
+	buf = filepath_find(respaths, path);
+	netsurf_path_to_nsurl(buf, &url);
+ 
+	free(buf);
 
 	return url;
 }
--- netsurf-3.11.orig/netsurf/frontends/framebuffer/font_freetype.c
+++ netsurf-3.11/netsurf/frontends/framebuffer/font_freetype.c
@@ -120,15 +120,16 @@ fb_new_face(const char *option, const ch
 fb_faceid_t *newf;
 FT_Error error;
 FT_Face aface;
-	char buf[PATH_MAX];
+	char *buf = NULL;
 
 newf = calloc(1, sizeof(fb_faceid_t));
 
 if (option != NULL) {
 newf->fontfile = strdup(option);
 } else {
-		filepath_sfind(respaths, buf, fontname);
+		buf = filepath_find(respaths, fontname);
 newf->fontfile = strdup(buf);
+		free(buf);
 }
 
 error = FTC_Manager_LookupFace(ft_cmanager, (FTC_FaceID)newf, &aface);
--- netsurf-3.11.orig/netsurf/frontends/gtk/fetch.c
+++ netsurf-3.11/netsurf/frontends/gtk/fetch.c
@@ -250,14 +250,16 @@ const char *fetch_filetype(const char *u
 
 static nsurl *nsgtk_get_resource_url(const char *path)
 {
-	char buf[PATH_MAX];
+	char *buf = NULL;
 	nsurl *url = NULL;
 
 	/* favicon.ico -> favicon.png */
 	if (strcmp(path, "favicon.ico") == 0) {
 		nsurl_create("resource:favicon.png", &url);
 	} else {
-		netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), &url);
+		buf = filepath_find(respaths, path);
+		netsurf_path_to_nsurl(buf, &url);
+		free(buf);
 	}
 
 	return url;
--- netsurf-3.11.orig/netsurf/frontends/gtk/gui.c
+++ netsurf-3.11/netsurf/frontends/gtk/gui.c
@@ -909,8 +909,8 @@ static nserror nsgtk_add_named_icons_to_
  */
 static nserror nsgtk_setup(int argc, char** argv, char **respath)
 {
-	char buf[PATH_MAX];
-	char *resource_filename;
+	char *buf = NULL;
+	char *resource_filename = NULL;
 	char *addr = NULL;
 	nsurl *url;
 	nserror res;
@@ -986,8 +986,9 @@ static nserror nsgtk_setup(int argc, cha
 		.pma = true,
 	});
 
-	filepath_sfinddef(respath, buf, "mime.types", "/etc/");
+	buf = filepath_sfinddef(respath, "mime.types", "/etc/");
 	gtk_fetch_filetype_init(buf);
+	free(buf);
 
 	save_complete_init();
 
--- netsurf-3.11.orig/netsurf/frontends/monkey/fetch.c
+++ netsurf-3.11/netsurf/frontends/monkey/fetch.c
@@ -36,10 +36,12 @@ extern char **respaths;
 
 static nsurl *gui_get_resource_url(const char *path)
 {
-	char buf[PATH_MAX];
+	char *buf = NULL;
 	nsurl *url = NULL;
 
-	netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), &url);
+	buf = filepath_find(respaths, path);
+	netsurf_path_to_nsurl(buf, &url);
+	free(buf);
 
 	return url;
 }
--- netsurf-3.11.orig/netsurf/frontends/monkey/main.c
+++ netsurf-3.11/netsurf/frontends/monkey/main.c
@@ -390,7 +390,7 @@ main(int argc, char **argv)
 {
 	char *messages;
 	char *options;
-	char buf[PATH_MAX];
+	char *buf = NULL;
 	nserror ret;
 	struct netsurf_table monkey_table = {
 		.misc = &monkey_misc_table,
@@ -452,8 +452,9 @@ main(int argc, char **argv)
 		die("NetSurf failed to initialise");
 	}
 
-	filepath_sfinddef(respaths, buf, "mime.types", "/etc/");
+	buf = filepath_sfinddef(respaths, "mime.types", "/etc/");
 	monkey_fetch_filetype_init(buf);
+	free(buf);
 
 	urldb_load(nsoption_charp(url_file));
 	urldb_load_cookies(nsoption_charp(cookie_file));
--- netsurf-3.11.orig/netsurf/frontends/windows/fetch.c
+++ netsurf-3.11/netsurf/frontends/windows/fetch.c
@@ -76,10 +76,12 @@ static const char *fetch_filetype(const
  */
 static nsurl *nsw32_get_resource_url(const char *path)
 {
-	char buf[PATH_MAX];
+	char *buf = NULL;
 	nsurl *url = NULL;
 
-	netsurf_path_to_nsurl(filepath_sfind(G_resource_pathv, buf, path), &url);
+	buf = filepath_find(G_resource_pathv, path);
+	netsurf_path_to_nsurl(buf, &url);
+	free(buf);
 
 	return url;
 }
--- netsurf-3.11.orig/netsurf/frontends/windows/main.c
+++ netsurf-3.11/netsurf/frontends/windows/main.c
@@ -171,12 +171,13 @@ static nserror set_defaults(struct nsopt
 	DWORD buf_bytes_size = sizeof(TCHAR) * buf_tchar_size;
 	char *ptr = NULL;
 	char *buf;
+	char *buftest;
 	char *fn

Bug#1060666: github example is too unstable

2024-03-27 Thread João Pedro Nóbrega Fernandes
I've tested the github repository you cited and wasn't able to reproduce it
at all. Tested versions said to be working and the code still was really
unstable even using docker compose.

I believe this code you used wasn't the best example as I found its
Makefile really unstable with many versions of podman compose and even
Docker.

So I think this is not a issue with the version in Debian stable


Bug#1009712: sv: fails to control the service on Hurd

2022-12-21 Thread João
Hello,

Coming back to this bug.

I noticed that supervise/ok that sv is trying to open is a named pipe not a
file. I don't know if this is telling in some way.

I attach a more detailed debug log. Problems seem to occur in __dir_lookup.

Best wishes,
João
Breakpoint 1 at 0x17a0: file ./runit-2.1.2/src/sv.c, line 253.
Starting program: /usr/bin/sv start ssh
[New Thread 1858.5]

Thread 4 hit Breakpoint 1, control (a=0x803fb00 "u") at 
./runit-2.1.2/src/sv.c:253
253 ./runit-2.1.2/src/sv.c: No such file or directory.
svstatus_get () at ./runit-2.1.2/src/sv.c:94
94  in ./runit-2.1.2/src/sv.c
open_write (fn=0x803f9c0 "supervise/ok") at ./runit-2.1.2/src/open_write.c:8
8   ./runit-2.1.2/src/open_write.c: No such file or directory.
open64 (__oflag=10, __path=0x803f9c0 "supervise/ok") at 
/usr/include/i386-gnu/bits/fcntl2.h:53
warning: Source file is more recent than executable.
53return __open_alias (__path, __oflag, __va_arg_pack ());
__GI___libc_open (file=0x803f9c0 "supervise/ok", oflag=10) at 
../sysdeps/mach/hurd/open.c:35
35  ../sysdeps/mach/hurd/open.c: No such file or directory.
__x86.get_pc_thunk.bx () at ../sysdeps/i386/i686/multiarch/memset-sse2.S:97
97  ../sysdeps/i386/i686/multiarch/memset-sse2.S: No such file or directory.
Run till exit from #0  __x86.get_pc_thunk.bx ()
at ../sysdeps/i386/i686/multiarch/memset-sse2.S:97
0x01192699 in __GI___libc_open (file=0x803f9c0 "supervise/ok", oflag=10) at 
../sysdeps/mach/hurd/open.c:35
35  ../sysdeps/mach/hurd/open.c: No such file or directory.
45  in ../sysdeps/mach/hurd/open.c
46  in ../sysdeps/mach/hurd/open.c
__file_name_lookup (file_name=0x803f9c0 "supervise/ok", flags=10, mode=0) at 
./hurd/hurdlookup.c:222
222 ./hurd/hurdlookup.c: No such file or directory.
__x86.get_pc_thunk.bx () at ../sysdeps/i386/i686/multiarch/memset-sse2.S:97
97  ../sysdeps/i386/i686/multiarch/memset-sse2.S: No such file or directory.
Run till exit from #0  __x86.get_pc_thunk.bx ()
at ../sysdeps/i386/i686/multiarch/memset-sse2.S:97
0x010725a6 in __file_name_lookup (file_name=0x803f9c0 "supervise/ok", flags=10, 
mode=0) at ./hurd/hurdlookup.c:222
222 ./hurd/hurdlookup.c: No such file or directory.
226 in ./hurd/hurdlookup.c
0x010720e4 in __hurd_file_name_lookup (use_init_port=, 
get_dtable_port=, lookup=, file_name=, flags=, mode=, result=) at 
./hurd/hurdlookup.c:50
50  in ./hurd/hurdlookup.c
62  in ./hurd/hurdlookup.c
63  in ./hurd/hurdlookup.c
65  in ./hurd/hurdlookup.c
68  in ./hurd/hurdlookup.c
69  in ./hurd/hurdlookup.c
72  in ./hurd/hurdlookup.c
75  in ./hurd/hurdlookup.c
93  in ./hurd/hurdlookup.c
_hurd_ports_use (which=0, operate=0x103cc58) at ./hurd/hurdinit.c:45
45  ./hurd/hurdinit.c: No such file or directory.
Run till exit from #0  _hurd_ports_use (which=0, operate=0x103cc58)
at ./hurd/hurdinit.c:45
__hurd_file_name_lookup (use_init_port=, 
get_dtable_port=, lookup=, file_name=, flags=, mode=, result=) at 
./hurd/hurdlookup.c:94
94  ./hurd/hurdlookup.c: No such file or directory.
Value returned is $1 = ESUCCESS
95  in ./hurd/hurdlookup.c
__hurd_file_name_lookup_retry (use_init_port=0x106a520 <_hurd_ports_use>, 
get_dtable_port=0x1093d10 <__getdport>, lookup=0x1328410 <__dir_lookup>, 
doretry=FS_RETRY_MAGICAL, retryname=0x103c858 "/run/runit/supervise/ssh/ok", 
flags=10, mode=0, result=0x103ccb8) at ./hurd/lookup-retry.c:59
59  ./hurd/lookup-retry.c: No such file or directory.
98  in ./hurd/lookup-retry.c
105 in ./hurd/lookup-retry.c
108 in ./hurd/lookup-retry.c
203 in ./hurd/lookup-retry.c
207 in ./hurd/lookup-retry.c
209 in ./hurd/lookup-retry.c
214 in ./hurd/lookup-retry.c
215 in ./hurd/lookup-retry.c
373 in ./hurd/lookup-retry.c
383 in ./hurd/lookup-retry.c
390 in ./hurd/lookup-retry.c
_hurd_ports_use (which=1, operate=0x103c358) at ./hurd/hurdinit.c:45
45  ./hurd/hurdinit.c: No such file or directory.
Run till exit from #0  _hurd_ports_use (which=1, operate=0x103c358)
at ./hurd/hurdinit.c:45
0x01072cd6 in __hurd_file_name_lookup_retry (use_init_port=, 
get_dtable_port=, lookup=, doretry=, retryname=, flags=, mode=, 
result=) at ./hurd/lookup-retry.c:390
390 ./hurd/lookup-retry.c: No such file or directory.
Value returned is $2 = ESUCCESS
391 in ./hurd/lookup-retry.c
105 in ./hurd/lookup-retry.c
108 in ./hurd/lookup-retry.c
116 in ./hurd/lookup-retry.c
124 in ./hurd/lookup-retry.c
198 in ./hurd/lookup-retry.c
373 in ./hurd/lookup-retry.c
375 in ./hurd/lookup-retry.c
379 in ./hurd/lookup-retry.c
__mach_port_mod_refs (task=35, name=18, right=0, delta=1) at 
./build-tree/hurd-i386-libc/mach/RPC_mach_port_mod_refs.c:53
53  ./build-tree/hurd-i386-libc/mach/RPC_mach_port_mod_refs.c: No such file 
or directory.
Run till exit from #0  __mach_port_mod_refs

Bug#1014987: netsurf: FTBFS on the Hurd

2022-07-15 Thread João
Source: netsurf
Severity: normal
Tags: ftbfs patch upstream

Dear Maintainer,

Netsurf fails to build from source on the Hurd due to several common issues on
that platform.

The attached patch fixes those issues and has been reported upstream with bug
ID 0002824 (https://bugs.netsurf-browser.org/mantis/view.php?id=2824). That bug
report has been open for a year now and it has not been acknowledged.
Would you consider applying the patch on the Debian package to allow building
on the Hurd?

Many thanks,
João
-- netsurf-3.10.orig/libnsutils/src/time.c
+++ netsurf-3.10/libnsutils/src/time.c
@@ -16,11 +16,11 @@
 #include 
 #include 
 
-#if (defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0) && (defined 
_POSIX_MONOTONIC_CLOCK)) || defined(__OpenBSD__)
+#if (defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0) && (defined 
_POSIX_MONOTONIC_CLOCK)) || defined(__OpenBSD__) || defined(__GNU__)
 #include 
 #elif defined(__riscos)
 #include 
-#elif defined(__MACH__)
+#elif defined(__MACH__) && defined(__APPLE__)
 #include 
 #include 
 #include 
@@ -41,7 +41,7 @@ nsuerror nsu_getmonotonic_ms(uint64_t *c
 uint64_t current;
 static uint64_t prev = 0; /* previous time so we never go backwards */
 
-#if (defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0) && (defined 
_POSIX_MONOTONIC_CLOCK)) || defined(__OpenBSD__)
+#if (defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0) && (defined 
_POSIX_MONOTONIC_CLOCK)) || defined(__OpenBSD__) || defined(__GNU__)
 struct timespec tp;
 
 clock_gettime(CLOCK_MONOTONIC, &tp);
@@ -51,7 +51,7 @@ nsuerror nsu_getmonotonic_ms(uint64_t *c
 
 time = os_read_monotonic_time();
 current = time * 10;
-#elif defined(__MACH__)
+#elif defined(__MACH__) && defined(__APPLE__)
 clock_serv_t cclock;
 mach_timespec_t mts;
 
--- netsurf-3.10.orig/netsurf/frontends/framebuffer/fetch.c
+++ netsurf-3.10/netsurf/frontends/framebuffer/fetch.c
@@ -48,13 +48,16 @@
  */
 static nsurl *get_resource_url(const char *path)
 {
-   char buf[PATH_MAX];
+   char *buf = NULL;
nsurl *url = NULL;
 
if (strcmp(path, "favicon.ico") == 0)
path = "favicon.png";
 
-   netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), &url);
+   buf = filepath_find(respaths, path);
+   netsurf_path_to_nsurl(buf, &url);
+ 
+   free(buf);
 
return url;
 }
--- netsurf-3.10.orig/netsurf/frontends/framebuffer/font_freetype.c
+++ netsurf-3.10/netsurf/frontends/framebuffer/font_freetype.c
@@ -120,15 +120,16 @@ fb_new_face(const char *option, const ch
 fb_faceid_t *newf;
 FT_Error error;
 FT_Face aface;
-   char buf[PATH_MAX];
+   char *buf = NULL;
 
 newf = calloc(1, sizeof(fb_faceid_t));
 
 if (option != NULL) {
 newf->fontfile = strdup(option);
 } else {
-   filepath_sfind(respaths, buf, fontname);
+   buf = filepath_find(respaths, fontname);
 newf->fontfile = strdup(buf);
+   free(buf);
 }
 
 error = FTC_Manager_LookupFace(ft_cmanager, (FTC_FaceID)newf, &aface);
--- netsurf-3.10.orig/netsurf/frontends/gtk/fetch.c
+++ netsurf-3.10/netsurf/frontends/gtk/fetch.c
@@ -249,14 +249,16 @@ const char *fetch_filetype(const char *u
 
 static nsurl *nsgtk_get_resource_url(const char *path)
 {
-   char buf[PATH_MAX];
+   char *buf = NULL;
nsurl *url = NULL;
 
/* favicon.ico -> favicon.png */
if (strcmp(path, "favicon.ico") == 0) {
nsurl_create("resource:favicon.png", &url);
} else {
-   netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), 
&url);
+   buf = filepath_find(respaths, path);
+   netsurf_path_to_nsurl(buf, &url);
+   free(buf);
}
 
return url;
--- netsurf-3.10.orig/netsurf/frontends/gtk/gui.c
+++ netsurf-3.10/netsurf/frontends/gtk/gui.c
@@ -335,8 +335,8 @@ static nserror nsgtk_add_named_icons_to_
  */
 static nserror nsgtk_init(int argc, char** argv, char **respath)
 {
-   char buf[PATH_MAX];
-   char *resource_filename;
+   char *buf = NULL;
+   char *resource_filename = NULL;
char *addr = NULL;
nsurl *url;
nserror res;
@@ -407,8 +407,9 @@ static nserror nsgtk_init(int argc, char
browser_set_dpi(gdk_screen_get_resolution(gdk_screen_get_default()));
NSLOG(netsurf, INFO, "Set CSS DPI to %d", browser_get_dpi());
 
-   filepath_sfinddef(respath, buf, "mime.types", "/etc/");
+   buf = filepath_sfinddef(respath, "mime.types", "/etc/");
gtk_fetch_filetype_init(buf);
+   free(buf);
 
save_complete_init();
 
--- netsurf-3.10.orig/netsurf/frontends/monkey/fetch.c
+++ netsurf-3.10/netsurf/frontends/monkey/fetc

Bug#1009712: sv: fails to control the service on Hurd

2022-07-05 Thread João Pedro Malhado
Hello Samuel,

As you suggested the open64() function being used seems to be that defined in
sysdeps/mach/hurd/open.c

However errnno is already 1073741902 before the function call, so does not
really change after the function call. On the other hand the variable fd that
stores the value returned from open() flips from 0 to -1. I attach a brief gdb
log.

So I don't know what to look for at the moment.

Best regards,
João
Breakpoint 1 at 0x17b0: control. (2 locations)
Starting program: /usr/bin/sv start cron
[New Thread 829.5]

Thread 4 hit Breakpoint 1, control (a=0x803cbe0 "u")
at ./runit-2.1.2/src/sv.c:253
253 ./runit-2.1.2/src/sv.c: No such file or directory.
svstatus_get () at ./runit-2.1.2/src/sv.c:94
94  in ./runit-2.1.2/src/sv.c
open_write (fn=0x803caa0 "supervise/ok") at ./runit-2.1.2/src/open_write.c:8
8   ./runit-2.1.2/src/open_write.c: No such file or directory.
$1 = 0
$2 = 1073741902
open64 (__oflag=10, __path=0x803caa0 "supervise/ok")
at /usr/include/i386-gnu/bits/fcntl2.h:53
53return __open_alias (__path, __oflag, __va_arg_pack ());
__GI___libc_open (file=0x803caa0 "supervise/ok", oflag=10)
at ../sysdeps/mach/hurd/open.c:35
35  ../sysdeps/mach/hurd/open.c: No such file or directory.
45  in ../sysdeps/mach/hurd/open.c
46  in ../sysdeps/mach/hurd/open.c
47  in ../sysdeps/mach/hurd/open.c
49  in ../sysdeps/mach/hurd/open.c
svstatus_get () at ./runit-2.1.2/src/sv.c:95
95  ./runit-2.1.2/src/sv.c: No such file or directory.
$3 = -1
$4 = 1073741902
Continuing.
[Inferior 1 (bogus thread id 0) exited with code 01]


Bug#1009712: sv: fails to control the service on Hurd

2022-07-03 Thread João Pedro Malhado
Hello Samuel,

On Sun, Jul 03, 2022 at 10:09:04PM +0200, Samuel Thibault wrote:
> João Pedro Malhado, le dim. 03 juil. 2022 21:41:05 +0200, a ecrit:
> > > This looks strange and I cannot interpret what is going on.
> 
> This is not strange, see the values of E* macros

I'm glad that you don't find it strange, and that you can look beyond what I can
see :)

> ENOSYS = 0x404e, /* Function not implemented */
> 
> So that's it.
> 
> Getting ENOSYS is odd, though, since open64 is defined in
> glibc/sysdeps/mach/hurd/open.c
> 
> It's probably useful to debug step by step to see what function is
> actually getting called.

Below is a step by step debug trace with libc symbols. At the last step gdb (or
the whole machine?) locks up. I would say strange, but maybe I shouldn't ;)

Best regards,
João
Breakpoint 1 at 0x17b0: control. (2 locations)
Starting program: /usr/bin/sv start cron
[New Thread 763.5]

Thread 4 hit Breakpoint 1, control (a=0x803cbe0 "u")
at ./runit-2.1.2/src/sv.c:253
253 ./runit-2.1.2/src/sv.c: No such file or directory.
svstatus_get () at ./runit-2.1.2/src/sv.c:94
94  in ./runit-2.1.2/src/sv.c
open_write (fn=0x803caa0 "supervise/ok") at ./runit-2.1.2/src/open_write.c:8
8   ./runit-2.1.2/src/open_write.c: No such file or directory.
open64 (__oflag=10, __path=0x803caa0 "supervise/ok")
at /usr/include/i386-gnu/bits/fcntl2.h:53
53return __open_alias (__path, __oflag, __va_arg_pack ());
__GI___libc_open (file=0x803caa0 "supervise/ok", oflag=10)
at ../sysdeps/mach/hurd/open.c:35
35  ../sysdeps/mach/hurd/open.c: No such file or directory.
__x86.get_pc_thunk.bx () at ../sysdeps/i386/i686/multiarch/memset-sse2.S:108
108 ../sysdeps/i386/i686/multiarch/memset-sse2.S: No such file or directory.
__GI___libc_open (file=0x803caa0 "supervise/ok", oflag=10)
at ../sysdeps/mach/hurd/open.c:45
45  ../sysdeps/mach/hurd/open.c: No such file or directory.
46  in ../sysdeps/mach/hurd/open.c
__file_name_lookup (file_name=0x803caa0 "supervise/ok", flags=10, mode=0)
at hurdlookup.c:222
222 hurdlookup.c: No such file or directory.
__x86.get_pc_thunk.bx () at ../sysdeps/i386/i686/multiarch/memset-sse2.S:108
108 ../sysdeps/i386/i686/multiarch/memset-sse2.S: No such file or directory.
__file_name_lookup (file_name=0x803caa0 "supervise/ok", flags=10, mode=0)
at hurdlookup.c:226
226 hurdlookup.c: No such file or directory.
0x0106cbc7 in __hurd_file_name_lookup (
use_init_port=0x1064dc0 <_hurd_ports_use>, 
get_dtable_port=0x108cbe0 <__getdport>, lookup=0x0, 
file_name=0x803caa0 "supervise/ok", flags=10, mode=0, result=0x1039cd8)
at hurdlookup.c:50
50  in hurdlookup.c
62  in hurdlookup.c
63  in hurdlookup.c
65  in hurdlookup.c
68  in hurdlookup.c
69  in hurdlookup.c
72  in hurdlookup.c
75  in hurdlookup.c
93  in hurdlookup.c
_hurd_ports_use (which=0, operate=0x1039c78) at hurdinit.c:45
45  hurdinit.c: No such file or directory.
__x86.get_pc_thunk.bx () at ../sysdeps/i386/i686/multiarch/memset-sse2.S:108
108 ../sysdeps/i386/i686/multiarch/memset-sse2.S: No such file or directory.
_hurd_ports_use (which=0, operate=0x1039c78) at hurdinit.c:52
52  hurdinit.c: No such file or directory.
_hurd_port_get (link=0x1039804, port=0x1327f88) at ../hurd/hurd/port.h:121
121 ../hurd/hurd/port.h: No such file or directory.
_hurd_critical_section_lock () at ../hurd/hurd/signal.h:213
213 ../hurd/hurd/signal.h: No such file or directory.
218 in ../hurd/hurd/signal.h
219 in ../hurd/hurd/signal.h
232 in ../hurd/hurd/signal.h
__GI___spin_try_lock (__lock=0x132a808) at ../mach/lock-intern.h:82
82  ../mach/lock-intern.h: No such file or directory.
_hurd_port_get (link=0x1039804, port=0x1327f88) at ../hurd/hurd/port.h:122
122 ../hurd/hurd/port.h: No such file or directory.
__GI___spin_lock (__lock=0x1327f88) at ../mach/lock-intern.h:60
60  ../mach/lock-intern.h: No such file or directory.
_hurd_port_get (link=0x1039804, port=0x1327f88) at ../hurd/hurd/port.h:123
123 ../hurd/hurd/port.h: No such file or directory.
__GI__hurd_port_locked_get (link=0x1039804, port=0x1327f88)
at ../hurd/hurd/port.h:95
95  in ../hurd/hurd/port.h
96  in ../hurd/hurd/port.h
98  in ../hurd/hurd/port.h
99  in ../hurd/hurd/port.h
100 in ../hurd/hurd/port.h
_hurd_userlink_link (link=0x1039804, chainp=0x1327f8c)
at ../hurd/hurd/userlink.h:95
95  ../hurd/hurd/userlink.h: No such file or directory.
96  in ../hurd/hurd/userlink.h
98  in ../hurd/hurd/userlink.h
99  in ../hurd/hurd/userlink.h
102 in ../hurd/hurd/userlink.h
__GI__hurd_self_sigstate () at ../hurd/hurd/signal.h:168
168 ../hurd/hurd/signal.h: No such file or directory.
174 in ../hurd/hurd/signal.h
103 ..

Bug#1009712: sv: fails to control the service on Hurd

2022-07-03 Thread João Pedro Malhado
X-Debbugs-CC: debian-h...@lists.debian.org

Hello Samuel,

On Sun, Jul 03, 2022 at 06:37:46PM +0200, Samuel Thibault wrote:
> João, le sam. 02 juil. 2022 20:53:55 +0200, a ecrit:
> > I don't know why open64() is returning -1.
> 
> That's usually given in errno.

Trying to print the errno on gdb just after open_write()/open64() have run gives
1073741902
This looks strange and I cannot interpret what is going on.

Best regards,
João



Bug#1009712: sv: fails to control the service on Hurd

2022-07-02 Thread João
X-Debbugs-CC: debian-h...@lists.debian.org

Hello Lorenzo,

I have put sv on a debugger and seems that the failure is happening when trying
to open the supervise/ok file (the file exists, and is a 0 bytes file),
open_write() returns -1.

Here is a backtrace.

#0  open64 (__oflag=10, __path=0x803caa0 "supervise/ok")
at /usr/include/i386-gnu/bits/fcntl2.h:53
#1  open_write (fn=0x803caa0 "supervise/ok")
at ./runit-2.1.2/src/open_write.c:8
#2  0x0803a61c in svstatus_get () at ./runit-2.1.2/src/sv.c:94
#3  0x0803a7cc in control (a=0x803cbe0 "u") at ./runit-2.1.2/src/sv.c:253
#4  0x08039a16 in main (argc=, argv=)
at ./runit-2.1.2/src/sv.c:359

I don't know why open64() is returning -1.

With best regards,
João



Bug#1012591: openmolcas: Enable HDF5 support

2022-06-09 Thread João
Package: openmolcas
Version: 20.10-2
Severity: wishlist

Dear Maintainer,

It would be great if HDF5 support in openmolcas was enabled for convenient
access to calculation results via a standard API, including quantities not
printed in log files by default.

Many thanks,
João


Bug#1010213: ITP: python-flask-seeder

2022-04-26 Thread João Pedro Moura
Package: wnpp
Severity: wishlist
Owner: Joao Pedro Elias de Moura 

* Package name : Flask-Seeder Version : v1.1.1 Upstream Author : Diddi
Oskarsson  * URL : https://pypi.org/project/Flask-Seeder *
License : MIT Programming Lang: Python3 Description : Flask-Seeder is a
Flask extension to help with seeding database with initial data
  This extensions primary focus is to help populating data once, for
example in a demo application where the database might get wiped over and
over but you still want users to have some basic data to play around with.

  I intend to package debian-image-finder [1] and flask-seeder is one of
its dependencies. I also plan to package under the umbrella of the Debian
Python Team.

[1]: https://image-finder.debian.net/


Bug#974220: libreoffice-writer: Double paste in Writer

2022-03-13 Thread João Luis Meloni Assirati
I recently upgraded a system from debian 10 to 11 and stumbled on this
bug.  I purged all packages that remained in state rc from the
previous debian version and this solved the problem.

JLMA.



Bug#1005202: openmolcas: Is the -fno-expensive-optimizations flag still needed?

2022-02-08 Thread João
Source: openmolcas
Version: 21.10-1
Severity: normal

Dear Maintainer,

Is the compiler flag -fno-expensive-optimizations in debian/rules still needed?
This flag was introduced to fix a problem with the arm64 build as reported in 
the bug
https://bugs.debian.org/961704
and associated upstream issue
https://gitlab.com/Molcas/OpenMolcas/-/issues/218

However the following merge request applied upstream
https://gitlab.com/Molcas/OpenMolcas/-/merge_requests/420
suggests that the issue might have been fixed with the flag -ffp-contract=off

Many thanks,
João


Bug#1002713: dvtm: FTBFS on the Hurd (undefined PATH_MAX)

2021-12-27 Thread João
Package: dvtm
Version: 0.15+40.g311a8c0-1
Severity: normal
Tags: patch ftbfs upstream hurd-i386

Dear Maintainer,

The package fails to build from source on GNU/Hurd because the macro PATH_MAX
is not defined on that platform. This is a known common problem
https://www.gnu.org/software/hurd/hurd/porting/guidelines.html#PATH_MAX_tt_MAX_PATH_tt_MAXPATHL

That attached patch addresses the issue.

Best regards,
João
--- dvtm-0.15+40.g311a8c0.orig/dvtm.c
+++ dvtm-0.15+40.g311a8c0/dvtm.c
@@ -1067,10 +1067,12 @@ create(const char *args[]) {
 
if (args && args[0]) {
c->cmd = args[0];
-   char name[PATH_MAX];
-   strncpy(name, args[0], sizeof(name));
-   name[sizeof(name)-1] = '\0';
+   char *name = NULL;
+   name = malloc(strlen(args[0])+1);
+   strcpy(name, args[0]);
+   name[strlen(name)+1] = '\0';
strncpy(c->title, basename(name), sizeof(c->title));
+   free(name);
} else {
c->cmd = shell;
}


Bug#1001104: netsurf: Netsurf bundles its own version of Duktape

2021-12-04 Thread João
Source: netsurf
Version: 3.10-1
Severity: normal

Dear Maintainer,

The Netsurf package seems to bundle its own version of the Duktape javascript 
engine.
Shouldn't Netsurf link to the version distributed via the Ducktape package
https://packages.debian.org/source/sid/duktape instead?

Many thanks,
João


Bug#995357: pipewire: rtkit-daemon race condition causes realtime scheduling and nice-level failure

2021-09-30 Thread João de Felipe
Package: pipewire
Version: 0.3.37-2
Severity: normal
X-Debbugs-Cc: joaodefel...@gmail.com

Dear Maintainer,

on boot, pipewire.service and pipewire-pulse.service can be started by
systemd before rtkit-daemon.service, causing the following errors:

systemd[1302]: Started PipeWire PulseAudio.
pipewire-pulse[1410]: RTKit error: org.freedesktop.DBus.Error.AccessDenied
pipewire-pulse[1410]: could not set nice-level to -11: Permission denied
pipewire-pulse[1410]: RTKit error: org.freedesktop.DBus.Error.AccessDenied
pipewire-pulse[1410]: could not make thread realtime: Permission denied

systemd[1302]: Started Multimedia Service.
pipewire[1408]: RTKit error: org.freedesktop.DBus.Error.AccessDenied
pipewire[1408]: could not set nice-level to -11: Permission denied
pipewire[1408]: RTKit error: org.freedesktop.DBus.Error.AccessDenied
pipewire[1408]: could not make thread realtime: Permission denied

In my case, rtkit-daemon starts, on average, 80ms after the pipewire processes.
Restarting them while making sure rtkit-daemon was running was enough for a
temporary solution.

Perhaps due to the difference in the number of systemd units, I wasn't able to
reproduce the issue on a clean install, but from reading the unit files, it
doesn't look like pipewire needs to wait for multi-user.target to complete or
for rtkit-daemon.service to be started.

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

Kernel: Linux 5.14.0-1-amd64 (SMP w/8 CPU threads)
Locale: LANG=en_US.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages pipewire depends on:
ii  init-system-helpers  1.60
ii  libpipewire-0.3-modules  0.3.37-2
ii  pipewire-bin 0.3.37-2

pipewire recommends no packages.

pipewire suggests no packages.

-- no debconf information



Bug#985558: RFS: docbook-xml/4.5-10 [QA] -- standard XML documentation system for software and systems

2021-03-19 Thread João Seckler
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "docbook-xml":

 * Package name: docbook-xml
   Version : 4.5-10
   Upstream Author : docb...@lists.oasis-open.org
 * URL : https://docbook.org/schemas/4x.html
 * License : docbook
 * Vcs : https://salsa.debian.org/jseckler-guest/docbook-xml/
   Section : text

It builds those binary packages:

  docbook-xml - standard XML documentation system for software and systems

To access further information about this package, please visit the following 
URL:

  https://mentors.debian.net/package/docbook-xml/

Alternatively, one can download the package with dget using this command:

  dget -x 
https://mentors.debian.net/debian/pool/main/d/docbook-xml/docbook-xml_4.5-10.dsc

Changes since the last upload:

 docbook-xml (4.5-10) unstable; urgency=medium
 .
   * QA upload.
   * debian/control:
 - Bump debhelper-compat to 13
 - Bump Standards-Version to 4.5.1
 - Use secure URI in Homepage field
 - Update VCS fields to use Salsa
   * debian/watch:
- Use secure URI
- debian/watch: Update file format version to 4.
   * debian/rules: avoid using dpkg-parsechangelog
   * debian/copyright:
 - Refer to versioned license file
 - Make machine-readable
   * debian/patches: Fix spelling error in patch 13

Regards,

João Seckler


signature.asc
Description: PGP signature


Bug#981586: Bullseye armhf kernel for Raspberry Pi 4b does not boot

2021-03-16 Thread João Ricardo Sares Teles de Matos
Analysis showed that it does reach init-top. But when usbcore and usbhid 
are loaded, peripherals like mouse and keyboard are not at all detected. 
When later usbhid, usb_storage and uas should be started, they do not 
work either and the root file device is not detected.


What you wrote implies that / resides on an USB device.
Sounds very much like a duplicate of #977694

Can you verify if the workaround of manually adding the 
reset_raspberrypi module to initramfs works?


https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=977694#67

Alternatively, install initramfs-tools 0.140, which is currently 
available in sid, and rebuild your initramfs.



The same problem exists also for Buster armhf.


What kernel version did you use on Buster armhf that was also affected?
If it's a 5.10 kernel from buster-backports, it should also be affected 
by #977684



However, Bullseye 64 Bit (...) does work as expected.


What kernel version did you use on Bullseye arm64 that was *not* affected?
If it's a 5.9 kernel from a tested image, it shouldn't be affected.


Building 5.9 against the Ubuntu 5.4 kernel config also does work.


5.9 would not be affected. This is specific to 5.10, which added the 
reset_raspberrypi module.


If all of the above checks out, this is most likely a duplicate of #977694

Best regards,
João Matos



Bug#984691: /etc/kernel/postinst.d/z50-raspi-firmware: generated cmdline.txt root parameter broken when using Btrfs

2021-03-07 Thread João Ricardo Sares Teles de Matos

Package: raspi-firmware
Version: 1.20210111+ds-2
Severity: important
File: /etc/kernel/postinst.d/z50-raspi-firmware

Dear Maintainer,

(Note: a solution is provided below)

When using a Btrfs filesystem as /, the root= parameter generated by the 
z50-raspi-firmware script is incorrect due to the output of findmnt, as 
used on line 52.


# findmnt -n --output=source /
/dev/mapper/raspberry-btrfs[/bullseye/root/@]

This can be somewhat corrected with the --nofsroot flag:

# findmnt -n --output=source --nofsroot /
/dev/mapper/raspberry-btrfs

I wrote "somewhat" because Btrfs filesystems can span multiple devices 
and should therefore be referenced by UUID.


The part inside the square brackets above (/bullseye/root/@) is the 
btrfs subvolume, which is passed in an additional cmdline parameter:


rootflags=subvol=/bullseye/root/@

It's also possible to reference the subvolume by ID, but I'm unfamiliar 
with the use cases for that:


rootflags=subvolid=324


-- Scope

This bug should cause any Raspberry Pi system with a Btrfs root 
filesystem to be unable to boot whenever cmdline.txt is re-generated by 
z50-raspi-firmware, unless the workaround mentioned below is used.



-- Rescue

If this bug renders a system unbootable, you can either edit the 
cmdline.txt file on another system or manually mount the root filesystem 
on /root using the initramfs emergency shell, which is currently 
available by default via the serial terminal.



-- Workaround

I'm working around this problem by configuring ROOTPART in 
/etc/default/raspi-firmware, as such:


ROOTPART=/dev/mapper/raspberry-btrfs

And creating the /etc/default/raspi-extra-cmdline file, with the 
following line:


rootflags=subvol=/bullseye/root/@


-- Solution

The grub-common package has some interesting special handling of Btrfs 
(and ZFS) root filesystems in /etc/grub.d/10_linux that can be 
interesting to look at as a reference.
Ultimately, they get the filesystem UUID using grub-probe and the 
subvolume path using grub-mkrelpath.


We can get the same information using findmnt:

device="$(findmnt --noheadings --first-only --nofsroot --output=source /)"
subvolume="$(findmnt --noheadings --first-only --output=fsroot /)"
uuid="$(findmnt --noheadings --first-only --output=uuid /)"
fstype="$(findmnt --noheadings --first-only --output=fstype /)"

Then it's just a matter of testing when fstype equals btrfs and setting 
the cmdline parameters accordingly:


root=UUID=$uuid rootflags=subvol=$subvolume

Note: I tried guarding rootflags against whitespace in $subvolume using 
double quotes, but initramfs just blindly wordsplits the cmdline, so it 
can't be helped.


ZFS will likely need something similar, but I don't have any experience 
with it.



-- Hardware and storage layout tested

I'm using a Raspberry Pi 4 Model B with a Micro SD card and an USB HDD

The examples above are with the following storage configuration:

Micro SD Card
└─ FAT partition (mounted at /boot/firmware)

USB Hard Drive
└─ LVM Volume Group named "raspberry"
    └─ LVM Logical Volume named "btrfs" (/dev/mapper/raspberry-btrfs)
    └─ Btrfs filesystem
 └─ Btrfs subvolume at /bullseye/root/@ (mounted at /)

-- System Information:
Debian Release: bullseye/sid
APT prefers testing
APT policy: (500, 'testing')
Architecture: arm64 (aarch64)

Kernel: Linux 5.10.0-3-arm64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_CRAP
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE 
not set

Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages raspi-firmware depends on:
ii dosfstools 4.2-1
ii dpkg 1.20.7.1

raspi-firmware recommends no packages.

raspi-firmware suggests no packages.

-- Configuration Files:
/etc/default/raspi-firmware changed [not included]

-- no debconf information

Best regards, João Matos



Bug#977694: 5.10.4 Debian kernel does not boot on raspi 4 with ext4 rootfs and usb-msd

2021-03-06 Thread João Ricardo Sares Teles de Matos
I ran into this issue while trying to migrate the root filesystem into a 
btrfs subvolume on an USB hard drive.

I'm also using a Raspberry Pi 4B.

I followed Ryutaroh's advice of loading the reset_raspberrypi module, as 
follows:


> echo reset_raspberrypi >/etc/initramfs-tools/modules
> update-initramfs -uk all

And now I can boot from USB.


Note that this issue also causes any other USB devices to be missing 
while in initramfs, including USB keyboards, which might be useful in a 
rescue shell.


Sidenote: the rescue shell only seems to be spawned on the serial 
terminal currently, so having a USB keyboard is still useless in that 
regard, but that's another issue.



I feel inclined to agree with the idea of adding the file

> /usr/share/initramfs-tools/modules.d/raspi-firmware.conf

with the contents

> reset_raspberrypi

to the package raspi-firmware, provided that it doesn't interfere with 
the rest of the Raspberry Pi family.


Best regards, João Matos



Bug#982827: RFS: gatos/0.0.5-19.1 [NMU] [RC]-- ATI All-in-Wonder TV capture software

2021-02-14 Thread João Paulo
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "gatos":

 * Package name    : gatos
   Version : 0.0.5-19.1
   Upstream Author : Oyvind Aabling 
 Octavian PURDILA 
 Christian Lupien 
 Vladimir Dergachev 
 Stea Greene 

 * URL : http://gatos.sourceforge.net/
 * License : GPL-2+
 * Vcs : https://sourceforge.net/projects/gatos/files/
   Section : misc

It builds those binary packages:

  libgatos0 - The General ATI TV and Overlay Software(GATOS): Runtime 
Libraries
  libgatos-dev - The General ATI TV and Overlay Software(GATOS): Dev
Lib and Headers
  gatos - ATI All-in-Wonder TV capture software

To access further information about this package, please visit the
following URL:

  https://mentors.debian.net/package/gatos/

Alternatively, one can download the package with dget using this
command:

  dget -x
https://mentors.debian.net/debian/pool/main/g/gatos/gatos_0.0.5-
19.1.dsc

Changes since the last upload:

 gatos (0.0.5-19.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * FTBFS solution with GCC 10 by adding -fcommon to CFLAGS
    (close #982379), thanks to Adrian Bunk.

Regards,



Bug#981896: RFS: iptotal/0.3.3-14 [QA] -- monitor for IP traffic, not requiring SNMP

2021-02-04 Thread João Paulo
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "iptotal":

 * Package name    : iptotal
   Version : 0.3.3-14
   Upstream Author : [fill in name and email of upstream]
 * URL : http://sourceforge.net/projects/iptotal
 * License : GPL-2+
 * Vcs : [fill in URL of packaging vcs]
   Section : admin

It builds those binary packages:

  iptotal - monitor for IP traffic, not requiring SNMP

To access further information about this package, please visit the
following URL:

  https://mentors.debian.net/package/iptotal/

Alternatively, one can download the package with dget using this
command:

  dget -x
https://mentors.debian.net/debian/pool/main/i/iptotal/iptotal_0.3.3-14.dsc

Changes since the last upload:

 iptotal (0.3.3-14) unstable; urgency=medium
 .
   * QA upload.
   * Using new DH level format. Consequently:
   - debian/compat: removed.
   - debian/control: changed from 'debhelper' to 'debhelper-compat'
 in Build-Depends field and bumped level to 13.
   * debian/control:
   - Add Pre-Depends: ${misc:Pre-Depends} to fix lintian flag.
   - Add missing lsb-base dependency
   - Bumped Standards-Version to 4.5.1.
   - Drop obsolete Dm-Upload-Allowed field
   - Set section and priority fields matching override.
    * debian/copyright: Update header to suit DEP5
    * debian/postinst: Remove recursive chown -R argument in postinst 
 script (which is vulnerable to hardlink attacks).
    * debian/rules: Put helper binaries in /usr/libexec as allowed by
 FHS 3.0.
    * debian/README.Debian: Fix spelling error.
    * debian/watch: Update version from 3 to 4.

Regards,



Bug#981705: RFS: proxycheck/0.49a-6 [QA] -- checks existence of open proxy

2021-02-02 Thread João Paulo
Package: sponsorship-requests
Severity: normal

Dear mentors,

I am looking for a sponsor for my package "proxycheck":

 * Package name    : proxycheck
   Version : 0.49a-6
   Upstream Author : [fill in name and email of upstream]
 * URL : http://www.corpit.ru/mjt/proxycheck.html
 * License : GPL-2+
 * Vcs : [fill in URL of packaging vcs]
   Section : net

It builds those binary packages:

  proxycheck - checks existence of open proxy

To access further information about this package, please visit the
following URL:

  https://mentors.debian.net/package/proxycheck/

Alternatively, one can download the package with dget using this
command:

  dget -x
https://mentors.debian.net/debian/pool/main/p/proxycheck/proxycheck_0.49a-6.dsc

Changes since the last upload:

 proxycheck (0.49a-6) unstable; urgency=medium
 .
   * QA upload.
   * Set Debian QA Group as maintainer. (see #980955)
   * Using new DH level format. Consequently:
   - debian/compat: removed.
   - debian/control: changed from 'debhelper' to 'debhelper-compat'
 in Build-Depends field and bumped level to 13.
   * debian/control:
   - Set Rules-Requires-Root:no.
   - Bumped Standards-Version to 4.5.1.
   - Set section and priority fields matching override.
   * debian/copyright: Add dep5 copyright.
   * debian/watch: Use uscan version 4.

Regards,



Bug#948374: (no subject)

2020-10-31 Thread João Azevedo
The Peertube project has changed name and git hosting website.

The project (and package) is now called: Cuttlefish

The source code and development is currently being done here:

 https://gitlab.shinice.net/artectrex/Cuttlefish

And the project description slightly changed, also the project is now
aiming GTK4:

> Cuttlefish
> Cuttlefish is a free (as in freedom) client for PeerTube, the
> federated video hosting service. It is Free Software as specified by
> the GPL, version 3 (or later).
> The logo was made using a representation of a cuttlefish by Pixelz
Studio (Distributed under the Creative Commons CCBY license).

> What is this?
> Cuttlefish is a client for PeerTube. PeerTube is a federated
video hosting service and uses WebTorrent - a version of BitTorrent that
runs in the browser - to help serve videos to users.
Cuttlefish is a desktop client for PeerTube, but will work on
GNU/Linux-based phones
> (like the Librem 5 or Pinephone) as well. We want the experience of
watching PeerTube videos and using PeerTube in general to be better, by
making a native application that will become the best and most efficient
way to hook into the federation of interconnected video hosting
services.
> Eventually, it will allow people to continue sharing watched videos with
other PeerTube users for longer periods of time, instead of discarding
the video when done watching. It will also help bridge PeerTube's gap
between the - now separated - BitTorrent and WebTorrent networks by
speaking both of those protocols.

> Dependencies, protocols
> We use GTK4 for the UI, with libhandy to support mobile form-factors.
We will use libtorrent to speak the WebTorrent and BitTorrent protocols
(since libtorrent now also supports WebTorrent). GStreamer will handle
the video decoding. We use libsoup for interacting with the PeerTube API.
> Cuttlefish is written in C++, but using GTK in C (instead of with gtkmm).



-- 
João Azevedo
Purism support


OpenPGP_0x70718D0922DB3F93.asc
Description: application/pgp-keys


OpenPGP_signature
Description: OpenPGP digital signature


Bug#958748: lilv: liblilv-dev could be marked Multi-Arch: same

2020-04-24 Thread João Ricardo Sares Teles de Matos
Source: lilv
Severity: important

Dear Maintainer,

The package tracker page for lilv notes that liblilv-dev could be marked Multi-
Arch: same

I'm encountered this because I'm trying to cross-build ffmpeg for i386 on amd64
and it requires livlilv-dev:i386 but I already had liblilv-dev:amd64 installed.

I'll be working around this by removing the amd64 version for now.



-- System Information:
Debian Release: 10.3
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-8-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_USER, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



Bug#954427: mirror submission for debian.itsbrasil.net

2020-04-20 Thread João Lima
Hello Julien,

We have changed our configuration and successfully redone our
synchronization!

Thanks for your support!




Em seg., 20 de abr. de 2020 às 18:02, Julien Cristau 
escreveu:

> On Mon, Apr 20, 2020 at 15:53:36 -0300, João Lima wrote:
>
> > Hi Julien,
> >
> > Thanks for your response!
> > About Mirror origin:
> > Could you indicate some rsync servers for us to use here in Brazil?
> >
> You can use debian.c3sl.ufpr.br (generally the same as
> ftp.br.debian.org).
>
> > About DNS:
> > We use Cloudflare cloud as DNS. This Anycast network allows DNS
> resolution
> > at the network edge in each of cloudflare data centers across 200+
> cities,
> > resulting in unparalleled redundancy and 100% uptime.
> >
> Sounds good, thanks (our check is naive so doesn't know that).
>
> Cheers,
> Julien
>


Bug#954427: mirror submission for debian.itsbrasil.net

2020-04-20 Thread João Lima
Hi Julien,

Thanks for your response!
About Mirror origin:
Could you indicate some rsync servers for us to use here in Brazil?

About DNS:
We use Cloudflare cloud as DNS. This Anycast network allows DNS resolution
at the network edge in each of cloudflare data centers across 200+ cities,
resulting in unparalleled redundancy and 100% uptime.






Em seg., 20 de abr. de 2020 às 12:11, Julien Cristau 
escreveu:

> Control: tag -1 moreinfo
>
> On Sat, Mar 21, 2020 at 01:25:09PM +, ITS Telecomunicacoes wrote:
> >  We would like to add our brazillian mirror to Debian list!
> >
> >  ## ITS Telecomunicacoes - Mirror Linux Debian
> >  http://debian.itsbrasil.net/debian
> >  https://debian.itsbrasil.net/debian
> >
> Hi,
>
> Thanks for mirroring Debian.
>
> while checking your mirror our script noticed the following issues:
>
> o we recommend mirrors not sync directly from service aliases such as
>   ftp..debian.org (only http is guaranteed to be available at
>   ftp..d.o sites).  Maybe change your config to sync from
>   the site currently backing the ftp..debian.org service you sync
>   from?
>
> o The nameservers for debian.itsbrasil.net are all in the same AS.  For
> reliability we
>   recommend having nameservers in more than one location.
>
> Cheers,
> Julien
>


Bug#876107: Patch

2019-12-21 Thread João Paulo Just Peixoto
This also happens to me. Fixed by using str() function in some strings.
I am attaching my patch to this message.

-- 
Prof. M.Sc. João Paulo Just Peixoto
IFBA - Instituto Federal da Bahia - Campus Valença
--
TIM/WhatsApp: +55 75 9176 8499
Blog: http://just.pro.br/
--- avahi-discover	2019-12-21 22:47:11.422497727 -0300
+++ avahi-discover.new	2019-12-21 22:46:39.370583958 -0300
@@ -243,7 +243,7 @@
 infos += "" + _("Domain Name:") + " %s\n"
 infos += "" + _("Interface:") + " %s %s\n"
 infos += "" + _("Address:") + " %s/%s:%i\n%s"
-infos = infos % (stype, name, domain, self.siocgifname(interface), self.protoname(protocol), host, address, port, txts.strip())
+infos = infos % (str(stype), str(name), str(domain), str(self.siocgifname(interface)), self.protoname(protocol), str(host), str(address), port, txts.strip())
 self.info_label.set_markup(infos)
 
 def insert_row(self, model,parent,


signature.asc
Description: OpenPGP digital signature


Bug#926791: plasmashell: doesn't restart upon crashing

2019-04-10 Thread João Pirralha
Package: plasma-workspace
Version: 4:5.14.5.1-1
Severity: normal

Dear Maintainer,

After plasmashell crashes it doesn't restart automatically, being necessary to
restart it manually in a terminal. This is quite frustrating and may be
difficult and off-putting for users. I think it restarted automatically in
Debian 9, but I don't remember it crashing so much (for me on Debian 10 it
typically crashes when I access grouped windows in the taskbar, such as when
there are too many windows open).

Thus I suggest, if possible, to add a service that detects if plasmashell is
supposed to be running and then restarts it.

Thank you.



-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-4-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=pt_PT.UTF-8, LC_CTYPE=pt_PT.UTF-8 (charmap=UTF-8), 
LANGUAGE=pt:pt_BR:en (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages plasma-workspace depends on:
ii  dbus-user-session [default-dbus-session-bus]  1.12.12-1
ii  dbus-x11 [dbus-session-bus]   1.12.12-1
ii  drkonqi   5.14.5-1
ii  frameworkintegration  5.54.0-1
ii  gdb   8.2.1-2
ii  iso-codes 4.2-1
ii  kactivitymanagerd 5.14.5-1
ii  kded5 5.54.0-1
ii  kinit 5.54.0-1
ii  kio   5.54.1-1
ii  kpackagetool5 5.54.0-1
ii  kwin-common   4:5.14.5-1
ii  libappstreamqt2   0.12.5-1
ii  libc6 2.28-8
ii  libcolorcorrect5  4:5.14.5.1-1
ii  libgcc1   1:8.3.0-5
ii  libgps23  3.17-5+b1
ii  libice6   2:1.0.9-2
ii  libkf5activities5 5.54.0-1
ii  libkf5auth5   5.54.0-2
ii  libkf5baloo5  5.54.0-1
ii  libkf5bookmarks5  5.54.0-1
ii  libkf5calendarevents5 5.54.0-1
ii  libkf5completion5 5.54.0-1
ii  libkf5config-bin  5.54.0-1
ii  libkf5configcore5 5.54.0-1
ii  libkf5configgui5  5.54.0-1
ii  libkf5configwidgets5  5.54.0-1
ii  libkf5coreaddons5 5.54.0-1
ii  libkf5crash5  5.54.0-1
ii  libkf5dbusaddons5 5.54.0-1
ii  libkf5declarative55.54.0-1
ii  libkf5globalaccel-bin 5.54.0-1
ii  libkf5globalaccel55.54.0-1
ii  libkf5guiaddons5  5.54.0-1
ii  libkf5holidays5   1:5.54.0-1
ii  libkf5i18n5   5.54.0-1
ii  libkf5iconthemes5 5.54.0-1
ii  libkf5idletime5   5.54.0-1
ii  libkf5itemviews5  5.54.0-1
ii  libkf5jobwidgets5 5.54.0-1
ii  libkf5js5 5.54.0-1
ii  libkf5jsembed55.54.0-1
ii  libkf5kdelibs4support55.54.0-1
ii  libkf5kiocore55.54.1-1
ii  libkf5kiofilewidgets5 5.54.1-1
ii  libkf5kiogui5 5.54.1-1
ii  libkf5kiowidgets5 5.54.1-1
ii  libkf5networkmanagerqt6   5.54.0-1
ii  libkf5newstuff5   5.54.0-2
ii  libkf5notifications5  5.54.0-1
ii  libkf5notifyconfig5   5.54.0-1
ii  libkf5package55.54.0-1
ii  libkf5plasma5 5.54.0-1
ii  libkf5plasmaquick55.54.0-1
ii  libkf5prison5 5.54.0-1
ii  libkf5quickaddons55.54.0-1
ii  libkf5runner5 5.54.0-1
ii  libkf5service-bin 5.54.0-1
ii  libkf5service55.54.0-1
ii  libkf5solid5  5.54.0-1
ii  libkf5texteditor5 5.54.0-1
ii  libkf5textwidgets55.54.0-1
ii  libkf5wallet-bin  5.54.0-1
ii  libkf5wallet5 5.54.0-

Bug#922230: partman-lvm: Cannot delete volumes created by the guided partitioning - partman-lvm targets wrong block device

2019-02-13 Thread João Pirralha

On Wed, 13 Feb 2019 14:53:49 + Steve McIntyre  wrote:
> On Wed, Feb 13, 2019 at 01:06:45PM +0000, João Pirralha wrote:
> >Package: partman-lvm
> >Severity: important
> >
> >Dear Maintainer,
> >
> >Using buster DI alpha 5 (firmware-buster-DI-alpha5-amd64-DVD-1.iso) 
I couldn't
> >delete any volume created by the guided partitioning (LVM + 
encryption) (I was
> >trying to remove the swap volume to have a single root volume). 
Looking at

> >virtual console 4, partman-lvm seems to try to open /dev/sdb instead of
> >/dev/nvme0n1.
> >Buster DI alpha 4 (firmware-buster-DI-alpha4-amd64-netinst.iso) 
worked as

> >expected.
> >Not sure if this bug belongs to this package.
>
> It does, yes.
>
> Maybe you're seeing another instance of what was reported as #922100,
> caused by the broken bugfix for #911036. I'm about to revert that
> change.
>
> --
> Steve McIntyre, Cambridge, UK. st...@einval.com
> "The problem with defending the purity of the English language is that
> English is about as pure as a cribhouse whore. We don't just borrow 
words; on

> occasion, English has pursued other languages down alleyways to beat them
> unconscious and rifle their pockets for new vocabulary." -- James D. 
Nicoll

>
>
>


Yes, maybe this is a duplicate of #922100. Regarding what I reported on 
VT4, that's just the error message I saw when I tried to delete a volume 
(something along the lines of "cannot open /dev/sdb").




Bug#922230: partman-lvm: Cannot delete volumes created by the guided partitioning - partman-lvm targets wrong block device

2019-02-13 Thread João Pirralha
Package: partman-lvm
Severity: important

Dear Maintainer,

Using buster DI alpha 5 (firmware-buster-DI-alpha5-amd64-DVD-1.iso) I couldn't
delete any volume created by the guided partitioning (LVM + encryption) (I was
trying to remove the swap volume to have a single root volume). Looking at
virtual console 4, partman-lvm seems to try to open /dev/sdb instead of
/dev/nvme0n1.
Buster DI alpha 4 (firmware-buster-DI-alpha4-amd64-netinst.iso) worked as
expected.
Not sure if this bug belongs to this package.



-- System Information:
Debian Release: buster/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-2-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=pt_PT.UTF-8, LC_CTYPE=pt_PT.UTF-8 (charmap=UTF-8), 
LANGUAGE=pt:pt_BR:en (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



Bug#917824: possible to have debian buster alpha iso's with non-free firmwares

2018-12-30 Thread João Pirralha

Hi, buster DI alpha ISO's with non-free firmware are located here:

https://get.debian.org/cdimage/unofficial/non-free/images-including-firmware/buster_di_alpha4+nonfree/

(I made a mistake in my previous e-mail.)

Às 18:55 de 30/12/18, shirish शिरीष escreveu:

Package: debian-cd
Severity: wishlist

Dear Maintainer,
Would it be possible to have debian buster alpha iso's with non-free firmware.
I did see https://cdimage.debian.org/cdimage/buster_di_alpha4/amd64/iso-cd/

But it arguably would be better if we also have the alpha CD's with
non-free firmwar.e

It doesn't make sense especially if there are no wireless drivers
(broadcom etc.) and people have to hunt for them and the dependency
hell.

It would be especially useful if it was netinst.iso itself so we would
have something minimum to connect with the mirrors otherwise you are
stuck to trying an ethernet line, connector to connect with the web,
try to download the driver packages and any dependency hell in case
something is/was needed and is not there in the .iso.

-- System Information:
Debian Release: buster/sid
   APT prefers testing
   APT policy: (990, 'testing'), (500, 'unstable-debug'), (500,
'testing-debug'), (500, 'unstable'), (1, 'experimental-debug'), (1,
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8), LANGUAGE=en_IN:en
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages debian-cd depends on:
ii  apt   1.8.0~alpha2
pn  bc
ii  bzip2 1.0.6-9
ii  cpp   4:8.2.0-2
ii  curl  7.62.0-1
ii  dctrl-tools [grep-dctrl]  2.24-3
ii  dpkg-dev  1.19.2
ii  genisoimage   9:1.1.11-3+b2
pn  libcompress-zlib-perl 
pn  libdigest-md5-perl
pn  libdigest-sha-perl
ii  libdpkg-perl  1.19.2
ii  lynx  2.8.9rel.1-2
ii  make  4.2.1-1.2
ii  perl  5.28.1-3
ii  tofrodos  1.7.13+ds-4
ii  wget  1.20-1

Versions of packages debian-cd recommends:
ii  dosfstools   4.1-2
pn  hfsutils 
pn  isolinux 
ii  mtools   4.0.18-2.1
ii  netpbm   2:10.0-15.3+b2
pn  syslinux-common  
pn  syslinux-utils   

debian-cd suggests no packages.






Bug#895124: RFP: openmolcas -- Computational chemistry electronic structure package.

2018-04-07 Thread João
Package: wnpp
Severity: wishlist

* Package name: openmolcas
  Version : 18.0
  Upstream Author : OpenMolcas developers
* URL : https://gitlab.com/Molcas/OpenMolcas
* License : LGPL
  Programming Lang: Fortran (with bits in C/C++ and Python)
  Description : Computational chemistry electronic structure package.

OpenMolcas is a complete molecular electronic structure software package, with
particular emphasis on multi-configurational methods like CASSCF/CASPT2.
It is a large part of the Molcas package relicensed under LGPL.



A package for OpenMolcas could be maintained (should there be interest),
within the Debichem group or the debian-science team.
OpenMolcas performs ab initio calculations and belongs to the same software
class as some packages already in Debian
https://blends.debian.org/debichem/tasks/abinitio
It has however is own specificities, is well established and is actively
maintained.



Bug#871989:

2018-01-31 Thread João Rodrigues
Hello,

If you have LogFormat=4 in your config file, then those features don't work.


Bug#599585: did you receive my previous email ?

2017-11-22 Thread Jj João Brasileiro
I spand a long time to solve it... :\

sudo apt-get remove --purge slapd ldap-utils ldapscripts
sudo rm -R /var/backups/unknown-*
  sudo apt-get install slapd ldap-utils ldapscripts
sudo rm -R /var/backups/unknown-*
  sudo dpkg-reconfigure slapd

and finally it worked as expected with the configuration I desired...


On Thu, 1 Sep 2016 03:53:15 -0300 (ART) Friedrich Mayrhofer 
 wrote:
 >
 > --
 > Hello,
 >
 > This is the second time i am sending you this mail.I, Friedrich 
Mayrhofer and my wife has Donate $ 1,000,000.00 USD
 > to You, Email Me personally for more details.
 >
 > Regards.
 >
 > Friedrich Mayrhofer
 >
 >



Bug#706766: Diff for this fix

2017-03-14 Thread João Salavisa
Sorry, now using a proper patch creation method :)

Index: dsniff/arpspoof.c
===
--- dsniff.orig/arpspoof.c
+++ dsniff/arpspoof.c
@@ -300,18 +300,22 @@ main(int argc, char *argv[])
  signal(SIGINT, cleanup);
  signal(SIGTERM, cleanup);

- for (;;) {
- struct host *target = targets;
- while(target->ip) {
- arp_send(l, ARPOP_REPLY, my_ha, spoof.ip,
- (target->ip ? (u_int8_t *)&target->mac : brd_ha),
- target->ip,
- my_ha);
- if (poison_reverse) {
- arp_send(l, ARPOP_REPLY, my_ha, target->ip, (uint8_t *)&spoof.mac,
spoof.ip, my_ha);
- }
- target++;
- }
+  for (;;) {
+if (!n_targets) {
+  arp_send(l, ARPOP_REPLY, my_ha, spoof.ip, brd_ha, 0, my_ha);
+} else {
+  struct host *target = targets;
+  while(target->ip) {
+arp_send(l, ARPOP_REPLY, my_ha, spoof.ip,
+(target->ip ? (u_int8_t *)&target->mac : brd_ha),
+target->ip,
+my_ha);
+if (poison_reverse) {
+  arp_send(l, ARPOP_REPLY, my_ha, target->ip, (uint8_t
*)&spoof.mac, spoof.ip, my_ha);
+}
+target++;
+  }
+}

  sleep(2);
  }


On Wed, Mar 8, 2017 at 9:23 PM João Salavisa 
wrote:

> Sorry, now in a patch format
>
> diff -ub ./arpspoof.c ../orig.dsniff/dsniff-2.4b1+debian/arpspoof.c
> --- ./arpspoof.c 2017-03-07 22:21:45.037692254 +
> +++ ../orig.dsniff/dsniff-2.4b1+debian/arpspoof.c 2017-03-07
> 22:09:32.0 +
> @@ -46,8 +46,6 @@
>  static int cleanup_src_own = 1;
>  static int cleanup_src_host = 0;
>
> -int n_targets;
> -
>  static void
>  usage(void)
>  {
> @@ -162,17 +160,11 @@
>   fprintf(stderr, "Cleaning up and re-arping targets...\n");
>   for (i = 0; i < rounds; i++) {
>  struct host *target = targets;
> -
> + while(target->ip) {
>  uint8_t *src_ha = NULL;
>  if (cleanup_src_own && (i%2 || !cleanup_src_host)) {
>src_ha = my_ha;
>  }
> -
> -if (!n_targets) {
> -  arp_send(l, ARPOP_REPLY, (u_int8_t *)&spoof.mac, spoof.ip, brd_ha,
> 0, src_ha);
> -  sleep(1);
> -} else {
> -  while(target->ip) {
>  /* XXX - on BSD, requires ETHERSPOOF kernel. */
>  if (fw) {
>arp_send(l, ARPOP_REPLY,
> @@ -194,12 +186,11 @@
>  target++;
>}
>  }
> -  }
>
>exit(0);
>  }
>
> -  int
> +int
>  main(int argc, char *argv[])
>  {
>extern char *optarg;
> @@ -207,7 +198,7 @@
>char pcap_ebuf[PCAP_ERRBUF_SIZE];
>char libnet_ebuf[LIBNET_ERRBUF_SIZE];
>int c;
> -
> + int n_targets;
>char *cleanup_src = NULL;
>
>spoof.ip = 0;
> @@ -304,12 +295,6 @@
>signal(SIGTERM, cleanup);
>
>for (;;) {
> -if (!n_targets) {
> -  arp_send(l, ARPOP_REPLY, my_ha, spoof.ip, brd_ha, 0, my_ha);
> -  if (poison_reverse) {
> -arp_send(l, ARPOP_REPLY, my_ha, target->ip, (uint8_t
> *)&spoof.mac, spoof.ip, my_ha);
> -  }
> -} else {
>struct host *target = targets;
>while(target->ip) {
>  arp_send(l, ARPOP_REPLY, my_ha, spoof.ip,
> @@ -321,7 +306,6 @@
>  }
>  target++;
>}
> -}
>
>  sleep(2);
>}
>
>
> On Tue, Mar 7, 2017 at 10:13 PM João Salavisa 
> wrote:
>
> Here you go!
>
> diff -b ./arpspoof.c ../orig.dsniff/dsniff-2.4b1+debian/arpspoof.c
> 49,50d48
> < int n_targets;
> <
> 165c163
> <
> ---
> > while(target->ip) {
> 170,175d167
> <
> < if (!n_targets) {
> <   arp_send(l, ARPOP_REPLY, (u_int8_t *)&spoof.mac, spoof.ip, brd_ha,
> 0, src_ha);
> <   sleep(1);
> < } else {
> <   while(target->ip) {
> 197d188
> <   }
> 202c193
> <   int
> ---
> > int
> 210c201
> <
> ---
> > int n_targets;
> 307,312d297
> < if (!n_targets) {
> <   arp_send(l, ARPOP_REPLY, my_ha, spoof.ip, brd_ha, 0, my_ha);
> <   if (poison_reverse) {
> < arp_send(l, ARPOP_REPLY, my_ha, target->ip, (uint8_t
> *)&spoof.mac, spoof.ip, my_ha);
> <   }
> < } else {
> 324d308
> < }
>
>
> On Tue, Feb 28, 2017 at 10:19 PM Marcos Fouces  wrote:
>
> Hello João
>
> Could you create a patch and post it in this thread?
>
> Thank you very much for the fix!
>
> Greetings,
>
> Marcos
>
>


Bug#799534: This bug report can be closed

2017-03-12 Thread João Pirralha

Hello,

this issue was addressed in version 4.12.1-4 in12 Jun 2016, so this bug 
report can be closed.


Thank you!



Bug#706766: Diff for this fix

2017-03-08 Thread João Salavisa
Sorry, now in a patch format

diff -ub ./arpspoof.c ../orig.dsniff/dsniff-2.4b1+debian/arpspoof.c
--- ./arpspoof.c 2017-03-07 22:21:45.037692254 +
+++ ../orig.dsniff/dsniff-2.4b1+debian/arpspoof.c 2017-03-07
22:09:32.0 +
@@ -46,8 +46,6 @@
 static int cleanup_src_own = 1;
 static int cleanup_src_host = 0;

-int n_targets;
-
 static void
 usage(void)
 {
@@ -162,17 +160,11 @@
  fprintf(stderr, "Cleaning up and re-arping targets...\n");
  for (i = 0; i < rounds; i++) {
 struct host *target = targets;
-
+ while(target->ip) {
 uint8_t *src_ha = NULL;
 if (cleanup_src_own && (i%2 || !cleanup_src_host)) {
   src_ha = my_ha;
 }
-
-if (!n_targets) {
-  arp_send(l, ARPOP_REPLY, (u_int8_t *)&spoof.mac, spoof.ip, brd_ha,
0, src_ha);
-  sleep(1);
-} else {
-  while(target->ip) {
 /* XXX - on BSD, requires ETHERSPOOF kernel. */
 if (fw) {
   arp_send(l, ARPOP_REPLY,
@@ -194,12 +186,11 @@
 target++;
   }
 }
-  }

   exit(0);
 }

-  int
+int
 main(int argc, char *argv[])
 {
   extern char *optarg;
@@ -207,7 +198,7 @@
   char pcap_ebuf[PCAP_ERRBUF_SIZE];
   char libnet_ebuf[LIBNET_ERRBUF_SIZE];
   int c;
-
+ int n_targets;
   char *cleanup_src = NULL;

   spoof.ip = 0;
@@ -304,12 +295,6 @@
   signal(SIGTERM, cleanup);

   for (;;) {
-if (!n_targets) {
-  arp_send(l, ARPOP_REPLY, my_ha, spoof.ip, brd_ha, 0, my_ha);
-  if (poison_reverse) {
-arp_send(l, ARPOP_REPLY, my_ha, target->ip, (uint8_t *)&spoof.mac,
spoof.ip, my_ha);
-  }
-} else {
   struct host *target = targets;
   while(target->ip) {
 arp_send(l, ARPOP_REPLY, my_ha, spoof.ip,
@@ -321,7 +306,6 @@
 }
 target++;
   }
-}

 sleep(2);
   }


On Tue, Mar 7, 2017 at 10:13 PM João Salavisa 
wrote:

> Here you go!
>
> diff -b ./arpspoof.c ../orig.dsniff/dsniff-2.4b1+debian/arpspoof.c
> 49,50d48
> < int n_targets;
> <
> 165c163
> <
> ---
> > while(target->ip) {
> 170,175d167
> <
> < if (!n_targets) {
> <   arp_send(l, ARPOP_REPLY, (u_int8_t *)&spoof.mac, spoof.ip, brd_ha,
> 0, src_ha);
> <   sleep(1);
> < } else {
> <   while(target->ip) {
> 197d188
> <   }
> 202c193
> <   int
> ---
> > int
> 210c201
> <
> ---
> > int n_targets;
> 307,312d297
> < if (!n_targets) {
> <   arp_send(l, ARPOP_REPLY, my_ha, spoof.ip, brd_ha, 0, my_ha);
> <   if (poison_reverse) {
> < arp_send(l, ARPOP_REPLY, my_ha, target->ip, (uint8_t
> *)&spoof.mac, spoof.ip, my_ha);
> <   }
> < } else {
> 324d308
> < }
>
>
> On Tue, Feb 28, 2017 at 10:19 PM Marcos Fouces  wrote:
>
> Hello João
>
> Could you create a patch and post it in this thread?
>
> Thank you very much for the fix!
>
> Greetings,
>
> Marcos
>
>


Bug#706766: Diff for this fix

2017-03-07 Thread João Salavisa
Here you go!

diff -b ./arpspoof.c ../orig.dsniff/dsniff-2.4b1+debian/arpspoof.c
49,50d48
< int n_targets;
<
165c163
<
---
> while(target->ip) {
170,175d167
<
< if (!n_targets) {
<   arp_send(l, ARPOP_REPLY, (u_int8_t *)&spoof.mac, spoof.ip, brd_ha,
0, src_ha);
<   sleep(1);
< } else {
<   while(target->ip) {
197d188
<   }
202c193
<   int
---
> int
210c201
<
---
> int n_targets;
307,312d297
< if (!n_targets) {
<   arp_send(l, ARPOP_REPLY, my_ha, spoof.ip, brd_ha, 0, my_ha);
<   if (poison_reverse) {
< arp_send(l, ARPOP_REPLY, my_ha, target->ip, (uint8_t
*)&spoof.mac, spoof.ip, my_ha);
<   }
< } else {
324d308
< }


On Tue, Feb 28, 2017 at 10:19 PM Marcos Fouces  wrote:

> Hello João
>
> Could you create a patch and post it in this thread?
>
> Thank you very much for the fix!
>
> Greetings,
>
> Marcos
>
>


Bug#855400: gufw should depend on net-tools (crashes without it)

2017-02-17 Thread João Pirralha
Package: gufw
Version: 17.04.1-1
Severity: normal

Dear Maintainer,

Installing gufw on a fresh Debian stretch system (installed from a DI RC2
image) doesn't install net-tools, causing gufw to crash when starting.

Installing net-tools fixes this problem.


Traceback (most recent call last):
  File "/usr/share/gufw/gufw/gufw.py", line 30, in 
gufw = Gufw(controler.get_frontend())
  File "/usr/share/gufw/gufw/gufw/view/gufw.py", line 81, in __init__
self.winadd = Add(self)
  File "/usr/share/gufw/gufw/gufw/view/add.py", line 43, in __init__
self._set_initial_values()
  File "/usr/share/gufw/gufw/gufw/view/add.py", line 101, in
_set_initial_values
for ifaceName in self.gufw.fw.get_net_interfaces():
  File "/usr/share/gufw/gufw/gufw/model/frontend.py", line 126, in
get_net_interfaces
return self.firewall.get_net_interfaces(exclude_iface)
  File "/usr/share/gufw/gufw/gufw/model/firewall.py", line 251, in
get_net_interfaces
all_faces = self.backend.get_net_interfaces()
  File "/usr/share/gufw/gufw/gufw/model/ufw_backend.py", line 462, in
get_net_interfaces
cmd = self._run_cmd(cmd_ifaces)
  File "/usr/share/gufw/gufw/gufw/model/ufw_backend.py", line 37, in _run_cmd
proc = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
  File "/usr/lib/python3.5/subprocess.py", line 676, in __init__
restore_signals, start_new_session)
  File "/usr/lib/python3.5/subprocess.py", line 1282, in _execute_child
raise child_exception_type(errno_num, err_msg)
FileNotFoundError: [Errno 2] Arquivo ou diretório não encontrado: 'netstat'



-- System Information:
Debian Release: 9.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages gufw depends on:
ii  gir1.2-gtk-3.0  3.22.7-2
ii  gir1.2-webkit2-4.0  2.14.3-1
ii  policykit-1 0.105-17
ii  python3-gi  3.22.0-2
pn  python3:any 
ii  ufw 0.35-4

gufw recommends no packages.

gufw suggests no packages.

-- no debconf information


Bug#850479: steam: deletion of incompatible libraries from Steam Runtime not working correctly

2017-01-06 Thread João Matos

Package: steam
Source: steam
Version: 1.0.0.54-1
Tags: patch
Severity: important

Dear Maintainer,

In: https://sources.debian.net/src/steam/1.0.0.54-1/debian/script/steam/

Where it reads:
find $runtime -name libxcb.so\* \
   -o -name libgcc_s.so\* \
   -o -name libstdc++.so\* \
   -o -name libgpg-error.so\* \
   -delete

It should probably read this, instead:
find $runtime \( -name libxcb.so\* \
  -o -name libgcc_s.so\* \
  -o -name libstdc++.so\* \
  -o -name libgpg-error.so\* \
  \) -delete

Otherwise, find will only delete the libgpg-error files.

Thank you for your attention and sorry for any breach of etiquette on my 
part; I'm not too familiar with Debian's BTS.


João Matos



Bug#834508: qbittorrent: Change Qt4 in description to Qt 5, as qBittorrent is now built with it.

2016-08-16 Thread João
Package: qbittorrent
Version: 3.3.6-1+b1
Severity: minor

Dear Maintainer,

As qBittorrent is now built with Qt 5, its description should say "Qt 5"
instead of "Qt4" (two occurrences).

Thank you.



-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages qbittorrent depends on:
ii  geoip-database 20160709-1
ii  libboost-system1.61.0  1.61.0+dfsg-2.1
ii  libc6  2.23-4
ii  libgcc11:6.1.1-11
ii  libqt5core5a   5.6.1+dfsg-3+b1
ii  libqt5dbus55.6.1+dfsg-3+b1
ii  libqt5gui5 5.6.1+dfsg-3+b1
ii  libqt5network5 5.6.1+dfsg-3+b1
ii  libqt5widgets5 5.6.1+dfsg-3+b1
ii  libqt5xml5 5.6.1+dfsg-3+b1
ii  libstdc++6 6.1.1-11
ii  libtorrent-rasterbar9  1.1.0-2
ii  python 2.7.11-2
ii  zlib1g 1:1.2.8.dfsg-2+b1

qbittorrent recommends no packages.

Versions of packages qbittorrent suggests:
pn  qbittorrent-dbg  

-- no debconf information



Bug#706766: Fix for the stated bug

2016-01-19 Thread João Salavisa
Hi,

I confirm the bug, and tried to email William. I fixed it and the source is
available here:
https://github.com/jcfs/dsniff

Regards


Bug#799534: xfce4-session: Recommend light-locker instead of xscreensaver

2015-09-19 Thread João Pirralha
Package: xfce4-session
Version: 4.12.1-3
Severity: wishlist

Dear Maintainer,

Please consider recommending light-locker instead of xscreensaver. These are
the main reasons:
1) The display manager installed by default with Xfce is lightdm. Recommending
light-locker as the screen locker would be more consistent.
2) Since Xfce 4.12, xfce4-power-manager has integration with light-locker.



-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=pt_PT.utf8, LC_CTYPE=pt_PT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages xfce4-session depends on:
ii  libatk1.0-02.16.0-2
ii  libc6  2.19-20
ii  libcairo2  1.14.2-2
ii  libdbus-1-31.10.0-2
ii  libdbus-glib-1-2   0.102-1
ii  libfontconfig1 2.11.0-6.3
ii  libfreetype6   2.6-1
ii  libgdk-pixbuf2.0-0 2.31.5-1
ii  libglib2.0-0   2.44.1-1.1
ii  libgtk2.0-02.24.28-1
ii  libice62:1.0.9-1+b1
ii  libpango-1.0-0 1.36.8-3
ii  libpangocairo-1.0-01.36.8-3
ii  libpangoft2-1.0-0  1.36.8-3
ii  libpolkit-gobject-1-0  0.105-12
ii  libsm6 2:1.2.2-1+b1
ii  libwnck22  2.30.7-2
ii  libx11-6   2:1.6.3-1
ii  libxfce4ui-1-0 4.12.1-2
ii  libxfce4util7  4.12.1-2
ii  libxfconf-0-2  4.12.0-2+b1
ii  multiarch-support  2.19-20
ii  xfce4-settings 4.12.0-2
ii  xfconf 4.12.0-2+b1

Versions of packages xfce4-session recommends:
ii  dbus-x11   1.10.0-2
ii  libpam-systemd 225-1
ii  systemd-sysv   225-1
ii  upower 0.99.3-1+b2
ii  x11-xserver-utils  7.7+5
ii  xfdesktop4 4.12.2-1
ii  xfwm4  4.12.3-1
pn  xscreensaver   

Versions of packages xfce4-session suggests:
pn  fortunes-mod  
pn  pm-utils  
ii  sudo  1.8.12-1

-- no debconf information



Bug#786606: codeblocks: New version does not work with direcctorios named with accented letters " á, é, í, ó, ú, ñ"

2015-07-20 Thread João Pirralha

I can also confirm this problem in codeblocks 13.12-3.1~bpo8+1.

-- Build: Debug in Hello world (compiler: GNU GCC 
Compiler)---


gcc -Wall -g  -c "/home/joao/Programação/Hello world/main.c" -o 
obj/Debug/main.o

g++  -o "bin/Debug/Hello world" obj/Debug/main.o
g++: error: obj/Debug/main.o: Arquivo ou diretório não encontrado
g++: fatal error: no input files
compilation terminated.
Process terminated with status 4 (0 minute(s), 0 second(s))
0 error(s), 0 warning(s) (0 minute(s), 0 second(s))


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



Bug#776911: Not only in VMs

2015-04-13 Thread João Paredes
Actually, this problem does not ocurr only virtual machines and/or older 
hardware.
It also happens in my Core i7 950 with a AMD Radeon R7-260X.
But does not happen on my Core i7 Toshiba Z930 which has an integrated Intel 
HD4xxx graphics card.



Bug#768045: I have this issue too

2014-12-08 Thread João Pirralha
I also experience this issue. A workaround is to downgrade libdrm-intel1 
to 2.4.56-1, plus the other related dependencies: libdrm2, libdrm-dev, 
libdrm-nouveau2 and libdrm-radeon1. For people with this issue, you cand 
find them here: 
http://snapshot.debian.org/archive/debian/20140810T163814Z/pool/main/libd/libdrm/


I think that while this isn't fixed in 2.4.58, 2.4.56 should be 
installed by defaut.



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



Bug#711460: xfce4-mixer: changing sound volume not working after muting

2014-09-14 Thread João Pirralha
I also had this problem on a freshly installed Debian Testing, I had to 
run the following commands as a workaround (I got them from the ArchWiki):


xfconf-query -c xfce4-keyboard-shortcuts -p 
/commands/custom/XF86AudioRaiseVolume -n -t string -s "amixer set Master 
5%+ unmute"
xfconf-query -c xfce4-keyboard-shortcuts -p 
/commands/custom/XF86AudioLowerVolume -n -t string -s "amixer set Master 
5%- unmute"
xfconf-query -c xfce4-keyboard-shortcuts -p 
/commands/custom/XF86AudioMute -n -t string -s "amixer set Master toggle"



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



Bug#708760: Reproduce with a minimal pygame python script on Ubuntu 14.04

2014-04-28 Thread João Pinto
The bug is not 100% reproducible but very frequent (on my system). I just
need to run the attached script and wait a few minutes.

The backtrace:
(gdb)  thread apply all bt

Thread 3 (Thread 0x7fb62d572700 (LWP 13859)):
#0  0x7fb63c340b9d in nanosleep () at
../sysdeps/unix/syscall-template.S:81
#1  0x7fb63b0744b9 in SDL_Delay (ms=) at
./src/timer/unix/SDL_systimer.c:118
#2  0x7fb63b0744f2 in RunTimer (unused=0x7fb62d571ea0, unused@entry=0x0)
at ./src/timer/unix/SDL_systimer.c:203
#3  0x7fb63b032ae8 in SDL_RunThread (data=0x2a777c0) at
./src/thread/SDL_thread.c:204
#4  0x7fb63b072079 in RunThread (data=) at
./src/thread/pthread/SDL_systhread.c:47
#5  0x7fb63c339182 in start_thread (arg=0x7fb62d572700) at
pthread_create.c:312
#6  0x7fb63c06630d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 2 (Thread 0x7fb628756700 (LWP 13861)):
#0  0x7fb639c709f4 in pa_detect_fork () from
/usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-4.0.so
#1  0x7fb63a90d5ef in pa_stream_writable_size () from
/usr/lib/x86_64-linux-gnu/libpulse.so.0
#2  0x7fb63b056aaf in PULSE_WaitAudio (this=0x2ae1ed0) at
./src/audio/pulse/SDL_pulseaudio.c:314
#3  0x7fb63b02a8f0 in SDL_RunAudio (audiop=audiop@entry=0x2ae1ed0) at
./src/audio/SDL_audio.c:222
#4  0x7fb63b032ae8 in SDL_RunThread (data=0x2ae8060) at
./src/thread/SDL_thread.c:204
#5  0x7fb63b072079 in RunThread (data=) at
./src/thread/pthread/SDL_systhread.c:47
#6  0x7fb63c339182 in start_thread (arg=0x7fb628756700) at
pthread_create.c:312
#7  0x7fb63c06630d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 1 (Thread 0x7fb63c74f740 (LWP 13858)):
#0  0x7fb63c33a66b in pthread_join (threadid=140420339558144,
thread_return=thread_return@entry=0x0) at pthread_join.c:92
#1  0x7fb63b07219b in SDL_SYS_WaitThread (thread=thread@entry=0x2aef230)
at ./src/thread/pthread/SDL_systhread.c:107
#2  0x7fb63b032cd6 in SDL_WaitThread (thread=0x2aef230,
status=status@entry=0x0) at ./src/thread/SDL_thread.c:272
#3  0x7fb63b02b07a in SDL_AudioQuit () at ./src/audio/SDL_audio.c:629
#4  0x7fb63b029f95 in SDL_QuitSubSystem (flags=16) at ./src/SDL.c:190
#5  0x7fb632d8ad55 in Mix_CloseAudio () at mixer.c:1145
#6  0x7fb63133e706 in ?? () from
/usr/lib/python2.7/dist-packages/pygame/mixer.so
#7  0x7fb63b2b7f6a in ?? () from
/usr/lib/python2.7/dist-packages/pygame/base.so
#8  0x7fb63b2b7fa9 in ?? () from
/usr/lib/python2.7/dist-packages/pygame/base.so
#9  0x0052f936 in PyEval_EvalFrameEx ()
#10 0x0056d0aa in ?? ()
#11 0x004da29f in PyEval_CallObjectWithKeywords ()
#12 0x0042fa19 in Py_Finalize ()
#13 0x0046ac10 in Py_Main ()
#14 0x7fb63bf8cec5 in __libc_start_main (main=0x46ac3f , argc=2,
argv=0x7fff9078cbd8, init=, fini=,
rtld_fini=, stack_end=0x7fff9078cbc8) at libc-start.c:287
#15 0x0057497e in _start ()


-- 
João Pinto
Google Plus: http://gplus.to/joaopinto
Google Talk: lamego.pi...@gmail.com
import pygame
from pygame.locals import *
from pygame.color import *


class Minimal:

def __init__(self):
# Hang on quit maybe related to: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=708760 on quit
pygame.init()
self.w, self.h = 800, 600
self.screen = pygame.display.set_mode((self.w, self.h))
self.clock = pygame.time.Clock()
self.running = True

def run(self):
while self.running:
self.loop()


def loop(self):
for event in pygame.event.get():
if event.type == QUIT:
self.running = False
elif event.type == KEYDOWN and event.key == K_ESCAPE:
self.running = False

### Tick clock and update fps in title

self.clock.tick(50)
pygame.display.set_caption("fps: " + str(self.clock.get_fps()))


def main():
minimal = Minimal()
minimal.run()


if __name__ == '__main__':
 main()



Bug#742604: gnome-music: fails to start due to possible missing dependency

2014-03-25 Thread João
Package: gnome-music
Version: 3.12.0-1
Severity: serious
Justification: Policy 3.5

Dear Maintainer,

gnome-music 3.12.0-1 fails to start if the package
gir1.2-totem-plparser-1.0 (which is not listed as a dependency of the
package) is not installed. Installing it manually solves the problem.

Launching it from the command line gives the error:

ERROR:root:Could not find any typelib for TotemPlParser
Traceback (most recent call last):
File "/usr/bin/gnome-music", line 32, in 
from gnomemusic.application import Application
File "/usr/lib/python3/dist-packages/gnomemusic/application.py",
line 36, in 
from gnomemusic.window import Window
File "/usr/lib/python3/dist-packages/gnomemusic/window.py",
line 39, in 
import gnomemusic.view as Views
File "/usr/lib/python3/dist-packages/gnomemusic/view.py",
line 47, in 
import gnomemusic.widgets as Widgets
File "/usr/lib/python3/dist-packages/gnomemusic/widgets.py",
line 42, in 
from gnomemusic.playlists import Playlists
File "/usr/lib/python3/dist-packages/gnomemusic/playlists.py",
line 1, in 
from gi.repository import TotemPlParser, Grl, GLib, Gio,
GObject
ImportError: cannot import name TotemPlParser


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

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

Versions of packages gnome-music depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.18.0-1
ii  gir1.2-glib-2.0  1.38.0-2
ii  gir1.2-grilo-0.2 0.2.10-1
ii  gir1.2-gst-plugins-base-1.0  1.2.3-1
ii  gir1.2-gstreamer-1.0 1.2.3-1
ii  gir1.2-gtk-3.0   3.11.8-1
ii  gir1.2-notify-0.70.7.6-2
ii  gir1.2-tracker-0.16  0.16.2-1+b2
ii  gnome-settings-daemon3.8.5-2
ii  grilo-plugins-0.20.2.12-2
ii  libatk1.0-0  2.11.90-1
ii  libc62.18-4
ii  libcairo-gobject21.12.16-2
ii  libcairo21.12.16-2
ii  libgdk-pixbuf2.0-0   2.30.6-1
ii  libglib2.0-0 2.39.92-2
ii  libgtk-3-0   3.11.8-1
ii  libpango-1.0-0   1.36.3-1
ii  libpangocairo-1.0-0  1.36.3-1
ii  python3  3.3.4-1
ii  python3-dbus 1.2.0-2+b2
ii  python3-gi   3.10.2-2+b1
ii  python3-gi-cairo 3.10.2-2+b1
pn  python3:any  
ii  tracker  0.17.8-1

gnome-music recommends no packages.

gnome-music suggests no packages.

-- no debconf information


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



Bug#717202: Same symptons when reading message

2013-07-24 Thread João
The same thing happens when reading a message (even on another mailbox), we  
get dumped on the list menu.


Thanks,
João


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



Bug#717286: cone: When replying, add date of the original message

2013-07-18 Thread João
Package: cone
Version: 0.89-1
Severity: wishlist

Dear Maintainer,

It would be nice to be able to set the format of the extra "headers" added to
forwarded or replied to messages. At the very least, when replying to an email
the date of the original message should be included.

Thank you,
João

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

Kernel: Linux 3.2.46 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages cone depends on:
ii  libc6  2.13-38
ii  libfam02.7.0-17
ii  libgcc11:4.7.2-5
ii  libldap-2.4-2  2.4.31-1+nmu2
ii  libncursesw5   5.9-10
ii  libssl1.0.01.0.1e-2
ii  libstdc++6 4.7.2-5
ii  libxml22.8.0+dfsg1-7+nmu1

cone recommends no packages.

cone suggests no packages.

-- no debconf information


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



Bug#717209: avogadro: Visualizing orbitals generated with MOLCAS

2013-07-17 Thread João
Package: avogadro
Version: 1.0.3-5
Severity: wishlist

Dear Maintainer,

To my knowledge the only program able to display molecular orbitals from a .grid
file generated with MOLCAS is the program gv distributed with the MOLCAS 
package.
It would be very nice to have another (free) tool able to render these orbitals.

Many thanks,
João


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

Kernel: Linux 3.2.46 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages avogadro depends on:
ii  libavogadro1  1.0.3-5
ii  libboost-python1.49.0 1.49.0-3.2
ii  libc6 2.13-38
ii  libgcc1   1:4.7.2-5
ii  libgl1-mesa-glx [libgl1]  8.0.5-4+deb7u2
ii  libgl2ps0 1.3.6-1
ii  libglew1.71.7.0-3
ii  libglu1-mesa [libglu1]8.0.5-4+deb7u2
ii  libopenbabel4 2.3.1+dfsg-4
ii  libpython2.7  2.7.3-6
ii  libqt4-network4:4.8.2+dfsg-11
ii  libqt4-opengl 4:4.8.2+dfsg-11
ii  libqtcore44:4.8.2+dfsg-11
ii  libqtgui4 4:4.8.2+dfsg-11
ii  libstdc++64.7.2-5
ii  libx11-6  2:1.5.0-1+deb7u1
ii  libxext6  2:1.3.1-2+deb7u1

Versions of packages avogadro recommends:
ii  avogadro-data  1.0.3-5

avogadro suggests no packages.

-- no debconf information


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



Bug#717202: cone: Message editing interrupted when mail server connection drops

2013-07-17 Thread João
Package: cone
Version: 0.89-1
Severity: normal

Dear Maintainer,

When editing a message and a POP3 account (perhaps also IMAP accounts?) loses
connection to the server, cone drops immediately to the list folders menu with 
no
warning. The message is stored in the current state and upon pressing W the user
is prompted to finish the recovered message.
Notwithstanding the program should allow the user to finish writing the message
uninterrupted.

Thank you,
João


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

Kernel: Linux 3.2.46 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages cone depends on:
ii  libc6  2.13-38
ii  libfam02.7.0-17
ii  libgcc11:4.7.2-5
ii  libldap-2.4-2  2.4.31-1+nmu2
ii  libncursesw5   5.9-10
ii  libssl1.0.01.0.1e-2
ii  libstdc++6 4.7.2-5
ii  libxml22.8.0+dfsg1-7+nmu1

cone recommends no packages.

cone suggests no packages.

-- no debconf information


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



Bug#717200: cone: Remember message editing preferences

2013-07-17 Thread João
Package: cone
Version: 0.89-1
Severity: wishlist

Dear Maintainer,

When editing a message ^F allows for editing extended headers and ^U permits
using an external editor (this later option only works when the cursor is on
the body of the message, which in itself is an annoying behaviour).
It would be a nice feature to actually remember these user preferences, instead
of having one press these key combinations at each time.
Defaulting to an external editor would also imply the possibility to edit 
message
headers on this editor.

Many thanks,
João


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

Kernel: Linux 3.2.46 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages cone depends on:
ii  libc6  2.13-38
ii  libfam02.7.0-17
ii  libgcc11:4.7.2-5
ii  libldap-2.4-2  2.4.31-1+nmu2
ii  libncursesw5   5.9-10
ii  libssl1.0.01.0.1e-2
ii  libstdc++6 4.7.2-5
ii  libxml22.8.0+dfsg1-7+nmu1

cone recommends no packages.

cone suggests no packages.

-- no debconf information


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



Bug#717198: cone: Use mailcap information to handle MIME attachments

2013-07-17 Thread João
Package: cone
Version: 0.89-1
Severity: wishlist

Dear Maintainer,

Cone deals with MIME attachments according to the specification of *.filter
files, one for each MIME type.
The current package comes with a small number of such files, with application
names hardcoded within. Since these specific applications may in general not
even be installed these files serve as little more than examples. A more 
suitable
approach would be to use the /etc/alternatives system.
In any event the tedious job of creating these files for all relevant MIME types
is left to the user, when this information is already available in the mailcap
file.
Ideally, cone could use the mailcap file to deal with attachments. Alternatively
a script could be run at installation time which reads the mailcap file and
generates all *.filter files at once.

Thank you for considering these possibilities,
João


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

Kernel: Linux 3.2.46 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages cone depends on:
ii  libc6  2.13-38
ii  libfam02.7.0-17
ii  libgcc11:4.7.2-5
ii  libldap-2.4-2  2.4.31-1+nmu2
ii  libncursesw5   5.9-10
ii  libssl1.0.01.0.1e-2
ii  libstdc++6 4.7.2-5
ii  libxml22.8.0+dfsg1-7+nmu1

cone recommends no packages.

cone suggests no packages.

-- no debconf information


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



Bug#705395: cone: Please link to aspell to provide spell checking

2013-04-14 Thread João
Package: cone
Version: 0.89-1
Severity: wishlist

Dear Maintainer,

At the moment spell checking is not working in the cone editor. The build
logs indicate that it is disabled even though aspell is a build-dependency
(there is a warning on the build log about this)
https://buildd.debian.org/status/fetch.php?pkg=cone&arch=i386&ver=0.89-1&stamp=1310431136

Spell checking is a convenient feature, and aspell could be added to the
recommends list.

Many thanks,
João

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

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

Versions of packages cone depends on:
ii  libc6  2.13-38
ii  libfam02.7.0-17
ii  libgcc11:4.7.2-5
ii  libldap-2.4-2  2.4.31-1
ii  libncursesw5   5.9-10
ii  libssl1.0.01.0.1e-2
ii  libstdc++6 4.7.2-5
ii  libxml22.8.0+dfsg1-7+nmu1

cone recommends no packages.

cone suggests no packages.

-- no debconf information


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



Bug#656640: Error: "Option 'printer-resolution' has value '(unknown IPP tag)' and cannot be edited."

2012-05-22 Thread João Pedro Santos de Sousa
Hello.

I also have this problem.

System: Debian Testing, hplip 3.12.4
Printer1: HP Officejet 7500A E910 Wide Format, wired network connected
Printer2: HP PSC 1500, usb connected

Problem: Printers are correctly installed but I can't print to both
printers. On HP Device Manager no errors are shown on the device
"Status" but the print jobs are shown as "Stopped". On
system-config-printer both printers are shown with a red (!)
exclamation mark, trying to show its properties results in error:

"Option 'printer-resolution' has value '(unknown IPP tag)' and cannot
be edited."

After which the printer properties are shown. The field "Printer State" shows:

"Idle - File "/usr/lib/cups/filter/foomatic-rip-hplip" not available:
No such file or directory"

I've upgraded hplip from 3.12.2 to 3.12.4, by completely removing
(purging) any hplip, hpijs install and then downloading and installing
3.12.4 fromhttp://hplipopensource.com. Same result. hp-check results
in no errors. Please help!

Cumprimentos. Regards.
-
João Pedro Santos de Sousa



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



Bug#620881: Acknowledgement (installation-guide: MAKEDEV script absence)

2011-04-04 Thread João Carneiro
i actually found later that the makedev package was missing, so this bug
should be reassigned to debootstrap.

best regards,

JC


Bug#443979: Works for me!

2011-03-19 Thread João Carneiro
http://www.ebn-pos.com/products/Spec_SolidPPC50.php -> PPC508


after some struggle i finally found this bug report and my AMD GEODE LX800
booted fine with stock kernel via pxe with "video=lxfb:800×600-32@60".

Best regards,

JC

Hi,

 A user reported that he failed to install even with custom
"CONFIG_FIRMWARE_EDID=n"
 kernel, but non-custom installer could work with "video=lxfb:1024×600-32@60"
 option.

 He uses "Kojinsha SA5ST12A", it has AMD Geode LX800 chip.
 
http://jp.kohjinsha.com/support/content/supt/sa/sa5st12a/specification/index.html
 (Japanese)

 I hope it would be help.


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/iijmio-mail.jp
 http://wiki.debian.org/HidekiYamane


Bug#546614: openoffice.org: soffice.bin SIGSEGV crash on exit

2009-09-14 Thread João Batista
Package: openoffice.org
Version: 1:3.1.1-1~bpo50+1
Severity: minor

soffice.bin crashes with SIGSEGV on exit. This does not seem too serious, as 
it happens on exit after all files have been saved. 
Output from dpkg -l for installed packages, and a gdb session up to the SIGSEGV 
follows.

>8>8>8>8>8>8>8>8
u...@linux:~$ dpkg -l openoffice.org
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ NomeVersão Descrição
+++-===-===-==
ii  openoffice.org  1:3.1.1-1~bpo50+1   
full-featured office productivity suite
u...@linux:~$ dpkg -l openoffice.org* | grep ^ii
ii  openoffice.org 1:3.1.1-1~bpo50+1
ii  openoffice.org-base1:3.1.1-1~bpo50+1
ii  openoffice.org-base-core   1:3.1.1-1~bpo50+1
ii  openoffice.org-calc1:3.1.1-1~bpo50+1
ii  openoffice.org-common  1:3.1.1-1~bpo50+1
ii  openoffice.org-core1:3.1.1-1~bpo50+1
ii  openoffice.org-dbg 1:3.1.1-1~bpo50+1
ii  openoffice.org-dev-doc 1:3.1.1-1~bpo50+1
ii  openoffice.org-draw1:3.1.1-1~bpo50+1
ii  openoffice.org-dtd-officedocument1.0   1:3.1.1-1~bpo50+1
ii  openoffice.org-evolution   1:3.1.1-1~bpo50+1 
ii  openoffice.org-filter-binfilter1:3.1.1-1~bpo50+1
ii  openoffice.org-filter-mobiledev1:3.1.1-1~bpo50+1
ii  openoffice.org-help-en-us  1:3.1.1-1~bpo50+1
ii  openoffice.org-help-pt 1:3.1.1-1~bpo50+1
ii  openoffice.org-impress 1:3.1.1-1~bpo50+1
ii  openoffice.org-java-common 1:3.1.1-1~bpo50+1
ii  openoffice.org-kde 1:3.1.1-1~bpo50+1
ii  openoffice.org-l10n-pt 1:3.1.1-1~bpo50+1
ii  openoffice.org-math1:3.1.1-1~bpo50+1
ii  openoffice.org-officebean  1:3.1.1-1~bpo50+1
ii  openoffice.org-ogltrans1:3.1.1-1~bpo50+1
ii  openoffice.org-report-builder  1:1.1.0+OOo3.1.1-1~bpo50+1
ii  openoffice.org-report-builder-bin  1:3.1.1-1~bpo50+1
ii  openoffice.org-style-andromeda 1:3.1.1-1~bpo50+1
ii  openoffice.org-style-crystal   1:3.1.1-1~bpo50+1
ii  openoffice.org-style-galaxy1:3.1.1-1~bpo50+1
ii  openoffice.org-style-oxygen1:3.1.1-1~bpo50+1
ii  openoffice.org-writer  1:3.1.1-1~bpo50+1
u...@linux:~$ dpkg -l *ttf* *freetype* | grep ^ii
ii  freetype1-tools1.4pre.20050518-0.4
ii  libclan2c2a-ttf0.6.5-1-3.3
ii  libfreetype6   2.3.7-2+lenny1
ii  libfreetype6-dev   2.3.7-2+lenny1
ii  libsdl-ttf2.0-02.0.9-1
ii  libttf21.4pre.20050518-0.4
ii  ttf-arphic-uming   0.2.20080216.1-1
ii  ttf-baekmuk2.2-2
ii  ttf-bengali-fonts  1:0.5.4
ii  ttf-bitstream-vera 1.10-7
ii  ttf-dejavu 2.25-3
ii  ttf-dejavu-core2.25-3
ii  ttf-dejavu-extra   2.25-3
ii  ttf-devanagari-fonts   1:0.5.4
ii  ttf-dustin 20030517-6
ii  ttf-freefont   20080323-3
ii  ttf-gujarati-fonts 1:0.5.4
ii  ttf-indic-fonts1:0.5.4
ii  ttf-kannada-fonts  1:0.5.4
ii  ttf-kochi-gothic   1.0.20030809-8
ii  ttf-kochi-mincho   1.0.20030809-8
ii  ttf-liberation 1.04.93-1
ii  ttf-malayalam-fonts1:0.5.4
ii  ttf-mscorefonts-installer  2.7
ii  ttf-opensymbol 1:3.1.1-1~bpo50+1
ii  ttf-oriya-fonts1:0.5.4
ii  ttf-punjabi-fonts  1:0.5.4
ii  ttf-sazanami-mincho20040629-2
ii  ttf-sjfonts2.0.2-1
ii  ttf-tamil-fonts1:0.5.4
ii  ttf-telugu-fonts   1:0.5.4
ii  ttf-unifont1:5.1.20080914-1
u...@linux:~$ dpkg -l *qt3* | grep ^ii
ii  libavahi-qt3-1 0.6.23-3lenny1
ii  libavahi-qt3-dev   0.6.23-3lenny1
ii  libdbus-1-qt3-00.9-2.1~2lenny
ii  libqt3-compat-headers

Bug#534704: solved: bug #534704

2009-06-26 Thread João Batista

Oh man, too quick to report. (Is there a "Delete" button for this?)

Re-installed package python-setuptools and reran trac-admin, which no
longer produces the previous error,
pkg_resources.DistributionNotFound: setuptools==0.6c8





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



Bug#534704: trac-admin fails with DistributionNotFound error

2009-06-26 Thread João Batista
Package: trac
Version: 0.11.1-2.1
Severity: important

Following the instructions from trac's README.Debian.gz file, namely

A new Trac environment is created with trac-admin:

$ trac-admin /path/to/projectenv initenv

the attempts made to configure trac failed:

u...@localhost:~/src$ svn co http://localhost/port48
Checked out revision 0.
u...@localhost:~/src$ sudo -i
localhost:~# mkdir /var/trac
localhost:~# trac-admin /var/trac initenv
Traceback (most recent call last):
  File "/usr/bin/trac-admin", line 5, in 
from pkg_resources import load_entry_point
  File "/usr/lib/python2.5/site-packages/pkg_resources.py", line 2561, in 

working_set.require(__requires__)
  File "/usr/lib/python2.5/site-packages/pkg_resources.py", line 626, in require
needed = self.resolve(parse_requirements(requirements))
  File "/usr/lib/python2.5/site-packages/pkg_resources.py", line 524, in resolve
raise DistributionNotFound(req)  # XXX put more info here
pkg_resources.DistributionNotFound: setuptools>=0.6b1
localhost:~#

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

Kernel: Linux 2.6.26-bpo.1-amd64 (SMP w/2 CPU cores)
Locale: LANG=pt_PT.UTF-8, LC_CTYPE=pt_PT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages trac depends on:
ii  libjs-jquery1.2.6-2  JavaScript library for dynamic web
ii  python  2.5.2-3  An interactive high-level object-o
ii  python-central  0.6.8register and build utility for Pyt
ii  python-genshi   0.5.1-1  Python XML-based template engine
ii  python-pysqlite22.4.1-1  Python interface to SQLite 3
ii  python-setuptools   0.6c8-4  Python Distutils Enhancements
ii  python-subversion   1.5.1dfsg1-2 Python bindings for Subversion
ii  subversion  1.5.1dfsg1-2 Advanced version control system

Versions of packages trac recommends:
ii  apache2  2.2.9-10+lenny3 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [htt 2.2.9-10+lenny3 Apache HTTP Server - traditional n
ii  enscript 1.6.4-13Converts ASCII text to Postscript,
ii  lighttpd [httpd] 1.4.19-5A fast webserver with minimal memo
ii  mini-httpd [httpd]   1.19-8  a small HTTP server
ii  nginx [httpd]0.6.32-3small, but very powerful and effic
ii  python-pygments  0.10-1  syntax highlighting package writte
ii  python-tz2008c-2 Python version of the Olson timezo

Versions of packages trac suggests:
ii  libapache2-mod-python 3.3.1-7Python-embedding module for Apache
ii  python-docutils   0.5-2  Utilities for the documentation of
ii  python-mysqldb1.2.2-7A Python interface to MySQL
ii  python-psycopg2   2.0.7-4Python module for PostgreSQL
ii  python-textile2.10-3.1.2 Python parser for the Textile mark
pn  trac-bzr   (no description available)
ii  trac-git  0.0.20080710-3 Git version control backend for Tr
pn  trac-mercurial (no description available)
pn  trac-spamfilter(no description available)

-- no debconf information



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



Bug#501452: package: python2.5

2008-10-07 Thread João Paulo Vanzuita
Package: python2.5
Version: 2.5.2-11.1

When i invoke 'apt-get install -f' the output is:

[EMAIL PROTECTED]:~$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree   
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 36 not upgraded.
2 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Setting up python2.5-minimal (2.5.2-11.1) ...
Linking and byte-compiling packages for runtime python2.5...
pycentral: pycentral rtinstall: package python-cairo: not overwriting
local files
pycentral rtinstall: package python-cairo: not overwriting local files
dpkg: error processing python2.5-minimal (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of python2.5:
 python2.5 depends on python2.5-minimal (= 2.5.2-11.1); however:
  Package python2.5-minimal is not configured yet.
dpkg: error processing python2.5 (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 python2.5-minimal
 python2.5
E: Sub-process /usr/bin/dpkg returned an error code (1)

I am using Debian GNU/Linux unstable lenny kernel 2.6.26-1-amd64.

if you need more informations, pls, send me an email.

-- 
João P. Vanzuita <[EMAIL PROTECTED]>



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#497054: zabbix-frontend-php: install through dbconfig does not create mysql user

2008-09-03 Thread João Baptista Guedes Carneiro
this message never made it into the BTS - guess because i forgot to
clean up the quoted history - so i'm resending it...


hello,

i do thank you for this clarification, and in that perspective
everything is as it should be except for the frontend depends.

However i do believe that zabbix should be perfectly isolated in it's
components: zabbix-server, mysql/postgresql, httpd+php+frontend. So i
could have a clean client-server architecture.
Therefore you should be able to cleanly install zabbix server on a
machine, mysql on another, and the frontend on yet another.
That did not *require* another user for the frontend, however, i believe
that it would be advisable to have one.

but that's my view of it, i guess it is all about criteria. 

regarding dependencies, i installed the frontend on a machine with
apache, zabbix server and php (but not php-mysql) and got an error
trying to access the zabbix frontend. There was no support for php-mysql
and it was not installed with the frontend.
here is the frontend details:

apt-cache show zabbix-frontend-php
Package: zabbix-frontend-php
Priority: optional
Section: net
Installed-Size: 3588
Maintainer: Zabbix Maintainers <[EMAIL PROTECTED]>
Architecture: all
Source: zabbix
Version: 1:1.4.6-1
Depends: apache2 | httpd, php5 | php5-mysql | php5-pgsql, php5-gd,
ucf, dbconfig-common (>= 1.8.19), debconf (>= 0.5) | debconf-2.0
Recommends: zabbix-server-mysql | zabbix-server-pgsql, mysql-server
(>= 4.0.16-2) | postgresql-8.1
Filename: pool/main/z/zabbix/zabbix-frontend-php_1.4.6-1_all.deb

i guess it could be solved with a small change on the dependencies:

Depends: apache2 | httpd, php5, php5-mysql | php5-pgsql, php5-gd, ucf,
dbconfig-common (>= 1.8.19), debconf (>= 0.5) | debconf-2.0

cheers



Bug#497053: zabbix-frontend-php: install through dbiconfig does not create mysql user

2008-09-03 Thread João Baptista Guedes Carneiro
and you are right, i did got one thing wrong...

on http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497053 

if there is no zabbix server installed it is impossible to know what
php-(mysql|psql) it should install.

but it would be smart if apt knew/asked/... :) 

i do appologise about the crossed answers in these two bug reports, but
it seemed quicker to do so. next time i'll keep things in it's correct
places.

cheers,

JC




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#497053: Just posted the solution on #497054

2008-09-03 Thread João Baptista Guedes Carneiro
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497054




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#497054: zabbix-frontend-php: install through dbconfig does not create mysql user

2008-09-03 Thread João Baptista Guedes Carneiro
hello,

i do thank you for this clarification, and in that perspective
everything is as it should be except for the frontend depends.

However i do believe that zabbix should be perfectly isolated in it's
components: zabbix-server, mysql/postgresql, httpd+php+frontend. So i
could have a clean client-server architecture.
Therefore you should be able to cleanly install zabbix server on a
machine, mysql on another, and the frontend on yet another.
That did not *require* another user for the frontend, however, i believe
that it would be advisable to have one.

but that's my view of it, i guess it is all about criteria. 

regarding dependencies, i installed the frontend on a machine with
apache, zabbix server and php (but not php-mysql) and got an error
trying to access the zabbix frontend. There was no support for php-mysql
and it was not installed with the frontend.
here is the frontend details:

apt-cache show zabbix-frontend-php
Package: zabbix-frontend-php
Priority: optional
Section: net
Installed-Size: 3588
Maintainer: Zabbix Maintainers <[EMAIL PROTECTED]>
Architecture: all
Source: zabbix
Version: 1:1.4.6-1
Depends: apache2 | httpd, php5 | php5-mysql | php5-pgsql, php5-gd,
ucf, dbconfig-common (>= 1.8.19), debconf (>= 0.5) | debconf-2.0
Recommends: zabbix-server-mysql | zabbix-server-pgsql, mysql-server
(>= 4.0.16-2) | postgresql-8.1
Filename: pool/main/z/zabbix/zabbix-frontend-php_1.4.6-1_all.deb

i guess it could be solved with a small change on the dependencies:

Depends: apache2 | httpd, php5, php5-mysql | php5-pgsql, php5-gd, ucf,
dbconfig-common (>= 1.8.19), debconf (>= 0.5) | debconf-2.0

cheers

-Original Message-
From: Michael Ablassmeier <[EMAIL PROTECTED]>
Reply-To: Michael Ablassmeier <[EMAIL PROTECTED]>
To: João Carneiro <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: Re: zabbix-frontend-php: install through dbiconfig does not
create mysql user
Date: Mon, 1 Sep 2008 11:16:06 +0200

i just tried to reproduce this and i think you got something wrong here.
Installing the zabbix-frontend-php package however also Installs the
zabbix-server-mysql one, which is in the packages Recommends.

Per default, the Zabbix Username and the Zabbix Password you specify during the
zabbix-server installation, should also be used in the frontends package,
(which will ask you which zabbix database/user/password to use).

Otherwise, if you want to use 2 different users, you have to create one user by
yourself, because the frontend package does not *create* any database users, it
just asks you for the username to use .. (ideally the one you specified during
the zabbix-server-* installation).

The dbconfig common scripts work like expected and create all needed users
and schemas within the DB.
 
bye,
- michael

hi,

On Fri, Aug 29, 2008 at 04:19:40PM +0100, João Carneiro wrote:
> the configuration through dbiconfig does not create a mysql user for the
> frontend to use. i was using a mysql user for the zabbix server and another
> for the frontend to access the database.

i just tried to reproduce this and i think you got something wrong here.
Installing the zabbix-frontend-php package however also Installs the
zabbix-server-mysql one, which is in the packages Recommends.

Per default, the Zabbix Username and the Zabbix Password you specify during the
zabbix-server installation, should also be used in the frontends package,
(which will ask you which zabbix database/user/password to use).

Otherwise, if you want to use 2 different users, you have to create one user by
yourself, because the frontend package does not *create* any database users, it
just asks you for the username to use .. (ideally the one you specified during
the zabbix-server-* installation).

The dbconfig common scripts work like expected and create all needed users
and schemas within the DB.
 
bye,
- michael




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#497054: diff

2008-08-29 Thread João Carneiro
i think the comments with # should be with // guess it will solve a
part of the problem.
adding these two lines seems to be the other diference.

global $DB_TYPE, $DB_SERVER, $DB_PORT, $DB_DATABASE, $DB_USER,
$DB_PASSWORD, $IMAGE_FORMAT_DEFAULT;

$IMAGE_FORMAT_DEFAULT   = IMAGE_FORMAT_PNG;


cheers



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#497054: zabbix-conf.php

2008-08-29 Thread João Carneiro
there is also another problem:

note that the this procedure also generates an invalid config file for
zabbix, here you have the generated by package installation (commented
section) and bellow the expected and functional part.







-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#497054: zabbix-frontend-php: install through dbiconfig does not create mysql user

2008-08-29 Thread João Carneiro
Package: zabbix-frontend-php
Version: 1:1.4.6-1
Severity: important


the configuration through dbiconfig does not create a mysql user for the 
frontend to use.
i was using a mysql user for the zabbix server and another for the frontend to 
access the database.

cheers

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

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

Versions of packages zabbix-frontend-php depends on:
ii  apache2-mpm-prefork [httpd]   2.2.9-7Apache HTTP Server - traditional n
ii  dbconfig-common   1.8.39 common framework for packaging dat
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  php5  5.2.6-3server-side, HTML-embedded scripti
ii  php5-gd   5.2.6-3GD module for php5
ii  php5-mysql5.2.6-3MySQL module for php5
ii  ucf   3.007  Update Configuration File: preserv

Versions of packages zabbix-frontend-php recommends:
ii  mysql-server  5.0.51a-12 MySQL database server (metapackage
ii  mysql-server-5.0 [mysql-serve 5.0.51a-12 MySQL database server binaries
ii  zabbix-server-mysql   1:1.4.6-1  software for monitoring of your ne

zabbix-frontend-php suggests no packages.

-- debconf information:
  zabbix-frontend-php/remote/port:
  zabbix-frontend-php/remote/host:
  zabbix-frontend-php/pgsql/admin-user: postgres
* zabbix-frontend-php/database-type: mysql
  zabbix-frontend-php/dbconfig-upgrade: true
  zabbix-frontend-php/dbconfig-remove:
  zabbix-frontend-php/pgsql/no-empty-passwords:
  zabbix-frontend-php/db/basepath:
  zabbix-frontend-php/internal/reconfiguring: false
* zabbix-frontend-php/db/app-user: zabbix-frontend
  zabbix-frontend-php/install-error: abort
  zabbix-frontend-php/missing-db-package-error: abort
  zabbix-frontend-php/pgsql/method: unix socket
  zabbix-frontend-php/pgsql/authmethod-user:
  zabbix-frontend-php/remote/newhost:
  zabbix-frontend-php/mysql/admin-user: root
* zabbix-frontend-php/mysql/method: unix socket
  zabbix-frontend-php/upgrade-error: abort
  zabbix-frontend-php/upgrade-backup: true
* zabbix-frontend-php/restart-webserver: true
  zabbix-frontend-php/passwords-do-not-match:
  zabbix-frontend-php/pgsql/manualconf:
  zabbix-frontend-php/dbconfig-install: true
* zabbix-frontend-php/db/dbname: zabbix
  zabbix-frontend-php/remove-error: abort
  zabbix-frontend-php/pgsql/changeconf: false
* zabbix-frontend-php/reconfigure-webserver: apache2
  zabbix-frontend-php/dbconfig-reinstall: false
  zabbix-frontend-php/purge: false
  zabbix-frontend-php/pgsql/authmethod-admin: ident
  zabbix-frontend-php/internal/skip-preseed: false



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#497053: zabbix-frontend-php: php5-mysql was not installed on the server in spite of beying needed and on the dependencies list

2008-08-29 Thread João Carneiro
Package: zabbix-frontend-php
Version: 1:1.4.6-1
Severity: normal


if zabbix-server-mysql is installed it should install php5-mysql, if 
zabbix-server-pgsql is installed it should install php5-pgsql.

if the frontend is not php version specific i guess it could also come down to 
version 4.

cheers

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

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

Versions of packages zabbix-frontend-php depends on:
ii  apache2-mpm-prefork [httpd]   2.2.9-7Apache HTTP Server - traditional n
ii  dbconfig-common   1.8.39 common framework for packaging dat
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  php5  5.2.6-3server-side, HTML-embedded scripti
ii  php5-gd   5.2.6-3GD module for php5
ii  ucf   3.007  Update Configuration File: preserv

Versions of packages zabbix-frontend-php recommends:
ii  mysql-server  5.0.51a-12 MySQL database server (metapackage
ii  mysql-server-5.0 [mysql-serve 5.0.51a-12 MySQL database server binaries
ii  zabbix-server-mysql   1:1.4.6-1  software for monitoring of your ne

zabbix-frontend-php suggests no packages.

-- debconf information:
  zabbix-frontend-php/remote/port:
  zabbix-frontend-php/remote/host:
  zabbix-frontend-php/pgsql/admin-user: postgres
* zabbix-frontend-php/database-type: mysql
  zabbix-frontend-php/dbconfig-upgrade: true
  zabbix-frontend-php/dbconfig-remove:
  zabbix-frontend-php/pgsql/no-empty-passwords:
  zabbix-frontend-php/db/basepath:
  zabbix-frontend-php/internal/reconfiguring: false
* zabbix-frontend-php/db/app-user: zabbix-frontend
  zabbix-frontend-php/install-error: abort
  zabbix-frontend-php/missing-db-package-error: abort
  zabbix-frontend-php/pgsql/method: unix socket
  zabbix-frontend-php/pgsql/authmethod-user:
  zabbix-frontend-php/remote/newhost:
  zabbix-frontend-php/mysql/admin-user: root
* zabbix-frontend-php/mysql/method: unix socket
  zabbix-frontend-php/upgrade-error: abort
  zabbix-frontend-php/upgrade-backup: true
* zabbix-frontend-php/restart-webserver: true
  zabbix-frontend-php/passwords-do-not-match:
  zabbix-frontend-php/pgsql/manualconf:
  zabbix-frontend-php/dbconfig-install: true
* zabbix-frontend-php/db/dbname: zabbix
  zabbix-frontend-php/remove-error: abort
  zabbix-frontend-php/pgsql/changeconf: false
* zabbix-frontend-php/reconfigure-webserver: apache2
  zabbix-frontend-php/dbconfig-reinstall: false
  zabbix-frontend-php/purge: false
  zabbix-frontend-php/pgsql/authmethod-admin: ident
  zabbix-frontend-php/internal/skip-preseed: false



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#483202: gfortran: gdb sees debugging symbols depending on source filename

2008-05-27 Thread João Batista

Subject: gfortran: gdb sees debugging symbols depending on source filename
Package: gfortran
Version: 4:4.1.1-15
Severity: minor

*** Please type your report below this line ***
Depending on how the Fortran source files are named, gdb may or may not find 
the debugging symbols when doing a "list".
Example:

[EMAIL PROTECTED]:~$ cat teste.f
program teste
stop
end program
[EMAIL PROTECTED]:~$ gfortran -g teste.f -o teste
[EMAIL PROTECTED]:~$ gdb teste
GNU gdb 6.4.90-debian
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu"...Using host libthread_db library 
"/lib/libthread_db.so.1".

(gdb) list
1   ../sysdeps/x86_64/elf/start.S: Arquivo ou diretório não encontrado.
in ../sysdeps/x86_64/elf/start.S
(gdb) quit
[EMAIL PROTECTED]:~$ mv teste.f teste.f90
[EMAIL PROTECTED]:~$ gfortran -g teste.f90 -o teste
[EMAIL PROTECTED]:~$ gdb teste
GNU gdb 6.4.90-debian
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu"...Using host libthread_db library 
"/lib/libthread_db.so.1".

(gdb) list
1   program teste
2   stop
3   end program
(gdb) quit
[EMAIL PROTECTED]:~$


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (800, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22-3-amd64
Locale: LANG=pt_PT.UTF-8, LC_CTYPE=pt_PT.UTF-8 (charmap=UTF-8)

Versions of packages gfortran depends on:
ii  cpp   4:4.1.1-15 The GNU C preprocessor (cpp)
ii  gcc   4:4.1.1-15 The GNU C compiler
ii  gfortran-4.1  4.1.1-21   The GNU Fortran 95 compiler
ii  gdb   6.4.90.dfsg-1  The GNU Debugger

gfortran recommends no packages.

-- no debconf information

_
Receba GRÁTIS as mensagens do Messenger no seu celular quando você estiver 
offline. Conheça  o MSN Mobile!
http://mobile.live.com/signup/signup2.aspx?lc=pt-br


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#475123: zope-psycopgda2: Can't get the zope sql object connected through the ZMI

2008-04-09 Thread João Victor Duarte Martins
Package: zope-psycopgda2
Version: 2.0.6-3
Severity: grave
Justification: renders package unusable


If you use the ZMI to create a SQL Psycopg Connection object and try
to use it (by opening a connection) you'll get an error and a message
saying:

> An error was encountered while publishing this resource.
> 
> Error Type: OperationalError
> Error Value: can't set encoding to 

Clearly the add interface generated for the ZMI is not presenting the
'encoding' property to be set, and since the Connection object in the
source needs that property and the default is an empty string (as we
can see in the excerpt below) the object raise an error.



class Connection(Shared.DC.ZRDB.Connection.Connection):
"""ZPsycopg Connection."""
_isAnSQLConnection = 1

id= 'Psycopg2_database_connection' 
database_type = 'Psycopg2'
meta_type = title = 'Z Psycopg 2 Database Connection'
icon  = 'misc_/conn'

def __init__(self, id, title, connection_string,
 zdatetime, check=None, tilevel=2, encoding=''):
self.zdatetime = zdatetime
self.id = str(id)
self.edit(title, connection_string, zdatetime,
  check=check, tilevel=tilevel, encoding=encoding)
   



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

Kernel: Linux 2.6.22-3-k7 (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/bash

Versions of packages zope-psycopgda2 depends on:
ii  python-psycopg2   2.0.6-3Python module for PostgreSQL
ii  zope-common   0.5.41 common settings and scripts for Zo
ii  zope2.10  2.10.5-3   Open Source Web Application Server

zope-psycopgda2 recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#462814: [pkg-mono-group] Bug#462814: mono-xsp2: xsp2 can't read configuration

2008-02-24 Thread João Paulo Pinto Trindade
Hi,

I've updated my system and the problem disapeared.

It now works out of the box.It really should have been some older
version of mono installed.

Sorry for the "fake" bug and thanks for the work on xsp2.

Mirco Bauer wrote:
> tags 462814 + unreproducible moreinfo
> thanks
> 
> [EMAIL PROTECTED]:~$ diff /etc/mono/2.0/machine.config machine.config 
> [EMAIL PROTECTED]:~$ xsp2
> xsp2
> Listening on port: 8080 (non-secure)
> Listening on address: 0.0.0.0
> Root directory: /home/meebey
> Hit Return to stop the server.
> 
> As you can see your machine.config is the same as mine (as shipped by
> the package).
> xsp2 works fine for me. I suspect you mixed different versions of mono
> and xsp. Run this and give me the output of it:
> dpkg -l|grep mono
> 

-- 
João Trindade  <[EMAIL PROTECTED]>
WWW: http://joaotrindade.no-ip.org




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#452436: octaviz: examples do not run because of line vtk_init

2007-11-22 Thread João Franco
Package: octaviz
Version: 0.4.5-5
Severity: grave
Justification: renders package unusable



-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21.3-slh64-smp-4 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=pt_PT.UTF-8, LC_CTYPE=pt_PT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages octaviz depends on:
ii  atlas3-base [liblap 3.6.0-20.6   Automatically Tuned Linear Algebra
ii  lapack3 [liblapack. 3.0.2531a-6.1library of linear algebra routines
ii  libc6   2.7-0exp8+c0.sidux.1 GNU C Library: Shared libraries
ii  libfftw3-3 [fftw3]  3.1.2-3  library for computing Fast Fourier
ii  libgcc1 1:4.2.2-3GCC support library
ii  libgfortran14.1.2-17 Runtime library for GNU Fortran ap
ii  libhdf5-serial-1.6. 1.6.5-5+b1   Hierarchical Data Format 5 (HDF5)
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libncurses5 5.6+20071103-1   Shared libraries for terminal hand
ii  libreadline55.2-3GNU readline and history libraries
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.2-3  The GNU Standard C++ Library v3
ii  libvtk5 5.0.3-1  Visualization Toolkit - A high lev
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  octave2.1   1:2.1.73-13  GNU Octave language for numerical
ii  refblas3 [libblas.s 1.2-8Basic Linear Algebra Subroutines 3
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

octaviz recommends no packages.

-- no debconf information

NOTE: Runnig on linux SIDUX
Output of running example
octave:3> vtk_demo
error: /usr/lib/octaviz/liboctaviz.so: undefined symbol:
_ZNK17octave_base_value 6resizeERK10dim_vector
error: called from `vtk_demo' in file
`/usr/share/doc/octaviz/examples/vtk_demo. m'

I USE WEBMAIL GMAIL AND I DO NOT KNOW  IF I CONFIGURED REPORTBUG TO
SEND MAIL, SO I ATTACH THE COMPLETE REPORT BUG. DUPLICATE?


octaviz.bug
Description: Binary data


Bug#452136: bacula: MTX script fails in Dell PV124T - terminated with signal 15.

2007-11-20 Thread João Sousa
Package: bacula
Version: 2.2.5-1
Severity: important

*** Please type your report below this line ***

Using the btape testing program, the testing of the autochanger Dell PV124T 
with an LTO-3 drive failed. As far as I could tell, the mtx control script 
was timing out and being killed with a signal 15.

Upon inspection of the bacula mtx script (/etc/bacula/scripts/mtx-changer) I 
found that the problem lies in the function wait_for_drive(). The loop in the 
function checks to see when the drive is available by matching 'ONLINE' on 
the output of mt -f /dev/nst0  status. 

In my system, ONLINE never appears in status, instead it lists the following 
when the tape is available in the drive and hangs/errors otherwise.

# mt -f /dev/nst0 status
drive type = 114
drive status = 1140850688
sense key error = 0
residue count = 0
file number = 0
block number = 0

removing the pipe to grep solved the problem and the tape and changer passed 
the test. At this point I am still testing bacula, so I have no idea of the 
impact of this change in aditional functionality.

Thank you very much
    João Sousa

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

Kernel: Linux 2.6.22-2-686 (SMP w/1 CPU core)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages bacula depends on:
ii  bacula-client 2.2.5-1Network backup, recovery and 
verif
ii  bacula-server 2.2.5-1Network backup, recovery and 
verif

bacula recommends no packages.

-- no debconf information

-- 






Bug#420708: kernel-patch-openvz: Kernel with applied patch sometimes reports kernel bug at drivers/cpufreq/cpufreq_userspace.c:138

2007-04-25 Thread João Sousa
Hello,
I patched the kernel successfully with the switches -p1 -l. 
The kernel compiled fine and the cpu can switch frequencies as far as I = can 
tell by looking into /sys and from lines like this in dmesg:
userspace: saving cpu_cur_freq of cpu 0 to be 200 kHz
cpufreq-core: target for CPU 0: 30 kHz, relation 0
freq-table: request for target 30 kHz (relation: 0) for cpu 0
printk: 6 messages suppressed.
cpufreq-core: target for CPU 1: 200 kHz, relation 1
freq-table: request for target 200 kHz (relation: 1) for cpu 1
freq-table: target is 0 (200 kHz, 3116)
speedstep-centrino: target=3D200kHz old=3D100 new=3D200 msr= =3D0c2c
I did about half a dozen reboots using the battery and currently the lap= top 
has an uptime of 5h with no oops, so I can report that at least the pro= 
bability has decreased with the patch you gave me. 
I'll keep running the kernel with the debug switch for some more time. T= ell 
me if you need anything more.
Thanks a lot for being so helpfull,
Jo=C3=A3o Sousa.
On Wednesday 25 April 2007 13:20, you wrote:
> On Wed, Apr 25, 2007 at 04:18:16PM +0400, Alexey Dobriyan wrote:
> > Try this patch with usual config and usual set of kernel boot = options.
>
> Be sure you can actually able to change frequencies :)
-- 

Bug#420708: kernel-patch-openvz: Kernel with applied patch sometimes reports kernel bug at drivers/cpufreq/cpufreq_userspace.c:138

2007-04-25 Thread João Sousa

I have only noticed the oops when running an openvz patched kernel. It does 
not happen always, it is more frequent during boot and when operating on 
battery. Some months ago, it would happen everyboot. 

Sorry for not reporting it then, but I was just curious of the patch and 
thougt that it was me missmatching debian testing kernels with the patch.

JS

On Wednesday 25 April 2007 11:56, Ola Lundqvist wrote:
> Hi
>
> Just want to check. This problem do not happen with an unmodified
> version of the kernel?
>
> Regards,
>
> // Ola
>
> On Wed, Apr 25, 2007 at 11:31:57AM +0100, João Sousa wrote:
> > On Tuesday 24 April 2007 13:39, Alexey Dobriyan wrote:
> > > Please, rebuild kernel with CONFIG_CPU_FREQ_DEBUG=y option
> > > (right after "CPU Frequency scaling"), boot kernel with cpufreq.debug=7
> > > option and post full "dmesg" output when oops occurs.
> >
> > Here it is. I took a couple of tries to get the bug. It seems to be most
> > probable during boot while using the battery of the laptop.
> >
> > The laptop is a 32bit black macbook.
> >
> > Linux version 2.6.18+openvz (Version: custom01) ([EMAIL PROTECTED]) (gcc 
> > version
> > 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #3 SMP Tue Apr 24 15:24:32
> > WEST 2007
> > BIOS-provided physical RAM map:
> >  BIOS-e820:  - 0009fc00 (usable)
> >  BIOS-e820: 0009fc00 - 000a (reserved)
> >  BIOS-e820: 000ede00 - 0010 (reserved)
> >  BIOS-e820: 0010 - 7e0d (usable)
> >  BIOS-e820: 7e0d - 7e2d1000 (ACPI NVS)
> >  BIOS-e820: 7e2d1000 - 7eebf000 (ACPI data)
> >  BIOS-e820: 7eebf000 - 7eeef000 (ACPI NVS)
> >  BIOS-e820: 7eeef000 - 7ef0 (ACPI data)
> >  BIOS-e820: 7ef0 - 8000 (reserved)
> >  BIOS-e820: e000 - f000 (reserved)
> >  BIOS-e820: fec0 - fec01000 (reserved)
> >  BIOS-e820: fed14000 - fed1a000 (reserved)
> >  BIOS-e820: fed1c000 - fed2 (reserved)
> >  BIOS-e820: fee0 - fee01000 (reserved)
> >  BIOS-e820: ffe0 - 0001 (reserved)
> > 1120MB HIGHMEM available.
> > 896MB LOWMEM available.
> > On node 0 totalpages: 516304
> >   DMA zone: 4096 pages, LIFO batch:0
> >   Normal zone: 225280 pages, LIFO batch:31
> >   HighMem zone: 286928 pages, LIFO batch:31
> > DMI 2.4 present.
> > ACPI: RSDP (v002 APPLE ) @ 0x000fe020
> > ACPI: XSDT (v001 APPLE   Apple00 0x0061  0x0113) @ 0x7eefd120
> > ACPI: FADT (v003 APPLE   Apple00 0x0061 Loki 0x005f) @ 0x7eefb000
> > ACPI: HPET (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eefa000
> > ACPI: MADT (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef9000
> > ACPI: MCFG (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef8000
> > ACPI: ASF! (v032 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef7000
> > ACPI: SBST (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef6000
> > ACPI: ECDT (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef5000
> > ACPI: SSDT (v001 APPLE   SataPri 0x1000 INTL 0x20050309) @ 0x7eebc000
> > ACPI: SSDT (v001 APPLE   SataSec 0x1000 INTL 0x20050309) @ 0x7eebb000
> > ACPI: SSDT (v001 APPLE CpuPm 0x3000 INTL 0x20050309) @ 0x7eeef000
> > ACPI: DSDT (v001 APPLE   MacBook 0x00010001 INTL 0x20050309) @ 0x
> > ACPI: PM-Timer IO Port: 0x408
> > ACPI: Local APIC address 0xfee0
> > ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> > Processor #0 6:14 APIC version 20
> > ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
> > Processor #1 6:14 APIC version 20
> > ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
> > ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
> > ACPI: IOAPIC (id[0x01] address[0xfec0] gsi_base[0])
> > IOAPIC[0]: apic_id 1, version 32, address 0xfec0, GSI 0-23
> > ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> > ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> > ACPI: IRQ0 used by override.
> > ACPI: IRQ2 used by override.
> > ACPI: IRQ9 used by override.
> > Enabling APIC mode:  Flat.  Using 1 I/O APICs
> > ACPI: HPET id: 0x8086a201 base: 0xfed0
> > Using ACPI (MADT) for SMP configuration information
> > Allocating PCI resources starting at 8800 (gap: 8000:6000)
> > Detected 2129.943 MHz processor.
> > Built 1 zonelists.  Total pages: 516304
&

Bug#420708: kernel-patch-openvz: Kernel with applied patch sometimes reports kernel bug at drivers/cpufreq/cpufreq_userspace.c:138

2007-04-25 Thread João Sousa
On Tuesday 24 April 2007 13:39, Alexey Dobriyan wrote:
> Please, rebuild kernel with CONFIG_CPU_FREQ_DEBUG=y option
> (right after "CPU Frequency scaling"), boot kernel with cpufreq.debug=7
> option and post full "dmesg" output when oops occurs.

Here it is. I took a couple of tries to get the bug. It seems to be most 
probable during boot while using the battery of the laptop.

The laptop is a 32bit black macbook.

Linux version 2.6.18+openvz (Version: custom01) ([EMAIL PROTECTED]) (gcc 
version 
4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #3 SMP Tue Apr 24 15:24:32 
WEST 2007
BIOS-provided physical RAM map:
 BIOS-e820:  - 0009fc00 (usable)
 BIOS-e820: 0009fc00 - 000a (reserved)
 BIOS-e820: 000ede00 - 0010 (reserved)
 BIOS-e820: 0010 - 7e0d (usable)
 BIOS-e820: 7e0d - 7e2d1000 (ACPI NVS)
 BIOS-e820: 7e2d1000 - 7eebf000 (ACPI data)
 BIOS-e820: 7eebf000 - 7eeef000 (ACPI NVS)
 BIOS-e820: 7eeef000 - 7ef0 (ACPI data)
 BIOS-e820: 7ef0 - 8000 (reserved)
 BIOS-e820: e000 - f000 (reserved)
 BIOS-e820: fec0 - fec01000 (reserved)
 BIOS-e820: fed14000 - fed1a000 (reserved)
 BIOS-e820: fed1c000 - fed2 (reserved)
 BIOS-e820: fee0 - fee01000 (reserved)
 BIOS-e820: ffe0 - 0001 (reserved)
1120MB HIGHMEM available.
896MB LOWMEM available.
On node 0 totalpages: 516304
  DMA zone: 4096 pages, LIFO batch:0
  Normal zone: 225280 pages, LIFO batch:31
  HighMem zone: 286928 pages, LIFO batch:31
DMI 2.4 present.
ACPI: RSDP (v002 APPLE ) @ 0x000fe020
ACPI: XSDT (v001 APPLE   Apple00 0x0061  0x0113) @ 0x7eefd120
ACPI: FADT (v003 APPLE   Apple00 0x0061 Loki 0x005f) @ 0x7eefb000
ACPI: HPET (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eefa000
ACPI: MADT (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef9000
ACPI: MCFG (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef8000
ACPI: ASF! (v032 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef7000
ACPI: SBST (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef6000
ACPI: ECDT (v001 APPLE   Apple00 0x0001 Loki 0x005f) @ 0x7eef5000
ACPI: SSDT (v001 APPLE   SataPri 0x1000 INTL 0x20050309) @ 0x7eebc000
ACPI: SSDT (v001 APPLE   SataSec 0x1000 INTL 0x20050309) @ 0x7eebb000
ACPI: SSDT (v001 APPLE CpuPm 0x3000 INTL 0x20050309) @ 0x7eeef000
ACPI: DSDT (v001 APPLE   MacBook 0x00010001 INTL 0x20050309) @ 0x
ACPI: PM-Timer IO Port: 0x408
ACPI: Local APIC address 0xfee0
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 6:14 APIC version 20
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Processor #1 6:14 APIC version 20
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: IOAPIC (id[0x01] address[0xfec0] gsi_base[0])
IOAPIC[0]: apic_id 1, version 32, address 0xfec0, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Enabling APIC mode:  Flat.  Using 1 I/O APICs
ACPI: HPET id: 0x8086a201 base: 0xfed0
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 8800 (gap: 8000:6000)
Detected 2129.943 MHz processor.
Built 1 zonelists.  Total pages: 516304
Kernel command line: BOOT_IMAGE=LinuxCPUDB=7 ro root=803 lpj=800 
cpufreq.debug=7
mapped APIC to d000 (fee0)
mapped IOAPIC to c000 (fec0)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 16384 bytes)
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 2037852k/2065216k available (1540k kernel code, 26160k reserved, 611k 
data, 204k init, 1147712k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
hpet0: at MMIO 0xfed0 (virtual 0xf880), IRQs 2, 8, 0
hpet0: 3 64-bit timers, 14318180 Hz
Using HPET for base-timer
Calibrating delay loop (skipped)... 4000.00 BogoMIPS preset
Mount-cache hash table entries: 512
CPU: After generic identify, caps: bfe9fbff 0010   
c1a9  
CPU: After vendor identify, caps: bfe9fbff 0010   c1a9 
 
monitor/mwait feature present.
using mwait in idle threads.
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 2048K
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
CPU: After all inits, caps: bfe9fbff 0010  0140 c1a9 
 
Intel machin

Bug#420708: kernel-patch-openvz: Kernel with applied patch sometimes reports kernel bug at drivers/cpufreq/cpufreq_userspace.c:138

2007-04-24 Thread João Sousa

Package: kernel-patch-openvz
Version: 028.18.1
Severity: important


-- System Information:
Debian Release: lenny/sid
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 'testing')
Architecture: i386 (i686)

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

Versions of packages kernel-patch-openvz depends on:
ii  bash  3.1dfsg-8  The GNU Bourne Again SHell
ii  grep-dctrl2.9.3  Grep Debian package information - 
ii  patch 2.5.9-4Apply a diff file to an original

kernel-patch-openvz recommends no packages.

-- no debconf information

This occurs sometimes during boot. I notice the bug when I log into KDE and 
get a message stating that the dbus system is not started. VZ init.d script 
is disabled and no virtual systems are during system boot.

This is the report in dmesg:

[ cut here ]
kernel BUG at drivers/cpufreq/cpufreq_userspace.c:138!
invalid opcode:  [#1]
SMP
Modules linked in: cpufreq_ondemand cpufreq_userspace cpufreq_powersave 
speedstep_centrino freq_table rfcomm l2cap bluetooth ppdev parport_pc lp 
parport button ac battery xt_mac xt_tcpudp ip6table_filter ip6_tables 
xt_state xt_pkttype iptable_raw xt_CLASSIFY xt_CONNMARK xt_MARK xt_length 
xt_connmark xt_physdev bridge xt_policy xt_multiport xt_conntrack 
iptable_mangle ipt_ULOG ipt_TTL ipt_ttl ipt_TOS ipt_tos ipt_TCPMSS ipt_SAME 
ipt_REJECT ipt_REDIRECT ipt_recent ipt_owner ipt_NETMAP ipt_MASQUERADE 
ipt_LOG ipt_iprange ipt_hashlimit ipt_ECN ipt_ecn ipt_DSCP ipt_dscp 
ipt_CLUSTERIP ipt_ah ipt_addrtype ip_nat_irc ip_nat_tftp ip_nat_ftp 
ip_conntrack_irc ip_conntrack_tftp ip_conntrack_ftp iptable_nat ip_nat 
ip_conntrack nfnetlink iptable_filter ip_tables x_tables dummy ipv6 nls_utf8 
hfsplus dm_snapshot dm_mirror dm_mod fuse sbp2 loop snd_hda_intel 
snd_hda_codec snd_pcm_oss snd_mixer_oss snd_pcm snd_timer i2c_i801 rtc snd 
wlan_scan_sta intel_agp agpgart i2c_core pcspkr ath_rate_sample ath_pci wlan 
sky2 uvcvideo videodev v4l1_compat v4l2_common soundcore snd_page_alloc 
ath_hal joydev tsdev evdev eth1394 ext3 jbd mbcache ide_generic usb_storage 
sd_mod usbhid ide_cd cdrom ata_piix libata scsi_mod ohci1394 ieee1394 piix 
generic ide_core uhci_hcd ehci_hcd usbcore thermal processor fan
CPU:1, VCPU: 0.0
EIP:0060:[]Tainted:  P  VLI
EFLAGS: 00010246   (2.6.18vz001 #2)
EIP is at cpufreq_governor_userspace+0x3e/0x13f [cpufreq_userspace]
eax:    ebx: f6bfb880   ecx: ffea   edx: 
esi:    edi: ffea   ebp: f6bfb880   esp: f6635e2c
ds: 007b   es: 007b   ss: 0068
Process powersaved (pid: 18562, veid: 0, ti=f6634000 task=f7f74df0 
task.ti=f6634000)
Stack: f6bfb880 0001 c02155f9 f6635e60  c02e08e0 c0215740 f9293d40
   f6bfb8ac f6bfb880 f6635f2c c0216080 000a 0001 0002 
   001e8480 000f4240 2710 000f4240 001e8480   f9293d40
 Call Trace:
 [] __cpufreq_governor+0x3f/0xb9
 [] __cpufreq_set_policy+0xcd/0x100
 [] store_scaling_governor+0x13e/0x17d
 [] handle_update+0x0/0x5
 [] cfq_kick_queue+0x7c/0x80
 [] store_scaling_governor+0x0/0x17d
 [] store+0x2e/0x3e
 [] sysfs_write_file+0x91/0xb9
 [] sysfs_write_file+0x0/0xb9
 [] vfs_write+0x83/0x125
 [] sys_write+0x3c/0x9e
 [] syscall_call+0x7/0xb
Code: 0f 84 c4 00 00 00 31 c9 4a 0f 85 18 01 00 00 0f a3 35 10 96 31 c0 19 c0 
b9 ea ff ff ff 85 c0 0f 84 02 01 00 00 83 7b 20 00 75 0b <0f> 0b 66 b8 8a 00 
b8 0a 32 29 f9 b8 60 3d 29 f9 e8 d3 c0 fe c6
EIP: [] cpufreq_governor_userspace+0x3e/0x13f [cpufreq_userspace] 
SS:ESP 0068:f6635e2c
[drm] Initialized drm 1.0.1 20051102

-- 




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#414950: Package collision? libezv24 and libezv24-0

2007-03-14 Thread João Batista
Package: libezv24
Version: 0.1.1-2
Severity: normal

Packages libezv24 and libezv24-0 in Debian unstable collide. libezv24 is 
required by package leif whereas libezv24-0 is required by package cobex. When 
libez24 and leif are installed, installing cobex produces the error: 

dpkg: error processing /var/cache/apt/archives/libezv24-0_0.1.1-1_i386.deb 
(--unpack):
 trying to overwrite `/usr/lib/libezV24.so.0.1', which is also in package 
libezv24

The following dependecies resolution are described by apt:
The following packages have unmet dependencies:
  cobex: Depends: libezv24-0 but it is not going to be installed
  leif: Depends: libezv24 but it is not going to be installed
Depends: libezv24 but it is not going to be installed

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.20.1-slh-up-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages libezv24 depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries

libezv24 recommends no packages.

-- debconf-show failed


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#403048: linux-wlan-ng: init deprecation warning for 85-linux-wlan-ng.rules

2006-12-14 Thread João Batista
Package: linux-wlan-ng
Version: 0.2.6+svn20061108-1
Severity: normal

In Debian sid with kernel 2.6.18 (non-vanilla, version is 2.6.18-kanotix-1) 
at boot time (after INIT starts), this message is displayed in the console:

udev: add_to_rules: PHYSDEV* values are deprecated and will be removed from a 
future kernel, please fix it in /etc/udev/rules/85-linux-wlan-ng.rules.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-kanotix-1
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages linux-wlan-ng depends on:
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries
ii  udev 0.103-1 /dev/ and hotplug management daemo
ii  wireless-tools   28-1Tools for manipulating Linux Wirel

Versions of packages linux-wlan-ng recommends:
pn  linux-wlan-ng-doc  (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#398052: castor-rtcopy-client: can't install: conflict with iproute

2006-11-11 Thread João Batista
Package: castor-rtcopy-client
Severity: important

Error during installation of castor-rtcopy-client:

Unpacking castor-rtcopy-client (from 
.../castor-rtcopy-client_1.7.1.5-1_i386.deb) ...
dpkg: error processing 
/var/cache/apt/archives/castor-rtcopy-client_1.7.1.5-1_i386.deb (--unpack):
 trying to overwrite `/usr/bin/rtstat', which is also in package iproute
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/castor-rtcopy-client_1.7.1.5-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-kanotix-1
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

ii  iproute  20061002-2   Professional tools to 
control the networking in Linux kernels


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#396517: cosmetics: startup window's name says "icon", not "OpenOffice.org 2"

2006-11-01 Thread João Batista
Package: openoffice.org
Version: 2.0.4-5
Severity: minor

(This was observed in icewm WindowManager.)
The startup window of OpenOffice.org shows the text "icon" for the
window's taskbar tab. It would be nice, in terms of cosmetics, to have
it say "OpenOffice.org 2" (for example) instead.
Also, to have window icon defined for ooffice (e.g. the seagulls icon)
as it is for the windows of oowriter, oocalc, ooimpress, etc.


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-kanotix-1
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages openoffice.org depends on:
ii  openoffice.org-base   2.0.4-5OpenOffice.org office suite - data
ii  openoffice.org-calc   2.0.4-5OpenOffice.org office suite - spre
ii  openoffice.org-core   2.0.4-5OpenOffice.org office suite archit
ii  openoffice.org-draw   2.0.4-5OpenOffice.org office suite - draw
ii  openoffice.org-impress2.0.4-5OpenOffice.org office suite - pres
ii  openoffice.org-java-common2.0.4-5OpenOffice.org office suite Java s
ii  openoffice.org-math   2.0.4-5OpenOffice.org office suite - equa
ii  openoffice.org-writer 2.0.4-5OpenOffice.org office suite - word

openoffice.org recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#394069: wish: button to remove User Image

2006-10-19 Thread João Batista
Package: kcontrol
Version: 4:3.5.5a-2
Severity: wishlist

The Password and User Account module of Kcontrol has the ability to
select a user image, but no button exists to reset/remove the current
image for the user (it has to be done manually by deleting the file
$HOME/.face.icon ).

A "Clear" button to reset the image to a blank (and remove
$HOME/.face.icon) would be a good idea IMHO.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-kanotix-1
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages kcontrol depends on:
ii  kdebase-data   4:3.5.5a-2shared data files for the KDE base
ii  kdelibs4c2a4:3.5.5a.dfsg.1-1 core libraries and binaries for al
ii  kicker 4:3.5.5a-2desktop panel for KDE
ii  libacl12.2.41-1  Access control list shared library
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libattr1   2.4.32-1  Extended attribute shared library
ii  libaudio2  1.8-2 The Network Audio System (NAS). (s
ii  libc6  2.3.6.ds1-6   GNU C Library: Shared libraries
ii  libfam02.7.0-11  Client library to control the FAM 
ii  libfontconfig1 2.4.1-2   generic font configuration library
ii  libfontenc11:1.0.2-2 X11 font encoding library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libgcc11:4.1.1-16GCC support library
ii  libgl1-mesa-glx [libgl 6.5.1-0.2 A free implementation of the OpenG
ii  libglu1-mesa [libglu1] 6.5.1-0.2 The OpenGL utility library (GLU)
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libidn11   0.6.5-1   GNU libidn library, implementation
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.8rel-7PNG library - runtime
ii  libqt3-mt  3:3.3.6-4 Qt GUI Library (Threaded runtime v
ii  libraw1394-8   1.2.1-2   library for direct access to IEEE 
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libssl0.9.80.9.8c-3  SSL shared libraries
ii  libstdc++6 4.1.1-16  The GNU Standard C++ Library v3
ii  libusb-0.1-4   2:0.1.12-2userspace USB programming library
ii  libx11-6   2:1.0.3-2 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxi6 1:1.0.1-3 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  libxtst6   1:1.0.1-5 X11 Testing -- Resource extension 
ii  usbutils   0.72-7USB console utilities
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages kcontrol recommends:
ii  udev  0.100-2.1  /dev/ and hotplug management daemo

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#392553: vim-gtk: incorrect buffer number shown in gvim window titlebar

2006-10-12 Thread João Batista
Package: vim-gtk
Version: 1:7.0-094+1
Severity: minor

Vim/Gvim is not reporting the correct buffer number (when editting multiple
files) in the window's titlebar. It remains as "(1 of n)" (where n is
the number of edited files, which is reported correctly) throughout
switching the buffer number to be edited.

Steps to reproduce the problem:
1) vim input1 input2 input3
   Vim starts up on the "input1" file. The titlebar reads:
"input1 (~) (1 of 3) - VIM"
2) Switch to the next buffer, either with ":b2" or ":bn"
   The titlebar now reads:
"input2 (~) ((1) of 3) - VIM"
3) Cicle through the buffers until the first one. The titlebar now
   reads:
"input1 (~) (1 of 3) - VIM"

Note however, the titlebar is sensible to info from Vim, since the "+"
sign for a changed file appears if changes are done in the file (as it
should happen).

This was observed in the IceWM/unstable window manager.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-kanotix-1
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages vim-gtk depends on:
ii  libatk1.0-0  1.12.3-1The ATK accessibility toolkit
ii  libc62.3.6.ds1-5 GNU C Library: Shared libraries
ii  libcairo21.2.4-1 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.4.1-2 generic font configuration library
ii  libglib2.0-0 2.12.4-1The GLib library of C routines
ii  libgpmg1 1.19.6-22   General Purpose Mouse - shared lib
ii  libgtk2.0-0  2.8.20-2The GTK+ graphical user interface 
ii  libice6  1:1.0.1-2   X11 Inter-Client Exchange library
ii  libncurses5  5.5-4   Shared libraries for terminal hand
ii  libpango1.0-01.14.4-2Layout and rendering of internatio
ii  libsm6   1:1.0.1-3   X11 Session Management library
ii  libx11-6 2:1.0.0-9   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxfixes3   1:4.0.1-4   X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.1-3   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.1-3   X Rendering Extension client libra
ii  libxt6   1:1.0.2-2   X11 toolkit intrinsics library
ii  vim-common   1:7.0-094+1 Vi IMproved - Common files
ii  vim-gui-common   1:7.0-094+1 Vi IMproved - Common GUI files
ii  vim-runtime  1:7.0-094+1 Vi IMproved - Runtime files

vim-gtk recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#390639: gfortran configure: failed to upgrade due to Permission denied error

2006-10-02 Thread João Batista
Package: gfortran
Version: 4:4.1.1-9
Severity: important

Last upgrade of gfortran in sid was prevented due to the following
errors (one for g77 is included, other packages are not referenced):


Setting up g77 (3.4.6-13) ...
/var/lib/dpkg/info/g77.postinst: line 12: /usr/share/man/man1/g77.1.gz:
No such file or directory
dpkg: error processing g77 (--configure):
 subprocess post-installation script returned error exit status 1
..
..
..
Setting up gfortran (4.1.1-9) ...
/var/lib/dpkg/info/gfortran.postinst: line 5: 
/usr/share/man/man1/gfortran.1.gz: Permission denied
dpkg: error processing gfortran (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 g77
..
..
..
 gfortran


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages gfortran depends on:
ii  cpp   4:4.1.1-9  The GNU C preprocessor (cpp)
ii  gcc   4:4.1.1-9  The GNU C compiler
ii  gfortran-4.1  4.1.1-15   The GNU Fortran 95 compiler

gfortran recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#389919: icewm: 'iconic' window property gone?

2006-09-28 Thread João Batista
Package: icewm
Version: 1.2.28-1
Severity: minor

The 'state' window property (as well as others) no longer seems to be 
functioning 
as the used to in IceWM, or maybe functionalities have changed. 

I've set the XMix application to start as iconic when invoked, 
  xmix -iconic -geometry -0+0 &
by editing the $HOME/.icewm/winoptions file and adding the lines:
  xmix.tray: Exclusive
  xmix.layer: Normal
  xmix.state: Iconic
  xmix.geometry: -0+0
Up to now, the 'state' and 'geometry' would allow xmix to be placed in
the upper right corner of the window and start as iconic, and the 'tray'
option would allow xmix to be placed in the System Tray. Now, although
xmix still appears in the System Tray, the window no longer appears in
the upper right corner (it's hidden beyond the upper right window edge)
and is not minimized.

ii  icewm1.2.28-1wonderful Win95-OS/2-Motif-like 
window manager
ii  xorg 7.1.0-1 X.Org X Window System
ii  xmix 2.1-6   X11-based interface to the Linux 
sound driver mixer


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages icewm depends on:
ii  icewm-common1.2.28-1 wonderful Win95-OS/2-Motif-like wi
ii  imlib11 1.9.14-31Imlib is an imaging library for X 
ii  libaudiofile0   0.2.6-6  Open-source version of SGI's audio
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libesd0 0.2.36-3 Enlightened Sound Daemon - Shared 
ii  libfontconfig1  2.4.1-2  generic font configuration library
ii  libfreetype62.2.1-5  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.1.1-14   GCC support library
ii  libice6 1:1.0.1-2X11 Inter-Client Exchange library
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libsm6  1:1.0.1-3X11 Session Management library
ii  libtiff43.8.2-6  Tag Image File Format (TIFF) libra
ii  libungif4g  4.1.4-4  shared library for GIF images
ii  libx11-62:1.0.0-9X11 client-side library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  zlib1g  1:1.2.3-13   compression library - runtime

icewm recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#389611: ifrename: kernel panic if interface is missing in /etc/network/interfaces

2006-09-26 Thread João Batista
Package: ifrename
Version: 28-1
Severity: important

ifrename causes a kernel panic during boot if the following conditions
are verified concurrently:
1) a PCMCIA wireless card is inserted during boot;
2) ndiswrapper is configured for the card and the ndiswrapper ;
3) the interface's configuration is missing in /etc/network/interfaces

The crash is averted if the card is inserted into the slot after the
boot process (specifically, after ifrename was executed).


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages ifrename depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libiw28  28-1Wireless tools - library

ifrename recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#387701: linux-image-2.6.17.11-kanotix-2: kernel panic during boot (ifrename / ndiswrapper)

2006-09-16 Thread João Batista
Package: linux-image-2.6.17.11-kanotix-2
Version: 1
Severity: important

Kernel 2.6.17.11-kanotix-2 crashes during boot when attempting to
configure wireless LAN interface (wlan0) configured with ndiswrapper 
if the PCICIA wireless card is in the slot during bootup.
Note: the following services were disabled by me (maybe they really
shouldn't?):
-8<8<8<8<8<8<8<8<---
update-rc.d portmap disable
update-rc.d zope2.8 disable
update-rc.d zope2.9 disable
update-rc.d rpc disable
update-rc.d hotplug enable
update-rc.d nfs-common disable
update-rc.d nfs-kernel-server disable
update-rc.d splashy-init disable
-8<8<8<8<8<8<8<8<---

Sample output (typed from screen output during bootup):
-8<8<8<8<8<8<8<8<---
BUG: unable to handle kernel NULL pointer dereference at virtual address 
0040
  printing eip:
c019f4a9
*pde = 
Oops:  [#1]
PREEMPT SMP
Modules linked in: nsc_ircc parport_pc parport via_rhine mii snd_via82xx_modem 
snd_via82xx gameport snd_ac97_codec snd_ac97_bus snd_pcm_oss snd_mixer_oss 
snd_pcm snd_page_alloc snd_mpu401_uart snd_seq_dummy snd_seq_oss snd_seq_midi 
snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd soundcore 
i2c_viapro i2c_core shpchp pci_hotplug via_agp agpgart ehci_hcd uhci_hcd 
ath_pci ath_rate_sample wlan ath_hal via_ircc irda crc_ccitt eth1394 tsdev 
yenta_socket rsrc_nonstatic pcmcia_core ohci1394 ieee1394 ndiswrapper usbcore 
psmouse pcspkr fuse capability commoncap cpufreq_performance cpufreq_powersave 
powernow_k7 freq_table processor evdev
CPI:0
EIP:0060:[]   Tainted: P  VLI
EFLAGS: 00010202(2.6.17.11-kanotix-2 #1)
EIP is at remove_proc_entry+0x39/0x200
eax: 0008   ebx: 0008   ecx: 0001   edx: 
esi: de6c3c00   edi: e0d30c7b   ebp: 0002   esp: dde35e5c
ds: 007b   es: 007b   ss: 0068
Process ifrename (pid: 3279,threadinfo=dde34000 task=dfc07580)
Stack: 000a e0d30c78 0008 de6c3c00 de6c4004 0004 e0d241db e0d30c78
   0008 de6c3c00 de6c3800 e0d28a76 de6c3c00 e0d3ab1c de6c3800 000a
   c0132081 e0d3ab1c 000a de6c3800 de6c3800  01a66a1f c033fc05
Call Trace:
  wrap_procfs_remove_ndis_device+0x1b/0xx70 [ndiswrapper]
  notifier_event+0x26/0x50 [ndiswrapper]
  notifier_call_chain+0x21/0x40
  dev_change_name+0x135/0x190
  dev_ifsioc+0x11d/0x300 
  dev_ioctl+0x2a6/0x380
  vfs_ioctl+0x52/0x2c0
  sys_ioctl+0x5d/0x70
  syscall_call+0x7/0xb
Code: 20 89 44 24 04 85 db 0f 84 74 01 00 00 8b 7c 24 04 31 c0 83  c9 ff f2 ae 
f7 d1 49 b8 e0 93 42 c0 89 cd e8 7b fb 1f 00 8b 44 24 20 <8b> 48 38 8d 78 38 85 
c9 0f 84 11 01 00 00 8b 74 24 04 b8 00 e0
EIP: [] remove_proc_entry+0x39/0x200 SS:ESP 0068:dde35e5c
 <6>note: ifrename[3279] exited with preempt_count 1
/etc/rcS.d/S40ifrename: line 10:  3279 Segmentation fault   $IFRENAME -d -p

-8<8<8<8<8<8<8<8<---

After ejecting the PCMCIA card (D-Link AirPlus XtremeG DWL-G650 Wireless
Cardbus Adapter, hardware revision B2):
-8<8<8<8<8<8<8<8<---
pccard: card ejected from slot 0
ndiswrapper (miniport_reset:62): wlan is being reset
ndiswrapper (miniport_reset:62): wlan is being reset
ndiswrapper (miniport_reset:62): wlan is being reset
-8<8<8<8<8<8<8<8<---
(Last message repeats at infinitum AFAIK.)


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages linux-image-2.6.17.11-kanotix-2 depends on:
ii  coreutils [fileutils] 5.97-5 The GNU core utilities
ii  debconf [debconf-2.0] 1.5.4  Debian configuration management sy
ii  fileutils 5.97-5 The GNU file management utilities 

linux-image-2.6.17.11-kanotix-2 recommends no packages.

-- debconf information:
  
linux-image-2.6.17.11-kanotix-2/preinst/failed-to-move-modules-2.6.17.11-kanotix-2:
  
linux-image-2.6.17.11-kanotix-2/prerm/would-invalidate-boot-loader-2.6.17.11-kanotix-2:
 true
  linux-image-2.6.17.11-kanotix-2/postinst/depmod-error-2.6.17.11-kanotix-2: 
false
  linux-image-2.6.17.11-kanotix-2/preinst/abort-install-2.6.17.11-kanotix-2:
  linux-image-2.6.17.11-kanotix-2/preinst/initrd-2.6.17.11-kanotix-2:
  
linux-image-2.6.17.11-kanotix-2/postinst/create-kimage-link-2.6.17.11-kanotix-2:
 true
  linux-image-2.6.17.11-kanotix-2/postinst/old-initrd-link-2.6.17.11-kanotix-2: 
true
  
linux-image-2.6.17.11-kanotix-2/prerm/removing-running-kernel-2.6.17.11-kanotix-2:
 true
  linux-image-2.6.17.11-kanotix-2/preinst/lilo-has-ramdisk:
  shared/kernel-

Bug#385294: Acknowledgement (konsole: vi/vim causes titlebar text repetition

2006-09-04 Thread João Batista


Update:

This seems to be solved if the environment variable $PROMPT_COMMAND is not 
unset. For example, doing


export PROMPT_COMMAND=echo -ne 
"\033]0;[EMAIL PROTECTED]:${PWD/$HOME/~}\007"


effectively changes the text in the text in the titlebar, and invoking vim 
doesn't append unuseful "trash". However, doing again


unset PROMPT_COMMAND

returns to the previous condition.

_
MSN Messenger: converse com os seus amigos online. 
http://messenger.msn.com.br




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#385761: firefox-adblock: were is it!?

2006-09-02 Thread João Batista
Package: mozilla-firefox-adblock
Version: 0.5.2.039-4.1
Severity: normal

I've installed Debian packages for Firefox extensions such as
mozilla-firefox-dom-inspector and mozilla-imagezoom along with
mozilla-firefox-adblock. The two first show up in the Tools->Extensions
menu, but not Adblock. I've even tried dpkg-reconfigure the package and
remove and reinstall the package. It still doesn't show up.

So, were is Adblock!? The files are there... is there anything else
lacking before it gets activated? 

BTW, I also have mozilla-browser installed; though unlikely, could the
update-alternatives be interfering with the browser specification (I'm
using mozilla-suite as the default in update-alternatives).

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages mozilla-firefox-adblock depends on:
ii  firefox   1.5.dfsg+1.5.0.6-3 lightweight web browser based on M

mozilla-firefox-adblock recommends no packages.

-- debconf-show failed


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#385338: wish: dpkg-reconfigure localepurge to select when to run localepurge automatically

2006-08-30 Thread João Batista
Package: localepurge
Version: 0.5.5
Severity: wishlist

Although localepurge has been revealing quite (!!) a disk space saver, 
it is consuming a lot of time during package installation. This becomes
especially noticed when frequently installing new packages or trying out
packages.

I'd like to propose a facility, configurable when running
dpkg-reconfigure localepurge , to allow the sysadmin to select when
localepurge should be run e.g.: 
  - everytime dpkg/apt is run (default)
  - manually
A third option (run as a cron job) would also be useful, although it can
be dispensed because a knowledgeable sysadmin should be easily capable
of setting that task.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages localepurge depends on:
ii  debconf [debconf-2.0]1.5.3   Debian configuration management sy
ii  debianutils  2.17Miscellaneous utilities specific t
ii  dpkg 1.13.22 package maintenance system for Deb
ii  locales  2.3.6.ds1-4 GNU C Library: National Language (
ii  procps   1:3.2.7-2   /proc file system utilities
ii  ucf  2.0014  Update Configuration File: preserv

localepurge recommends no packages.

-- debconf information:
* localepurge/mandelete: true
* localepurge/showfreedspace: true
* localepurge/quickndirtycalc: false
  localepurge/remove_no:
  localepurge/none_selected: false
* localepurge/nopurge: en, en_GB, en_GB.ISO-8859-15, en_GB.UTF-8, en_US, 
en_US.ISO-8859-15, en_US.UTF-8, pt, pt_PT, pt_PT.UTF-8, [EMAIL PROTECTED], 
[EMAIL PROTECTED]
* localepurge/dontbothernew: false
* localepurge/verbose: false


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#385294: konsole: vi/vim causes titlebar text repetition

2006-08-30 Thread João Batista
Package: konsole
Version: 4:3.5.4-2
Severity: minor

The vi/vim editor causes the text in konsole's title bar to be repeated. 
The anomalous behavior is reproduced in konsole but not in other console 
terminal applications such as xterm or rxvt.

For example, invoking vi (e.g. without any file) in a xterm changes the 
xterm's titlebar text to "[No Name] - VIM", whereas in konsole the text 
in the titlebar shows "[No Name] - VIM - Shell - Konsole".

After a few invocations, the text in xterm's titlebar remains "xterm", 
whereas in konsole has grown to e.g. 
"Shell - Konsole - Shell - Konsole - Shell - Konsole Shell - Konsole".

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages related to this bug:
ii  rxvt 2.6.4-10VT102 terminal emulator for the X 
ii  vim  7.0-035+1   Vi IMproved - enhanced vi editor
ii  xterm210-3   X terminal emulator

Versions of packages konsole depends on:
ii  kdelibs4c2a  4:3.5.4-3   core libraries and binaries for al
ii  libc62.3.6.ds1-3 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-11  GCC support library
ii  libstdc++6   4.1.1-11The GNU Standard C++ Library v3
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  libxtst6 1:1.0.1-5   X11 Testing -- Resource extension 

konsole recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#385122: reportbug does not recognize locale token in .reportbugrc

2006-08-29 Thread João Batista

From: "Chris Lawrence" <[EMAIL PROTECTED]>
To: "Joao Batista" <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
Subject: Re: Bug#385122: reportbug does not recognize locale token in 
.reportbugrc

Date: Tue, 29 Aug 2006 08:02:58 -0500

Er, reportbug doesn't have a locale setting in the .reportbugrc file.


I don't remember putting it by hand on the .reportbugrc, that's for sure. 
Therefore, I believe maybe it was inserted by reportbug itself the first 
time it was run (some releases ago)?


Maybe "locale" existed as a work-around before?


You need to reset your global locale settings in your environment so
that LC_ALL isn't overriding your LC_CTYPE setting (which doesn't seem
to be exported anyway).


Anyway, this works for me. Thank you!



On 8/29/06, Joao Batista <[EMAIL PROTECTED]> wrote:

Package: reportbug
Version: 3.29.3
Severity: minor

reportbug is not handling locale settings too well. Sample output:

[EMAIL PROTECTED]:$ reportbug reportbug
Unrecognized token: locale
Unrecognized token: iso8859-1
*** Welcome to reportbug.  Use ? for help at prompts. ***
Detected character set: us-ascii
Please change your locale if this is incorrect.


The following bash environment settings (or combination of them)
are suspected:
CHARSET=iso8859-15
COUNTRY=C
DESKTOP_SESSION=IceWM
GDMSESSION=IceWM
GDM_LANG=en_US.ISO-8859-15
GDM_XSERVER_LOCATION=local
LANG=C
LANGUAGE=C
LC_ALL=C
[EMAIL PROTECTED]
TERM=xterm



-- Package-specific info:
** Environment settings:
INTERFACE="text"

** /home/jbatista/.reportbugrc:
reportbug_version "3.20"
mode standard
ui text
offline
realname "Joao Batista"
email "((...ommitted...))"
locale "iso8859-1"
no-cc
header "X-Debbugs-CC: ((...ommitted...))"
smtphost bugs.debian.org

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US (charmap=ANSI_X3.4-1968) (ignored: LC_ALL 
set to C)


Versions of packages reportbug depends on:
ii  python2.3.5-11   An interactive high-level 
object-o
ii  python-central0.5.5  register and build utility 
for Pyt


Versions of packages reportbug recommends:
pn  python-cjkcodecs | python-ico  (no description available)
ii  python2.3-icon 1.1.2-2.2  Python universal Unicode codec, using 
iconv(


-- no debconf information





--
Chris Lawrence - http://blog.lordsutch.com/


_
MSN Messenger: converse com os seus amigos online. 
http://messenger.msn.com.br




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#384774: Request: system-wide locale setting for OpenOffice.org

2006-08-26 Thread João Batista

From: Rene Engelhard <[EMAIL PROTECTED]>
To: Jo??o Batista <[EMAIL PROTECTED]>
CC: [EMAIL PROTECTED]
Subject: Re: Bug#384774: Request: system-wide locale setting for 
OpenOffice.org

Date: Sat, 26 Aug 2006 19:42:14 +0200

Hi,

Jo??o Batista wrote:
> OK, then how about a /etc/openoffice/openoffice.conf or something 
similar
> which the /usr/bin/openoffice (ooo-wrapper) Perl script would interpret 
at

> startup?

Actually, exactly that was there at the time we had a shell wrapper 
(1.1.x)...

Got removed for 2.x.



Hi,

I looked into the section about locales in 
/usr/share/doc/openoffice.org/README.Debian.gz
The LANG=mylocale *almost* works, e.g. it interferes with gvim menubar 
language if one wants to retain the default language (e.g. English).
However, the following works for me: it retains the menubar's languages but 
still allows openoffice.org to recognize the keyboard locale:


export LC_ALL=C
export LC_CTYPE=ISO-8859-1

Maybe this detail should be included in the 
/usr/share/doc/openoffice.org/README.Debian.gz


AFAIAC, this issue is solved and can be closed.


Best regards,
Joao Batista

_
MSN Messenger: converse com os seus amigos online. 
http://messenger.msn.com.br




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#384774: Request: system-wide locale setting for OpenOffice.org

2006-08-26 Thread João Batista

Hi,


Rene Engelhard wrote:

Hi,

Jo???o Batista wrote:
> Package: openoffice

Next time please use a correct package name...



Sorry. It's openoffice.org, correct?


> IMHO, it would make sense to include some directive in a configuration
> file in /etc/openoffice to allow the choice of locale for ooffice, e.g.
> in /etc/openoffice/sofficerc. If in a Perl script, the following seems

No, sofficerc is a completely wrong place for it. You haven't looked at
sofficerc, have you?



I see. It was just a suggestion, nothing more nothing less. I hope no one 
was offended.  :-)





> to do the job:
>
>   $ENV{SAL_USE_VCLPLUGIN} = "pt_PT";

That's broken. That is for using the VCLPLUGIN (gnome, kde, none) not
for the locale...




OK, then how about a /etc/openoffice/openoffice.conf or something similar 
which the /usr/bin/openoffice (ooo-wrapper) Perl script would interpret at 
startup?



In case none of these are remotely satisfactory, are there other suggestions 
in place?



Regards,
Joao

_
MSN Busca: fácil, rápido, direto ao ponto.  http://search.msn.com.br



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#384173: ispell: install error: missing file in /usr/sbin/install-docs

2006-08-22 Thread João Batista
Package: ispell
Version: 3.1.20.0-4.3
Severity: normal

While installing upgrading package, the following error appeared:

error in control file: `Index' value missing for format `info' at
/usr/sbin/install-docs line 709, 
line 16.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.11-kanotix-up-1
Locale: LANG=pt_PT, LC_CTYPE=pt_PT (charmap=ISO-8859-1)

Versions of packages ispell depends on:
ii  dictionaries-common 0.70.2   Common utilities for spelling dict
ii  iamerican [ispell-dictionar 3.1.20.0-4.3 An American English dictionary for
ii  ibritish [ispell-dictionary 3.1.20.0-4.3 A British English dictionary for i
ii  ifrench-gut [ispell-diction 1:1.0-18 The French dictionary for ispell (
ii  iportuguese [ispell-diction 20060808-1   European Portuguese dictionary for
ii  libc6   2.3.6.ds1-2  GNU C Library: Shared libraries
ii  libncurses5 5.5-2Shared libraries for terminal hand

Versions of packages ispell recommends:
ii  miscfiles [wordlist]  1.4.2.dfsg.1-4 Dictionaries and other interesting
ii  wamerican [wordlist]  6-2American English dictionary words 
ii  wbritish [wordlist]   6-2British English dictionary words f

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#384157: ispell: install error: missing file in install-docs

2006-08-22 Thread João Batista
Package: ispell
Version: 3.1.20.0-4.3
Severity: normal

While installing upgrading package, the following error appeared:

error in control file: `Index' value missing for format `info' at
/usr/sbin/install-docs line 709, 
line 16.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.11-kanotix-up-1
Locale: LANG=pt_PT, LC_CTYPE=pt_PT (charmap=ISO-8859-1)

Versions of packages ispell depends on:
ii  dictionaries-common 0.70.2   Common utilities for spelling dict
ii  iamerican [ispell-dictionar 3.1.20.0-4.3 An American English dictionary for
ii  libc6   2.3.6.ds1-2  GNU C Library: Shared libraries
ii  libncurses5 5.5-2Shared libraries for terminal hand

Versions of packages ispell recommends:
ii  miscfiles [wordlist]  1.4.2.dfsg.1-4 Dictionaries and other interesting
ii  wamerican [wordlist]  6-2American English dictionary words 

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



  1   2   >