Ubuntu 8.10 Intrepid Ibex Bug

2008-06-27 Thread Gianfranco Costamagna
Hello to everyone, I'm new on this list... :D

I'm trying to upgrade my ubuntu 8.04 hardy to 8.10 Intrepid Ibex throught 
update-manager -d, and I've just seen a "bug"...

Cannot install 
«/var/cache/apt/archives/fontconfig-config_2.6.0-1ubuntu2_all.deb»

"L'avanzamento
verrà portato avanti, ma il pacchetto
«/var/cache/apt/archives/fontconfig-config_2.6.0-1ubuntu2_all.deb»
potrebbe non essere funzionante. Segnalare questo problema come bug."

This is the same for fontconfig-config libfontconfig1 libpoppler3 poppler-utils 
libgs8 ghostscript cups 
/var/cache/apt/archives/cups-pdf_2.4.8-1ubuntu1_i386.deb libfontconfig1-dev 
fontconfig 
libpango1.0-common libcairo2 libcairo2-dev libxft2 libxft-dev libpango1.0-0 
libpango1.0-dev libgtk2.0-0 libgtkhtml2-0 libgnomecanvas2-0 libbonoboui2-0 
libgnomeui-0 libgtkhtml3.14-19 libgnome-desktop-2-7 libeel2-2 
liblaunchpad-integration1 libnautilus-extension1 libpanel-applet2-0 
libgnome-window-settings1 libmetacity0 x11-apps

Update manager tells me to report this as a bug!

I don't think this is a bug, but I reported it anyway!

UPDATE: update failed.
Regards


  Hai un indirizzo email difficile da ricordare?
Scegli quello che hai sempre desiderato su Yahoo! Mail
http://it.docs.yahoo.com/nuovo_indirizzo.html-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Benno Korn
I have found a gentoo bug report that describes the problem.
http://bugs.gentoo.org/show_bug.cgi?id=219959

I wonder that the bug should have been fixed in rc5.

Jason Crain schrieb:
> It first compiles the .java files using javac, then creates header 
> files using javah.  It skips several header files, including
> org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably 
> because it is an inner class of ConflictDescriptor.  The $ used to 
> mark inner classes may be confusing it?
>
> You can create the files manually using javah:
>javah -d subversion/bindings/javahl/include -classpath \
>subversion/bindings/javahl/classes \
>'org.tigris.subversion.javahl.ConflictDescriptor$Action'
>
> And then rename it to what it expects:
>mv 
> subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor\$Action.h
>  
> subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor_Action.h
>  
>
>
> But there are about 20 files that it will complain about, so you may 
> want to script it.
>
> I'm not sure how to modify the makefile to work properly.
>
>
> Benno Korn wrote:
>> Ok. Thank you.
>>
>> I asked in subversion IRC channels and mailing lists, but no one had 
>> a clue where the problem is.
>>
>> Then I decided that when someone knows how to compile it then these 
>> people who compiled the package
>> in the repositories.
>> And now I am asking here ;-)
>>
>> Jason Crain schrieb:
>>> Sorry, missed the problem with all of the extra long lines :)
>>>
>>> It looks like the problem is it is missing the file
>>> org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably 
>>> because
>>> something went wrong building javahl.  I'm compiling it now to see if I
>>> can figure out why...
>>>
>>> On Fri, June 27, 2008 2:15 pm, Benno Korn wrote:
>>>  
 I tried with the -W option.

 But the same error occured again.

 Jason Crain schrieb:
   
> Those look like fairly benign warnings that could be ignored.  I'm 
> not
> too
> familiar with debuild, but you could try running it with the -W 
> option.
> That might set it to ignore warnings.
>
>
> On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:
>
> 
>> Hello,
>> I am using Ubuntu 8.04 32 bit.
>> I try to package subversion 1.5.0 with JavaHL support.
>>
>> Therefore I use these debian experimental sources:
>> http://packages.debian.org/experimental/subversion
>>
>> When I build the package using:
>> tar xzf subversion_1.5.0dfsg1.orig.tar.gz
>> cd subversion-1.5.0dfsg1
>> zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
>> debuild -us -uc
>> ... the packages are successfully created but the libsvn-java 
>> package
>> is
>> missing.
>>
>> So I have to compile using:
>> DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc
>>
>> But then I run into this error:
>> http://ubuntuusers.de/paste/373157/
>>
>> How is the Ubuntu package in the repositories (version 1.4.6) being
>> built?
>> Or how else do I fix this problem?
>>
>> -- 
>> Ubuntu-devel-discuss mailing list
>> Ubuntu-devel-discuss@lists.ubuntu.com
>> Modify settings or unsubscribe at:
>> https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
>>
>>
>> 
>
>   
>>>
>>>
>>>   
>
>

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Benno Korn
Yes, I found a gentoo bug report where also the nested classes were the 
problem.

But I do not know where to insert that code.
In debian/rules is useless because at that time the .class files have 
not been compiled.

Also that the headers of _all_ nested classes are created.

Jason Crain schrieb:
> It first compiles the .java files using javac, then creates header 
> files using javah.  It skips several header files, including
> org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably 
> because it is an inner class of ConflictDescriptor.  The $ used to 
> mark inner classes may be confusing it?
>
> You can create the files manually using javah:
>javah -d subversion/bindings/javahl/include -classpath \
>subversion/bindings/javahl/classes \
>'org.tigris.subversion.javahl.ConflictDescriptor$Action'
>
> And then rename it to what it expects:
>mv 
> subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor\$Action.h
>  
> subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor_Action.h
>  
>
>
> But there are about 20 files that it will complain about, so you may 
> want to script it.
>
> I'm not sure how to modify the makefile to work properly.
>
>
> Benno Korn wrote:
>> Ok. Thank you.
>>
>> I asked in subversion IRC channels and mailing lists, but no one had 
>> a clue where the problem is.
>>
>> Then I decided that when someone knows how to compile it then these 
>> people who compiled the package
>> in the repositories.
>> And now I am asking here ;-)
>>
>> Jason Crain schrieb:
>>> Sorry, missed the problem with all of the extra long lines :)
>>>
>>> It looks like the problem is it is missing the file
>>> org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably 
>>> because
>>> something went wrong building javahl.  I'm compiling it now to see if I
>>> can figure out why...
>>>
>>> On Fri, June 27, 2008 2:15 pm, Benno Korn wrote:
>>>  
 I tried with the -W option.

 But the same error occured again.

 Jason Crain schrieb:
   
> Those look like fairly benign warnings that could be ignored.  I'm 
> not
> too
> familiar with debuild, but you could try running it with the -W 
> option.
> That might set it to ignore warnings.
>
>
> On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:
>
> 
>> Hello,
>> I am using Ubuntu 8.04 32 bit.
>> I try to package subversion 1.5.0 with JavaHL support.
>>
>> Therefore I use these debian experimental sources:
>> http://packages.debian.org/experimental/subversion
>>
>> When I build the package using:
>> tar xzf subversion_1.5.0dfsg1.orig.tar.gz
>> cd subversion-1.5.0dfsg1
>> zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
>> debuild -us -uc
>> ... the packages are successfully created but the libsvn-java 
>> package
>> is
>> missing.
>>
>> So I have to compile using:
>> DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc
>>
>> But then I run into this error:
>> http://ubuntuusers.de/paste/373157/
>>
>> How is the Ubuntu package in the repositories (version 1.4.6) being
>> built?
>> Or how else do I fix this problem?
>>
>> -- 
>> Ubuntu-devel-discuss mailing list
>> Ubuntu-devel-discuss@lists.ubuntu.com
>> Modify settings or unsubscribe at:
>> https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
>>
>>
>> 
>
>   
>>>
>>>
>>>   
>
>

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Jason Crain
It first compiles the .java files using javac, then creates header files 
using javah.  It skips several header files, including
org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably 
because it is an inner class of ConflictDescriptor.  The $ used to mark 
inner classes may be confusing it?

You can create the files manually using javah:
javah -d subversion/bindings/javahl/include -classpath \
subversion/bindings/javahl/classes \
'org.tigris.subversion.javahl.ConflictDescriptor$Action'

And then rename it to what it expects:
mv 
subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor\$Action.h
 
subversion/bindings/javahl/include/org_tigris_subversion_javahl_ConflictDescriptor_Action.h

But there are about 20 files that it will complain about, so you may 
want to script it.

I'm not sure how to modify the makefile to work properly.


Benno Korn wrote:
> Ok. Thank you.
>
> I asked in subversion IRC channels and mailing lists, but no one had a 
> clue where the problem is.
>
> Then I decided that when someone knows how to compile it then these 
> people who compiled the package
> in the repositories.
> And now I am asking here ;-)
>
> Jason Crain schrieb:
>> Sorry, missed the problem with all of the extra long lines :)
>>
>> It looks like the problem is it is missing the file
>> org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably 
>> because
>> something went wrong building javahl.  I'm compiling it now to see if I
>> can figure out why...
>>
>> On Fri, June 27, 2008 2:15 pm, Benno Korn wrote:
>>  
>>> I tried with the -W option.
>>>
>>> But the same error occured again.
>>>
>>> Jason Crain schrieb:
>>>
 Those look like fairly benign warnings that could be ignored.  I'm not
 too
 familiar with debuild, but you could try running it with the -W 
 option.
 That might set it to ignore warnings.


 On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:

  
> Hello,
> I am using Ubuntu 8.04 32 bit.
> I try to package subversion 1.5.0 with JavaHL support.
>
> Therefore I use these debian experimental sources:
> http://packages.debian.org/experimental/subversion
>
> When I build the package using:
> tar xzf subversion_1.5.0dfsg1.orig.tar.gz
> cd subversion-1.5.0dfsg1
> zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
> debuild -us -uc
> ... the packages are successfully created but the libsvn-java package
> is
> missing.
>
> So I have to compile using:
> DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc
>
> But then I run into this error:
> http://ubuntuusers.de/paste/373157/
>
> How is the Ubuntu package in the repositories (version 1.4.6) being
> built?
> Or how else do I fix this problem?
>
> -- 
> Ubuntu-devel-discuss mailing list
> Ubuntu-devel-discuss@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
>
>
> 

   
>>
>>
>>   


-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Benno Korn
Ok. Thank you.

I asked in subversion IRC channels and mailing lists, but no one had a 
clue where the problem is.

Then I decided that when someone knows how to compile it then these 
people who compiled the package
in the repositories.
And now I am asking here ;-)

Jason Crain schrieb:
> Sorry, missed the problem with all of the extra long lines :)
>
> It looks like the problem is it is missing the file
> org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably because
> something went wrong building javahl.  I'm compiling it now to see if I
> can figure out why...
>
> On Fri, June 27, 2008 2:15 pm, Benno Korn wrote:
>   
>> I tried with the -W option.
>>
>> But the same error occured again.
>>
>> Jason Crain schrieb:
>> 
>>> Those look like fairly benign warnings that could be ignored.  I'm not
>>> too
>>> familiar with debuild, but you could try running it with the -W option.
>>> That might set it to ignore warnings.
>>>
>>>
>>> On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:
>>>
>>>   
 Hello,
 I am using Ubuntu 8.04 32 bit.
 I try to package subversion 1.5.0 with JavaHL support.

 Therefore I use these debian experimental sources:
 http://packages.debian.org/experimental/subversion

 When I build the package using:
 tar xzf subversion_1.5.0dfsg1.orig.tar.gz
 cd subversion-1.5.0dfsg1
 zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
 debuild -us -uc
 ... the packages are successfully created but the libsvn-java package
 is
 missing.

 So I have to compile using:
 DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc

 But then I run into this error:
 http://ubuntuusers.de/paste/373157/

 How is the Ubuntu package in the repositories (version 1.4.6) being
 built?
 Or how else do I fix this problem?

 --
 Ubuntu-devel-discuss mailing list
 Ubuntu-devel-discuss@lists.ubuntu.com
 Modify settings or unsubscribe at:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


 
>>>
>>>   
>
>
>   

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Jason Crain
Sorry, missed the problem with all of the extra long lines :)

It looks like the problem is it is missing the file
org_tigris_subversion_javahl_ConflictDescriptor_Action.h, probably because
something went wrong building javahl.  I'm compiling it now to see if I
can figure out why...

On Fri, June 27, 2008 2:15 pm, Benno Korn wrote:
> I tried with the -W option.
>
> But the same error occured again.
>
> Jason Crain schrieb:
>> Those look like fairly benign warnings that could be ignored.  I'm not
>> too
>> familiar with debuild, but you could try running it with the -W option.
>> That might set it to ignore warnings.
>>
>>
>> On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:
>>
>>> Hello,
>>> I am using Ubuntu 8.04 32 bit.
>>> I try to package subversion 1.5.0 with JavaHL support.
>>>
>>> Therefore I use these debian experimental sources:
>>> http://packages.debian.org/experimental/subversion
>>>
>>> When I build the package using:
>>> tar xzf subversion_1.5.0dfsg1.orig.tar.gz
>>> cd subversion-1.5.0dfsg1
>>> zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
>>> debuild -us -uc
>>> ... the packages are successfully created but the libsvn-java package
>>> is
>>> missing.
>>>
>>> So I have to compile using:
>>> DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc
>>>
>>> But then I run into this error:
>>> http://ubuntuusers.de/paste/373157/
>>>
>>> How is the Ubuntu package in the repositories (version 1.4.6) being
>>> built?
>>> Or how else do I fix this problem?
>>>
>>> --
>>> Ubuntu-devel-discuss mailing list
>>> Ubuntu-devel-discuss@lists.ubuntu.com
>>> Modify settings or unsubscribe at:
>>> https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
>>>
>>>
>>
>>
>>
>


-- 
Jason Crain

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


net-snmp

2008-06-27 Thread Paul Malishev
Hello!

Is there any way to get patched net-snmp in hardy?
There is a bug https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/192745 
which prevents lm-sensors data to be fetched with snmp. It was fixed 10 days 
ago, but only for intrepid. 
libsnmp15 from intrepid depends on perl5.10, so it cannot be installed 
painlessly in hardy.

Is there any plans to compile patched net-snmp for hardy? Or maybe there is 
some workaround for that bug?

Bye!


signature.asc
Description: This is a digitally signed message part.
-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Benno Korn
I tried with the -W option.

But the same error occured again.

Jason Crain schrieb:
> Those look like fairly benign warnings that could be ignored.  I'm not too
> familiar with debuild, but you could try running it with the -W option. 
> That might set it to ignore warnings.
>
>
> On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:
>   
>> Hello,
>> I am using Ubuntu 8.04 32 bit.
>> I try to package subversion 1.5.0 with JavaHL support.
>>
>> Therefore I use these debian experimental sources:
>> http://packages.debian.org/experimental/subversion
>>
>> When I build the package using:
>> tar xzf subversion_1.5.0dfsg1.orig.tar.gz
>> cd subversion-1.5.0dfsg1
>> zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
>> debuild -us -uc
>> ... the packages are successfully created but the libsvn-java package is
>> missing.
>>
>> So I have to compile using:
>> DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc
>>
>> But then I run into this error:
>> http://ubuntuusers.de/paste/373157/
>>
>> How is the Ubuntu package in the repositories (version 1.4.6) being built?
>> Or how else do I fix this problem?
>>
>> --
>> Ubuntu-devel-discuss mailing list
>> Ubuntu-devel-discuss@lists.ubuntu.com
>> Modify settings or unsubscribe at:
>> https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
>>
>> 
>
>
>   

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Benno Korn
But there is also this error in line 42.

I am currently trying it with the -W option.

What were the options the Ubuntu developers have built the subversion 
1.4.6 package with?
Can this information be obtained somewhere?

Or what other build command should be used (cause you said you were not 
so familiar with debuild)?

Jason Crain schrieb:
> Those look like fairly benign warnings that could be ignored.  I'm not too
> familiar with debuild, but you could try running it with the -W option. 
> That might set it to ignore warnings.
>
>
> On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:
>   
>> Hello,
>> I am using Ubuntu 8.04 32 bit.
>> I try to package subversion 1.5.0 with JavaHL support.
>>
>> Therefore I use these debian experimental sources:
>> http://packages.debian.org/experimental/subversion
>>
>> When I build the package using:
>> tar xzf subversion_1.5.0dfsg1.orig.tar.gz
>> cd subversion-1.5.0dfsg1
>> zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
>> debuild -us -uc
>> ... the packages are successfully created but the libsvn-java package is
>> missing.
>>
>> So I have to compile using:
>> DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc
>>
>> But then I run into this error:
>> http://ubuntuusers.de/paste/373157/
>>
>> How is the Ubuntu package in the repositories (version 1.4.6) being built?
>> Or how else do I fix this problem?
>>
>> --
>> Ubuntu-devel-discuss mailing list
>> Ubuntu-devel-discuss@lists.ubuntu.com
>> Modify settings or unsubscribe at:
>> https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
>>
>> 
>
>
>   

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Compiling subversion 1.5.0

2008-06-27 Thread Jason Crain
Those look like fairly benign warnings that could be ignored.  I'm not too
familiar with debuild, but you could try running it with the -W option. 
That might set it to ignore warnings.


On Fri, June 27, 2008 1:33 pm, Benno Korn wrote:
> Hello,
> I am using Ubuntu 8.04 32 bit.
> I try to package subversion 1.5.0 with JavaHL support.
>
> Therefore I use these debian experimental sources:
> http://packages.debian.org/experimental/subversion
>
> When I build the package using:
> tar xzf subversion_1.5.0dfsg1.orig.tar.gz
> cd subversion-1.5.0dfsg1
> zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
> debuild -us -uc
> ... the packages are successfully created but the libsvn-java package is
> missing.
>
> So I have to compile using:
> DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc
>
> But then I run into this error:
> http://ubuntuusers.de/paste/373157/
>
> How is the Ubuntu package in the repositories (version 1.4.6) being built?
> Or how else do I fix this problem?
>
> --
> Ubuntu-devel-discuss mailing list
> Ubuntu-devel-discuss@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss
>


-- 
Jason Crain

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Compiling subversion 1.5.0

2008-06-27 Thread Benno Korn
Hello,
I am using Ubuntu 8.04 32 bit.
I try to package subversion 1.5.0 with JavaHL support.

Therefore I use these debian experimental sources: 
http://packages.debian.org/experimental/subversion

When I build the package using:
tar xzf subversion_1.5.0dfsg1.orig.tar.gz
cd subversion-1.5.0dfsg1
zcat ../subversion_1.5.0dfsg1-1.diff.gz | patch -p1
debuild -us -uc
... the packages are successfully created but the libsvn-java package is 
missing.

So I have to compile using:
DEB_BUILD_OPTIONS="with-javahl" debuild -us -uc

But then I run into this error:
http://ubuntuusers.de/paste/373157/

How is the Ubuntu package in the repositories (version 1.4.6) being built?
Or how else do I fix this problem?

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: Bug Importance Guidelines

2008-06-27 Thread (``-_-´´) -- Fernando
Olá Brian e a todos.

On Wednesday 25 June 2008 23:34:51 Brian Murray wrote:
>  * '''High''': A bug which fulfills one of the following criteria:
>   * a problem with an essential hardware component (disk controller,
> laptop built-in wireless, video card, keyboard, mouse)

So, not having my Intel built-in wifi agn 4965 carn working with any kernel or 
module from 2.6.24-17 to  2.6.26-2 would be considered High?
Guys, take a look at [1] and the subquent bug.

[1] https://answers.launchpad.net/ubuntu/+question/32865

-- 
BUGabundo  :o)
(``-_-´´)   http://Ubuntu.BUGabundo.net
Linux user #443786GPG key 1024D/A1784EBB
My new micro-blog @ http://BUGabundo.net
ps. My emails tend to sound authority and aggressive. I'm sorry in advance. 
I'll try to be more assertive as time goes by...


signature.asc
Description: This is a digitally signed message part.
-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss