
* abi-dumper: remove custom phases * apktool: remove custom phases, add v2.6.1 * aragorn: remove custom phases * ascent: remove custom phases * astral: remove custom phases, add v5.7.1 * bigdft: remove redundant phase definitions * bazel: remove custom phases phase definitions * blasr: remove custom phases phase definitions * bmake: remove custom phases phase definitions, add v20220330 * botan: remove custom phases phase definitions * breakdancer: remove custom phases phase definitions * dnstracer: remove custom phases phase definitions * conduit: remove custom phases phase definitions * eclipse-gcj-parser: remove custom phases phase definitions * eem: remove custom phases phase definitions * fasttree: remove custom phases phase definitions * fleur: remove custom phases phase definitions * fpm: remove custom phases phase definitions * genie: remove custom phases phase definitions * gluegen: remove custom phases phase definitions * gnat: remove custom phases phase definitions * hpgmg: remove custom phases phase definitions * karma: remove custom phases phase definitions * libc: remove custom phases phase definitions
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
# Copyright 2013-2022 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)
|
|
|
|
import os
|
|
|
|
from spack import *
|
|
|
|
|
|
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)
|
|
|
|
@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 install(self, spec, prefix):
|
|
self.gcj('-o', 'ecj1',
|
|
'--main=org.eclipse.jdt.internal.compiler.batch.GCCMain',
|
|
'ecj-4.8.jar')
|
|
mkdirp(spec.prefix.bin)
|
|
install('ecj1', spec.prefix.bin)
|