linux.debian-sid.install.sh 724 B

123456789101112131415161718
  1. #!/bin/sh
  2. set -e
  3. sudo apt-get install -y \
  4. dpkg \
  5. pbuilder
  6. # work around a pbuilder bug which breaks ccache
  7. # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=666525
  8. # and also missing signing keys in Trusty's debian-archive-keyring
  9. cd /tmp
  10. wget http://archive.ubuntu.com/ubuntu/pool/main/p/pbuilder/pbuilder_0.229.1_all.deb
  11. wget http://archive.ubuntu.com/ubuntu/pool/main/d/debootstrap/debootstrap_1.0.95_all.deb
  12. wget http://archive.ubuntu.com/ubuntu/pool/universe/d/debian-archive-keyring/debian-archive-keyring_2017.7ubuntu1_all.deb
  13. sha256sum -c "$TRAVIS_BUILD_DIR/.travis/debian_pkgs.sha256"
  14. sudo dpkg -i pbuilder_0.229.1_all.deb debootstrap_1.0.95_all.deb debian-archive-keyring_2017.7ubuntu1_all.deb
  15. cd "$OLDPWD"