From: Ben Hildred Date: Fri, 28 Sep 2018 20:46:27 +0000 (-0600) Subject: dead links and bitrot X-Git-Tag: v1.9.90~43 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=60cf220784ab3415a1f3c7dcd98a6fb969b4f97f;p=tigervnc.git dead links and bitrot Two minor issues: This script is written in python two which is depreciated, and should be rewritten in python three, but I have so far been successful in not learning python. :-) to simplify debugging I have clarified that it needs a python two interpreter. This script downloads an old version of mesa (an update may be appropriate), unfortunately the release candidate previously specified is no longer available, so an update to the next released version was made. --- diff --git a/contrib/xorg/download-xorg-7.5 b/contrib/xorg/download-xorg-7.5 index 65967d28..46347eac 100755 --- a/contrib/xorg/download-xorg-7.5 +++ b/contrib/xorg/download-xorg-7.5 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # -*-mode: python; coding: utf-8 -*- import os @@ -60,7 +60,7 @@ packages = { "xorg-server": SERVER + "xorg-server-1.8.2.tar.bz2", "libdrm": "http://dri.freedesktop.org/libdrm/libdrm-2.4.21.tar.bz2", - "Mesa": "ftp://ftp.freedesktop.org/pub/mesa/beta/MesaLib-7.8.3-rc1.tar.bz2", + "Mesa": "ftp://ftp.freedesktop.org/pub/mesa/older-versions/7.x/7.9/MesaLib-7.9.tar.bz2", "libpthread-stubs": "http://xcb.freedesktop.org/dist/libpthread-stubs-0.3.tar.bz2", "freetype": "http://downloads.sourceforge.net/freetype/freetype-2.4.2.tar.bz2", }