From 2cf40f4867729ab0788c290eba5894bb7f88c299 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 13 Mar 2015 23:38:13 +0100 Subject: [PATCH] travis: fix pinning setup (newlines and YAML are complicated) --- .travis.yml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index fc01df70..1c801609 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,28 @@ before_install: # into a state where we can build a recent version of i3 :(. - "echo 'deb http://archive.ubuntu.com/ubuntu/ trusty main universe' | sudo tee /etc/apt/sources.list.d/trusty.list" - "echo 'APT::Default-Release \"precise\";' | sudo tee /etc/apt/apt.conf.d/default-release" - - "echo -e \"Package: libc6\nPin: release n=trusty\nPin-Priority: 999\" | sudo tee /etc/apt/preferences.d/00-libc6" - - "echo -e \"Package: libxkbcommon*\nPin: release n=trusty\nPin-Priority: 999\" | sudo tee /etc/apt/preferences.d/01-xkbcommon" - - "echo -e \"Package: libyajl*\nPin: release n=trusty\nPin-Priority: 999\" | sudo tee /etc/apt/preferences.d/02-yajl" - - "echo -e \"Package: libxcb-image*\nPin: release n=trusty\nPin-Priority: 999\" | sudo tee /etc/apt/preferences.d/03-xcb-image" + + - "echo 'Package: libc6' > /tmp/pin" + - "echo 'Pin: release n=trusty' >> /tmp/pin" + - "echo 'Pin-Priority: 999' >> /tmp/pin" + - "echo '' >> /tmp/pin" + + - "echo 'Package: libxkbcommon*' >> /tmp/pin" + - "echo 'Pin: release n=trusty' >> /tmp/pin" + - "echo 'Pin-Priority: 999' >> /tmp/pin" + - "echo '' >> /tmp/pin" + + - "echo 'Package: libyajl*' >> /tmp/pin" + - "echo 'Pin: release n=trusty' >> /tmp/pin" + - "echo 'Pin-Priority: 999' >> /tmp/pin" + - "echo '' >> /tmp/pin" + + - "echo 'Package: libxcb-image*' >> /tmp/pin" + - "echo 'Pin: release n=trusty' >> /tmp/pin" + - "echo 'Pin-Priority: 999' >> /tmp/pin" + - "echo '' >> /tmp/pin" + + - sudo cp /tmp/pin /etc/apt/preferences.d/trustypin - sudo apt-get update - sudo apt-get install -t trusty libc6 libc6-dev - sudo apt-get install --no-install-recommends devscripts equivs -- 2.39.5