Page 1 of 1

Ubuntu 11.04 (natty) packages available

Posted: Fri Apr 29, 2011 11:33 pm
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

Re: Ubuntu 11.04 (natty) packages available

Posted: Thu May 26, 2011 11:46 am
by sourabh
I could not locate the natty repositories on the code lite repository link. Please Help.

Regards
Sourabh

Re: Ubuntu 11.04 (natty) packages available

Posted: Thu May 26, 2011 2:34 pm
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

Re: Ubuntu 11.04 (natty) packages available

Posted: Fri May 27, 2011 1:11 pm
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

Re: Ubuntu 11.04 (natty) packages available

Posted: Fri May 27, 2011 1:45 pm
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.

Re: Ubuntu 11.04 (natty) packages available

Posted: Fri May 27, 2011 4:33 pm
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