From 8f57eb6c219c53c65f818ca9fdf5cbe9491d6da5 Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Sat, 8 Aug 2015 01:04:12 +0100 Subject: [PATCH] Use a different LibreOffice ppa to install doxygen Up to now we were using the LibreOffice 4.3 ppa (ppa:libreoffice/libreoffice-4-4) to install doxygen. The LibreOffice Packaging team appear to have removed this ppa, resulting in our doxygen build failing. This changes the ppa we use to LibreOffice 4.4.x. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9fb8295c5..9087bdd8e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_script: ## Install doxygen - if [ ${BUILD_CATEGORY:-0} = doxygen ] ; then - sudo add-apt-repository ppa:libreoffice/libreoffice-4-3 -y && sudo apt-get -qq update && + sudo add-apt-repository ppa:libreoffice/libreoffice-4-4 -y && sudo apt-get -qq update && sudo apt-get --no-install-suggests --no-install-recommends -qq install doxygen && doxygen --version ; fi