AutotoolsPackage / MakefilePackage: add gmake build dependency (#40380)

This commit is contained in:
Harmen Stoppels 2023-10-18 19:56:54 +02:00 committed by GitHub
parent 55198c49e5
commit 294e659ae8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 133 additions and 86 deletions

View file

@ -1,7 +1,6 @@
Name, Supported Versions, Notes, Requirement Reason Name, Supported Versions, Notes, Requirement Reason
Python, 3.6--3.12, , Interpreter for Spack Python, 3.6--3.12, , Interpreter for Spack
C/C++ Compilers, , , Building software C/C++ Compilers, , , Building software
make, , , Build software
patch, , , Build software patch, , , Build software
tar, , , Extract/create archives tar, , , Extract/create archives
gzip, , , Compress/Decompress archives gzip, , , Compress/Decompress archives

1 Name Supported Versions Notes Requirement Reason
2 Python 3.6--3.12 Interpreter for Spack
3 C/C++ Compilers Building software
make Build software
4 patch Build software
5 tar Extract/create archives
6 gzip Compress/Decompress archives

View file

@ -46,6 +46,7 @@ class AutotoolsPackage(spack.package_base.PackageBase):
depends_on("gnuconfig", type="build", when="target=ppc64le:") depends_on("gnuconfig", type="build", when="target=ppc64le:")
depends_on("gnuconfig", type="build", when="target=aarch64:") depends_on("gnuconfig", type="build", when="target=aarch64:")
depends_on("gnuconfig", type="build", when="target=riscv64:") depends_on("gnuconfig", type="build", when="target=riscv64:")
depends_on("gmake", type="build")
conflicts("platform=windows") conflicts("platform=windows")
def flags_to_build_system_args(self, flags): def flags_to_build_system_args(self, flags):

View file

@ -9,7 +9,8 @@
import spack.builder import spack.builder
import spack.package_base import spack.package_base
from spack.directives import build_system, conflicts from spack.directives import build_system, conflicts, depends_on
from spack.multimethod import when
from ._checks import ( from ._checks import (
BaseBuilder, BaseBuilder,
@ -29,7 +30,10 @@ class MakefilePackage(spack.package_base.PackageBase):
legacy_buildsystem = "makefile" legacy_buildsystem = "makefile"
build_system("makefile") build_system("makefile")
conflicts("platform=windows", when="build_system=makefile")
with when("build_system=makefile"):
conflicts("platform=windows")
depends_on("gmake", type="build")
@spack.builder.builder("makefile") @spack.builder.builder("makefile")

View file

@ -13,8 +13,8 @@
import spack.concretize import spack.concretize
import spack.operating_systems import spack.operating_systems
import spack.platforms import spack.platforms
import spack.spec
import spack.target import spack.target
from spack.spec import ArchSpec, CompilerSpec, Spec
@pytest.fixture(scope="module") @pytest.fixture(scope="module")
@ -64,7 +64,7 @@ def test_user_input_combination(config, target_str, os_str):
the operating system match. the operating system match.
""" """
spec_str = "libelf os={} target={}".format(os_str, target_str) spec_str = "libelf os={} target={}".format(os_str, target_str)
spec = spack.spec.Spec(spec_str) spec = Spec(spec_str)
assert spec.architecture.os == str(TEST_PLATFORM.operating_system(os_str)) assert spec.architecture.os == str(TEST_PLATFORM.operating_system(os_str))
assert spec.architecture.target == TEST_PLATFORM.target(target_str) assert spec.architecture.target == TEST_PLATFORM.target(target_str)
@ -114,7 +114,7 @@ def test_target_container_semantic(cpu_flag, target_name):
], ],
) )
def test_arch_spec_container_semantic(item, architecture_str): def test_arch_spec_container_semantic(item, architecture_str):
architecture = spack.spec.ArchSpec(architecture_str) architecture = ArchSpec(architecture_str)
assert item in architecture assert item in architecture
@ -141,24 +141,24 @@ def test_optimization_flags(compiler_spec, target_name, expected_flags, config):
@pytest.mark.parametrize( @pytest.mark.parametrize(
"compiler,real_version,target_str,expected_flags", "compiler,real_version,target_str,expected_flags",
[ [
(spack.spec.CompilerSpec("gcc@=9.2.0"), None, "haswell", "-march=haswell -mtune=haswell"), (CompilerSpec("gcc@=9.2.0"), None, "haswell", "-march=haswell -mtune=haswell"),
# Check that custom string versions are accepted # Check that custom string versions are accepted
( (
spack.spec.CompilerSpec("gcc@=10foo"), CompilerSpec("gcc@=10foo"),
"9.2.0", "9.2.0",
"icelake", "icelake",
"-march=icelake-client -mtune=icelake-client", "-march=icelake-client -mtune=icelake-client",
), ),
# Check that we run version detection (4.4.0 doesn't support icelake) # Check that we run version detection (4.4.0 doesn't support icelake)
( (
spack.spec.CompilerSpec("gcc@=4.4.0-special"), CompilerSpec("gcc@=4.4.0-special"),
"9.2.0", "9.2.0",
"icelake", "icelake",
"-march=icelake-client -mtune=icelake-client", "-march=icelake-client -mtune=icelake-client",
), ),
# Check that the special case for Apple's clang is treated correctly # Check that the special case for Apple's clang is treated correctly
# i.e. it won't try to detect the version again # i.e. it won't try to detect the version again
(spack.spec.CompilerSpec("apple-clang@=9.1.0"), None, "x86_64", "-march=x86-64"), (CompilerSpec("apple-clang@=9.1.0"), None, "x86_64", "-march=x86-64"),
], ],
) )
def test_optimization_flags_with_custom_versions( def test_optimization_flags_with_custom_versions(
@ -180,8 +180,8 @@ def test_optimization_flags_with_custom_versions(
], ],
) )
def test_satisfy_strict_constraint_when_not_concrete(architecture_tuple, constraint_tuple): def test_satisfy_strict_constraint_when_not_concrete(architecture_tuple, constraint_tuple):
architecture = spack.spec.ArchSpec(architecture_tuple) architecture = ArchSpec(architecture_tuple)
constraint = spack.spec.ArchSpec(constraint_tuple) constraint = ArchSpec(constraint_tuple)
assert not architecture.satisfies(constraint) assert not architecture.satisfies(constraint)
@ -204,16 +204,10 @@ def test_satisfy_strict_constraint_when_not_concrete(architecture_tuple, constra
def test_concretize_target_ranges(root_target_range, dep_target_range, result, monkeypatch): def test_concretize_target_ranges(root_target_range, dep_target_range, result, monkeypatch):
# Monkeypatch so that all concretization is done as if the machine is core2 # Monkeypatch so that all concretization is done as if the machine is core2
monkeypatch.setattr(spack.platforms.test.Test, "default", "core2") monkeypatch.setattr(spack.platforms.test.Test, "default", "core2")
spec = Spec(f"a %gcc@10 foobar=bar target={root_target_range} ^b target={dep_target_range}")
spec_str = "a %%gcc@10 foobar=bar target=%s ^b target=%s" % (
root_target_range,
dep_target_range,
)
spec = spack.spec.Spec(spec_str)
with spack.concretize.disable_compiler_existence_check(): with spack.concretize.disable_compiler_existence_check():
spec.concretize() spec.concretize()
assert spec.target == spec["b"].target == result
assert str(spec).count("arch=test-debian6-%s" % result) == 2
@pytest.mark.parametrize( @pytest.mark.parametrize(

View file

@ -1080,14 +1080,17 @@ def test_push_mirror_contents(
ci.import_signing_key(_signing_key()) ci.import_signing_key(_signing_key())
spack_yaml_contents = """ with tmpdir.as_cwd():
with open("spack.yaml", "w") as f:
f.write(
f"""\
spack: spack:
definitions: definitions:
- packages: [patchelf] - packages: [patchelf]
specs: specs:
- $packages - $packages
mirrors: mirrors:
test-mirror: {0} test-mirror: {mirror_url}
ci: ci:
enable-artifacts-buildcache: True enable-artifacts-buildcache: True
pipeline-gen: pipeline-gen:
@ -1107,15 +1110,8 @@ def test_push_mirror_contents(
- nonbuildtag - nonbuildtag
image: basicimage image: basicimage
custom_attribute: custom! custom_attribute: custom!
""".format( """
mirror_url
) )
filename = str(tmpdir.join("spack.yaml"))
with open(filename, "w") as f:
f.write(spack_yaml_contents)
with tmpdir.as_cwd():
env_cmd("create", "test", "./spack.yaml") env_cmd("create", "test", "./spack.yaml")
with ev.read("test"): with ev.read("test"):
concrete_spec = Spec("patchelf").concretized() concrete_spec = Spec("patchelf").concretized()
@ -1126,7 +1122,8 @@ def test_push_mirror_contents(
install_cmd("--add", "--keep-stage", json_path) install_cmd("--add", "--keep-stage", json_path)
ci.push_mirror_contents(concrete_spec, mirror_url, True) for s in concrete_spec.traverse():
ci.push_mirror_contents(s, mirror_url, True)
buildcache_path = os.path.join(mirror_dir.strpath, "build_cache") buildcache_path = os.path.join(mirror_dir.strpath, "build_cache")

View file

@ -719,13 +719,12 @@ def test_check_deps_status_external(install_mockery, monkeypatch):
installer = create_installer(const_arg) installer = create_installer(const_arg)
request = installer.build_requests[0] request = installer.build_requests[0]
# Mock the known dependent, b, as external so assumed to be installed # Mock the dependencies as external so assumed to be installed
monkeypatch.setattr(spack.spec.Spec, "external", True) monkeypatch.setattr(spack.spec.Spec, "external", True)
installer._check_deps_status(request) installer._check_deps_status(request)
# exotic architectures will add dependencies on gnuconfig, which we want to ignore for dep in request.spec.traverse(root=False):
installed = [x for x in installer.installed if not x.startswith("gnuconfig")] assert inst.package_id(dep.package) in installer.installed
assert installed[0].startswith("b")
def test_check_deps_status_upstream(install_mockery, monkeypatch): def test_check_deps_status_upstream(install_mockery, monkeypatch):
@ -733,13 +732,12 @@ def test_check_deps_status_upstream(install_mockery, monkeypatch):
installer = create_installer(const_arg) installer = create_installer(const_arg)
request = installer.build_requests[0] request = installer.build_requests[0]
# Mock the known dependent, b, as installed upstream # Mock the known dependencies as installed upstream
monkeypatch.setattr(spack.spec.Spec, "installed_upstream", True) monkeypatch.setattr(spack.spec.Spec, "installed_upstream", True)
installer._check_deps_status(request) installer._check_deps_status(request)
# exotic architectures will add dependencies on gnuconfig, which we want to ignore for dep in request.spec.traverse(root=False):
installed = [x for x in installer.installed if not x.startswith("gnuconfig")] assert inst.package_id(dep.package) in installer.installed
assert installed[0].startswith("b")
def test_add_bootstrap_compilers(install_mockery, monkeypatch): def test_add_bootstrap_compilers(install_mockery, monkeypatch):

View file

@ -285,7 +285,7 @@ spt_succeeds which spack
# create a fake mock package install and store its location for later # create a fake mock package install and store its location for later
title "Setup" title "Setup"
echo "Creating a mock package installation" echo "Creating a mock package installation"
spack -m install --fake a spack -m install --fake shell-a
# create a test environment for testing environment commands # create a test environment for testing environment commands
echo "Creating a mock environment" echo "Creating a mock environment"
@ -300,7 +300,7 @@ function spt_cleanup -p %self
title "Cleanup" title "Cleanup"
echo "Removing test packages before exiting." echo "Removing test packages before exiting."
spack -m uninstall -yf b a spack -m uninstall -yf shell-b shell-a
echo echo
echo "$__spt_success tests succeeded." echo "$__spt_success tests succeeded."
@ -322,7 +322,7 @@ spt_contains "usage: spack " spack help --all
title 'Testing `spack cd`' title 'Testing `spack cd`'
spt_contains "usage: spack cd " spack cd -h spt_contains "usage: spack cd " spack cd -h
spt_contains "usage: spack cd " spack cd --help spt_contains "usage: spack cd " spack cd --help
spt_contains "cd $b_install" spack cd -i b spt_contains "cd $b_install" spack cd -i shell-b
title 'Testing `spack module`' title 'Testing `spack module`'
spt_contains "usage: spack module " spack -m module -h spt_contains "usage: spack module " spack -m module -h
@ -330,34 +330,34 @@ spt_contains "usage: spack module " spack -m module --help
spt_contains "usage: spack module " spack -m module spt_contains "usage: spack module " spack -m module
title 'Testing `spack load`' title 'Testing `spack load`'
set _b_loc (spack -m location -i b) set _b_loc (spack -m location -i shell-b)
set _b_bin $_b_loc"/bin" set _b_bin $_b_loc"/bin"
set _a_loc (spack -m location -i a) set _a_loc (spack -m location -i shell-a)
set _a_bin $_a_loc"/bin" set _a_bin $_a_loc"/bin"
spt_contains "set -gx PATH $_b_bin" spack -m load --only package --fish b spt_contains "set -gx PATH $_b_bin" spack -m load --only package --fish shell-b
spt_succeeds spack -m load b spt_succeeds spack -m load shell-b
set LIST_CONTENT (spack -m load b; spack load --list) set LIST_CONTENT (spack -m load shell-b; spack load --list)
spt_contains "b@" echo $LIST_CONTENT spt_contains "shell-b@" echo $LIST_CONTENT
spt_does_not_contain "a@" echo $LIST_CONTENT spt_does_not_contain "shell-a@" echo $LIST_CONTENT
# test a variable MacOS clears and one it doesn't for recursive loads # test a variable MacOS clears and one it doesn't for recursive loads
spt_contains "set -gx PATH $_a_bin:$_b_bin" spack -m load --fish a spt_contains "set -gx PATH $_a_bin:$_b_bin" spack -m load --fish shell-a
spt_succeeds spack -m load --only dependencies a spt_succeeds spack -m load --only dependencies shell-a
spt_succeeds spack -m load --only package a spt_succeeds spack -m load --only package shell-a
spt_fails spack -m load d spt_fails spack -m load d
spt_contains "usage: spack load " spack -m load -h spt_contains "usage: spack load " spack -m load -h
spt_contains "usage: spack load " spack -m load -h d spt_contains "usage: spack load " spack -m load -h d
spt_contains "usage: spack load " spack -m load --help spt_contains "usage: spack load " spack -m load --help
title 'Testing `spack unload`' title 'Testing `spack unload`'
spack -m load b a # setup spack -m load shell-b shell-a # setup
# spt_contains "module unload $b_module" spack -m unload b # spt_contains "module unload $b_module" spack -m unload shell-b
spt_succeeds spack -m unload b spt_succeeds spack -m unload shell-b
spt_succeeds spack -m unload --all spt_succeeds spack -m unload --all
spack -m unload --all # cleanup spack -m unload --all # cleanup
spt_fails spack -m unload -l spt_fails spack -m unload -l
# spt_contains "module unload -l --arg $b_module" spack -m unload -l --arg b # spt_contains "module unload -l --arg $b_module" spack -m unload -l --arg shell-b
spt_fails spack -m unload d spt_fails spack -m unload shell-d
spt_contains "usage: spack unload " spack -m unload -h spt_contains "usage: spack unload " spack -m unload -h
spt_contains "usage: spack unload " spack -m unload -h d spt_contains "usage: spack unload " spack -m unload -h d
spt_contains "usage: spack unload " spack -m unload --help spt_contains "usage: spack unload " spack -m unload --help

View file

@ -60,12 +60,12 @@ cd() {
# Create a fake mock package install and store its location for later # Create a fake mock package install and store its location for later
title "Setup" title "Setup"
echo "Creating a mock package installation" echo "Creating a mock package installation"
spack -m install --fake a spack -m install --fake shell-a
a_install=$(spack location -i a) a_install=$(spack location -i shell-a)
a_module=$(spack -m module tcl find a) a_module=$(spack -m module tcl find shell-a)
b_install=$(spack location -i b) b_install=$(spack location -i shell-b)
b_module=$(spack -m module tcl find b) b_module=$(spack -m module tcl find shell-b)
# Create a test environment for testing environment commands # Create a test environment for testing environment commands
echo "Creating a mock environment" echo "Creating a mock environment"
@ -80,7 +80,7 @@ cleanup() {
title "Cleanup" title "Cleanup"
echo "Removing test packages before exiting." echo "Removing test packages before exiting."
spack -m uninstall -yf b a spack -m uninstall -yf shell-b shell-a
} }
# ----------------------------------------------------------------------- # -----------------------------------------------------------------------
@ -96,7 +96,7 @@ contains "usage: spack " spack help --all
title 'Testing `spack cd`' title 'Testing `spack cd`'
contains "usage: spack cd " spack cd -h contains "usage: spack cd " spack cd -h
contains "usage: spack cd " spack cd --help contains "usage: spack cd " spack cd --help
contains "cd $b_install" spack cd -i b contains "cd $b_install" spack cd -i shell-b
title 'Testing `spack module`' title 'Testing `spack module`'
contains "usage: spack module " spack -m module -h contains "usage: spack module " spack -m module -h
@ -104,25 +104,25 @@ contains "usage: spack module " spack -m module --help
contains "usage: spack module " spack -m module contains "usage: spack module " spack -m module
title 'Testing `spack load`' title 'Testing `spack load`'
contains "export PATH=$(spack -m location -i b)/bin" spack -m load --only package --sh b contains "export PATH=$(spack -m location -i shell-b)/bin" spack -m load --only package --sh shell-b
succeeds spack -m load b succeeds spack -m load shell-b
LIST_CONTENT=`spack -m load b; spack load --list` LIST_CONTENT=`spack -m load shell-b; spack load --list`
contains "b@" echo $LIST_CONTENT contains "shell-b@" echo $LIST_CONTENT
does_not_contain "a@" echo $LIST_CONTENT does_not_contain "shell-a@" echo $LIST_CONTENT
fails spack -m load -l fails spack -m load -l
# test a variable MacOS clears and one it doesn't for recursive loads # test a variable MacOS clears and one it doesn't for recursive loads
contains "export PATH=$(spack -m location -i a)/bin" spack -m load --sh a contains "export PATH=$(spack -m location -i shell-a)/bin" spack -m load --sh shell-a
contains "export PATH=$(spack -m location -i b)/bin" spack -m load --sh b contains "export PATH=$(spack -m location -i shell-b)/bin" spack -m load --sh shell-b
succeeds spack -m load --only dependencies a succeeds spack -m load --only dependencies shell-a
succeeds spack -m load --only package a succeeds spack -m load --only package shell-a
fails spack -m load d fails spack -m load d
contains "usage: spack load " spack -m load -h contains "usage: spack load " spack -m load -h
contains "usage: spack load " spack -m load -h d contains "usage: spack load " spack -m load -h d
contains "usage: spack load " spack -m load --help contains "usage: spack load " spack -m load --help
title 'Testing `spack unload`' title 'Testing `spack unload`'
spack -m load b a # setup spack -m load shell-b shell-a # setup
succeeds spack -m unload b succeeds spack -m unload shell-b
succeeds spack -m unload --all succeeds spack -m unload --all
spack -m unload --all # cleanup spack -m unload --all # cleanup
fails spack -m unload -l fails spack -m unload -l

View file

@ -0,0 +1,18 @@
# Copyright 2013-2023 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.package import *
class Gmake(Package):
"""Dummy GMake Package"""
homepage = "https://www.gnu.org/software/make"
url = "https://ftpmirror.gnu.org/make/make-4.4.tar.gz"
version("4.4", sha256="ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed")
def do_stage(self):
mkdirp(self.stage.source_path)

View file

@ -13,3 +13,6 @@ class Gmake(Package):
url = "https://ftpmirror.gnu.org/make/make-4.4.tar.gz" url = "https://ftpmirror.gnu.org/make/make-4.4.tar.gz"
version("4.4", sha256="ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed") version("4.4", sha256="ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed")
def do_stage(self):
mkdirp(self.stage.source_path)

View file

@ -0,0 +1,17 @@
# Copyright 2013-2023 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.package import *
class ShellA(Package):
"""Simple package with one dependency for shell tests"""
homepage = "http://www.example.com"
url = "http://www.example.com/shell-a-1.0.tar.gz"
version("1.0", md5="0123456789abcdef0123456789abcdef")
version("2.0", md5="abcdef0123456789abcdef0123456789")
depends_on("shell-b")

View file

@ -0,0 +1,16 @@
# Copyright 2013-2023 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.package import *
class ShellB(Package):
"""Simple package with no dependencies for shell tests"""
homepage = "http://www.example.com"
url = "http://www.example.com/shell-b-1.0.tar.gz"
version("1.0", md5="0123456789abcdef0123456789abcdef")
version("0.9", md5="abcd456789abcdef0123456789abcdef")

View file

@ -9,7 +9,7 @@
from spack.package import * from spack.package import *
class Gmake(AutotoolsPackage, GNUMirrorPackage): class Gmake(Package, GNUMirrorPackage):
"""GNU Make is a tool which controls the generation of executables and """GNU Make is a tool which controls the generation of executables and
other non-source files of a program from the program's source files.""" other non-source files of a program from the program's source files."""
@ -64,17 +64,17 @@ def determine_version(cls, exe):
return match.group(1) if match else None return match.group(1) if match else None
def configure_args(self): def configure_args(self):
args = [] return [
args.extend(self.with_or_without("guile")) "--with-guile" if self.spec.satisfies("+guile") else "--without-guile",
args.append("--disable-nls") "--disable-nls",
return args ]
def build(self, spec, prefix):
with working_dir(self.build_directory):
Executable(os.path.join(self.stage.source_path, "build.sh"))()
def install(self, spec, prefix): def install(self, spec, prefix):
with working_dir(self.build_directory): configure = Executable(join_path(self.stage.source_path, "configure"))
build_sh = Executable(join_path(self.stage.source_path, "build.sh"))
with working_dir(self.build_directory, create=True):
configure(f"--prefix={prefix}", *self.configure_args())
build_sh()
os.mkdir(prefix.bin) os.mkdir(prefix.bin)
install("make", prefix.bin) install("make", prefix.bin)
os.symlink("make", prefix.bin.gmake) os.symlink("make", prefix.bin.gmake)