Bug#586278: Reportbug-ng not start after installation

2010-06-19 Thread Mario Ponciano
Hi Bastian,

My problem solved after that wrote the patches
(rngsettingsdialog.diff<http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=rngsettingsdialog.diff;att=2;bug=586278>,
rnggui.diff<http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=5;filename=rnggui.diff;att=3;bug=586278>).


Follow my system information:

 --- System information. ---

Architecture: amd64

Kernel: Linux 2.6.32-3-amd64

Debian Release: squeeze/sid

500 unstable debian.las.ic.unicamp.br

500 testing security.debian.org

500 testing debian.las.ic.unicamp.br

1 lenny-backports www.backports.org

--- Package information. ---

Depends (Version) | Installed

-+-

python | 2.5.4-9

python-support (>= 0.90.0) | 1.0.8

python-debianbts (>= 1.0) | 1.4

python-qt4 | 4.7.3-1

xdg-utils | 1.0.2+cvs20100307-1

xterm | 258-1

python-apt (>= 0.7.93) | 0.7.95


Cheers,

Mario Ponciano  - a.k.a Razec


Bug#586278: Reportbug-ng not start after installation

2010-06-17 Thread Mario Ponciano
Package: reportbug-ng
Version: 1.21
Severity: Important
Tags: patch


Congratulations, Very nice project reportbug-ng.


But I'd like to share with everyone an important bug..


After installation of reportbug-ng version 1.21 (apt-get install
reportbug-ng) and all dependencies, I tried start reportbug-ng and it

was not possible to run.


Show the following message:


ra...@debian:/workspace/$ reportbug-ng

Traceback (most recent call last):

File "/usr/bin/reportbug-ng", line 28, in 

from rnggui import RngGui

File "/usr/share/reportbug-ng/rnggui.py", line 24, in 

from ui import mainwindow

ImportError: cannot import name mainwindow


*Problem:*


The reportbug-ng not found mainwindow.py
(/usr/share/reportbug-ng/ui/mainwindow.py).


*Solution:*

*
*

After installation I added sys.path.append('/usr/share/reportbug-ng/ui') in
2 modules.


rnggui.py

rngsettingsdialog.py


Worked!!!


I added 2 patches to solve it...



*System Information:*


Debian Squeeze Testing

reportbug-ng v.1.21

Python 2.5.5

Linux debian 2.6.32-3-amd64 #1 SMP Wed Feb 24 18:07:42 UTC 2010 x86_64
GNU/Linux

-- 
Mario Cezar Ponciano  - a.k.a Razec
http://razec.wordpress.com
mra...@gmail.com
Linux User: 443515
22,23c22,24
< 
< from ui import settings
---
> import sys
> sys.path.append('/usr/share/reportbug-ng/ui')
> import settings
23,25c23,26
< 
< from ui import mainwindow
< from ui import submitdialog
---
> import sys
> sys.path.append('/usr/share/reportbug-ng/ui')
> import mainwindow
> import submitdialog


Bug#586277: Reportbug-ng not start after installation

2010-06-17 Thread Mario Ponciano
Package: reportbug-ng
Version: 1.21
Severity: Important
Tags: patch


Congratulations, Very nice project reportbug-ng.


 But I'd like to share with everyone an important bug..


After installation of reportbug-ng version 1.21 (apt-get install
reportbug-ng) and all dependencies, I tried start reportbug-ng and it

was not possible to run.


 Show the following message:


 ra...@debian:/workspace/$ reportbug-ng

Traceback (most recent call last):

File "/usr/bin/reportbug-ng", line 28, in 

from rnggui import RngGui

File "/usr/share/reportbug-ng/rnggui.py", line 24, in 

from ui import mainwindow

ImportError: cannot import name mainwindow


 *Problem:*


 The reportbug-ng not found mainwindow.py
(/usr/share/reportbug-ng/ui/mainwindow.py).


 *Solution:*

*
*

After installation I added sys.path.append('/usr/share/reportbug-ng/ui') in
2 modules.


 rnggui.py

rngsettingsdialog.py


 Worked!!!


 I added 2 patches to solve it...



 *System Information:*


 Debian Squeeze Testing

reportbug-ng v.1.21

Python 2.5.5

Linux debian 2.6.32-3-amd64 #1 SMP Wed Feb 24 18:07:42 UTC 2010 x86_64
GNU/Linux


-- 
Mario Cezar Ponciano  - a.k.a Razec
http://razec.wordpress.com
mra...@gmail.com
Linux User: 443515


Bug#419851: eclipse: doesn't use a running ssh-agent for cvs

2010-06-03 Thread Mario Ponciano
Hello,

Although this bug has been posting for a long time. I have the same problem
with CVS Checkout and Eclipse Update.

But it's a Debian/Kernel problem,  because some applications use RFC3493
Basic Socket Interface Extensions for IPv6 [1].
And the kernel default value net.ipv6.bindv6only=1 breaks RFC3493.

More details here: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576633

I solved with 2 things:

1- Install lib32nss-mdns:
 aptitude install lib32nss-mdns - More details about this library
http://packages.debian.org/search?keywords=lib32nss-mdns

2- Configure the parameter ipv6.bindv6only in /etc/sysctl.d/bindv6only.conf.
nano -w net.ipv6.bindv6only=0
Reboot System

This bug is relationship with:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560044
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576633

[1] http://www.faqs.org/rfcs/rfc3493.html


--  Mario Ponciano  - a.k.a Razec