From e7512bcb7b784d96388bbc333769479ca657b372 Mon Sep 17 00:00:00 2001 From: iarspider Date: Mon, 24 Oct 2022 23:32:46 +0200 Subject: Add filename to text_to_relocate only if it needs to be relocated (#31074) Scan the text files for relocatable prefixes *before* creating a tarball, to reduce the amount of work to be done during install from binary cache. Co-authored-by: Harmen Stoppels --- .../packages/needs-text-relocation/package.py | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 var/spack/repos/builtin.mock/packages/needs-text-relocation/package.py (limited to 'var') diff --git a/var/spack/repos/builtin.mock/packages/needs-text-relocation/package.py b/var/spack/repos/builtin.mock/packages/needs-text-relocation/package.py new file mode 100644 index 0000000000..9b2654dd83 --- /dev/null +++ b/var/spack/repos/builtin.mock/packages/needs-text-relocation/package.py @@ -0,0 +1,27 @@ +# 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) +from spack.package import * + + +class NeedsTextRelocation(Package): + """A dumy package that encodes its prefix.""" + + homepage = "https://www.cmake.org" + url = "https://cmake.org/files/v3.4/cmake-3.4.3.tar.gz" + + version("0.0.0", "12345678qwertyuiasdfghjkzxcvbnm0") + + def install(self, spec, prefix): + mkdirp(prefix.bin) + + exe = join_path(prefix.bin, "exe") + with open(exe, "w") as f: + f.write(prefix) + set_executable(exe) + + otherexe = join_path(prefix.bin, "otherexe") + with open(otherexe, "w") as f: + f.write("Lorem Ipsum") + set_executable(otherexe) -- cgit v1.2.3-70-g09d2