Ubuntu 11.04 (natty) packages available

CodeLite's announcements
DavidGH
CodeLite Plugin
Posts: 819
Joined: Wed Sep 03, 2008 7:26 pm
Contact:

Ubuntu 11.04 (natty) packages available

Post by DavidGH »

Hi,

The latest version of ubuntu, natty, has been released. It's different from previous versions in that the default desktop is now unity. This initially caused problems to wxWidgets (that's the main reason why wx2.8.12 was released), but these seem to have been fixed in the natty wxGTK package.

I've uploaded CodeLite packages for ubuntu natty, both to sourceforge and to the CodeLite repository. Testing a 'hello world' app didn't reveal any problems, but that doesn't mean there won't be some in more realistic situations. So please try the packages, and report any bugs that you find.

Regards,

David
sourabh
CodeLite Curious
Posts: 3
Joined: Fri Aug 27, 2010 3:40 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Ubuntu 11.04 (natty) packages available

Post by sourabh »

I could not locate the natty repositories on the code lite repository link. Please Help.

Regards
Sourabh
DavidGH
CodeLite Plugin
Posts: 819
Joined: Wed Sep 03, 2008 7:26 pm
Contact:

Re: Ubuntu 11.04 (natty) packages available

Post by DavidGH »

Hi,

Sorry, I'd forgotten to add 'natty' to http://codelite.org/LiteEditor/Repositories. Done now.

You should find that this works (others have successfully downloaded from the repository) but if you are still having a problem, please post either the codelite line from your /etc/apt/sources.list, or a screenshot of the relevant dialog in synaptic (or whatever you use).

Let me take the opportunity to mention a mistake that some people have made, in case they are reading this: getting the 'Component' wrong. Looking in the logs for 404s, some people trying to get a ubuntu file are using the debian name, 'contrib'; others trying to get a debian file are using the ubuntu name, 'universe'. This won't work.

Regards,

David
sourabh
CodeLite Curious
Posts: 3
Joined: Fri Aug 27, 2010 3:40 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Ubuntu 11.04 (natty) packages available

Post by sourabh »

Hi,
I failed to add the repositories in natty. After adding the repository address in synaptic and reloading the repositories I am getting the following error:
"W: GPG error: http://www.codelite.co.uk natty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6856E1DB1AC82609"
Moreover "sudo apt-key adv --fetch-keys http://www.codelite.co.uk/CodeLite.asc" returns the following error on the terminal "gpg: keyserver timed out
gpg: WARNING: unable to fetch URI http://www.codelite.co.uk/CodeLite.asc: keyserver error".

I am behind a proxy, so I don't know whether that creates the problem or not. But I did the proxy settings on the synaptic setting menu (along with user name and authentication). And other repositories like natty universe etc are getting updated at a reload.

the following is the entry in the sources.list file at "/etc/apt/"
//////////////////////////////////////////////////////////////////////////////////////////////////////
## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
# deb http://extras.ubuntu.com/ubuntu natty main
# deb-src http://extras.ubuntu.com/ubuntu natty main
deb http://www.codelite.co.uk/ubuntu/ natty universe
deb-src http://www.codelite.co.uk/ubuntu/ natty universe
//////////////////////////////////////////////////////////////////////////////////////////////////////////

I have already added the lucid repositories successfully at my friends PC but I am not
able to manage this on natty.

Regards
Sourabh
DavidGH
CodeLite Plugin
Posts: 819
Joined: Wed Sep 03, 2008 7:26 pm
Contact:

Re: Ubuntu 11.04 (natty) packages available

Post by DavidGH »

the following is the entry in the sources.list file at "/etc/apt/"...
That looks fine.
I am behind a proxy, so I don't know whether that creates the problem or not
Maybe you're right. I just tested on a natty box, and both the key and the repo loaded properly.

Try downloading the key separately, and then add it by hand:

Code: Select all

wget http://www.codelite.co.uk/CodeLite.asc
sudo apt-key add ./CodeLite.asc
If that works but you still can't get synaptic to install CodeLite, you could download the deb from sourceforge and install it using dpkg.
sourabh
CodeLite Curious
Posts: 3
Joined: Fri Aug 27, 2010 3:40 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Ubuntu 11.04 (natty) packages available

Post by sourabh »

Hi David,

The workaround (i.e. manually adding the key) worked, but being behind a proxy, I had to tweak it.

The commands I used are as follows:

Code: Select all

wget --proxy-user=MY_USER_NAME --proxy-passwd=MY_USER_PASSWORD http://www.codelite.co.uk/CodeLite.asc
sudo apt-key add ./CodeLite.asc
Thanks

Regards
Sourabh
Post Reply