I would like to install LibreOffice 4.1 on Ubuntu 12.04. According to official PPA web page there is: libreoffice/ppa, so:
sudo add-apt-repository ppa:libreoffice/ppa
When adding this repository there is WARNING that this PPA may also contains alpha, beta, release candidates etc non-stable releases, that I don’t want to install on this production computer.
In above PPA warning and also on official PPA web page: https://launchpad.net/~libreoffice/+archive/ppa there are other PPAs. To install LibreOffice 4.1 and ONLY install STABLE releases there should be installed from the following PPA: ppa:libreoffice/libreoffice-4-1. I added above PPA by:
sudo add-apt-repository ppa:libreoffice/libreoffice-4-1
or as I can see also works with full path:
sudo add-apt-repository https://launchpad.net/~libreoffice/+archive/libreoffice-4-1
and GPG key is successfully imported.
But when I try to update repository list and install new version
sudo apt-get update && sudo apt-get -y dist-upgrade
I get error:
Err https://launchpad.net precise/main Sources The requested URL returned error: 404 Err https://launchpad.net precise/main amd64 Packages The requested URL returned error: 404 Err https://launchpad.net precise/main i386 Packages The requested URL returned error: 404 Ign https://launchpad.net precise/main Translation-en_US Ign https://launchpad.net precise/main Translation-en W: Failed to fetch https://launchpad.net/~libreoffice/+archive/libreoffice-4-1/dists/precise/main/source/Sources The requested URL returned error: 404 W: Failed to fetch https://launchpad.net/~libreoffice/+archive/libreoffice-4-1/dists/precise/main/binary-amd64/Packages The requested URL returned error: 404 W: Failed to fetch https://launchpad.net/~libreoffice/+archive/libreoffice-4-1/dists/precise/main/binary-i386/Packages The requested URL returned error: 404 E: Some index files failed to download. They have been ignored, or old ones used instead.
Is there something wrong with ppa:libreoffice/libreoffice-4-1 PPA?