This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR #1883: Spack example: use external
packages.yaml
, add patch
- Loading branch information
Showing
4 changed files
with
95 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
index 0e8f983545..b85ef9958a 100644 | ||
--- spack/var/spack/repos/builtin/packages/charliecloud/package.py | ||
+++ spack/var/spack/repos/builtin/packages/charliecloud/package.py | ||
@@ -152,5 +152,7 @@ def configure_args(self): | ||
if "+squashfuse" in self.spec: | ||
squashfuse_prefix = "{0}".format(self.spec["squashfuse"].prefix) | ||
args.append("--with-libsquashfuse={0}".format(squashfuse_prefix)) | ||
+ fuse_include = self.spec["fuse"].prefix.include.fuse3 | ||
+ args.append("CFLAGS=-I{0}".format(fuse_include)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
packages: | ||
# The following packages are built externally to speed up the spack build | ||
# process; they can be built from spack without issue, e.g., you can remove | ||
# them from here without issue. | ||
autoconf: | ||
buildable: false | ||
externals: | ||
- spec: autoconf@2.69 | ||
prefix: /usr | ||
automake: | ||
buildable: false | ||
externals: | ||
- spec: automake@1.16.1 | ||
prefix: /usr | ||
git: | ||
buildable: false | ||
externals: | ||
- spec: git@2.39.3 | ||
prefix: /usr | ||
perl: | ||
buildable: false | ||
externals: | ||
- spec: perl@5.26.3 | ||
prefix: /usr | ||
pkgconf: | ||
buildable: false | ||
externals: | ||
- spec: pkgconf@1.4.2 | ||
prefix: /usr | ||
python: | ||
buildable: false | ||
externals: | ||
- spec: python@3.8.17 | ||
prefix: /usr | ||
openssl: | ||
buildable: false | ||
externals: | ||
- spec: openssl@1.1.1 | ||
prefix: /usr | ||
|
||
# Unlike the above, the following packages require a sysadmin. Removing these | ||
# will likely cause issues. | ||
libfuse: | ||
buildable: false | ||
externals: | ||
- spec: libfuse@3.3.0 | ||
prefix: /usr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters