Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc/conf.py: download deb archive.ubuntu.com manually #581

Merged
merged 1 commit into from
Jul 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ def sh(command):
sh("cd ..; make eus")
sh("cd ../eus; git pull --unshallow; git fetch --all")
sh("mkdir -p ../eus/Linux64/lib")
sh("apt-get download libgl1 libglvnd-dev mesa-common-dev || echo OK")
sh("wget http://archive.ubuntu.com/ubuntu/pool/main/libg/libglvnd/libgl1_1.0.0-2ubuntu2.3_amd64.deb")
sh("wget http://archive.ubuntu.com/ubuntu/pool/main/libg/libglvnd/libglvnd-dev_1.0.0-2ubuntu2.3_amd64.deb")
sh("apt-get download libglu1-mesa libglu1-mesa-dev")
sh("wget http://archive.ubuntu.com/ubuntu/pool/main/m/mesa/mesa-common-dev_20.0.8-0ubuntu1~18.04.1_amd64.deb")
sh("wget http://archive.ubuntu.com/ubuntu/pool/main/libg/libglu/libglu1-mesa_9.0.0-2.1build1_amd64.deb")
sh("wget http://archive.ubuntu.com/ubuntu/pool/main/libg/libglu/libglu1-mesa-dev_9.0.0-2.1build1_amd64.deb")
sh("for deb in *.deb; do dpkg -x $deb .; done")
sh("cp -r usr/include/* ../eus/lisp/c/")
sh("cp usr/lib/*/* ../eus/Linux64/lib/ || echo OK")
Expand Down