
PR #15212 added a new connect_timeout option that can be overridden using fetch_options but had to specified per-version. This adds a new per-package variable that can be used to override fetch_options for all versions in the package. This includes connect_timeout as well as 'cookie' (e.g. for the jdk package). Packages can combine package-level fetch_options with per-version fetch_options, in which case the version fetch_options completely override the package-level fetch_options. This commit includes tests for the added behavior.
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
import os
|
|
|
|
|
|
class EclipseGcjParser(Package):
|
|
"""GCJ requires the Eclipse Java parser, but does not ship with it.
|
|
This builds that parser into an executable binary, thereby
|
|
making GCJ work."""
|
|
|
|
homepage = "https://github.com/spack/spack/issues/8165"
|
|
url = "ftp://sourceware.org/pub/java/ecj-4.8.jar"
|
|
# Official download found at (see ecj-4.8M4.jar and ecjsrc-4.8M4.jar)
|
|
# http://download.eclipse.org/eclipse/downloads/drops4/S-4.8M4-201712062000/
|
|
|
|
maintainers = ['citibeth']
|
|
|
|
# The server is sometimes a bit slow to respond
|
|
fetch_options = {'timeout': 60}
|
|
|
|
version('4.8', sha256='98fd128f1d374d9e42fd9d4836bdd249c6d511ebc6c0df17fbc1b9df96c3d781', expand=False)
|
|
|
|
phases = ('build', 'install')
|
|
|
|
@property
|
|
def gcj(self):
|
|
"""Obtain Executable for the gcj included with this GCC,
|
|
even in the face of GCC binaries with version numbers
|
|
included in their names."""
|
|
|
|
dir, gcc = os.path.split(str(self.compiler.cc))
|
|
if 'gcc' not in gcc:
|
|
raise ValueError(
|
|
'Package {0} requires GCC to build'.format(self.name))
|
|
|
|
return Executable(join_path(dir, gcc.replace('gcc', 'gcj')))
|
|
|
|
def build(self, spec, prefix):
|
|
self.gcj(
|
|
'-o', 'ecj1',
|
|
'--main=org.eclipse.jdt.internal.compiler.batch.GCCMain',
|
|
'ecj-4.8.jar')
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(spec.prefix.bin)
|
|
install('ecj1', spec.prefix.bin)
|