Update bootstrap buildcache to support Python 3.12 (#40404)
* Add support for Python 3.12 * Use optimized build of clingo
This commit is contained in:
parent
65e7ec0509
commit
861bb4d35a
13 changed files with 672 additions and 495 deletions
14
.github/workflows/bootstrap.yml
vendored
14
.github/workflows/bootstrap.yml
vendored
|
@ -42,8 +42,8 @@ jobs:
|
|||
shell: runuser -u spack-test -- bash {0}
|
||||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
spack bootstrap disable github-actions-v0.5
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable github-actions-v0.3
|
||||
spack external find cmake bison
|
||||
spack -d solve zlib
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
@ -80,8 +80,8 @@ jobs:
|
|||
shell: runuser -u spack-test -- bash {0}
|
||||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
spack bootstrap disable github-actions-v0.5
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable github-actions-v0.3
|
||||
spack external find cmake bison
|
||||
spack -d solve zlib
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
@ -145,8 +145,8 @@ jobs:
|
|||
- name: Bootstrap clingo
|
||||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
spack bootstrap disable github-actions-v0.5
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable github-actions-v0.3
|
||||
spack external find cmake bison
|
||||
spack -d solve zlib
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
@ -163,8 +163,8 @@ jobs:
|
|||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
export PATH=/usr/local/opt/bison@2.7/bin:$PATH
|
||||
spack bootstrap disable github-actions-v0.5
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable github-actions-v0.3
|
||||
spack external find --not-buildable cmake bison
|
||||
spack -d solve zlib
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
@ -265,6 +265,7 @@ jobs:
|
|||
shell: runuser -u spack-test -- bash {0}
|
||||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable spack-install
|
||||
spack -d gpg list
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
@ -302,8 +303,8 @@ jobs:
|
|||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
spack solve zlib
|
||||
spack bootstrap disable github-actions-v0.5
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable github-actions-v0.3
|
||||
spack -d gpg list
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
||||
|
@ -320,6 +321,7 @@ jobs:
|
|||
- name: Bootstrap GnuPG
|
||||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable spack-install
|
||||
spack -d gpg list
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
@ -338,8 +340,8 @@ jobs:
|
|||
run: |
|
||||
source share/spack/setup-env.sh
|
||||
spack solve zlib
|
||||
spack bootstrap disable github-actions-v0.5
|
||||
spack bootstrap disable github-actions-v0.4
|
||||
spack bootstrap disable github-actions-v0.3
|
||||
spack -d gpg list
|
||||
tree ~/.spack/bootstrap/store/
|
||||
|
||||
|
|
8
.github/workflows/unit_tests.yaml
vendored
8
.github/workflows/unit_tests.yaml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
|
||||
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
|
||||
concretizer: ['clingo']
|
||||
on_develop:
|
||||
- ${{ github.ref == 'refs/heads/develop' }}
|
||||
|
@ -45,6 +45,10 @@ jobs:
|
|||
os: ubuntu-latest
|
||||
concretizer: 'clingo'
|
||||
on_develop: false
|
||||
- python-version: '3.11'
|
||||
os: ubuntu-latest
|
||||
concretizer: 'clingo'
|
||||
on_develop: false
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # @v2
|
||||
|
@ -185,7 +189,7 @@ jobs:
|
|||
runs-on: macos-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.10"]
|
||||
python-version: ["3.11"]
|
||||
steps:
|
||||
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # @v2
|
||||
with:
|
||||
|
|
|
@ -9,15 +9,15 @@ bootstrap:
|
|||
# may not be able to bootstrap all the software that Spack needs,
|
||||
# depending on its type.
|
||||
sources:
|
||||
- name: 'github-actions-v0.5'
|
||||
metadata: $spack/share/spack/bootstrap/github-actions-v0.5
|
||||
- name: 'github-actions-v0.4'
|
||||
metadata: $spack/share/spack/bootstrap/github-actions-v0.4
|
||||
- name: 'github-actions-v0.3'
|
||||
metadata: $spack/share/spack/bootstrap/github-actions-v0.3
|
||||
- name: 'spack-install'
|
||||
metadata: $spack/share/spack/bootstrap/spack-install
|
||||
trusted:
|
||||
# By default we trust bootstrapping from sources and from binaries
|
||||
# produced on Github via the workflow
|
||||
github-actions-v0.5: true
|
||||
github-actions-v0.4: true
|
||||
github-actions-v0.3: true
|
||||
spack-install: true
|
||||
|
|
|
@ -228,7 +228,7 @@ def _install_and_test(
|
|||
if not abstract_spec.intersects(candidate_spec):
|
||||
continue
|
||||
|
||||
if python_spec is not None and python_spec not in abstract_spec:
|
||||
if python_spec is not None and not abstract_spec.intersects(f"^{python_spec}"):
|
||||
continue
|
||||
|
||||
for _, pkg_hash, pkg_sha256 in item["binaries"]:
|
||||
|
|
|
@ -3672,7 +3672,7 @@ def _autospec(self, spec_like):
|
|||
return spec_like
|
||||
return Spec(spec_like)
|
||||
|
||||
def intersects(self, other: "Spec", deps: bool = True) -> bool:
|
||||
def intersects(self, other: Union[str, "Spec"], deps: bool = True) -> bool:
|
||||
"""Return True if there exists at least one concrete spec that matches both
|
||||
self and other, otherwise False.
|
||||
|
||||
|
@ -3795,7 +3795,7 @@ def _intersects_dependencies(self, other):
|
|||
|
||||
return True
|
||||
|
||||
def satisfies(self, other: "Spec", deps: bool = True) -> bool:
|
||||
def satisfies(self, other: Union[str, "Spec"], deps: bool = True) -> bool:
|
||||
"""Return True if all concrete specs matching self also match other, otherwise False.
|
||||
|
||||
Args:
|
||||
|
|
|
@ -169,7 +169,7 @@ def test_remove_and_add_a_source(mutable_config):
|
|||
assert not sources
|
||||
|
||||
# Add it back and check we restored the initial state
|
||||
_bootstrap("add", "github-actions", "$spack/share/spack/bootstrap/github-actions-v0.3")
|
||||
_bootstrap("add", "github-actions", "$spack/share/spack/bootstrap/github-actions-v0.5")
|
||||
sources = spack.bootstrap.core.bootstrapping_sources()
|
||||
assert len(sources) == 1
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
bootstrap:
|
||||
sources:
|
||||
- name: 'github-actions'
|
||||
metadata: $spack/share/spack/bootstrap/github-actions-v0.3
|
||||
metadata: $spack/share/spack/bootstrap/github-actions-v0.5
|
||||
trusted: {}
|
||||
|
|
|
@ -1,268 +0,0 @@
|
|||
{
|
||||
"verified": [
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"i5rx6vbyw7cyg3snajcpnuozo7l3lcab",
|
||||
"c55d1c76adb82ac9fbe67725641ef7e4fe1ae11e2e8da0dc93a3efe362549127"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"xoxkdgo3n332ewhbh7pz2zuevrjxkrke",
|
||||
"b50e2fba026e85af3f99b3c412b4f0c88ec2fbce15b48eeb75072f1d3737f3cc"
|
||||
]
|
||||
],
|
||||
"python": "python@3.5",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"sgmirxbu3bpn4rdpfs6jlyycfrkfxl5i",
|
||||
"b0a574df6f5d59491a685a31a8ed99fb345c850a91df62ef232fbe0cca716ed1"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"5hn7hszlizeqq3leqi6lrdmyy5ssv6zs",
|
||||
"36e24bc3bd27b125fdeb30d51d2554e44288877c0ce6df5a878bb4e8a1d5847a"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"qk3ecxakadq4naakng6mhdfkwauef3dn",
|
||||
"9d974c0d2b546d18f0ec35e08d5ba114bf2867f7ff7c7ea990b79d019ece6380"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"2omdsvzshkn2u3l5vwvwoey4es5cowfu",
|
||||
"cbf72eb932ac847f87b1640f8e70e26f5261967288f7d6db19206ef352e36a88"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"ifgzrctoh2ibrmitp6ushrvrnaeqtkr7",
|
||||
"1c609df7351286fe09aa3452fa7ed7fedf903e9fa12cde89b916a0fc4c022949"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"esfzjhodgh5be22hvh3trg2ojzrmhzwt",
|
||||
"8d070cdb2a5103cde3e6f873b1eb11d25f60464f3059d8643f943e5c9a9ec76c"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"5b4uhkhrvtvdmsnctjx2isrxciy6v2o2",
|
||||
"336b8b1202a8a28a0e34a98e5780ae0e2b2370b342ce67434551009b1a7c8db9"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"czapgrrey6llnsu2m4qaamv3so2lybxm",
|
||||
"16bdfe4b08ee8da38f3e2c7d5cc44a38d87696cc2b6de0971a4de25efb8ad8e4"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"7za6vsetahbghs4d2qe4ajtf2iyiacwx",
|
||||
"730ae7e6096ec8b83a0fc9464dda62bd6c2fec1f8565bb291f4d1ffe7746703b"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"zulnxrmchldtasffqw6qacmgg4y2qumj",
|
||||
"8988325db53c0c650f64372c21571ac85e9ba4577975d14ae7dba8ab7728b5fc"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"lx54ebqzwtjpfgch7kagoxkmul56z7fa",
|
||||
"81d64229299e76f9dc81f88d286bc94725e7cbcbb29ad0d66aaeaff73dd6473a"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"isu2rjoicl4xzmbl3k2c4bg35gvejkgz",
|
||||
"fcc4b052832cfd327d11f657c2b7715d981b0894ed03bbce18b23a842c7d706d"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"ob3k3g2wjy7cw33lfobjar44sqmojyth",
|
||||
"f51fd6256bfd3afc8470614d87df61e5c9dd582fcc70f707ca66ba2b7255da12"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"norpsmparkl5dfuzdqj4537o77vjbgsl",
|
||||
"477c041857b60f29ff9d6c7d2982b7eb49a2e02ebbc98af11488c32e2fb24081"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"gypv5loj2ml73duq6sr76yg5rj25te2m",
|
||||
"c855d7d32aadec37c41e51f19b83558b32bc0b946a9565dba0e659c6820bd6c3"
|
||||
]
|
||||
],
|
||||
"python": "python@2.7+ucs4",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"rjopyx7hum3hqhgsdyw3st7frdfgrv3p",
|
||||
"0e555f9bc99b4e4152939b30b2257f4f353941d152659e716bf6123c0ce11a60"
|
||||
]
|
||||
],
|
||||
"python": "python@2.7~ucs4",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"2l45t4kw3cqqwj6vbxhfwhzlo6b3q2p4",
|
||||
"6cb90de5a3d123b7408cfef693a9a78bb69c66abbfed746c1e85aa0acb848d03"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"4psiezojm7dexequtbnav77wvgcajigq",
|
||||
"b3fc33b5482357613294becb54968bd74de638abeae69e27c6c4319046a7e352"
|
||||
]
|
||||
],
|
||||
"python": "python@3.5",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"dzhvhynye4z7oalowdcy5zt25lej3m2n",
|
||||
"61c5f3e80bcc7acfc65e335f1910762df2cc5ded9d7e1e5977380a24de553dd7"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"dtwevigmwgke4g6ee5byktpmzmrp2kvx",
|
||||
"636937244b58611ec2eedb4422a1076fcaf09f3998593befb5a6ff1a74e1d5f7"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"shqedxgvjnhiwdcdrvjhbd73jaevv7wt",
|
||||
"b3615b2a94a8a15fddaa74cf4d9f9b3a516467a843cdeab597f72dcf6be5e31d"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"z6v6zvc6awioeompbvo735b4flr3yuyz",
|
||||
"1389192bd74c1f7059d95c4a41500201cbc2905cbba553678613e0b7e3b96c71"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,204 +0,0 @@
|
|||
{
|
||||
"verified": [
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"libiconv",
|
||||
"d6dhoguolmllbzy2h6pnvjm3tti6uy6f",
|
||||
"7fe765a87945991d4e57782ed67c4bf42a10f95582eecd6f57de80a545bde821"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"x6fb7zx6n7mos5knvi6wlnaadd7r2szx",
|
||||
"fd1e5a62107339f45219c32ba20b5e82aa0880c31ac86d1b245d388ca4546990"
|
||||
],
|
||||
[
|
||||
"zlib",
|
||||
"c5wm3jilx6zsers3sfgdisjqusoza4wr",
|
||||
"7500a717c62736872aa65df4599f797ef67b21086dd6236b4c7712cfffac9bf3"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"3qv4bprobfwes37clg764cfipdzjdbto",
|
||||
"d85cd9d2c63a296300d4dcbd667421956df241109daef5e12d3ca63fa241cb14"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"3y4ubdgxvgpvhxr3bk4l5mkw4gv42n7e",
|
||||
"9dad7c2635344957c4db68378964d3af84ea052d45dbe8ded9a6e6e47211daa8"
|
||||
],
|
||||
[
|
||||
"libgpg-error",
|
||||
"doido34kfwsvwpj4c4jcocahjb5ltebw",
|
||||
"20e5c238bee91d2a841f0b4bd0358ded59a0bd665d7f251fd9cd42f83e0b283b"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"mttecm7gzdv544lbzcoahchnboxysrvi",
|
||||
"1c0ae64e828a597e4cf15dd997c66cd677e41f68c63db09b9551480a197052a2"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"se7xgv7yf4ywpjnbv7voxgeuuvs77ahb",
|
||||
"2fd13fbee7ca2361dc5dd09708c72d0489611301b60635cb0206bc5b94add884"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"yannph34bpaqkhsv5mz2icwhy3epiqxd",
|
||||
"1de8b4e119fa3455d0170466fa0fb8e04957fab740aec32535b4667279312b3f"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"zlib",
|
||||
"t2hjzsyf3txkg64e4bq3nihe26rzzdws",
|
||||
"171e720840a28af50b62141be77bc525e666cffd1fbbe2ee62673214e8b0280f"
|
||||
],
|
||||
[
|
||||
"libiconv",
|
||||
"yjdji2wj4njz72fyrg46jlz5f5wfbhfr",
|
||||
"94c773c3d0294cf248ec1f3e9862669dfa743fe1a76de580d9425c14c8f7dcd2"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"kx3vzmpysee7jxwsudarthrmyop6hzgc",
|
||||
"f8cc6204fa449ce576d450396ec2cad40a75d5712c1381a61ed1681a54f9c79f"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"e5n5l5ftzwxs4ego5furrdbegphb6hxp",
|
||||
"ef0428874aa81bcb9944deed88e1fc639f629fe3d522cab3c281235ae2a53db9"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"wyncpahrpqsmpk4b7nlhg5ekkjzyjdzs",
|
||||
"2309548c51a17f580f036445b701feb85d2bc552b9c4404418c2f223666cfe3b"
|
||||
],
|
||||
[
|
||||
"libgpg-error",
|
||||
"vhcdd6jkbiday2seg3rlkbzpf6jzfdx7",
|
||||
"79dd719538d9223d6287c0bba07b981944ab6d3ab11e5060274f1b7c727daf55"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"azcgpgncynoox3dce45hkz46bp2tb5rr",
|
||||
"15d301f201a5162234261fcfccd579b0ff484131444a0b6f5c0006224bb155d6"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"e3z5ekbv4jlsie4qooubcfvsk2sb6t7l",
|
||||
"5fd27b8e47934b06554e84f1374a90a93e71e60a14dbde672a8da414b27b97f4"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"i5agfvsmzdokuooaqhlh6vro5giwei2t",
|
||||
"f1bde7a1f0c84c1bbcde5757a96cf7a3e9157c2cfa9907fde799aa8e04c0d51f"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"zlib",
|
||||
"v5rr6ba37tudzfuv2jszwikgcl4wd3cd",
|
||||
"371ad4b277af7b97c7871b9931f2764c97362620c7990c5ad8fdb5c42a1d30dc"
|
||||
],
|
||||
[
|
||||
"libiconv",
|
||||
"bvcnx2e4bumjcgya4dczdhjb3fhqyass",
|
||||
"65a00b717b3a4ee1b5ab9f84163722bdfea8eb20a2eecc9cf657c0eaac0227e9"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"dkb6ez6a4c3iyrv67llwf5mzmynqdmtj",
|
||||
"4d77351661d0e0130b1c89fb6c6a944aee41d701ef80d056d3fc0178a7f36075"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"tuydcxdbb5jfvw3gri7y24b233kgotgd",
|
||||
"d8775e7c1dd252437c6fa0781675b1d2202cfc0c8190e60d248928b6fca8bc9f"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"kgxmg4eukwx6nn3bdera3j7cf7hxfy6n",
|
||||
"6046523f10ed54be50b0211c27191b3422886984fc0c00aed1a85d1f121c42e6"
|
||||
],
|
||||
[
|
||||
"libgpg-error",
|
||||
"ewhrwnltlrzkpqyix2vbkf4ruq6b6ea3",
|
||||
"3f3bbbf1a3cb82d39313e39bcbe3dad94a176130fc0e9a8045417d6223fb4f31"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"onxt5ry2fotgwiognwmhxlgnekuvtviq",
|
||||
"3a4df13f8b880441d1df4b234a4ca01de7601d84a6627185c2b3191a34445d40"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"fm3m4rsszzxxakcpssd34jbbe4ihrhac",
|
||||
"73afa46176a7ec8f02d01a2caad3e400dc18c3c8a53f92b88a9aa9e3653db3e6"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"gwr65ovh4wbxjgniaoqlbt3yla6rdikj",
|
||||
"7a3f7afe69ca67797a339c04028ca45a9630933020b57cb56e28453197fe8a57"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"libiconv",
|
||||
"vec3ac6t4ag3lb7ycvisafthqmpci74b",
|
||||
"35d184218e525d8aaea60082fd2d0f1e80449ec32746cceda2ea0ca106e9a095"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"jx3kmy3ilc66rgg5mqtbed5z6qwt3vrd",
|
||||
"74c2c1b087667661da3e24ac83bcecf1bc2d10d69e7678d1fd232875fe295135"
|
||||
],
|
||||
[
|
||||
"zlib",
|
||||
"wnpbp4pu7xca24goggcy773d2y4pobbd",
|
||||
"bcbd5310e8c5e75cbf33d8155448b212486dc543469d6df7e56dcecb6112ee88"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"ynn33wutdtoo2lbjjoizgslintxst2zl",
|
||||
"ac3b060690c6da0c64dcf35da047b84cc81793118fb9ff29b993f3fb9efdc258"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"zzofcjer43vsxwj27c3rxapjxhsz4hlx",
|
||||
"4b1977d815f657c2d6af540ea4b4ce80838cadcf4ada72a8ba142a7441e571ea"
|
||||
],
|
||||
[
|
||||
"libgpg-error",
|
||||
"gzr2ucybgks5jquvf4lv7iprxq5vx5le",
|
||||
"a12ecb5cfd083a29d042fd309ebb5ab8fd4ace0b68b27f89b857e9a84d75b5be"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"hw4u4pam6mp3henpw476axtqaahfdy64",
|
||||
"5424caf98a2d48e0ed0b9134353c242328ebeef6d2b31808d58969165e809b47"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"hffsjitsewdgoijwgzvub6vpjwm33ywr",
|
||||
"8ed7504b5b2d13ab7e1f4a0e27a882c33c5a6ebfcb43c51269333c0d6d5e1448"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"lge4h2kjgvssyspnvutq6t3q2xual5oc",
|
||||
"6080ce00fcc24185e4051a30f6d52982f86f46eee6d8a2dc4d83ab08d8195be8"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %gcc platform=linux target=x86_64"
|
||||
}
|
||||
]
|
||||
}
|
389
share/spack/bootstrap/github-actions-v0.5/clingo.json
Normal file
389
share/spack/bootstrap/github-actions-v0.5/clingo.json
Normal file
|
@ -0,0 +1,389 @@
|
|||
{
|
||||
"verified": [
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"riu2vekwzrloc3fktlf6v7kwv6fja7lp",
|
||||
"7527bc4d2d75671162fe0db3de04c5d3e1e6ab7991dfd85442c302c698febb45"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10.13",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"sgf6pgn4ihfcbxutxhevp36n3orfpdkw",
|
||||
"958531adcb449094bca7703f8f08d0f55a18f9a4c0f10a175ae4190d20982891"
|
||||
]
|
||||
],
|
||||
"python": "python@3.11.5",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"ie4wlhhnb4snroymbnjksajwvoid6omx",
|
||||
"4af14c3375a211ead3d2b4a31b59683744adcb79b820cc0c6b168ab162a7d983"
|
||||
]
|
||||
],
|
||||
"python": "python@3.12.0",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"5ke32podcipzxxwrj6uzm324bxegbwca",
|
||||
"a4106c42ee68d07c3d954ab73fe305ca4204f44d90b58fd91a8f784d9b96e7e3"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"scu4cnnf5axmjgozqc7cccpqnj5nc5tj",
|
||||
"54de4ca141b92222c8f1729e9e336c8a71dad9efa641e76438fcfb79bb58fc7f"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7.17",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"ajbswc25irhmhbc4qibdcr6ohsvpcdku",
|
||||
"8b9e7af163a4259256eca4b4a1a92b5d95463a5cf467be2a11c64ab536ca5b04"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8.18",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"vwkuxa5z4pj7vviwsmrpw2r6kbbqej2p",
|
||||
"a3f10024ff859e15b79ccd06c970a5f0e6ba11b0eae423f096ec9a35863816d2"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9.18",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"attdjmyzpfnhoobadw55pgg4hwkyp7zk",
|
||||
"f3258af3a648b47f12285dd3f048b685ed652b2b55b53861ac9913926de0f1c3"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"w4vnbsxjgkhsmgwozudzcsqlvccjsec4",
|
||||
"19322c2c951fc80234963ac068c78442df57ac63055325b24a39ab705d27a5b9"
|
||||
]
|
||||
],
|
||||
"python": "python@3.11",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"dw7ez2xcx6e5dxo3n4jin7pdbo3ihwtw",
|
||||
"c368edda4b3c8fd767f5f0f098ea416864b088c767dc43135df49cf5f6ef4c93"
|
||||
]
|
||||
],
|
||||
"python": "python@3.12",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"audrlxaw3ny3kyjkf6kqywumhokcxh3p",
|
||||
"db2f44966ec104ffe57c0911f0b1e0d3d052753f4c46c30c0890dfb26d547b09"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"al7brxvvvhih5nlxvtfkavufqc3pe5t2",
|
||||
"4e09b6d50d42c898e075fd20f7c7eddf91cb80edfd2d1326d26fd779e4d1ffed"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"v3ctpkyogl542wjibng6m2h2426spjbb",
|
||||
"d9ceb4f9ca23ef1dcc33872e5410ccfef6ea0360247d3e8faedf1751fb1ae4ca"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"zxo5ih5ac6r7lj6miwyx36ot7s6a4dcw",
|
||||
"f8f5e124d0e7bada34ff687a05e80b2fe207ce4d26205dab09b144edb148f05e"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9",
|
||||
"spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"wki4qcy3wzpoxav3auxt2u7yb4sk3xcc",
|
||||
"f5b9251eb51c60a71f7a0359c252f48c1a1121c426e1e6f9181808c626cb5fef"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10.13",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"gun6hbksmsecau5wjyrmxodq4hxievzx",
|
||||
"28839ec43db444d6725bde3fcff99adadf61a392d967041fb16f0ffc0afa2f9d"
|
||||
]
|
||||
],
|
||||
"python": "python@3.11.5",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"er73owosuqfmmkxvuw3f7sqnvvj6s4xp",
|
||||
"99264d48c290256bf16e202c155bf3f8c88fdbbe9894d901344d0db7258abce3"
|
||||
]
|
||||
],
|
||||
"python": "python@3.12.0",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"kv6l7qttuzk7zxkxi5fhff52qso3pj7m",
|
||||
"59aa052e89d3c698fdd35e30ac21a896c8e49bbcc2f589a8f777bd5dafff2af7"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"uw5o2z753otspa3lmmy2bdodh5munkir",
|
||||
"7a8b6359ce83463541ff68c221296fe9875adf28ea2b2c1416229750cf4935d2"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7.17",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"d63pp2l453bfygh6q7afwdj5mw7lhsns",
|
||||
"425bef3a8605732b2fbe74cdd77ef6a359cbdb62800490bbd05620a57da35b0c"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8.18",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"nap44jiznzwlma6n75uxbpznppazs7av",
|
||||
"316d940ca9af8c6b3bc50f8fdaadba02b0e955c4f24345a63a1a6715b01a752c"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9.18",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"qhvnw4yowmk2tofg3u7a4uomisktgzw5",
|
||||
"d30ec81385377521dd2d1ac091546cc2dec6a852ad31f35c24c65919f94fbf64"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10.13",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"b3y37ryfuhjq6ljbkq7piglsafg5stgw",
|
||||
"3c2f9cca3a6d37685fdf7d7dffb7a0505336c32562715069004631c446e46a7c"
|
||||
]
|
||||
],
|
||||
"python": "python@3.11.5",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"dbloojtq5kcfd3pjmj4pislgpzrcvjpn",
|
||||
"f8aeba80e6c106b769adba164702db94e077255fe1a22d6d265ccc3172b4ab1a"
|
||||
]
|
||||
],
|
||||
"python": "python@3.12.0",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"gtlngzdb7iggcjmaottob54qi3b24blt",
|
||||
"3efc534ba293ee51156971b8c19a597ebcb237b003c98e3c215a49a88064dfd1"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"4ab4wobwa7bvhlkrmhdp2dwgtcq5rpzo",
|
||||
"3dc6539a989701ec1d83d644a79953af912c11fe6046a8d720970faf8e477991"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7.17",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"fgout3h4mt4i64xaovqrpcsdy3ly2aml",
|
||||
"ade67f0623e941b16f2dd531270b4863de8befd56a9a47bd87af85345bc8bed6"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8.18",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"5fv2q4agg4b4g53f4zhnymrbv6ogiwpy",
|
||||
"18047d48538a770f014cce73756258c1a320d4ac143abef3c5d8bc09dd7a03cc"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9.18",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"smkmkb5xqz4v2f7tl22g4e2ghamglox5",
|
||||
"a850c80c7a48dab506f807cc936b9e54e6f5640fe96543ff58281c046140f112"
|
||||
]
|
||||
],
|
||||
"python": "python@3.10.13",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"55qeu52pkt5shpwd7ulugv7wzt5j7vqd",
|
||||
"e5e1a10b3b2d543b1555f5caef9ac1a9ccdcddb36a1278d3bf68bf0e9f490626"
|
||||
]
|
||||
],
|
||||
"python": "python@3.11.5",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"zcw5ieomfwwpzpzpabetix2plfqzpvwd",
|
||||
"ed409165109488d13afe8ef12edd3b373ed08967903dc802889523b5d3bccd14"
|
||||
]
|
||||
],
|
||||
"python": "python@3.12.0",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"t4yf34cuvquqp5xd66zybmcfyhwbdlsf",
|
||||
"b14e26e86bcfdac98b3a55109996265683f32910d3452e034ddc0d328bf62d67"
|
||||
]
|
||||
],
|
||||
"python": "python@3.6",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"grkrpj76lxsxa753uzndwfmrj3pwvyhp",
|
||||
"11a535d4a8a9dbb18c2f995e10bc90b27b6ebc61f7ac2090f15db9b4f9be1a64"
|
||||
]
|
||||
],
|
||||
"python": "python@3.7.17",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"zowwoarrf3hvo6i3iereolfujr42iyro",
|
||||
"154d3a725f02c1775644d99a0b74f9e2cdf6736989a264ccfd5d9a8bce77a16b"
|
||||
]
|
||||
],
|
||||
"python": "python@3.8.18",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"clingo-bootstrap",
|
||||
"bhqgwuvef354fwuxq7heeighavunpber",
|
||||
"399dec8cb6b8cd1b03737e68ea32e6ed69030b57e5f05d983e8856024143ea78"
|
||||
]
|
||||
],
|
||||
"python": "python@3.9.18",
|
||||
"spec": "clingo-bootstrap%gcc platform=linux target=x86_64"
|
||||
}
|
||||
]
|
||||
}
|
254
share/spack/bootstrap/github-actions-v0.5/gnupg.json
Normal file
254
share/spack/bootstrap/github-actions-v0.5/gnupg.json
Normal file
|
@ -0,0 +1,254 @@
|
|||
{
|
||||
"verified": [
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"libgpg-error",
|
||||
"stcmj3wdfxrohn2a53ecvsfsxe7rzrn4",
|
||||
"942b0f0918798f0a5f007de0f104d71273e6988165c7a34a874e0846b1aa8977"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"z27suzptvelnavipmldx6dcntiwqmguq",
|
||||
"c703d6b534e89e383893913fb3b71b47322726c5e19f69178e4d1a3a42a76426"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"if4uocx75kk6nc5vwvvuxq4dvaoljxkm",
|
||||
"a2320f8cfc8201d15c0e9e244b824ce3d76542c148f4f0631648987957759f07"
|
||||
],
|
||||
[
|
||||
"libiconv",
|
||||
"nccvt7adwkq5anilrjspffdzl4hggon5",
|
||||
"e23aa0184eb6661331bc850292fa22579005fd8ed62efd4c0c7a87489d8acaf6"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"lbfaarmpo2tupbezmqhfjvyspvwepv4r",
|
||||
"96888ed37642a2425e2262a5904b82a38f9eecfb18a900493e32d4ab742f994b"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"yc7h5c7cp7mupstvh5wlujp3xqet3xxq",
|
||||
"3ac8e284878c5a556e38aab706e4303daf0a4d2bbb9fac2644495f8a362f9988"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"rlo36pidutbjxxc3atooiwruaptfwmml",
|
||||
"70114fe6c9e8723daa960f1a3dc36ed8b5a6c6f9cc828d43f79b8f59f7363605"
|
||||
],
|
||||
[
|
||||
"zlib-ng",
|
||||
"hewnrm76ju4qcjaezxole5htrulkij25",
|
||||
"7babbe4d3d6e58631a944472356c07f0f4ad4a0759eaeefcf8584f33cce51ca6"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"5cguax2vflgy2cwmt2ikvixtynommlmr",
|
||||
"23fdd223493f441fa2e5f82d7e02837ecfad831fbfa4c27c175b3e294ed977d1"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %apple-clang platform=darwin target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"libgpg-error",
|
||||
"7yjoei55i6wxycmzbopyrw7nrquc22ac",
|
||||
"c29cfe32521a4a1e2108c711233964c27ca74ffc7505eea86cb8c047ace5715b"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"b4pkkugfhdtitffvlh4o3dexmthr6rmk",
|
||||
"27ee6fc272f011f9ad4f000dc54961cccd67b34d6f24f316ca7faf26673bf98b"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"uqjmpmpeta3w7c66m4e5jojopngpibvp",
|
||||
"d73fbb6e9327faec75af450d602b663ed6bb65ac9657bd795034a53f6acd32c8"
|
||||
],
|
||||
[
|
||||
"libiconv",
|
||||
"rfsiwcq6tlw6to42a3uxw7wcmcyk5m6r",
|
||||
"1f0176395130ed8b919538fa4b1cbda9f0ff8b836e51097258efc8cf5e11f753"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"gsobopcvr2p7d7rpgrbk2ulrnhvrpt6u",
|
||||
"0e404a8353f91918f385db8cf661f53f91ffd805798fcd83fb1168a1f1758fe8"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"gib2edyujm2oymkvu2hllm2yeghttvn3",
|
||||
"e04e579e514cd965baf71b7f160b063bff8b116e991e6931c6919cd5f3270e59"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"5ndbckveeaywx77rqmujglfnqwpxu3t6",
|
||||
"0ec02dca08ad2e8b3dd1c71195ed3fe3bb8856b746726708f5e5d450619e1285"
|
||||
],
|
||||
[
|
||||
"zlib-ng",
|
||||
"fg366ys6nx3hthuiix4xooi6xx4qe5d2",
|
||||
"cc372a21608885182233c7800355c7c0bbaff47ea16e190827a9618b0c4703e2"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"2x5ftl46zcnxk6knz5y3nuhyn7zcttk3",
|
||||
"b9481e122e2cb26f69b70505830d0fcc0d200aadbb6c6572339825f17ad1e52d"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %apple-clang platform=darwin target=x86_64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"libgpg-error",
|
||||
"b7o5zrguyniw5362eey3peglzhlmig7l",
|
||||
"b4373f2b0a2567b3b87e6bfc934135ce7790432aea58c802139bb5352f24b6a9"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"6k2arop3mjwfhe4cwga6a775ud5m4scp",
|
||||
"1e5143d35b0938a206ecf1ecb39b77e732629897d2b936cb8274239770055d90"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"eh5h3zisjkupzr2pgqarvgs2fm7pun5r",
|
||||
"b57eff265b48d0472243babfd1221c7c16189a4e324ea26e65d1a0a8c1391020"
|
||||
],
|
||||
[
|
||||
"libiconv",
|
||||
"vgk2zgjeflpnksj3lywuwdzs2nez63qv",
|
||||
"d153953c40c630fd2bf271f3de901d7671f80e8161cf746cb54afbf28d934d03"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"au3xdl4oyfbxat6dknp3mldid7gupgt5",
|
||||
"f1b1a1a02138109bc41b0b2ba54e689b43f35e2828f58b5de74280ce754fac0b"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"ja7cauk7yhhyj7msnprlirue7cn3jpnj",
|
||||
"cf6fd998a8f92ce1cf34c63db09c77b1891bf8f5915deef03c0cae5492bd691b"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"6yo4flozla2tvw3ojkh2atvnfxuqx6ym",
|
||||
"e78826a269109b3d67a54b1d01ff0a93be043dddcb4f52d329770ae1f75313f3"
|
||||
],
|
||||
[
|
||||
"zlib-ng",
|
||||
"4cgenrt3rcinueq6peyolxhegnryoeem",
|
||||
"918a1e48f823806f1562c95569953a4658b2fbc54a2606a09bcd7e259b62f492"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"lrmigjenpqj5fy4ojcs5jy6doktiu4qz",
|
||||
"228ccb475932f7f40a64e9d87dec045931cc57f71b1dfd4b4c3926107222d96c"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %gcc platform=linux target=aarch64"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"libgpg-error",
|
||||
"km6l24czfhnmlya74nu6cxwufgimyhzz",
|
||||
"23c3b7b487b36b9b03eeebbcc484adc6c8190c1bbcaa458943847148c915c6b2"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"crkk525xdgsn2k5s4xqdaxkudz6pjqbm",
|
||||
"ae3048a8059c0709d3efe832de1a8f82594373ba853d4bc2dfa05fb9dbfbc782"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"4s5lkowqilor35fscjwvtmg4wasdknkc",
|
||||
"62d3d13278d60d0329af1a9649b06591153ff68de4584f57777d13d693c7012e"
|
||||
],
|
||||
[
|
||||
"libiconv",
|
||||
"kbijqx45l3n64dlhenbuwgqpmf434g2d",
|
||||
"dddf581a14a35b85cb69a8c785dd8e250f41e6de7697e34bb0ab2a942e0c2128"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"jnll3rfuh6xhgqxbwfnpizammcwloxjc",
|
||||
"6200f2b6150aaf6d0e69771dfd5621582bd99ed0024fe83e7bc777cb66cabb29"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"6j6b4hbkhwkb5gfigysqgn5lpu3i4kw5",
|
||||
"0be0c70f3d9d45c4fe7490d8fdb8d7584de6324c3bfac8d884072409799c9951"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"cdpcdd4iah6jot4odehm3xmulw3t3e32",
|
||||
"5b447c770d0f705fbc97564fccdfbb0dfff8b6f8e2b4abbea326a538bc1bff80"
|
||||
],
|
||||
[
|
||||
"zlib-ng",
|
||||
"ogchs3i5tosoqrtsp3czp2azxvm7icig",
|
||||
"acfa12c4e73560416e1169b37adabfbec5ee9a580a684b23e75d7591d8e39a03"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"jwpu2wrofbwylpztltmi257benj2wp6z",
|
||||
"98e2bcb4064ec0830d896938bc1fe5264dac611da71ea546b9ca03349b752041"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %gcc platform=linux target=ppc64le"
|
||||
},
|
||||
{
|
||||
"binaries": [
|
||||
[
|
||||
"libgpg-error",
|
||||
"dwcgnnqt364enpf5554dio7kklspmrko",
|
||||
"bfe9b506ccba0cca619133a3d2e05aa23c929749428bf6eecbff0c6985447009"
|
||||
],
|
||||
[
|
||||
"libassuan",
|
||||
"yl5rfsfuxd6if36h7rap7zbbpbfztkpw",
|
||||
"4343dabbeed0851885992acd7b63fd74cb9d1acc06501a8af934e7e103801a15"
|
||||
],
|
||||
[
|
||||
"libgcrypt",
|
||||
"ka3t3dq73bkz4bs5ilyz6kymkypgbzxl",
|
||||
"ec1bcc324e9f9d660395e2c586094431361a02196da43fce91be41cca5da9636"
|
||||
],
|
||||
[
|
||||
"libiconv",
|
||||
"5tog27ephuzc4j6kdxavhjsjm2kd5nu6",
|
||||
"928fab3c32a1ae09651bb8491ee3855ccaf3c57a146ee72a289a073accd3fc8f"
|
||||
],
|
||||
[
|
||||
"libksba",
|
||||
"4ezfhjkmfc4fr34ozzl5q6b4x6jqqmsw",
|
||||
"3045841c50c19a41beb0f32b4e8a960901397b95e82af3a73817babf35d4cfca"
|
||||
],
|
||||
[
|
||||
"npth",
|
||||
"bn4zrugdajgpk5dssoeccbl7o2gfgmcp",
|
||||
"ef90ef85a818456afbff709b4a0757a077d69fd3c07d1b7612e1d461d837c46f"
|
||||
],
|
||||
[
|
||||
"pinentry",
|
||||
"cdwqocmusjomjjavnz6nn764oo54j5xj",
|
||||
"b251047c1cb4be1bb884a7843d4419fae40fdbe5e1d36904e35f5e3fef5e4ced"
|
||||
],
|
||||
[
|
||||
"zlib-ng",
|
||||
"ozawh46coczjwtlul27msr3swe6pl6l5",
|
||||
"0a397b53d64ac8191a36de8b32c5ced28a4c7a6dbafe9396dd897c55bcf7a168"
|
||||
],
|
||||
[
|
||||
"gnupg",
|
||||
"jra2dbsvpr5c5gj3ittejusa2mjh2sf5",
|
||||
"054fac6eaad7c862ea4661461d847fb069876eb114209416b015748266f7d166"
|
||||
]
|
||||
],
|
||||
"spec": "gnupg@2.3: %gcc platform=linux target=x86_64"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -3,6 +3,6 @@ description: |
|
|||
Buildcache generated from a public workflow using Github Actions.
|
||||
The sha256 checksum of binaries is checked before installation.
|
||||
info:
|
||||
url: https://mirror.spack.io/bootstrap/github-actions/v0.3
|
||||
url: https://mirror.spack.io/bootstrap/github-actions/v0.5
|
||||
homepage: https://github.com/spack/spack-bootstrap-mirrors
|
||||
releases: https://github.com/spack/spack-bootstrap-mirrors/releases
|
|
@ -4,8 +4,8 @@
|
|||
"binaries": [
|
||||
[
|
||||
"patchelf",
|
||||
"cn4gsqzdnnffk7ynvbcai6wrt5ehqqrl",
|
||||
"8c6a28cbe8133d719be27ded11159f0aa2c97ed1d0881119ae0ebd71f8ccc755"
|
||||
"4txke6ixd2zg2yzg33l3fqnjyassono7",
|
||||
"102800775f789cc293e244899f39a22f0b7a19373305ef0497ca3189223123f3"
|
||||
]
|
||||
],
|
||||
"spec": "patchelf@0.13: %gcc platform=linux target=aarch64"
|
||||
|
@ -14,8 +14,8 @@
|
|||
"binaries": [
|
||||
[
|
||||
"patchelf",
|
||||
"mgq6n2heyvcx2ebdpchkbknwwn3u63s6",
|
||||
"1d4ea9167fb8345a178c1352e0377cc37ef2b421935cf2b48fb6fa03a94fca3d"
|
||||
"tnbgxc22uebqsiwrhchf3nieatuqlsrr",
|
||||
"91cf0a9d4750c04575c5ed3bcdefc4754e1cf9d1cd1bf197eb1fe20ccaa869f1"
|
||||
]
|
||||
],
|
||||
"spec": "patchelf@0.13: %gcc platform=linux target=ppc64le"
|
||||
|
@ -24,8 +24,8 @@
|
|||
"binaries": [
|
||||
[
|
||||
"patchelf",
|
||||
"htk62k7efo2z22kh6kmhaselru7bfkuc",
|
||||
"833df21b20eaa7999ac4c5779ae26aa90397d9027aebaa686a428589befda693"
|
||||
"afv7arjarb7nzmlh7c5slkfxykybuqce",
|
||||
"73f4bde46b843c96521e3f5c31ab94756491404c1ad6429c9f61dbafbbfa6470"
|
||||
]
|
||||
],
|
||||
"spec": "patchelf@0.13: %gcc platform=linux target=x86_64"
|
Loading…
Reference in a new issue