1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
from checksum import verifyFile
from components import requiredLibrariesFor
from configurations import getConfiguration
from download import downloadURL
from extract import TopLevelDirRenamer, extract
from libraries import allDependencies, librariesByName
from packages import getPackage
from patch import Diff, patch
from os import makedirs
from os.path import isdir, isfile, join as joinpath
from shutil import rmtree
import sys
# TODO: Make DirectX headers for MinGW a package and make the DirectX sound
# driver a component.
def downloadPackage(package, tarballsDir):
if not isdir(tarballsDir):
makedirs(tarballsDir)
filePath = joinpath(tarballsDir, package.getTarballName())
if isfile(filePath):
print('%s version %s - already downloaded' % (
package.niceName, package.version
))
else:
downloadURL(package.getURL(), tarballsDir)
def verifyPackage(package, tarballsDir):
filePath = joinpath(tarballsDir, package.getTarballName())
try:
verifyFile(filePath, package.fileLength, package.checksums)
except OSError as ex:
print('%s corrupt: %s' % (
package.getTarballName(), ex
), file=sys.stderr)
sys.exit(1)
def extractPackage(package, tarballsDir, sourcesDir, patchesDir):
if not isdir(sourcesDir):
makedirs(sourcesDir)
sourceDirName = package.getSourceDirName()
packageSrcDir = joinpath(sourcesDir, sourceDirName)
if isdir(packageSrcDir):
rmtree(packageSrcDir)
extract(
joinpath(tarballsDir, package.getTarballName()),
sourcesDir,
TopLevelDirRenamer(sourceDirName)
)
diffPath = joinpath(patchesDir, sourceDirName + '.diff')
if isfile(diffPath):
for diff in Diff.load(diffPath):
patch(diff, sourcesDir)
print('Patched:', diff.getPath())
def fetchPackageSource(makeName, tarballsDir, sourcesDir, patchesDir):
package = getPackage(makeName)
downloadPackage(package, tarballsDir)
verifyPackage(package, tarballsDir)
extractPackage(package, tarballsDir, sourcesDir, patchesDir)
def main(platform, tarballsDir, sourcesDir, patchesDir):
configuration = getConfiguration('3RD_STA')
components = configuration.iterDesiredComponents()
# Compute the set of all directly and indirectly required libraries,
# then filter out system libraries.
thirdPartyLibs = set(
makeName
for makeName in allDependencies(requiredLibrariesFor(components))
if not librariesByName[makeName].isSystemLibrary(platform)
)
for makeName in sorted(thirdPartyLibs):
fetchPackageSource(makeName, tarballsDir, sourcesDir, patchesDir)
if __name__ == '__main__':
if len(sys.argv) == 2:
main(
sys.argv[1],
'derived/3rdparty/download',
'derived/3rdparty/src',
'build/3rdparty'
)
else:
print('Usage: python3 thirdparty_download.py TARGET_OS', file=sys.stderr)
sys.exit(2)
|