Bug#862266:

2017-05-10 Thread Alexandre Pereira Nunes
Sorry, I took the reportbug path forgetting this would be to debian package
manager instead of upstream. I forwarded a report.


Bug#862266: Invalid apt gpg key in http://download.opensuse.org/repositories/openSUSE:Tools/Debian_9.0

2017-05-10 Thread Alexandre Pereira Nunes
Package: osc
Version: 0.157.2
Severity: normal

It seems like the key expired: EXPKEYSIG 85753AA5EEFEFDE9 openSUSE:Tools OBS 
Project  
0A031153E2F5E9DB71510D8C85753AA5EEFEFDE9


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

Kernel: Linux 4.9.20 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages osc depends on:
ii  build  20170320
ii  python 2.7.13-2
ii  python-m2crypto0.24.0-1.1
ii  python-rpm 4.12.0.2+dfsg1-2
ii  python-urlgrabber  3.10.1-2

osc recommends no packages.

Versions of packages osc suggests:
ii  python-keyring  10.1-1
ii  sudo1.8.19p1-1

-- no debconf information



Bug#820381: Can't reproduce

2017-02-26 Thread Alexandre Pereira Nunes
Sorry for not getting back, but I realized that it was a kernel setting,
something to do with (relatively old) glibc compatibility. I can't remember
the name exact option, but I'm pretty sure no standard distro kernel
disables that. As soon as I recompiled my custom kernel with the option
back on and rebooted, It was working again. The rar  static binary was
probably linked with a quite old libc.

Thanks,
Alexandre

Em 26/02/2017 7:14 AM, "Hilko Bengen"  escreveu:

> control: tag -1 unreproducible
> control: severity -1 important
>
> * shirish शिरीष:
>
> >> I can reproduce the bug on neither amd64 (4.9.0-1-amd64) nor i386
> >> (4.9.0-1-686-pae).
> >
> > Could you share what attempts you did to see if the error occurs ?
>
> Sure. I created a fresh rar archive containing just my .bashrc and
> extracted it again. No crash.
>
> rar a bashrc.rar .bashrc
> rar x bashrc.rar
>
> My best guess is that Alexandre who submitted the bug had either a
> malformed archive (in which case it might be interesting to investigate
> that issue further), or defective hardware.
>
> Since nobody has been able to reproduce this issue, I am tagging it
> accordingly and lowering the severity.
>
> Alexandre, could you tell us whether you can still reproduce this issue?
>
> Cheers,
> -Hilko
>


Bug#828555: sqlcipher: FTBFS with openssl 1.1.0

2016-11-28 Thread Alexandre Pereira Nunes
Package: sqlcipher
Version: 3.2.0-1.1+b2
Followup-For: Bug #828555

Sqlcipher 3.4.0 was released but still subject to openssl 1.1 incompatibility.

Besides the fact that some 3.2 debian patches don't apply to 3.4, I managed
to rebuild the latter with the attached patch.


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

Kernel: Linux 4.8.10 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages sqlcipher depends on:
ii  libc6  2.24-5
ii  libreadline7   7.0-1
ii  libsqlcipher0  3.2.0-1.1+b2
ii  libtinfo5  6.0+20160917-1

sqlcipher recommends no packages.

Versions of packages sqlcipher suggests:
pn  sqlite3-doc  

-- no debconf information
--- a/src/crypto_openssl.c
+++ b/src/crypto_openssl.c
@@ -155,14 +155,24 @@
 }
 
 static int sqlcipher_openssl_hmac(void *ctx, unsigned char *hmac_key, int key_sz, unsigned char *in, int in_sz, unsigned char *in2, int in2_sz, unsigned char *out) {
-  HMAC_CTX hctx;
   unsigned int outlen;
+#if OPENSSL_VERSION_NUMBER >= 0x1011L
+  HMAC_CTX *hctx;
+  hctx = HMAC_CTX_new();
+  HMAC_Init_ex(hctx, hmac_key, key_sz, EVP_sha1(), NULL);
+  HMAC_Update(hctx, in, in_sz);
+  HMAC_Update(hctx, in2, in2_sz);
+  HMAC_Final(hctx, out, );
+  HMAC_CTX_free(hctx);
+#else
+  HMAC_CTX hctx;
   HMAC_CTX_init();
   HMAC_Init_ex(, hmac_key, key_sz, EVP_sha1(), NULL);
   HMAC_Update(, in, in_sz);
   HMAC_Update(, in2, in2_sz);
   HMAC_Final(, out, );
   HMAC_CTX_cleanup();
+#endif
   return SQLITE_OK; 
 }
 
@@ -172,9 +182,23 @@
 }
 
 static int sqlcipher_openssl_cipher(void *ctx, int mode, unsigned char *key, int key_sz, unsigned char *iv, unsigned char *in, int in_sz, unsigned char *out) {
-  EVP_CIPHER_CTX ectx;
   int tmp_csz, csz;
  
+#if OPENSSL_VERSION_NUMBER >= 0x1011L
+  EVP_CIPHER_CTX *ectx;
+  ectx = EVP_CIPHER_CTX_new();
+  EVP_CipherInit(ectx, ((openssl_ctx *)ctx)->evp_cipher, NULL, NULL, mode);
+  EVP_CIPHER_CTX_set_padding(ectx, 0); // no padding
+  EVP_CipherInit(ectx, NULL, key, iv, mode);
+  EVP_CipherUpdate(ectx, out, _csz, in, in_sz);
+  csz = tmp_csz;  
+  out += tmp_csz;
+  EVP_CipherFinal(ectx, out, _csz);
+  csz += tmp_csz;
+  EVP_CIPHER_CTX_free(ectx);
+
+#else
+  EVP_CIPHER_CTX ectx;
   EVP_CipherInit(, ((openssl_ctx *)ctx)->evp_cipher, NULL, NULL, mode);
   EVP_CIPHER_CTX_set_padding(, 0); // no padding
   EVP_CipherInit(, NULL, key, iv, mode);
@@ -184,7 +208,9 @@
   EVP_CipherFinal(, out, _csz);
   csz += tmp_csz;
   EVP_CIPHER_CTX_cleanup();
+#endif
   assert(in_sz == csz);
+  
   return SQLITE_OK; 
 }
 


Bug#821122: [libgtk-3-dev] Missing dependencies accordingly to pkg-config

2016-04-15 Thread Alexandre Pereira Nunes
Package: libgtk-3-dev
Version: 3.20.2-1
Followup-For: Bug #821122

Attached pkg-config w/ --debug.


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

Kernel: Linux 4.4.6 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libgtk-3-dev depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-1
ii  gir1.2-gtk-3.0   3.20.2-1
ii  libatk-bridge2.0-dev 2.18.1-3
ii  libatk1.0-dev2.20.0-1
ii  libcairo2-dev1.14.6-1+b1
ii  libegl1-mesa-dev 11.1.2-1
ii  libepoxy-dev 1.3.1-1
ii  libgdk-pixbuf2.0-dev 2.32.3-2
ii  libglib2.0-dev   2.48.0-1
ii  libgtk-3-0   3.20.2-1
ii  libgtk-3-common  3.20.2-1
ii  libharfbuzz-dev  1.0.1-1+b1
ii  libpango1.0-dev  1.38.1-1
ii  libwayland-dev   1.10.0-1
ii  libx11-dev   2:1.6.3-1
ii  libxcomposite-dev1:0.4.4-1
ii  libxcursor-dev   1:1.1.14-1+b1
ii  libxdamage-dev   1:1.1.4-2+b1
ii  libxext-dev  2:1.3.3-1
ii  libxfixes-dev1:5.0.1-2+b2
ii  libxi-dev2:1.7.6-1
ii  libxinerama-dev  2:1.1.3-1+b1
ii  libxkbcommon-dev 0.5.0-1
ii  libxrandr-dev2:1.5.0-1
ii  pkg-config   0.29-3
ii  wayland-protocols1.3-1

libgtk-3-dev recommends no packages.

Versions of packages libgtk-3-dev suggests:
ii  libgtk-3-doc  3.18.9-1

-- no debconf information
Error printing enabled by default due to use of output options besides 
--exists, --atleast/exact/max-version or --list-all. Value of --silence-errors: 0
Error printing enabled
Adding virtual 'pkg-config' package to list of known packages
Cannot open directory #1 '/usr/local/lib/x86_64-linux-gnu/pkgconfig' in package 
search path: No such file or directory
Scanning directory #2 '/usr/local/lib/pkgconfig'
Ignoring file '..' in search directory; not a .pc file
Ignoring file '.' in search directory; not a .pc file
File 'libnatspec.pc' appears to be a .pc file
Will find package 'libnatspec' in file '/usr/local/lib/pkgconfig/libnatspec.pc'
Cannot open directory #3 '/usr/local/share/pkgconfig' in package search path: 
No such file or directory
Scanning directory #4 '/usr/lib/x86_64-linux-gnu/pkgconfig'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'QtCLucene.pc' appears to be a .pc file
Will find package 'QtCLucene' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/QtCLucene.pc'
File 'cairo-ps.pc' appears to be a .pc file
Will find package 'cairo-ps' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/cairo-ps.pc'
File 'libiec61883.pc' appears to be a .pc file
Will find package 'libiec61883' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/libiec61883.pc'
File 'lua5.2.pc' appears to be a .pc file
Will find package 'lua5.2' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/lua5.2.pc'
File 'gdk-x11-2.0.pc' appears to be a .pc file
Will find package 'gdk-x11-2.0' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/gdk-x11-2.0.pc'
File 'libva-egl.pc' appears to be a .pc file
Will find package 'libva-egl' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/libva-egl.pc'
File 'cairo-png.pc' appears to be a .pc file
Will find package 'cairo-png' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/cairo-png.pc'
File 'vorbisfile.pc' appears to be a .pc file
Will find package 'vorbisfile' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/vorbisfile.pc'
File 'libva-wayland.pc' appears to be a .pc file
Will find package 'libva-wayland' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/libva-wayland.pc'
File 'ncursesw.pc' appears to be a .pc file
Will find package 'ncursesw' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/ncursesw.pc'
File 'QtSvg.pc' appears to be a .pc file
Will find package 'QtSvg' in file '/usr/lib/x86_64-linux-gnu/pkgconfig/QtSvg.pc'
File 'xcb-keysyms.pc' appears to be a .pc file
Will find package 'xcb-keysyms' in file 
'/usr/lib/x86_64-linux-gnu/pkgconfig/xcb-keysyms.pc'
File 'xaw7.pc' appears to be a .pc file
Will find package 'xaw7' in file '/usr/lib/x86_64-linux-gnu/pkgconfig/xaw7.pc'
File 'kadm-client.pc' appears to be a .pc file
Will find package 'kadm-client' in file 

Bug#821122: [libgtk-3-dev] Missing dependencies accordingly to pkg-config

2016-04-15 Thread Alexandre Pereira Nunes
Package: libgtk-3-dev
Version: 3.18.9-1
Severity: grave

$ pkg-config gtk+-3.0 --cflags

Package libpng16 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libpng16.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libpng16', required by 'gdk-pixbuf-2.0', not found



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

Kernel: Linux 4.4.6 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libgtk-3-dev depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.26.0-1
ii  gir1.2-gtk-3.0   3.18.9-1
ii  libatk-bridge2.0-dev 2.18.1-3
ii  libatk1.0-dev2.20.0-1
ii  libcairo2-dev1.14.6-1+b1
ii  libegl1-mesa-dev 11.1.2-1
ii  libepoxy-dev 1.3.1-1
ii  libgdk-pixbuf2.0-dev 2.32.3-2
ii  libglib2.0-dev   2.48.0-1
ii  libgtk-3-0   3.18.9-1
ii  libgtk-3-common  3.18.9-1
ii  libpango1.0-dev  1.38.1-1
ii  libwayland-dev   1.10.0-1
ii  libx11-dev   2:1.6.3-1
ii  libxcomposite-dev1:0.4.4-1
ii  libxcursor-dev   1:1.1.14-1+b1
ii  libxdamage-dev   1:1.1.4-2+b1
ii  libxext-dev  2:1.3.3-1
ii  libxfixes-dev1:5.0.1-2+b2
ii  libxi-dev2:1.7.6-1
ii  libxinerama-dev  2:1.1.3-1+b1
ii  libxkbcommon-dev 0.5.0-1
ii  libxrandr-dev2:1.5.0-1
ii  pkg-config   0.29-3

libgtk-3-dev recommends no packages.

Versions of packages libgtk-3-dev suggests:
ii  libgtk-3-doc  3.18.9-1

-- no debconf information



Bug#820381: rar crashes.

2016-04-10 Thread Alexandre Pereira Nunes
Package: rar
Version: 2:5.3.b2-1
Followup-For: Bug #820381

Sure, I'll attach a dump.

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

Kernel: Linux 4.4.6 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

rar depends on no packages.

rar recommends no packages.

Versions of packages rar suggests:
ii  unrar  1:5.3.2-1

-- no debconf information
execve("/usr/bin/rar", ["rar", "x", "compressed.rar"], [/* 57 vars */]) = 0
uname({sysname="Linux", nodename="polesbook", ...}) = 0
brk(0)  = 0x243c000
brk(0x243d1c0)  = 0x243d1c0
arch_prctl(ARCH_SET_FS, 0x243c8a0)  = 0
set_tid_address(0x243cb70)  = 8954
set_robust_list(0x243cb80, 24)  = 0
futex(0x7fffcfb8348c, FUTEX_WAKE_PRIVATE, 1) = 0
futex(0x7fffcfb8348c, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 1, NULL, 
243c8a0) = -1 EAGAIN (Resource temporarily unavailable)
rt_sigaction(SIGRTMIN, {0x471cd0, [], SA_RESTORER|SA_SIGINFO, 0x472300}, NULL, 
8) = 0
rt_sigaction(SIGRT_1, {0x471c00, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 
0x472300}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(0x245e1c0)  = 0x245e1c0
brk(0x245f000)  = 0x245f000
open("/usr/lib/locale/locale-archive", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1889728, ...}) = 0
mmap(NULL, 1889728, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f503e917000
close(3)= 0
rt_sigaction(SIGINT, {0x4140c0, [INT], SA_RESTORER|SA_RESTART, 0x472300}, 
{SIG_DFL, [], 0}, 8) = 0
rt_sigaction(SIGTERM, {0x4140c0, [TERM], SA_RESTORER|SA_RESTART, 0x472300}, 
{SIG_DFL, [], 0}, 8) = 0
open("/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=26258, ...}) = 0
mmap(NULL, 26258, PROT_READ, MAP_SHARED, 3, 0) = 0x7f503e91
close(3)= 0
futex(0x78f740, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/home/alex", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fcntl(3, F_GETFD)   = 0x1 (flags FD_CLOEXEC)
getdents(3, /* 373 entries */, 32768)   = 12744
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/home/alex", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 373 entries */, 32768)   = 12744
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/home/alex", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 373 entries */, 32768)   = 12744
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/etc", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 353 entries */, 32768)   = 11472
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/etc", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 353 entries */, 32768)   = 11472
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/etc", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 353 entries */, 32768)   = 11472
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/etc/rar", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open("/etc/rar", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open("/etc/rar", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open("/usr/lib", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 802 entries */, 32768)   = 32760
getdents(3, /* 182 entries */, 32768)   = 7640
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/usr/lib", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 802 entries */, 32768)   = 32760
getdents(3, /* 182 entries */, 32768)   = 7640
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/usr/lib", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 802 entries */, 32768)   = 32760
getdents(3, /* 182 entries */, 32768)   = 7640
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/usr/local/lib", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 23 entries */, 32768)= 760
getdents(3, /* 0 entries */, 32768) = 0
close(3)= 0
open("/usr/local/lib", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
getdents(3, /* 23 entries */, 32768)= 760
getdents(3, /* 0 entries */, 32768) = 0

Bug#820381: rar crashes.

2016-04-10 Thread Alexandre Pereira Nunes
Package: rar
Version: 2:5.3.b2-1
Followup-For: Bug #820381

Btw,I have this in syslog:

[152168.040770] rar[8954] vsyscall attempted with vsyscall=none 
ip:ff600400 cs:33 sp:7fffcfb4a928 ax:ff600400 si:0 
di:7fffcfb4a948


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

Kernel: Linux 4.4.6 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

rar depends on no packages.

rar recommends no packages.

Versions of packages rar suggests:
ii  unrar  1:5.3.2-1

-- no debconf information



Bug#820381: rar crashes.

2016-04-07 Thread Alexandre Pereira Nunes
Package: rar
Version: 2:5.3.b2-1
Severity: serious

Rar crashes in all evocations.


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

Kernel: Linux 4.4.6 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

rar depends on no packages.

rar recommends no packages.

Versions of packages rar suggests:
ii  unrar  1:5.3.2-1

-- no debconf information



Bug#802811: libqt5x11extras5: causes konsole to segfault in libX11 on startup

2015-10-27 Thread Alexandre Pereira Nunes
Package: libqt5x11extras5
Version: 5.5.1-2
Followup-For: Bug #802811

I can confirm that too. no kde app opens after having this upgraded.
Besides, the testing version is gone so I'll have to manually search for an
older version.


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

Kernel: Linux 4.2.3 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libqt5x11extras5 depends on:
ii  libc6 2.19-22
ii  libqt5core5a  5.4.2+dfsg-9
ii  libqt5gui55.4.2+dfsg-9

libqt5x11extras5 recommends no packages.

libqt5x11extras5 suggests no packages.

-- no debconf information



Bug#321144: mtr-tiny: Fails to fall back on IPv4 when IPv6 is unavailable

2015-10-26 Thread Alexandre Pereira Nunes
Package: mtr
Version: 0.85-3
Followup-For: Bug #321144

With the attached patch, the mtr compiled for IPv6 support fallbacks to IPv4
resolution when IPV6 isn't available on the host machine (the kernel lacks
IPv6 or have it disabled).

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

Kernel: Linux 4.2.3 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages mtr depends on:
ii  libatk1.0-0  2.18.0-1
ii  libc62.19-22
ii  libcairo21.14.2-2
ii  libfontconfig1   2.11.0-6.3
ii  libfreetype6 2.6-2
ii  libgdk-pixbuf2.0-0   2.32.1-1
ii  libglib2.0-0 2.46.1-1
ii  libgtk2.0-0  2.24.28-1
ii  libncurses5  6.0+20150810-1
ii  libpango-1.0-0   1.38.0-3
ii  libpangocairo-1.0-0  1.38.0-3
ii  libpangoft2-1.0-01.38.0-3
ii  libtinfo56.0+20150810-1

mtr recommends no packages.

mtr suggests no packages.

-- no debconf information
diff -pru mtr-0.85/dns.c mtr-0.85-new/dns.c
--- mtr-0.85/dns.c	2013-06-26 05:25:56.0 -0300
+++ mtr-0.85-new/dns.c	2015-10-26 12:07:49.843979465 -0200
@@ -532,7 +532,6 @@ void dns_open(void)
 fprintf(stderr,
 "Unable to allocate IPv6 socket for nameserver communication: %s\n",
 	strerror(errno));
-exit(-1);
   }
 #endif
   option = 1;
@@ -543,7 +542,7 @@ void dns_open(void)
 exit(-1);
   }
 #ifdef ENABLE_IPV6
-  if (setsockopt(resfd6,SOL_SOCKET,SO_BROADCAST,(char *),sizeof(option))) {
+  if (resfd6 != -1 && setsockopt(resfd6,SOL_SOCKET,SO_BROADCAST,(char *),sizeof(option))) {
 fprintf(stderr,
 "Unable to setsockopt() on IPv6 nameserver communication socket: %s\n",
 	strerror(errno));
@@ -936,7 +935,7 @@ void dorequest(char *s,int type,word id)
   for (i = 0;i < NSCOUNT6;i++) {
 if (!NSSOCKADDR6(i))
   continue;
-if (NSSOCKADDR6(i)->sin6_family == AF_INET6)
+if (NSSOCKADDR6(i)->sin6_family == AF_INET6 && resfd6 != -1)
   (void)sendto(resfd6,buf,r,0,(struct sockaddr *) NSSOCKADDR6(i),
 		   sizeof(struct sockaddr_in6));
   }
Somente em mtr-0.85: dns.o
Somente em mtr-0.85: getopt1.o
Somente em mtr-0.85: getopt.o
diff -pru mtr-0.85/gtk.c mtr-0.85-new/gtk.c
--- mtr-0.85/gtk.c	2013-04-29 15:22:05.0 -0300
+++ mtr-0.85-new/gtk.c	2015-10-26 12:48:57.651852406 -0200
@@ -609,14 +609,17 @@ gboolean gtk_dns_data6(UNUSED GIOChannel
 void gtk_loop(void) 
 {
   GIOChannel *net_iochannel, *dns_iochannel;
-
+  int fd = -1;
   gtk_add_ping_timeout ();
   
   net_iochannel = g_io_channel_unix_new(net_waitfd());
   g_io_add_watch(net_iochannel, G_IO_IN, gtk_net_data, NULL);
 #ifdef ENABLE_IPV6
-  dns_iochannel = g_io_channel_unix_new(dns_waitfd6());
-  g_io_add_watch(dns_iochannel, G_IO_IN, gtk_dns_data6, NULL);
+  fd = dns_waitfd6();
+  if (fd != -1) {
+ dns_iochannel = g_io_channel_unix_new(fd);
+ g_io_add_watch(dns_iochannel, G_IO_IN, gtk_dns_data6, NULL);
+  }
 #endif
   dns_iochannel = g_io_channel_unix_new(dns_waitfd());
   g_io_add_watch(dns_iochannel, G_IO_IN, gtk_dns_data, NULL);
diff -pru mtr-0.85/select.c mtr-0.85-new/select.c
--- mtr-0.85/select.c	2013-04-29 15:22:05.0 -0300
+++ mtr-0.85-new/select.c	2015-10-26 12:59:22.511668698 -0200
@@ -82,17 +82,19 @@ void select_loop(void) {
 #ifdef ENABLE_IPV6
 if (dns) {
   dnsfd6 = dns_waitfd6();
-  FD_SET(dnsfd6, );
-  if(dnsfd6 >= maxfd) maxfd = dnsfd6 + 1;
+  if (dnsfd6 != -1) {
+  FD_SET(dnsfd6, );
+  if(dnsfd6 >= maxfd) maxfd = dnsfd6 + 1;
+  }
 } else
-  dnsfd6 = 0;
+  dnsfd6 = -1;
 #endif
 if (dns) {
   dnsfd = dns_waitfd();
   FD_SET(dnsfd, );
   if(dnsfd >= maxfd) maxfd = dnsfd + 1;
 } else
-  dnsfd = 0;
+  dnsfd = -1;
 
 netfd = net_waitfd();
 FD_SET(netfd, );


Bug#321144: mtr-tiny: Fails to fall back on IPv4 when IPv6 is unavailable

2015-10-26 Thread Alexandre Pereira Nunes
Package: mtr
Version: 0.85-3
Followup-For: Bug #321144

I can confirm this still happens. I suppose I could cook up a patch on spare
time.


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

Kernel: Linux 4.2.3 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages mtr depends on:
ii  libatk1.0-0 2.18.0-1
ii  libc6   2.19-22
ii  libcairo2   1.14.2-2
ii  libfontconfig1  2.11.0-6.3
ii  libfreetype62.6-2
ii  libgdk-pixbuf2.0-0  2.32.1-1
ii  libglib2.0-02.46.1-1
ii  libgtk2.0-0 2.24.28-1
ii  libncurses5 6.0+20150810-1
ii  libpango1.0-0   1.38.0-3
ii  libtinfo5   6.0+20150810-1

mtr recommends no packages.

mtr suggests no packages.

-- no debconf information



Bug#798924: /usr/lib/x86_64-linux-gnu/jni/libatk-wrapper.so.6.0.0: SIGSEGV on Netbeans startup

2015-10-07 Thread Alexandre Pereira Nunes
Package: libatk-wrapper-java-jni
Version: 0.33.3-1.1
Followup-For: Bug #798924

I'm refreshing the patch with a potential fix for an aditional crash (a
double free() invocation) which crashed java too. I'm not sure it really
fixed it, but it's harmless if it didn't, anyway.


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

Kernel: Linux 4.2.1 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libatk-wrapper-java-jni depends on:
ii  libatk-bridge2.0-0   2.18.0-1
ii  libatk-wrapper-java  0.33.3-1.1
ii  libatk1.0-0  2.18.0-1
ii  libatspi2.0-02.18.0-1
ii  libc62.19-22
ii  libcairo-gobject21.14.2-2
ii  libcairo21.14.2-2
ii  libdbus-1-3  1.10.0-3
ii  libgdk-pixbuf2.0-0   2.32.0-1
ii  libglib2.0-0 2.46.0-2
ii  libgtk-3-0   3.16.6-1
ii  libgtk2.0-0  2.24.28-1
ii  libpango-1.0-0   1.38.0-3
ii  libpangocairo-1.0-0  1.38.0-3

libatk-wrapper-java-jni recommends no packages.

libatk-wrapper-java-jni suggests no packages.

-- no debconf information
Index: java-atk-wrapper-0.33.3/jni/src/AtkWrapper.c
===
--- java-atk-wrapper-0.33.3.orig/jni/src/AtkWrapper.c
+++ java-atk-wrapper-0.33.3/jni/src/AtkWrapper.c
@@ -258,6 +258,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 jobject jAccContext)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+   if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(focus_notify_handler, para);
 }
@@ -335,6 +340,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  } 
   CallbackPara *para = alloc_callback_para(global_ac);
   para->is_toplevel = (jIsToplevel == JNI_TRUE) ? TRUE : FALSE;
   gdk_threads_add_idle(window_open_handler, para);
@@ -412,6 +422,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 jboolean jIsToplevel)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   para->is_toplevel = (jIsToplevel == JNI_TRUE) ? TRUE : FALSE;
   gdk_threads_add_idle(window_close_handler, para);
@@ -462,6 +477,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
jobject jAccContext)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_minimize_handler, para);
 }
@@ -511,6 +531,11 @@ JNIEXPORT void JNICALL Java_org_GNOME_Ac
   jobject jAccContext)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac );
   gdk_threads_add_idle(window_maximize_handler, para);
 }
@@ -561,6 +586,11 @@ JNIEXPORT void JNICALL Java_org_GNOME_Ac
 {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_restore_handler, para);
 }
@@ -609,6 +639,11 @@ JNIEXPORT void JNICALL Java_org_GNOME_Ac
   jobject jAccContext) {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_activate_handler, para);
 }
@@ -659,6 +694,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   

Bug#798924: /usr/lib/x86_64-linux-gnu/jni/libatk-wrapper.so.6.0.0: SIGSEGV on Netbeans startup

2015-10-07 Thread Alexandre Pereira Nunes
Package: libatk-wrapper-java
Version: 0.33.3-1
Followup-For: Bug #798924

Is this a revival of #798273?

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

Kernel: Linux 4.2.1 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libatk-wrapper-java depends on:
ii  x11-utils  7.7+3

Versions of packages libatk-wrapper-java recommends:
ii  libatk-wrapper-java-jni  0.33.3-1

libatk-wrapper-java suggests no packages.

-- no debconf information



Bug#798924: /usr/lib/x86_64-linux-gnu/jni/libatk-wrapper.so.6.0.0: SIGSEGV on Netbeans startup

2015-10-07 Thread Alexandre Pereira Nunes
Package: libatk-wrapper-java
Version: 0.33.3-1
Followup-For: Bug #798924

I've patched the package build system to generate a debug package. This can
further help getting usable stack traces from java core dump.



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

Kernel: Linux 4.2.1 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libatk-wrapper-java depends on:
ii  x11-utils  7.7+3

Versions of packages libatk-wrapper-java recommends:
ii  libatk-wrapper-java-jni  0.33.3-1

libatk-wrapper-java suggests no packages.

-- debconf-show failed
diff -pru 2.orig/java-atk-wrapper-0.33.3/debian/changelog 2/java-atk-wrapper-0.33.3/debian/changelog
--- 2.orig/java-atk-wrapper-0.33.3/debian/changelog	2015-09-12 07:39:38.0 -0300
+++ 2/java-atk-wrapper-0.33.3/debian/changelog	2015-10-07 14:36:14.030860951 -0300
@@ -1,3 +1,10 @@
+java-atk-wrapper (0.33.3-1.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Add debug packages.
+
+ -- Alexandre Pereira Nunes <alexandre.nu...@gmail.com>  Wed, 07 Oct 2015 14:35:51 -0300
+
 java-atk-wrapper (0.33.3-1) unstable; urgency=medium
 
   * New upstream release.
diff -pru 2.orig/java-atk-wrapper-0.33.3/debian/control 2/java-atk-wrapper-0.33.3/debian/control
--- 2.orig/java-atk-wrapper-0.33.3/debian/control	2015-09-08 23:20:38.0 -0300
+++ 2/java-atk-wrapper-0.33.3/debian/control	2015-10-07 14:33:50.529307388 -0300
@@ -30,3 +30,15 @@ Description: ATK implementation for Java
  ATK-Bridge.
  .
  This package contains the JNI bindings.
+
+Package: libatk-wrapper-java-jni-dbg
+Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, libatk-wrapper-java (>= ${source:Version})
+Description: ATK implementation for Java using JNI (JNI bindings)
+ Java ATK Wrapper is an implementation of ATK which uses JNI. It
+ converts Java Swing events into ATK events, and sends these events to
+ ATK-Bridge.
+ .
+ This package contains the debug symbos for the JNI bindings.
diff -pru 2.orig/java-atk-wrapper-0.33.3/debian/rules 2/java-atk-wrapper-0.33.3/debian/rules
--- 2.orig/java-atk-wrapper-0.33.3/debian/rules	2015-09-08 23:26:26.0 -0300
+++ 2/java-atk-wrapper-0.33.3/debian/rules	2015-10-07 14:35:35.614670875 -0300
@@ -12,3 +12,8 @@ clean-local:
 
 override_dh_auto_configure:
 	JAVACFLAGS="$(JAVACFLAGS)" dh_auto_configure -- --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH)/jni/
+
+override_dh_strip:
+	dh_strip -plibatk-wrapper-java-jni --dbg-package=libatk-wrapper-java-jni-dbg
+
+.PHONY: override_dh_strip override_dh_auto_configure


Bug#798924: /usr/lib/x86_64-linux-gnu/jni/libatk-wrapper.so.6.0.0: SIGSEGV on Netbeans startup

2015-10-07 Thread Alexandre Pereira Nunes
Package: libatk-wrapper-java
Followup-For: Bug #798924

I'm attaching an additional patch that complements the old netbeans one.
With this, I can now open netbeans.


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

Kernel: Linux 4.2.1 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages libatk-wrapper-java depends on:
ii  x11-utils  7.7+3

Versions of packages libatk-wrapper-java recommends:
ii  libatk-wrapper-java-jni  0.33.3-1.1

libatk-wrapper-java suggests no packages.

-- no debconf information
Index: java-atk-wrapper-0.33.3/jni/src/AtkWrapper.c
===
--- java-atk-wrapper-0.33.3.orig/jni/src/AtkWrapper.c
+++ java-atk-wrapper-0.33.3/jni/src/AtkWrapper.c
@@ -258,6 +258,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 jobject jAccContext)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+   if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(focus_notify_handler, para);
 }
@@ -335,6 +340,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  } 
   CallbackPara *para = alloc_callback_para(global_ac);
   para->is_toplevel = (jIsToplevel == JNI_TRUE) ? TRUE : FALSE;
   gdk_threads_add_idle(window_open_handler, para);
@@ -412,6 +422,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 jboolean jIsToplevel)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   para->is_toplevel = (jIsToplevel == JNI_TRUE) ? TRUE : FALSE;
   gdk_threads_add_idle(window_close_handler, para);
@@ -462,6 +477,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
jobject jAccContext)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_minimize_handler, para);
 }
@@ -511,6 +531,11 @@ JNIEXPORT void JNICALL Java_org_GNOME_Ac
   jobject jAccContext)
 {
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac );
   gdk_threads_add_idle(window_maximize_handler, para);
 }
@@ -561,6 +586,11 @@ JNIEXPORT void JNICALL Java_org_GNOME_Ac
 {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_restore_handler, para);
 }
@@ -609,6 +639,11 @@ JNIEXPORT void JNICALL Java_org_GNOME_Ac
   jobject jAccContext) {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_activate_handler, para);
 }
@@ -659,6 +694,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_deactivate_handler, para);
 }
@@ -710,6 +750,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
 {
 
   jobject global_ac = (*jniEnv)->NewGlobalRef(jniEnv, jAccContext);
+  if (!global_ac) {
+ if (jaw_debug)
+ g_warning("%s: global_ac == NULL", __func__);
+   return;
+  }
   CallbackPara *para = alloc_callback_para(global_ac);
   gdk_threads_add_idle(window_state_change_handler, para);
 }
@@ -1044,6 +1089,11 @@ JNICALL Java_org_GNOME_Accessibility_Atk
jobjectArray args)
 

Bug#793037: no more bluetooth since upgrade to 4:5.3.2-1

2015-07-23 Thread Alexandre Pereira Nunes
On Thu, Jul 23, 2015 at 2:47 PM, Jeremy Lainé jeremy.la...@m4x.org wrote:

 On 07/23/2015 02:36 PM, Alexandre Pereira Nunes wrote:
  Package: bluedevil
  Version: 4:5.3.2-1
  Followup-For: Bug #793037
 
  In my system, the tray icon is missing, but I can still access bluetooth
  settings in the configuration panel.
 

 Are you running plasma-desktop 5.3.2?



I wasn't at the time of my report. Now I am, and the bluetooth tray icon is
there, as well as the configuration options.

The only weird issue is that I had to install kwin-x11 by hand.


Bug#793037: no more bluetooth since upgrade to 4:5.3.2-1

2015-07-23 Thread Alexandre Pereira Nunes
Package: bluedevil
Version: 4:5.3.2-1
Followup-For: Bug #793037

In my system, the tray icon is missing, but I can still access bluetooth
settings in the configuration panel.


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

Kernel: Linux 4.1.3 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages bluedevil depends on:
ii  bluez   5.23-2+b1
ii  bluez-obexd 5.23-2+b1
ii  libc6   2.19-19
ii  libkf5bluezqt5  5.3.1-1
ii  libkf5completion5   5.12.0-1
ii  libkf5configcore5   5.12.0-1
ii  libkf5configgui55.12.0-1
ii  libkf5configwidgets55.12.0-1
ii  libkf5coreaddons5   5.12.0-1
ii  libkf5dbusaddons5   5.12.0-1
ii  libkf5i18n5 5.12.0-1
ii  libkf5iconthemes5   5.12.0-1
ii  libkf5kiocore5  5.12.0-1
ii  libkf5kiofilewidgets5   5.12.0-1
ii  libkf5kiowidgets5   5.12.0-1
ii  libkf5notifications55.12.0-1
ii  libkf5widgetsaddons55.12.0-1
ii  libqt5core5a5.4.2+dfsg-4
ii  libqt5dbus5 5.4.2+dfsg-4
ii  libqt5gui5  5.4.2+dfsg-4
ii  libqt5qml5  5.4.2-3
ii  libqt5widgets5  5.4.2+dfsg-4
ii  libstdc++6  5.1.1-14
ii  obex-data-server0.4.5-1+b4
ii  qml-module-org-kde-bluezqt  5.3.1-1

bluedevil recommends no packages.

Versions of packages bluedevil suggests:
ii  bluez-alsa   4.101-4.1
ii  pulseaudio-module-bluetooth  6.0-2

-- 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#789533: Xine displays garbage with vaapi output

2015-06-21 Thread Alexandre Pereira Nunes
Package: xine-ui
Version: 0.99.9-1.2
Severity: normal
File: /usr/bin/xine

I'm not sure if this was triggered by a xine (libxine?) or vaapi update, but
xine renders green garbage and it was working fine until a few months ago.


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

Kernel: Linux 4.0.5 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages xine-ui depends on:
ii  libc62.19-18
ii  libcurl3-gnutls  7.42.1-2
ii  libjpeg62-turbo  1:1.4.0-7
ii  liblircclient0   0.9.0~pre1-1.2
ii  libncurses5  5.9+20150516-2
ii  libpng12-0   1.2.50-2+b2
ii  libreadline6 6.3-8+b3
ii  libtinfo55.9+20150516-2
ii  libx11-6 2:1.6.3-1
ii  libxext6 2:1.3.3-1
ii  libxft2  2.3.2-1
ii  libxine2 1.2.6-1+b3
ii  libxine2-ffmpeg  1.2.6-1+b3
ii  libxine2-x   1.2.6-1+b3
ii  libxinerama1 2:1.1.3-1+b1
ii  libxtst6 2:1.2.2-1+b1
ii  libxv1   2:1.0.10-1+b1
ii  libxxf86vm1  1:1.1.4-1

Versions of packages xine-ui recommends:
ii  xdg-utils  1.1.0~rc1+git20111210-7.4

xine-ui 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#738914: Crashes at exit

2014-02-13 Thread Alexandre Pereira Nunes
Package: xine-ui
Version: 0.99.7-1
Severity: wishlist
File: /usr/bin/xine

Crashes at exit. That's completely harmless, except when your ulimit is set
to allow core dumps (which is my case). I've found something like 380MB of
xine core dumps on my external HD :-P



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

Kernel: Linux 3.13.2 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xine-ui depends on:
ii  libc62.17-97
ii  libcurl3-gnutls  7.35.0-1
ii  libjpeg8 8d-2
ii  liblircclient0   0.9.0~pre1-1
ii  libpng12-0   1.2.50-1
ii  libreadline6 6.2+dfsg-0.1
ii  libx11-6 2:1.6.2-1
ii  libxext6 2:1.3.2-1
ii  libxft2  2.3.1-2
ii  libxine2 1:1.2.4-dmo2
ii  libxine2-ffmpeg  1:1.2.4-dmo2
ii  libxine2-x   1:1.2.4-dmo2
ii  libxinerama1 2:1.1.3-1
ii  libxtst6 2:1.2.2-1
ii  libxv1   2:1.0.10-1
ii  libxxf86vm1  1:1.1.3-1

Versions of packages xine-ui recommends:
ii  xdg-utils  1.1.0~rc1+git20111210-7

xine-ui 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#738914: Patch available

2014-02-13 Thread Alexandre Pereira Nunes
Package: xine-ui
Version: 0.99.7-1
Followup-For: Bug #738914

--- src/xitk/main.c~2012-01-19 09:04:00.0 -0200
+++ src/xitk/main.c 2014-02-14 00:07:21.573682713 -0200
@@ -1270,8 +1270,10 @@
   gGui-mixer.amp_level = (aevent-left + aevent-right) / 2;
   if(gGui-mixer.method == SOFTWARE_MIXER) {
gGui-mixer.mute = aevent-mute;
-   xitk_slider_set_pos(panel-mixer.slider, gGui-mixer.amp_level);
-   xitk_checkbox_set_state(panel-mixer.mute, gGui-mixer.mute);
+   if (panel) {
+ xitk_slider_set_pos(panel-mixer.slider, gGui-mixer.amp_level);
+ xitk_checkbox_set_state(panel-mixer.mute, gGui-mixer.mute);
+}
   }
 }
 break;


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

Kernel: Linux 3.13.2 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xine-ui depends on:
ii  libc62.17-97
ii  libcurl3-gnutls  7.35.0-1
ii  libjpeg8 8d-2
ii  liblircclient0   0.9.0~pre1-1
ii  libpng12-0   1.2.50-1
ii  libreadline6 6.2+dfsg-0.1
ii  libx11-6 2:1.6.2-1
ii  libxext6 2:1.3.2-1
ii  libxft2  2.3.1-2
ii  libxine2 1:1.2.4-dmo2
ii  libxine2-ffmpeg  1:1.2.4-dmo2
ii  libxine2-x   1:1.2.4-dmo2
ii  libxinerama1 2:1.1.3-1
ii  libxtst6 2:1.2.2-1
ii  libxv1   2:1.0.10-1
ii  libxxf86vm1  1:1.1.3-1

Versions of packages xine-ui recommends:
ii  xdg-utils  1.1.0~rc1+git20111210-7

xine-ui 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#718722: Crashes periodically during download

2013-10-18 Thread Alexandre Pereira Nunes
No longer reproductible.


Thanks,

Alexandre

On Thu, Oct 17, 2013 at 4:52 PM, Cristian Greco crist...@regolo.cc wrote:
 On Sun, 04 Aug 2013 16:07:33 -0300
 Alexandre Pereira Nunes a...@projetos.etc.br wrote:

 Package: qbittorrent
 Version: 2.9.8-1
 Severity: serious


 I've valgrinded it. It seems to be related to writing to already free()d
 memory, an interaction between libboost and libssl's md4. It could be
 related to either any of qbittorrent itself (bad use of boost; most likely), 
 boost
 (likely) or libssl (unlikely).

 Hi,

 could you please check if this is still reproducible with qbittorrent
 3.1.0-1?

 Thanks,
 --
 Cristian Greco
 GPG key ID: 0xCF4D32E4


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



Bug#718722: Crashes periodically during download

2013-08-04 Thread Alexandre Pereira Nunes
Package: qbittorrent
Version: 2.9.8-1
Severity: serious


I've valgrinded it. It seems to be related to writing to already free()d
memory, an interaction between libboost and libssl's md4. It could be
related to either any of qbittorrent itself (bad use of boost; most likely), 
boost
(likely) or libssl (unlikely).

Valgrind log follows:

==24517== Memcheck, a memory error detector
==24517== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==24517== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
==24517== Command: qbittorrent
==24517== Parent PID: 4034
==24517== 
==24517== Thread 5:
==24517== Syscall param sendmsg(mmsg[0].msg_hdr) points to uninitialised byte(s)
==24517==at 0x81EEF4B: sendmmsg (sendmmsg.c:36)
==24517==by 0x1CF6B2DE: __libc_res_nsend (res_send.c:1140)
==24517==by 0x1CF68B8B: __libc_res_nquery (res_query.c:226)
==24517==by 0x1CF69147: __libc_res_nquerydomain (res_query.c:582)
==24517==by 0x1CF6974E: __libc_res_nsearch (res_query.c:378)
==24517==by 0x1CD5DA55: _nss_dns_gethostbyname4_r (dns-host.c:314)
==24517==by 0x81C8E41: gaih_inet (getaddrinfo.c:849)
==24517==by 0x81CC223: getaddrinfo (getaddrinfo.c:2473)
==24517==by 0x5A46A1F: 
boost::asio::detail::resolve_opboost::asio::ip::tcp, boost::_bi::bind_tvoid, 
boost::_mfi::mf2void, libtorrent::aux::session_impl, boost::system::error_code 
const, boost::asio::ip::basic_resolver_iteratorboost::asio::ip::tcp , 
boost::_bi::list3boost::_bi::valuelibtorrent::aux::session_impl*, 
boost::arg1, boost::arg2   
::do_complete(boost::asio::detail::task_io_service*, 
boost::asio::detail::task_io_service_operation*, boost::system::error_code 
const, unsigned long) (in /usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==by 0x59C55F1: 
boost::asio::detail::task_io_service::run(boost::system::error_code) (in 
/usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==by 0x59C58E5: 
boost::asio::detail::posix_thread::funcboost::asio::detail::resolver_service_base::work_io_service_runner::run()
 (in /usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==by 0x59C1A7D: boost_asio_detail_posix_thread_function (in 
/usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==  Address 0x1b7536f0 is on thread 5's stack
==24517== 
==24517== Thread 9:
==24517== Syscall param sendmsg(mmsg[0].msg_hdr) points to uninitialised byte(s)
==24517==at 0x81EEF4B: sendmmsg (sendmmsg.c:36)
==24517==by 0x1CF6B2DE: __libc_res_nsend (res_send.c:1140)
==24517==by 0x1CF68B8B: __libc_res_nquery (res_query.c:226)
==24517==by 0x1CF69147: __libc_res_nquerydomain (res_query.c:582)
==24517==by 0x1CF6974E: __libc_res_nsearch (res_query.c:378)
==24517==by 0x1CD5DA55: _nss_dns_gethostbyname4_r (dns-host.c:314)
==24517==by 0x81C8E41: gaih_inet (getaddrinfo.c:849)
==24517==by 0x81CC223: getaddrinfo (getaddrinfo.c:2473)
==24517==by 0x5AB0AFF: 
boost::asio::detail::resolve_opboost::asio::ip::udp, boost::_bi::bind_tvoid, 
boost::_mfi::mf2void, libtorrent::udp_tracker_connection, 
boost::system::error_code const, 
boost::asio::ip::basic_resolver_iteratorboost::asio::ip::udp , 
boost::_bi::list3boost::_bi::valueboost::intrusive_ptrlibtorrent::udp_tracker_connection
 , boost::arg1, boost::arg2   
::do_complete(boost::asio::detail::task_io_service*, 
boost::asio::detail::task_io_service_operation*, boost::system::error_code 
const, unsigned long) (in /usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==by 0x59C55F1: 
boost::asio::detail::task_io_service::run(boost::system::error_code) (in 
/usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==by 0x59C58E5: 
boost::asio::detail::posix_thread::funcboost::asio::detail::resolver_service_base::work_io_service_runner::run()
 (in /usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==by 0x59C1A7D: boost_asio_detail_posix_thread_function (in 
/usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==  Address 0x1eab96e0 is on thread 9's stack
==24517== 
==24517== Thread 4:
==24517== Invalid read of size 1
==24517==at 0x554F59E: RC4 (rc4-x86_64.s:154)
==24517==  Address 0x18f2db80 is 0 bytes inside a block of size 32 free'd
==24517==at 0x4C2A64C: operator delete(void*) (vg_replace_malloc.c:480)
==24517==by 0x5A10B6F: 
boost::detail::function::functor_managerboost::_bi::bind_tvoid, 
boost::_mfi::mf2void, libtorrent::aux::session_impl, char*, int, 
boost::_bi::list3boost::reference_wrapperlibtorrent::aux::session_impl, 
boost::arg1, boost::_bi::valueint   
::manage(boost::detail::function::function_buffer const, 
boost::detail::function::function_buffer, 
boost::detail::function::functor_manager_operation_type) (in 
/usr/lib/libtorrent-rasterbar.so.6.0.0)
==24517==by 0x5A15E29: void 
libtorrent::chained_buffer::append_bufferboost::_bi::bind_tvoid, 
boost::_mfi::mf2void, libtorrent::aux::session_impl, char*, int, 
boost::_bi::list3boost::reference_wrapperlibtorrent::aux::session_impl, 
boost::arg1, boost::_bi::valueint   (char*, int, int, 
boost::_bi::bind_tvoid, 

Bug#662977: libtorrent-rasterbar6: segfaults qbittorrent

2012-03-11 Thread Alexandre Pereira Nunes
Package: libtorrent-rasterbar6
Followup-For: Bug #662977

I can confirm that the newest qbittorrent upload (2.9.5-1) makes this
problem goes away. All seems fine.

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

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

Versions of packages libtorrent-rasterbar6 depends on:
ii  dpkg   1.16.1.2
ii  libboost-filesystem1.48.0  1.48.0-3
ii  libboost-system1.48.0  1.48.0-3
ii  libboost-thread1.48.0  1.48.0-3
ii  libc6  2.13-27
ii  libgcc11:4.6.3-1
ii  libgeoip1  1.4.8+dfsg-3
ii  libssl1.0.01.0.0g-1
ii  libstdc++6 4.6.3-1
ii  zlib1g 1:1.2.6.dfsg-2

libtorrent-rasterbar6 recommends no packages.

Versions of packages libtorrent-rasterbar6 suggests:
pn  libtorrent-rasterbar-dbg  none

-- 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#525442: Fails to compile against kernel 2.6.26-2-686

2009-04-24 Thread Alexandre Pereira Nunes
Package: fglrx-source
Version: 1:9-4-1
Severity: important

Compile log (from module-assistant):

/usr/bin/make  -f debian/rules clean
make[1]: Entrando no diretório `/usr/src/modules/fglrx'
dh_testroot
rm -f configure-stamp
rm -f fglrx.ko fglrx.mod.c *.o libfglrx_ip.a
rm -f .version .*.o.flags .*.o.d .*.o.cmd .*.ko.cmd
rm -rf .tmp_versions
rm -rf patch
dh_clean
rm -f /usr/src/modules/fglrx/debian/control
rm -f /usr/src/modules/fglrx/debian/dirs
make[1]: Saindo do diretório `/usr/src/modules/fglrx'
/usr/bin/make  -f debian/rules binary_modules
make[1]: Entrando no diretório `/usr/src/modules/fglrx'
if [ -f /usr/src/modules/fglrx/debian/control.template ]; then \
cat /usr/src/modules/fglrx/debian/control.template 
/usr/src/modules/fglrx/debian/control; \
fi
dh_testdir
touch configure-stamp
dh_testdir
/usr/bin/make -C /lib/modules/2.6.26-2-686/build
SUBDIRS=/usr/src/modules/fglrx modules
make[2]: Entrando no diretório `/usr/src/linux-headers-2.6.26-2-686'
  CC [M]  /usr/src/modules/fglrx/firegl_public.o
In file included from /usr/src/modules/fglrx/firegl_public.c:171:
/usr/src/modules/fglrx/firegl_public.h:601:1: warning:
pgprot_noncached redefined
In file included from include/asm/pgtable.h:357,
 from include/linux/mm.h:39,
 from include/asm/pci.h:4,
 from include/linux/pci.h:948,
 from /usr/src/modules/fglrx/firegl_public.c:100:
include/asm/pgtable_32.h:105:1: warning: this is the location of the
previous definition
/usr/src/modules/fglrx/firegl_public.c: In function ‘KCL_SetPageCache’:
/usr/src/modules/fglrx/firegl_public.c:1207: warning: passing argument
1 of ‘set_memory_wb’ makes integer from pointer without a cast
/usr/src/modules/fglrx/firegl_public.c:1211: warning: passing argument
1 of ‘set_memory_uc’ makes integer from pointer without a cast
/usr/src/modules/fglrx/firegl_public.c: In function ‘KCL_SetPageCache_Array’:
/usr/src/modules/fglrx/firegl_public.c:1238: warning: passing argument
1 of ‘KCL_SetPageCache’ makes pointer from integer without a cast
/usr/src/modules/fglrx/firegl_public.c: In function ‘KCL_GetEffectiveUid’:
/usr/src/modules/fglrx/firegl_public.c:1446: error: ‘struct
task_struct’ has no member named ‘cred’
/usr/src/modules/fglrx/firegl_public.c: In function
‘KCL_PosixSecurityCapSetIPCLock’:
/usr/src/modules/fglrx/firegl_public.c:1818: error: implicit
declaration of function ‘get_current_cred’
/usr/src/modules/fglrx/firegl_public.c:1821: error: dereferencing
pointer to incomplete type
/usr/src/modules/fglrx/firegl_public.c:1825: error: dereferencing
pointer to incomplete type
/usr/src/modules/fglrx/firegl_public.c: In function
‘KCL_MEM_VM_GetRegionPhysAddrStr’:
/usr/src/modules/fglrx/firegl_public.c:3272: warning: return makes
pointer from integer without a cast
/usr/src/modules/fglrx/firegl_public.c:3273: warning: return makes
pointer from integer without a cast
/usr/src/modules/fglrx/firegl_public.c:3274: warning: return makes
pointer from integer without a cast
/usr/src/modules/fglrx/firegl_public.c:3276: warning: return makes
pointer from integer without a cast
make[3]: ** [/usr/src/modules/fglrx/firegl_public.o] Erro 1
make[2]: ** [_module_/usr/src/modules/fglrx] Erro 2
make[2]: Saindo do diretório `/usr/src/linux-headers-2.6.26-2-686'
make[1]: ** [build] Erro 2
make[1]: Saindo do diretório `/usr/src/modules/fglrx'
make: ** [kdist_image] Erro 2



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

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

Versions of packages fglrx-source depends on:
ii  bzip2 1.0.5-1high-quality block-sorting file co
ii  debhelper 7.2.7  helper programs for debian/rules
ii  make  3.81-5 The GNU version of the make util

Versions of packages fglrx-source recommends:
ii  module-assistant  0.11.0 tool to make module package creati

Versions of packages fglrx-source suggests:
ii  fglrx-driver  1:9-3-1non-free AMD/ATI r5xx, r6xx, r7xx

-- 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#465267: No longer reproductible

2009-02-17 Thread Alexandre Pereira Nunes
Sorry,

I missed your previous e-mail request.

Anyway, I can't reproduce it nowadays, but both ndiswrapper and kernel
have been updated quite a few times since then.

Thanks,

Alexandre



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



Bug#485598: Confirmed.

2008-10-31 Thread Alexandre Pereira Nunes
Package: xen-utils-3.0.3-1
Version: 3.0.3-0-4
Followup-For: Bug #485598

Please rebuild against python2.5, this will probably solve it.


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

Kernel: Linux 2.6.18-5-xen-amd64 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xen-utils-3.0.3-1 depends on:
ii  iproute20080725-2networking and traffic control too
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libncurses55.6+20080830-1shared libraries for terminal hand
ii  python 2.5.2-2   An interactive high-level object-o
ii  python-central 0.6.8 register and build utility for Pyt
ii  udev   0.125-7   /dev/ and hotplug management daemo
ii  xen-utils-common   3.2.0-2   XEN administrative tools - common 
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages xen-utils-3.0.3-1 recommends:
ii  bridge-utils  1.4-5  Utilities for configuring the Linu
ii  xen-hypervisor-3.0.3-1-amd64  3.0.3-0-4  The Xen Hypervisor on AMD64

Versions of packages xen-utils-3.0.3-1 suggests:
ii  xen-docs-3.0  3.0.4-1-1  documentation for XEN, a Virtual M

-- no debconf information



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



Bug#489289: slmodem-2.9.11-20080629 available; all previous patches merged.

2008-07-04 Thread Alexandre Pereira Nunes
Package: sl-modem-daemon
Version: 2.9.9d+e-pre2-11.1
Severity: normal

Accordingly with 2.9.11-20080629 change log, all 2.9.9x patches from this
well-known branches were merged:

   - automated recognition of x86_64 host for compile of 64 bit slusb,
 and concurent 32 bit slmodemd compile
- support upto 2.6.24 added
- compatibility fixes
- class_simple wrapper by Stefan Schweizer
- example of Ubuntu startup script by Nicola Inchingolo
- example of Slackware startup script by Sanel Z
- merged 2.9.9x: Applied patch for USB fix, from SashaK
- merged 2.9.9x: Modem speaker support (ALSA mode)
- merged 2.9.9x: 'shortbuffer' slmodemd's option (required with
ALI5451 modems)
- merged 2.9.9x: gcc4 build support
- merged 2.9.9x: added Intel ICH6 and ICH7 support
- misc fixes

besides, there are fixes (for instance,
the fix for debian PR #457637) and small features already in.


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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sl-modem-daemon depends on:
ii  adduser   3.108  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  libasound21.0.16-2   ALSA library
ii  libc6 2.7-10 GNU C Library: Shared libraries

sl-modem-daemon recommends no packages.

-- debconf information:
* sl-modem-daemon/country: BRAZIL



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



Bug#479763: Not fixed yet?

2008-06-03 Thread Alexandre Pereira Nunes
Sorry, but I got lost on the chain of dependencies for this bug and so I
must ask: isn't there a fix for those already? What's blocking svk as of
now? There are reports on
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=479698 stating that there's
a patch which allows svk to get through.


Bug#477926: iceweasel -remote 'OpenURL(http://www.whatever.com)' opens a new-tab.

2008-04-25 Thread Alexandre Pereira Nunes
2008/4/25, Mike Hommey [EMAIL PROTECTED]:

 On Fri, Apr 25, 2008 at 03:46:39PM -0300, alex wrote:
  Package: iceweasel
  Version: 2.0.0.14-2
  Severity: normal
 
 
 
  iceweasel -remote 'OpenURL(http://www.whatever.com)' opens a new tab by
  default. Accordingly to the standard behaviour of previous versions and
 the
  documentation, it should only do so when passed the parameter new-tab,
 e.g.
  -remote 'OpenURL(http://www.whatever.com,new-tab)'.

 -remote 'openurl(url)' follows the preferences, and you can choose
 whether you want links to be opened in a new tab or a new window.

 If you always want to open in a new window, whichever you chose in the
 preferences, you need to use -remote openurl(url,new-window).

 This has been such at least from version 2.0, and I think it was already
 like this in version 1.5.


I'm aware of the new-window and new-tab options, the former exists since
netscape navigator and the latter was added on mozilla, even before firefox.
What I don't see is the option of doing neither, which IIRC worked at least
until firefox 1.5. In that case, the url would be opened in the most
recently used window/tab (which can be annoying at some times, but very
useful on others), which has nothing to do with the window/tab trade-off,
because (as used to be and as still documented upstream) that is about
creating one of two new screen elements and the OpenURL() command alwas had
the option of creating neither. There's no option on the user interface to
revert to that.


Bug#477926: iceweasel -remote 'OpenURL(http://www.whatever.com)' opens a new-tab.

2008-04-25 Thread Alexandre Pereira Nunes


 As you say, this is annoying at some times, and is probably one of the
 reasons for upstream change. If you are really motivated to expose your
 arguments, I invite you to push your claim on bugzilla.mozilla.org.


 Mike


It seems like someone has reported it already:
https://bugzilla.mozilla.org/show_bug.cgi?id=416973

And him/her was also kind enough to provide a solution (I'm going to test
it).

Thanks!


Bug#477926: Info received (Bug#477926: iceweasel -remote 'OpenURL(http://www.whatever.com)' opens a new-tab.)

2008-04-25 Thread Alexandre Pereira Nunes
Just for the record, the solution mentioned in
https://bugzilla.mozilla.org/show_bug.cgi?id=416973 works like a charm.


Bug#465267: Ndiswrapper fails on resume with kernels = 2.6.23

2008-02-11 Thread Alexandre Pereira Nunes
Package: ndiswrapper-source
Version: 1.52-1
Severity: normal

When suspending to disk with s2disk, ndiswrapper works fine (any version =
1.49), resuming correctly, reassociating and letting dhcp renews the ip
address.

With kernels 2.6.23 and 2.6.24, it fails on resume: it reassociates with the
AP, but no traffic seems to be exchanged, dhcp keeps trying to acquire an
address but no reply received.

My card is a rt2500.


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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages ndiswrapper-source depends on:
ii  bzip2 1.0.4-2high-quality block-sorting file co
ii  debhelper 5.0.61 helper programs for debian/rules
ii  module-assistant  0.10.11.0  tool to make module package creati

ndiswrapper-source recommends no packages.


-- no debconf information


Bug#453520: Still fails

2007-12-20 Thread Alexandre Pereira Nunes
Package: lyx
Version: 1.5.2-1
Followup-For: Bug #453520

Still fails with current package:

Default language brazil not found!
Using english instead!
Assertion triggered in const std::string lyx::to_ascii(const
lyx::docstring) by failing check ucs4[i]  0x80 in file
../../../src/support/docstring.cpp:55
Abortado


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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages lyx depends on:
ii  libaiksaurus-1.2-0c2a   1.2.1+dev-0.12-5 an English-language thesaurus (dev
ii  libaspell15 0.60.5-1 GNU Aspell spell-checker runtime l
ii  libboost-filesystem1.34 1.34.1-2 filesystem operations (portable pa
ii  libboost-regex1.34.11.34.1-2 regular expression library for C++
ii  libboost-signals1.34.1  1.34.1-2 managed signals and slots library
ii  libc6   2.7-4GNU C Library: Shared libraries
ii  libgcc1 1:4.2.2-4GCC support library
ii  libqt4-core 4.3.2-1  Qt 4 core non-GUI functionality ru
ii  libqt4-gui  4.3.2-1  Qt 4 core GUI functionality runtim
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  lyx-common  1.5.2-1  Architecture-independent files for
ii  mime-support3.39-1   MIME files 'mime.types'  'mailcap
ii  xdg-utils   1.0.1-2  Desktop integration utilities from
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

Versions of packages lyx recommends:
ii  acroread [pdf-viewer]  8.1.1-0.2 Adobe Acrobat Reader: Portable Doc
pn  dvipng none(no description available)
ii  gs-esp [postscript-vie 8.15.3.dfsg.1-1   The Ghostscript PostScript interpr
ii  gv [pdf-viewer]1:3.6.3dfsg-5 PostScript and PDF viewer for X
ii  imagemagick7:6.2.4.5.dfsg1-2 Image manipulation programs
ii  latex-xft-fonts0.1-7 Xft-compatible versions of some La
ii  preview-latex-style11.83-7   LaTeX style files for editor embed
ii  psutils1.17-24   A collection of PostScript documen
ii  texlive-fonts-recommen 2007-12   TeX Live: Recommended fonts
ii  texlive-latex-recommen 2007-12   TeX Live: LaTeX recommended packag
ii  xpdf-reader [pdf-viewe 3.02-1.3  Portable Document Format (PDF) sui

-- no debconf information



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



Bug#453520: Oops.

2007-12-20 Thread Alexandre Pereira Nunes
Reportbug lead me to believe I was using a newer version of the
package. Nevermind.



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



Bug#443080: Description and fix

2007-12-03 Thread Alexandre Pereira Nunes
gdb 6.7.1 still failed (it was however very easily reproductible once I
understood what was happening).

I finally find an external and better description and a fix for this
problem:

http://sourceware.org/ml/gdb-patches/2007-11/msg00136.html

... Upgrading to 6.7.1 and patching gdb with the patch file mentioned on the
email thread fixed this for me.

It's merged upstream, and further revisions should no longer be a problem.


Bug#450938: Confirmed

2007-11-23 Thread Alexandre Pereira Nunes
Package: doxygen
Version: 1.5.3-20071020-1
Followup-For: Bug #450938

I can confirm the same behaviour with 1.5.3-20071020-1 from lenny; running
apt-get -t unstable install
graphviz worked for me.


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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages doxygen depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries

ii  libgcc1   1:4.2.2-3  GCC support library
ii  libpng12-01.2.15~beta5-3 PNG library - runtime
ii  libstdc++64.2.2-3The GNU Standard C++ Library v3

doxygen recommends no packages.

-- no debconf information


Bug#443080: gdb snapshot on unstable shows erratic behaviour

2007-11-19 Thread Alexandre Pereira Nunes
[cut]
  I compiled by hand the snapshot 20070918 and it seems to have been fixed, I
  couldn't reproduce the problem since.

 It is more likely a difference in how it was compiled than in the
 snapshot, since almost nothing changed.

 Do you have any reproducible test case that I can try?


 --
 Daniel Jacobowitz
 CodeSourcery


I'm afraid I no longer have. Anyway, the reasoning behind this bug
report was wrong, and I forgot to tell more details about the
environment; gdb was being used via cli interface and that was what
caused the gdb to segfault (the app exit I saw was in fact gdb getting
killed via signal 11).

This was reproductible (tough less frequently) with the version I
compiled. I can't reproduce it any longer with gdb 6.7.1 (didn't test
with 6.7.0).



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



Bug#449272: Alternative (buggy, incomplete) firewire stack shipped instead of the stable one

2007-11-04 Thread Alexandre Pereira Nunes
Package: linux-image-2.6.22-3-686
Version: 2.6.22-5
Severity: important

Debian choose to ship the alternative firewire stack on recent kernels.
Firewire maintainers are not recommending this (see
http://wiki.linux1394.org/JujuMigration) yet, since this new firewire stack
is incomplete. For instance, I can't do ethernet over firewire with 2.6.22,
I have to go back to 2.6.18, which gives me other kind of trouble.


-- Package-specific info:
** Version:
Linux version 2.6.22-3-686 (Debian 2.6.22-5) ([EMAIL PROTECTED]) (gcc version
4.1.3 20071019 (prerelease) (Debian 4.1.2-17)) #1 SMP Mon Oct 22 22:11:56
UTC 2007


Bug#449272: Alternative (buggy, incomplete) firewire stack shipped instead of the stable one

2007-11-04 Thread Alexandre Pereira Nunes
2007/11/4, maximilian attems [EMAIL PROTECTED]:

 On Sun, Nov 04, 2007 at 02:32:46PM -0200, Alexandre Pereira Nunes wrote:
  Debian choose to ship the alternative firewire stack on recent kernels.
  Firewire maintainers are not recommending this (see
  http://wiki.linux1394.org/JujuMigration) yet, since this new firewire
 stack
  is incomplete. For instance, I can't do ethernet over firewire with
 2.6.22,
  I have to go back to 2.6.18, which gives me other kind of trouble.

 the switch has been made some time ago.
 you are the *first* to holler due to ethernet over firewire!

 please report bug upstream on bugzilla.kernel.org and let us know your
 bug nr, see bottom of page
 http://wiki.debian.org/DebianKernelReportingBugs

 regards

 --
 maks




What are you talking about? The support to the stable driver wasn't dropped
from the kernel (just enable CONFIG_IEEE1394), the recommended policy
upstream (from the maintainer's site, see the URL from my previous post) is
to enable it, the maintainer's are well aware that the experimental stack
only implement a limited subset of firewire functionality, so why should I
file a bug there? Note that an upstream 2.6.22 make defconfig does the
right thing of selecting the stable drivers and not the experimental one,
having it the other way around was a debian decision.

I'm not only talking about ip over firewire, there's at least another bug
filed against firewire on debian's 2.6.22 (something about an external
storage device). The experimental driver is not supposed to work yet (again,
see the URL).

This newer stack is not expected to get stable before 2.6.24, and in order
to prevent further firewire reports on the meanwhile, CONFIG_IEEE1394 should
be enabled (as well as the options it brings on the menu). The experimental
driver should be disabled for now.

The forementioned site points out that not even the userspace library is
ready, so many firewire camera programs and such won't operate on the newer
stack yet.


Bug#448198: mapserver = 5.0 should be built with antigrain (AGG)

2007-10-26 Thread Alexandre Pereira Nunes
Package: php5-mapscript
Version: 5.0.0-2
Severity: normal

Mapserver brings new functionality (a new core renderer) that's not
available on current debian builds. Take a look at the antigrain dependency
and build options.


-- System Information:
Debian Release: lenny/sid
Architecture: amd64 (x86_64)

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


Bug#443080: gdb snapshot on unstable shows erratic behaviour

2007-09-18 Thread Alexandre Pereira Nunes
Package: gdb
Version: 6.6.dfsg.90.20070912-1
Severity: normal

When debugging a few programs, this gdb snapshot does show some weird
behaviour, particularly it reports that the program terminated while
stepping through some functions. The programs in question were compiled with
gcc 4.2 and the only relevant flag was -ggdb3, and are very simple and
stupid programs that does very simple arithmethic comparisons, without
threads or anything.

I compiled by hand the snapshot 20070918 and it seems to have been fixed, I
couldn't reproduce the problem since.


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

Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gdb depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libncurses5   5.6+20070825-1 Shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries

gdb recommends no packages.

-- no debconf information



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



Bug#426896: pidgin-guifications: Please package this for ix86 32-bits too.

2007-05-31 Thread Alexandre Pereira Nunes
Package: pidgin-guifications
Severity: normal

I guess the bug title is self-explanatory ;-)

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

Kernel: Linux 2.6.21.1 (PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


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



Bug#426331: glade-2: glade-3 is unusable

2007-05-27 Thread Alexandre Pereira Nunes
Package: glade-2
Version: 3.2.0-1
Severity: important


glade-3 interface is unusable. It's workspace is too small to being
productive in designing a full-screen application.

I request that you rename the package to glade-3 and bring back glade-2.


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

Kernel: Linux 2.6.21.1 (PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages glade-2 depends on:
ii  glade 3.2.0-1GTK+ 2 User Interface Builder

glade-2 recommends no packages.

-- no debconf information


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



Bug#420634: ABI version change breaks fglrx ati driver

2007-04-23 Thread Alexandre Pereira Nunes
Package: xserver-xorg
Version: 1:7.1.0-18
Severity: important


A Recent apt-get dist-upgrade made my graphics card unusable with ati
driver. The driver complain that the X server is reporting itself as 1.3.0
instead of 7.1.0; Why was the ABI tag changed?

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-12-23 00:10 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1703596 2007-04-21 11:09 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:05.0 VGA compatible controller: ATI Technologies Inc RS400 [Radeon Xpress 
200M]

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 3919 2007-04-23 13:27 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section ServerLayout
Identifier Default Layout
Screen  0  aticonfig-Screen[0] 0 0
InputDeviceGeneric Keyboard
InputDeviceConfigured Mouse
InputDeviceSynaptics Touchpad
EndSection

Section Files

# path to defoma fonts
FontPath /usr/share/fonts/X11/misc
FontPath /usr/X11R6/lib/X11/fonts/misc
FontPath /usr/share/fonts/X11/cyrillic
FontPath /usr/X11R6/lib/X11/fonts/cyrillic
FontPath /usr/share/fonts/X11/100dpi/:unscaled
FontPath /usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath /usr/share/fonts/X11/75dpi/:unscaled
FontPath /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath /usr/share/fonts/X11/Type1
FontPath /usr/X11R6/lib/X11/fonts/Type1
FontPath /usr/share/fonts/X11/100dpi
FontPath /usr/X11R6/lib/X11/fonts/100dpi
FontPath /usr/share/fonts/X11/75dpi
FontPath /usr/X11R6/lib/X11/fonts/75dpi
FontPath /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Load  i2c
Load  bitmap
Load  ddc
Load  dri
Load  extmod
Load  freetype
Load  glx
Load  int10
Load  vbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules xorg
Option  XkbModel abnt2
Option  XkbLayout br
Option  XkbVariant abnt2
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device /dev/input/mice
Option  Protocol ImPS/2
Option  Emulate3Buttons true
EndSection

Section InputDevice
Identifier  Synaptics Touchpad
Driver  synaptics
Option  SendCoreEvents true
Option  Device /dev/psaux
Option  Protocol auto-dev
Option  HorizScrollDelta 0
Option  SHMConfig on
EndSection

Section Monitor
Identifier   Monitor Genrico
Option  DPMS
EndSection

Section Monitor
Identifier   aticonfig-Monitor[0]
Option  VendorName ATI Proprietary Driver
Option  ModelName Generic Autodetecting Monitor
Option  DPMS true
EndSection

Section Device
Identifier  ATI Technologies Inc RS400 [Radeon Xpress 200M]
Driver  radeon
BusID   PCI:1:5:0
EndSection

Section Device
Identifier  aticonfig-Device[0]
Driver  fglrx
EndSection

Section Screen
Identifier Default Screen
Device ATI Technologies Inc RS400 [Radeon Xpress 200M]
MonitorMonitor Genrico
DefaultDepth 24
SubSection Display

#Modes  1024x768
Depth 1
EndSubSection
SubSection Display

#Modes  1024x768
Depth 4
EndSubSection
SubSection Display

#Modes  1024x768
Depth 8
EndSubSection
SubSection Display

#Modes  1024x768
Depth 15
EndSubSection
SubSection Display

#Modes  1024x768
 

Bug#420173: Please back pt-br i10n for iceape

2007-04-20 Thread Alexandre Pereira Nunes
Package: iceape
Version: 1.1.1-2
Severity: important
Tags: l10n


The iceape series lacks pt-br i10n packages, please pack them.

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

Kernel: Linux 2.6.20.4 (PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


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



Bug#420173: iceape: Localized data for pt-br

2007-04-20 Thread Alexandre Pereira Nunes
Package: iceape
Version: 1.1.1-2
Followup-For: Bug #420173


The localized data can be found here:
http://seamonkeybr.mozilla.org.br/downloads/1.1.1/seamonkey-1.1.1.pt-BR.langpack.xpi

... the reference is: http://wiki.mozilla.org/SeaMonkey:Localization_Teams


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

Kernel: Linux 2.6.20.4 (PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


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



Bug#416848: Outdated beta package

2007-03-30 Thread Alexandre Pereira Nunes
Package: upx-ucl-beta
Severity: wishlist

Please update to 2.93 on the unstable distribution.


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1)


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



Bug#401836: gaim-data: This happens often.

2006-12-09 Thread Alexandre Pereira Nunes
Package: gaim-data
Version: 1:2.0.0+beta5-3
Followup-For: Bug #401836


This happens often. I already downloaded gaim-data with a higher version
dependency (thus unstalling gaim itself) about three times already. I
suggest not releasing a newer gaim-data unless the gaim package is published
as well.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1)

gaim-data depends on no packages.

Versions of packages gaim-data recommends:
ii  gaim 1:2.0.0+beta5-3 multi-protocol instant messaging c

-- no debconf information


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



Bug#396375: linux-image-2.6.18-1-k7: 2.6.18 breaks usb-storage for UCR-61S2 device

2006-10-31 Thread Alexandre Pereira Nunes
Package: linux-image-2.6.18-1-k7
Version: 2.6.18-3
Severity: important
Tags: patch


Linux 2.6.18 introduces a conservative change that restricts the UCR-61S2
initialization fix to only a specific version of the firmware, but older
versions needs that as well. The supplied patch reverses that behaviour.

Upstream was notified, but in the meanwhile it would be interesting to
provide this fix on debian.

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

Versions of packages linux-image-2.6.18-1-k7 depends on:
ii  initramfs-tools [linux-initra 0.84   tools for generating an initramfs
ii  module-init-tools 3.2.2-3tools for managing Linux kernel mo
ii  yaird [linux-initramfs-tool]  0.0.12-18  Yet Another mkInitRD

Versions of packages linux-image-2.6.18-1-k7 recommends:
ii  libc6-i686   2.3.6.ds1-7 GNU C Library: Shared libraries [i

-- debconf-show failed
--- linux-source-2.6.18/drivers/usb/storage/unusual_devs.h~ 2006-10-31 
11:27:17.0 -0300
+++ linux-source-2.6.18/drivers/usb/storage/unusual_devs.h  2006-10-31 
11:27:17.0 -0300
@@ -1265,7 +1265,7 @@ UNUSUAL_DEV(  0x0fce, 0xe031, 0x, 0x
  * Tested on hardware version 1.10.
  * Entry is needed only for the initializer function override.
  */
-UNUSUAL_DEV(  0x1019, 0x0c55, 0x0110, 0x0110,
+UNUSUAL_DEV(  0x1019, 0x0c55, 0x, 0x,
Desknote,
UCR-61S2B,
US_SC_DEVICE, US_PR_DEVICE, usb_stor_ucr61s2b_init,


Bug#396375: linux-image-2.6.18-1-k7: 2.6.18 breaks usb-storage for UCR-61S2 device

2006-10-31 Thread Alexandre Pereira Nunes

dann frazier escreveu:


On Tue, Oct 31, 2006 at 02:09:28PM -0300, Alexandre Pereira Nunes wrote:
 


Thanks Alexandre,
Do you have a poitner to where upstream was notified?


 

A description of the problem has been posted on the linux-usb-devel@lists.sourceforge.net mailing list, and to Phil Dibowitz and Alan Stern, which are 
supposed to be the maintainers of the usb-storage unusual device list.
   



Do you have a direct link to the archives? I couldn't find anything
when searching for your name or UCR-61S2.

The reason I ask is that we need to have high confidence this is going
upstream before including it:
 http://wiki.debian.org/DebianKernelPatchAcceptanceGuidelines

 



It seems like sourceforge archive is lagging behind. The post can be 
read here:


http://marc.theaimsgroup.com/?l=linux-usb-develm=116230631107331w=2

But I do believe we have to wait for maintainer's position before 
proceding. If I have any news about that I'll update this bug report


Thanks!

Alexandre



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



Bug#396375: linux-image-2.6.18-1-k7: 2.6.18 breaks usb-storage for UCR-61S2 device

2006-10-31 Thread Alexandre Pereira Nunes



Thanks Alexandre,
 Do you have a poitner to where upstream was notified?

 

A description of the problem has been posted on the 
linux-usb-devel@lists.sourceforge.net mailing list, and to Phil Dibowitz 
and Alan Stern, which are supposed to be the maintainers of the 
usb-storage unusual device list.


- Alexandre




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



Bug#394784: debian's nmap is outdated, cannot upload fingerprints.

2006-10-22 Thread Alexandre Pereira Nunes
Package: nmap
Version: 4.11-1
Severity: important


With current nmap version, one no longer can submit O/S fingerprints (with
-O), because it's considered outdated. Please update.


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

Versions of packages nmap depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-16  GCC support library
ii  libpcre3 6.7-1   Perl 5 Compatible Regular Expressi
ii  libssl0.9.8  0.9.8c-3SSL shared libraries
ii  libstdc++6   4.1.1-16The GNU Standard C++ Library v3

nmap recommends no packages.

-- debconf-show failed


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



Bug#386586: gdb: Gdb 6.5 is released, please sync to upstream.

2006-09-08 Thread Alexandre Pereira Nunes
Package: gdb
Version: 6.4.90.dfsg-1
Severity: important


gdb 6.5 comes with interesting new features, please update to it :-)

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

Versions of packages gdb depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libncurses5  5.5-3   Shared libraries for terminal hand
ii  libreadline5 5.1-8   GNU readline and history libraries

gdb recommends no packages.

-- no debconf information


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



Bug#367593: libfreetype6: BGR versus RGB

2006-08-04 Thread Alexandre Pereira Nunes
Package: libfreetype6
Version: 2.2.1-2
Followup-For: Bug #367593


I used to have sub-pixel hinting set to minimal level through kde
controlpanel and bgr configured. Fonts seemed smooth; After upgrading it
broke (fonts seemed pretty ugly). Changing the config to RGB instead of BRG
solved it for me (it now looks very good once again). The strange thing is
that before it used to look ok. I guess that sub-pixel hinting wasn't
working before or it was so soft that it was not noticeable.


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

Versions of packages libfreetype6 depends on:
ii  libc6 2.3.6-18   GNU C Library: Shared libraries
ii  zlib1g1:1.2.3-13 compression library - runtime

libfreetype6 recommends no packages.

-- no debconf information


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



Bug#365231: libglade2-0: libglade fails to load animated gif as such, it loads only first frame

2006-04-28 Thread Alexandre Pereira Nunes
Package: libglade2-0
Version: 1:2.5.1-2
Severity: normal


When loading an animated gif through a glade file on gtkimage, libglade 
presents its as an static image instead of an animation; Inside glade2 the 
image shows
correctly as an animation, so it does when running with the generated
code version, but on libglade only a static image from the first frame
is shown.

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

Versions of packages libglade2-0 depends on:
ii  libatk1.0-0  1.11.4-1The ATK accessibility toolkit
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libglib2.0-0 2.10.2-1The GLib library of C routines
ii  libgtk2.0-0  2.8.17-1The GTK+ graphical user interface 
ii  libpango1.0-01.12.1-2Layout and rendering of internatio
ii  libxml2  2.6.23.dfsg.2-3 GNOME XML library
ii  zlib1g   1:1.2.3-11  compression library - runtime

libglade2-0 recommends no packages.

-- no debconf information


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



Bug#365075: libglade0: libglade fails to load animated gif as animation

2006-04-27 Thread Alexandre Pereira Nunes
Package: libglade0
Severity: important

When loading an animation through a glade file, libglade presents its as
an static image instead of an animation; Inside glade2 the image shows
correctly as an animation, so it does when running with the generated
code version, but on libglade only a static image from the first frame
is shown.

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


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



Bug#325351: libpam-ssh: I think this behaviour is wrong ...

2006-04-17 Thread Alexandre Pereira Nunes
Package: libpam-ssh
Version: 1.91.0-9.1
Followup-For: Bug #325351


I'm not sure this relates to the same issue, but I'm able to login using
wrong passwords (apparently only after my first successfull authentication on 
the system with the desired user). If that's desired functionality (behaves 
like it's authenticating against itself), it should be both well documented and 
optional. I'm using the recommended setup as per including pam-ssh-auth  
pam-ssh-session.



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

Versions of packages libpam-ssh depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libpam0g  0.79-3.1   Pluggable Authentication Modules l
ii  libssl0.9.8   0.9.8a-8   SSL shared libraries

Versions of packages libpam-ssh recommends:
ii  ssh   1:4.2p1-8  Secure shell client and server (tr

-- no debconf information


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



Bug#325351: Behaviour explained

2006-04-17 Thread Alexandre Pereira Nunes
... Someone should document it somewhere easily findable, not everyone 
is a ssh expert, but this behaviour (at least here) is simply to 
understand, I had multiple keys and one of them had no password, so 
please ignore my previous complain.


A desired functionality I would like to see on libpam-ssh is that it 
keep trying to decrypt all keys using the same password after a match, 
and adds them to the ssh-agent as it progresses. Currently it stops at 
the first match. I know it's supposed to behave like that, but it would 
be cool to have this optional feature.


Thanks,

Alexandre



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



Bug#361148: pslib1: Pslib corrupts memory (valgrind detected) when reading png images with alpha channel

2006-04-06 Thread Alexandre Pereira Nunes
Package: pslib1
Version: 0.2.6-2
Severity: normal
Tags: patch


pslib's png importing routines aren't aware of how to correctly handle the
presence of the alpha channel i.e. on RGBA png's. My choise was (since the
lack of support for it anyway) to instruct libpng to strip off the alpha
channel, which leads to a working import.

--- pslib.c~2006-04-06 18:59:40.0 -0300
+++ pslib.c 2006-04-06 18:59:40.0 -0300
@@ -4357,6 +4357,8 @@
png_set_strip_16(png_ptr);
}
 
+   if (color_type  PNG_COLOR_MASK_ALPHA)
+ png_set_strip_alpha(png_ptr);
/* Expand grayscale images to the full 8 bits from 1, 2, or 4 
bits/pixel */
if (color_type == PNG_COLOR_TYPE_GRAY  bit_depth  8)
png_set_gray_1_2_4_to_8(png_ptr);


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

Versions of packages pslib1 depends on:
ii  libc6   2.3.6-4  GNU C Library: Shared libraries an
ii  libjpeg62   6b-12The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.8rel-5.1 PNG library - runtime

pslib1 recommends no packages.

-- no debconf information
--- pslib.c~	2006-04-06 18:59:40.0 -0300
+++ pslib.c	2006-04-06 18:59:40.0 -0300
@@ -4357,6 +4357,8 @@
 			png_set_strip_16(png_ptr);
 		}
 
+		if (color_type  PNG_COLOR_MASK_ALPHA)
+		  png_set_strip_alpha(png_ptr);
 		/* Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel */
 		if (color_type == PNG_COLOR_TYPE_GRAY  bit_depth  8)
 			png_set_gray_1_2_4_to_8(png_ptr);


Bug#360513: libgtk2.0-0: gtk application crashes eventually after upgrade on testing

2006-04-05 Thread Alexandre Pereira Nunes

Sjoerd Simons wrote:


[cut]

I'll later on, on the meanwhile can you please point me to a change 
description so that I can fix my program if it's eventually outdated?
   



Glib uses a new memory allocate (slice allocator), you don't have to change
your  program for it. But as a consequence of this change, crashes as a result
of allocation bugs are triggered a lot easier. Some bugs we've have seen is
using g_free instead of g_object_unref and referencing a Glist  data pointer
after the element has been removed.

 Sjoerd
 



Just to see if I got it (sorry), am I supposed to run it with 
G_SLICE=always-malloc in order to prevent my program from crashing, or 
will it (I would prefer it) somehow help me spotting some possible bug 
on it?


Thanks again,

Alexandre


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



Bug#360513: libgtk2.0-0: gtk application crashes eventually after upgrade on testing

2006-04-04 Thread Alexandre Pereira Nunes

Sjoerd Simons escreveu:


On Sun, Apr 02, 2006 at 05:23:23PM -0300, Alexandre wrote:
 


Package: libgtk2.0-0
Version: 2.8.13-1
Severity: grave
Justification: renders package unusable


After a while, I upgraded the distro. Now my application crashes eventually
when idle. The only thing running is a timer which replaces a gtk tree model
associated with an gtktreeview; It used to work forever. The backtrace is
below. The problem seems to be at gtk_notebook_get_tab_label somehow. Please
forward this to gtk maintainers if it's not on your scope, thanks.
   



Could you try running your program with G_SLICE=always-malloc ? This could very
well be a bug in your program, which is triggered by the new glib.

 Sjoerd
 



I'll later on, on the meanwhile can you please point me to a change 
description so that I can fix my program if it's eventually outdated?


Thanks!

Alexandre


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



Bug#354031: kmilo is deprecated

2006-02-22 Thread Alexandre Pereira Nunes
Package: kmilo
Version: 4:3.5.1-2
Severity: grave
Justification: renders package unusable

Milo is obsolete. It is not configurable, and since it mainly reacts to
keycodes, it is deprecated in favour of control panel customizations.

But having milo installed (and enabled; My brand new kde installation
enabled it by default, which is unspected) interferes with control
panel settings.

I do believe it is already marked as obsolete on kde tree. Please Double check.

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

Versions of packages kmilo depends on:
ii  kdelibs4c2a   4:3.5.1-2  core libraries for all KDE applica
ii  libc6 2.3.6-1GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-9  GCC support library
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libqt3-mt 3:3.3.5-3  Qt GUI Library (Threaded runtime v
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libstdc++64.0.2-9The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxtst6  6.9.0.dfsg.1-4 X Window System event recording an
ii  zlib1g1:1.2.3-9  compression library - runtime

kmilo recommends no packages.

-- no debconf information


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