From c846b5149dd541e5323b58a946efa34cb88b7596 Mon Sep 17 00:00:00 2001 From: Massimiliano Culpo Date: Wed, 13 Apr 2022 23:32:23 +0200 Subject: Add support for Python 3.10 (#29581) * Add support for Python 3.10 * Update unit-tests to use 3.10 * Update Getting started section of the docs * Update bootstrap action --- .github/workflows/bootstrap.yml | 16 +- .github/workflows/unit_tests.yaml | 12 +- etc/spack/defaults/bootstrap.yaml | 17 +- lib/spack/docs/getting_started.rst | 13 +- lib/spack/docs/tables/system_prerequisites.csv | 2 +- lib/spack/spack/test/llnl/util/lock.py | 2 +- .../bootstrap/github-actions-v0.1/clingo.json | 257 ++++++++++++++++++++ .../spack/bootstrap/github-actions-v0.1/gnupg.json | 204 ++++++++++++++++ .../bootstrap/github-actions-v0.2/clingo.json | 268 +++++++++++++++++++++ .../spack/bootstrap/github-actions-v0.2/gnupg.json | 204 ++++++++++++++++ share/spack/bootstrap/github-actions/clingo.json | 257 -------------------- share/spack/bootstrap/github-actions/gnupg.json | 204 ---------------- 12 files changed, 969 insertions(+), 487 deletions(-) create mode 100644 share/spack/bootstrap/github-actions-v0.1/clingo.json create mode 100644 share/spack/bootstrap/github-actions-v0.1/gnupg.json create mode 100644 share/spack/bootstrap/github-actions-v0.2/clingo.json create mode 100644 share/spack/bootstrap/github-actions-v0.2/gnupg.json delete mode 100644 share/spack/bootstrap/github-actions/clingo.json delete mode 100644 share/spack/bootstrap/github-actions/gnupg.json diff --git a/.github/workflows/bootstrap.yml b/.github/workflows/bootstrap.yml index 4af7abb278..65f097053e 100644 --- a/.github/workflows/bootstrap.yml +++ b/.github/workflows/bootstrap.yml @@ -43,7 +43,7 @@ jobs: shell: runuser -u spack-test -- bash {0} run: | source share/spack/setup-env.sh - spack bootstrap untrust github-actions + spack bootstrap untrust github-actions-v0.2 spack external find cmake bison spack -d solve zlib tree ~/.spack/bootstrap/store/ @@ -81,7 +81,7 @@ jobs: shell: runuser -u spack-test -- bash {0} run: | source share/spack/setup-env.sh - spack bootstrap untrust github-actions + spack bootstrap untrust github-actions-v0.2 spack external find cmake bison spack -d solve zlib tree ~/.spack/bootstrap/store/ @@ -143,7 +143,7 @@ jobs: - name: Bootstrap clingo run: | source share/spack/setup-env.sh - spack bootstrap untrust github-actions + spack bootstrap untrust github-actions-v0.2 spack external find cmake bison spack -d solve zlib tree ~/.spack/bootstrap/store/ @@ -159,7 +159,7 @@ jobs: run: | source share/spack/setup-env.sh export PATH=/usr/local/opt/bison@2.7/bin:$PATH - spack bootstrap untrust github-actions + spack bootstrap untrust github-actions-v0.2 spack external find --not-buildable cmake bison spack -d solve zlib tree ~/.spack/bootstrap/store/ @@ -168,7 +168,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: ['3.5', '3.6', '3.7', '3.8', '3.9'] + python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] steps: - name: Install dependencies run: | @@ -188,7 +188,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9'] + python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2 - uses: actions/setup-python@21c0493ecfd34b1217f0a90ec19a327f3cc0a048 # @v2 @@ -276,7 +276,7 @@ jobs: run: | source share/spack/setup-env.sh spack solve zlib - spack bootstrap untrust github-actions + spack bootstrap untrust github-actions-v0.2 spack -d gpg list tree ~/.spack/bootstrap/store/ @@ -309,6 +309,6 @@ jobs: run: | source share/spack/setup-env.sh spack solve zlib - spack bootstrap untrust github-actions + spack bootstrap untrust github-actions-v0.2 spack -d gpg list tree ~/.spack/bootstrap/store/ diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index c1dfe4c20a..6809df383e 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2 - uses: actions/setup-python@21c0493ecfd34b1217f0a90ec19a327f3cc0a048 # @v2 with: - python-version: 3.9 + python-version: '3.10' - name: Install Python Packages run: | pip install --upgrade pip @@ -36,7 +36,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@21c0493ecfd34b1217f0a90ec19a327f3cc0a048 # @v2 with: - python-version: 3.9 + python-version: '3.10' - name: Install Python packages run: | pip install --upgrade pip six setuptools types-six @@ -96,7 +96,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] + python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] concretizer: ['clingo'] include: - python-version: 2.7 @@ -176,7 +176,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@21c0493ecfd34b1217f0a90ec19a327f3cc0a048 # @v2 with: - python-version: 3.9 + python-version: '3.10' - name: Install System packages run: | sudo apt-get -y update @@ -242,7 +242,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@21c0493ecfd34b1217f0a90ec19a327f3cc0a048 # @v2 with: - python-version: 3.9 + python-version: '3.10' - name: Install System packages run: | sudo apt-get -y update @@ -334,7 +334,7 @@ jobs: - uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # @v2 - uses: actions/setup-python@21c0493ecfd34b1217f0a90ec19a327f3cc0a048 # @v2 with: - python-version: 3.9 + python-version: '3.10' - name: Install Python packages run: | pip install --upgrade pip six setuptools pytest codecov coverage[toml]==6.2 diff --git a/etc/spack/defaults/bootstrap.yaml b/etc/spack/defaults/bootstrap.yaml index e51e406dff..8c1592055e 100644 --- a/etc/spack/defaults/bootstrap.yaml +++ b/etc/spack/defaults/bootstrap.yaml @@ -9,15 +9,24 @@ bootstrap: # may not be able to bootstrap all of the software that Spack needs, # depending on its type. sources: - - name: 'github-actions' + - name: 'github-actions-v0.2' + type: buildcache + 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.2 + homepage: https://github.com/spack/spack-bootstrap-mirrors + releases: https://github.com/spack/spack-bootstrap-mirrors/releases + - name: 'github-actions-v0.1' type: buildcache 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.1 - homepage: https://github.com/alalazo/spack-bootstrap-mirrors - releases: https://github.com/alalazo/spack-bootstrap-mirrors/releases + homepage: https://github.com/spack/spack-bootstrap-mirrors + releases: https://github.com/spack/spack-bootstrap-mirrors/releases # This method is just Spack bootstrapping the software it needs from sources. # It has been added here so that users can selectively disable bootstrapping # from sources by "untrusting" it. @@ -28,5 +37,5 @@ bootstrap: trusted: # By default we trust bootstrapping from sources and from binaries # produced on Github via the workflow - github-actions: true + github-actions-v0.2: true spack-install: true diff --git a/lib/spack/docs/getting_started.rst b/lib/spack/docs/getting_started.rst index 049f66a09e..3a7371a09c 100644 --- a/lib/spack/docs/getting_started.rst +++ b/lib/spack/docs/getting_started.rst @@ -149,27 +149,28 @@ Spack fall back to bootstrapping from sources: .. code-block:: console - $ spack bootstrap untrust github-actions - ==> "github-actions" is now untrusted and will not be used for bootstrapping + $ spack bootstrap untrust github-actions-v0.2 + ==> "github-actions-v0.2" is now untrusted and will not be used for bootstrapping You can verify that the new settings are effective with: .. code-block:: console $ spack bootstrap list - Name: github-actions UNTRUSTED + Name: github-actions-v0.2 UNTRUSTED Type: buildcache Info: - url: https://mirror.spack.io/bootstrap/github-actions/v0.1 - homepage: https://github.com/alalazo/spack-bootstrap-mirrors - releases: https://github.com/alalazo/spack-bootstrap-mirrors/releases + url: https://mirror.spack.io/bootstrap/github-actions/v0.2 + homepage: https://github.com/spack/spack-bootstrap-mirrors + releases: https://github.com/spack/spack-bootstrap-mirrors/releases Description: Buildcache generated from a public workflow using Github Actions. The sha256 checksum of binaries is checked before installation. + [ ... ] Name: spack-install TRUSTED diff --git a/lib/spack/docs/tables/system_prerequisites.csv b/lib/spack/docs/tables/system_prerequisites.csv index 980aea77f6..9cd998e9e1 100644 --- a/lib/spack/docs/tables/system_prerequisites.csv +++ b/lib/spack/docs/tables/system_prerequisites.csv @@ -1,5 +1,5 @@ Name, Supported Versions, Notes, Requirement Reason -Python, 2.7/3.5-3.9, , Interpreter for Spack +Python, 2.7/3.5-3.10, , Interpreter for Spack C/C++ Compilers, , , Building software make, , , Build software patch, , , Build software diff --git a/lib/spack/spack/test/llnl/util/lock.py b/lib/spack/spack/test/llnl/util/lock.py index da8f77b2c3..7f25ddb057 100644 --- a/lib/spack/spack/test/llnl/util/lock.py +++ b/lib/spack/spack/test/llnl/util/lock.py @@ -570,7 +570,7 @@ def test_write_lock_timeout_with_multiple_readers_3_2(lock_path): def test_write_lock_timeout_with_multiple_readers_2_1_ranges(lock_path): multiproc_test( AcquireRead(lock_path, 0, 10), - AcquireRead(lock_path, 0.5, 10), + AcquireRead(lock_path, 2, 10), TimeoutWrite(lock_path, 5, 5)) diff --git a/share/spack/bootstrap/github-actions-v0.1/clingo.json b/share/spack/bootstrap/github-actions-v0.1/clingo.json new file mode 100644 index 0000000000..3068ad1f19 --- /dev/null +++ b/share/spack/bootstrap/github-actions-v0.1/clingo.json @@ -0,0 +1,257 @@ +{ + "verified": [ + { + "binaries": [ + [ + "clingo-bootstrap", + "m4ertsh3ooxdisc5tigglublasu4udfe", + "094548672362306d75012398a6f9b1e8c0f796c833163ca77cf644d84822f25f" + ] + ], + "python": "python@3.5", + "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "iv4gr5vscx2io23ljgdueybwatxlk6wo", + "c8110c68ec339d05155392818b21ba87b27905ad798f5f3f194d6312385dbdc2" + ] + ], + "python": "python@3.6", + "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "rwxcxsohrkp5iai3yushsltkdprjmexb", + "fbee764cac890a29bc03c472d3ba0401e915d6924a7cedac9fd8d961159b70e7" + ] + ], + "python": "python@3.7", + "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "p5on7i4hejl775ezndzfdkhvwra3hatn", + "35e32f7c1f80e99da450b52643800fd2895ee2f895109f708b5cf0da6afbedff" + ] + ], + "python": "python@3.8", + "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "omsvlh5v6fi2saw5qyqvzsbvqpvrf5yw", + "cef0e554737dbf22655094d8ae072c67539cce2a37cba1577aeb5aea18b5747c" + ] + ], + "python": "python@3.9", + "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "qguh44xegb72y4q4lar3ufjddissoumv", + "68d2d0c06690d75a794aa2c50be9d6d501fec1b566784bf87b1fc5611f84f3c9" + ] + ], + "python": "python@3.5", + "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "tsypkz7hyylmh5pwpykaf7wcmdunrdiv", + "3b8e3e6e21e399a90c4128776cc591734f9d533f0a7e64ed8babd9cbcf616e3d" + ] + ], + "python": "python@3.6", + "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "2w6b4q5j2zgra6t3zfrjfbvsnoi5yqmk", + "4f335e02641f6ecc7ec7d9d2b8293d07d6e7a7234034531713b760aaa507fa7c" + ] + ], + "python": "python@3.7", + "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "ij7udwpgeghdfoswljwdtwwaylvudze7", + "b5eedf593f198e523aebf6ce127fd8ffcf3d1c980a920cdf1c5a0d2a335e4892" + ] + ], + "python": "python@3.8", + "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "a5ppijpzmk7ubjem4i3zttbxp545vjuz", + "8f9755c16c0c99b5c40c420f2c1c6aec2bdff99b25444e001506527af18dd94e" + ] + ], + "python": "python@3.9", + "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "tsnva2bxjguosntz3tk5mqbdgrjvhfcc", + "bcd093c08110309e705beebccd012260a61215eda12c1d47f3a89d4734ec7170" + ] + ], + "python": "python@3.5", + "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "rfu4la457mdbpoffk2g5hikj2hhoek4s", + "b6417b9b90f3f4e98caaa869393edee08fad3d3c7db37fad8b332c785d0e81e6" + ] + ], + "python": "python@3.6", + "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "qg3utj2csbgtdwc2slqbjmwn25rkor5r", + "a1760e064d41d364cdf53f89248f7824dad9bf97c6b999df18343b57d21c06ed" + ] + ], + "python": "python@3.7", + "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "uxkpc2euofdkgveonftklstnxyha5wsf", + "d6a04e7b15dae05eacce54806fa18356b392a5e2d212a55bf0960116b8e9dfef" + ] + ], + "python": "python@3.8", + "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "i2uoawqsmmkr2uwb42oxfsnt4djzejrj", + "6511837f87e50c40a7f4aab2ec7454e5200594821e4d1fc4a441d3be647b9acb" + ] + ], + "python": "python@3.9", + "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "p3bqplnwqo66lvvolmtaezck77jafrc4", + "436f9483e4028c12c32ba9f4e7e91e944bf9819ef487dfe4e42ddd1d487c93ee" + ] + ], + "python": "python@2.6", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "rpa6yyujr7ilnfcowq2pbmkmh7uzrijp", + "3be0f4ccd412d45506f9f305ef7f6621cd246fbde97aed081595d01dafe3c397" + ] + ], + "python": "python@2.7+ucs4", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "y32mbn7swer3yxvgf6tmkgekpo23uo5z", + "f6e0716bd97f2df123abcd96ec8884c525a9fd10b81e0062784e7b0d2df3f622" + ] + ], + "python": "python@2.7~ucs4", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "ohtmyp5c74xt75csx4llbjs5anobryp6", + "7d613ddbca1640d761311fb00403c0cb65e279534c44a2129b8d9610f6146e78" + ] + ], + "python": "python@3.5", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "vcipwnf57slgoo7busvvkzjkk7vydeb5", + "db5222760045f20ad1e5c194179d31273b8e4bfa6ade38e15cd3182d685cc05b" + ] + ], + "python": "python@3.6", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "ffoyoewfd6pdwbjniodfkqusyvkrbhyi", + "14cea5f6cfd86bcb8de38ad8c1a5e44cc22955de2e7c78b825b617dccd107dbe" + ] + ], + "python": "python@3.7", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "kt74l7kjzrlp3cgtj2576o33mhsrgyrw", + "e71de4beb68bb3e58bd2dcb98dc3be3a375c82781b6f7cb01bc5d552c2240bd2" + ] + ], + "python": "python@3.8", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + }, + { + "binaries": [ + [ + "clingo-bootstrap", + "hmnv6gk5wha64k6r3s7hid35mzvhkuot", + "b08ff59357fa184ce39b8cc0a17aaf7f0a925a449ab389e1afa4eab6ae026f2e" + ] + ], + "python": "python@3.9", + "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" + } + ] +} \ No newline at end of file diff --git a/share/spack/bootstrap/github-actions-v0.1/gnupg.json b/share/spack/bootstrap/github-actions-v0.1/gnupg.json new file mode 100644 index 0000000000..d6400febfc --- /dev/null +++ b/share/spack/bootstrap/github-actions-v0.1/gnupg.json @@ -0,0 +1,204 @@ +{ + "verified": [ + { + "binaries": [ + [ + "libgpg-error", + "hph66gvb7vlinpzwoytxq27ojb7gtl2j", + "f040f513e212c428ee863d75924331f58b5f8f3946f98c757a9e0af0d0a34f63" + ], + [ + "libiconv", + "ckpif6rcf7mxdmceyv6sqvtnwfqi7fmc", + "1d745d04f7c8a1c4d17d9735eba0ee88c8acfbb213c22a15e45e58637867ed4c" + ], + [ + "npth", + "fjuoy73whriauk3bt6ma5fwet6iric7y", + "78d5d9e339ef901b0def0924a72ce87a93e0a8acb7394ec2c35be6c328154444" + ], + [ + "zlib", + "qo6otxqnn6mxpw4zhqc4wdwqmgcfjdfe", + "f00c38ecaf316cd665399ed14c233f839ae5868387ff04998e1ec949c1f4dcd6" + ], + [ + "libassuan", + "2upi74qccouj4k6d7wultp2u5fntayi3", + "f2118b102f9a94bb1e2804492689b44b260b7f6e46ac1208d5110ebffe24bf99" + ], + [ + "libgcrypt", + "xzhvvm44cfxwvgqgkpbeucpnl4dbj4p2", + "ae717e068f2f7f4eaeee4bdec4a6b20ff299c59c3d724c1661b6045fda628a9b" + ], + [ + "libksba", + "aodyg5mzfule3vimuetmzulv5mzdx37g", + "c665eb20f27b2d28fcb634fe958829165e44a27b1ad69995d5040f13d5693d52" + ], + [ + "pinentry", + "ihqcvdm5okxuvnln463l7h4flbkhrp44", + "b0c7781354eb4a7c9e979802590c0e4fb7eb53f440191367f0142eac4868f8d6" + ], + [ + "gnupg", + "47vilwybwuxved7jov7esiad3qlkv5rp", + "83f3de13b2712a05f520d16b5141797493f8b117041dd32aa5414a25d9d53439" + ] + ], + "spec": "gnupg@2.3: %apple-clang platform=darwin target=x86_64" + }, + { + "binaries": [ + [ + "libgpg-error", + "3dkguooajaaejhsebigs2e3lhk37mtem", + "09c5edd93fb479961d62d9938c1ea02b8f443babf0e79776f1539085c3422cd5" + ], + [ + "libiconv", + "i2eqtudh3zcxt5fvxuhe6n2ztuqbadtp", + "838786e029474d668b5f83a9669d227c812253c3c3f0328aa4f888542a7de830" + ], + [ + "npth", + "c3z6gg3ilutvvryxkjrboampqv5u5s2s", + "967522ae988ccce8c922f28aa2124170246f501f0a45179b919d827bf28c35d2" + ], + [ + "zlib", + "p2jozvok56voja7652dms4gvthpcjzta", + "41cbc69850640ed4466dbedc1bb4ccb0ade0c1a1e8fcd70d1e247b1387b937b5" + ], + [ + "libassuan", + "s2wx2xvt3iz3sigcdt5tvppj2m7e2bsf", + "5f766af4ff355769e3e456a9c95636a20a64f5ba32aecec633216a3d83a854f8" + ], + [ + "libgcrypt", + "gznmtryix6ck4x3chnuvbctz4xa3fmxl", + "0261b03f790c5320980d27bf0a471a1a4663929689ddfaeb5e568d33be8dc889" + ], + [ + "libksba", + "uxaryyfybbcw563jcwumufhfmbsawlbz", + "f45fff7a6a5c626a1474c7354fd00e18e629fcd086787336f7d62d1ead50c94f" + ], + [ + "pinentry", + "ias6sb4qi24u6i7axr5hkj4liq5dtr6l", + "a2a8e7652dceb7d080ff78726d28099f9050cb9f6e290d97f1f59f4b42521b9c" + ], + [ + "gnupg", + "qpm457bujhmfqy66euzhswokumuvufbz", + "d2371e26412e10fc702b9b2482aff776108194b84e1927644a3d64f5710fd163" + ] + ], + "spec": "gnupg@2.3: %gcc platform=linux target=aarch64" + }, + { + "binaries": [ + [ + "libgpg-error", + "4bp6dcfdbzbd4uuzvbgjyqunhjedg3lf", + "9a9947240c6af7e915aa8336bfaed8706c9129967eb9ab1895598217df91f301" + ], + [ + "libiconv", + "dscneqtpyy32r6ds24izlkki3euthnbr", + "a9dc099f6c7ee9fd6c63757cb81a59fe4b81672543d5253a50bb73bc819440ef" + ], + [ + "npth", + "jukmafxhkxo2s4udlzi5r5b6bbb3udw5", + "d2a2b11c0f1794ab0de813753221bde073508fbec19f0b15dbfd23455bc6de87" + ], + [ + "zlib", + "amqfrcbn67rochzkeu2ashklo35ayqqq", + "686fc10058d208530889bc5c3779aa2cc324b77301878a5405cf65ca53d613ba" + ], + [ + "libassuan", + "lyeih2j3miy7yugmwh37h667fogqn3fl", + "f87c474d81c890232cd8e1e4d93b5b232aa0ad428dcaa7231d7a8d182cea9ecc" + ], + [ + "libgcrypt", + "zb33zulvwcansfzu5km4d34avujnazfa", + "e67ae6a5345f9e864bd2009c1a9d7eb65a63ca2841368bebc477a770fb8dcaf5" + ], + [ + "libksba", + "yjuh2aplj23qyvaqixukd7a6eokfdgyp", + "6944fc047e8f0eb41daec734e2505016369319c64929f5ec8d3a8f99e01928d4" + ], + [ + "pinentry", + "xd7vajghgcueohv5qgahdvbjpcnrurns", + "a6b37efd6ef9f9374aa0c7d1869da990ae3668938b47ad6af50138d2ea05da02" + ], + [ + "gnupg", + "ti2ddl27nilobj2ctwsgzl52qque5o7z", + "43781437e3dfae158e7a6911313a4162d8ffa5313182438d1e6547a854f6f38a" + ] + ], + "spec": "gnupg@2.3: %gcc platform=linux target=ppc64le" + }, + { + "binaries": [ + [ + "libgpg-error", + "p7chd5hhecdkc27npia4uaoeabjit4gh", + "4b5e1f418b7afdd91755d54d38a51d5d048aa3b1e5239bcaf3453c8ca1cca4b6" + ], + [ + "libiconv", + "scpkgy6bmk3wcgfwzoiv7hw74drmnaoi", + "2bcb9a2868c20284ce65ab53d4f7bb4c7edccd4c14390460858e25a8bc48faa3" + ], + [ + "npth", + "6vh3jypaf7u2zez3vohn66fvo6znt35l", + "23a333c4e83910eb1f87c91caffb07f40b592561a4c44924fed9459751c017f7" + ], + [ + "zlib", + "uc25tb5r57nykfrxszsdy54trzqnk2jn", + "9e18c1146bc3dcb8454d18502013b8621ecf00d2f2d4d66d76cbe1e07f351ac8" + ], + [ + "libassuan", + "vdoskg5mldu6ixhvftwplp4zdftwxwws", + "1413b84af0c58127032e7bde86dbacf35dc65205aee1c2071718678bc57ce793" + ], + [ + "libgcrypt", + "ng7gfusjpnypmqgckq7rp4vq3bvylp3b", + "1a09e97eb2333812f8381d4737aca4d7cfd9f27ebae30eddbcf99f399ad67fec" + ], + [ + "libksba", + "p4feho36xa7dhabk766fzglwyo2dfbj6", + "000ef0f2ad3aa05c07272849be68e059ec60946970ab8875a824305afe832c9a" + ], + [ + "pinentry", + "m423kpm7k52r66q3sdctqcjxtekiyrrp", + "5739bee66271d7f0d5b9bcf5c248f1a434e9cdcb327a4a5a22fc47f565ac0de7" + ], + [ + "gnupg", + "dlapzqxrwduafgfq2evptizb7p4kgpkh", + "262177fa8f66468e589f8b3e10d17531f17a74ea0f5ac6905ac948198dca3c3c" + ] + ], + "spec": "gnupg@2.3: %gcc platform=linux target=x86_64" + } + ] +} \ No newline at end of file diff --git a/share/spack/bootstrap/github-actions-v0.2/clingo.json b/share/spack/bootstrap/github-actions-v0.2/clingo.json new file mode 100644 index 0000000000..60e771221d --- /dev/null +++ b/share/spack/bootstrap/github-actions-v0.2/clingo.json @@ -0,0 +1,268 @@ +{ + "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" + } + ] +} \ No newline at end of file diff --git a/share/spack/bootstrap/github-actions-v0.2/gnupg.json b/share/spack/bootstrap/github-actions-v0.2/gnupg.json new file mode 100644 index 0000000000..2f56829789 --- /dev/null +++ b/share/spack/bootstrap/github-actions-v0.2/gnupg.json @@ -0,0 +1,204 @@ +{ + "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" + } + ] +} \ No newline at end of file diff --git a/share/spack/bootstrap/github-actions/clingo.json b/share/spack/bootstrap/github-actions/clingo.json deleted file mode 100644 index 3068ad1f19..0000000000 --- a/share/spack/bootstrap/github-actions/clingo.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "verified": [ - { - "binaries": [ - [ - "clingo-bootstrap", - "m4ertsh3ooxdisc5tigglublasu4udfe", - "094548672362306d75012398a6f9b1e8c0f796c833163ca77cf644d84822f25f" - ] - ], - "python": "python@3.5", - "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "iv4gr5vscx2io23ljgdueybwatxlk6wo", - "c8110c68ec339d05155392818b21ba87b27905ad798f5f3f194d6312385dbdc2" - ] - ], - "python": "python@3.6", - "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "rwxcxsohrkp5iai3yushsltkdprjmexb", - "fbee764cac890a29bc03c472d3ba0401e915d6924a7cedac9fd8d961159b70e7" - ] - ], - "python": "python@3.7", - "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "p5on7i4hejl775ezndzfdkhvwra3hatn", - "35e32f7c1f80e99da450b52643800fd2895ee2f895109f708b5cf0da6afbedff" - ] - ], - "python": "python@3.8", - "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "omsvlh5v6fi2saw5qyqvzsbvqpvrf5yw", - "cef0e554737dbf22655094d8ae072c67539cce2a37cba1577aeb5aea18b5747c" - ] - ], - "python": "python@3.9", - "spec": "clingo-bootstrap%apple-clang platform=darwin target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "qguh44xegb72y4q4lar3ufjddissoumv", - "68d2d0c06690d75a794aa2c50be9d6d501fec1b566784bf87b1fc5611f84f3c9" - ] - ], - "python": "python@3.5", - "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "tsypkz7hyylmh5pwpykaf7wcmdunrdiv", - "3b8e3e6e21e399a90c4128776cc591734f9d533f0a7e64ed8babd9cbcf616e3d" - ] - ], - "python": "python@3.6", - "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "2w6b4q5j2zgra6t3zfrjfbvsnoi5yqmk", - "4f335e02641f6ecc7ec7d9d2b8293d07d6e7a7234034531713b760aaa507fa7c" - ] - ], - "python": "python@3.7", - "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "ij7udwpgeghdfoswljwdtwwaylvudze7", - "b5eedf593f198e523aebf6ce127fd8ffcf3d1c980a920cdf1c5a0d2a335e4892" - ] - ], - "python": "python@3.8", - "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "a5ppijpzmk7ubjem4i3zttbxp545vjuz", - "8f9755c16c0c99b5c40c420f2c1c6aec2bdff99b25444e001506527af18dd94e" - ] - ], - "python": "python@3.9", - "spec": "clingo-bootstrap%gcc platform=linux target=aarch64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "tsnva2bxjguosntz3tk5mqbdgrjvhfcc", - "bcd093c08110309e705beebccd012260a61215eda12c1d47f3a89d4734ec7170" - ] - ], - "python": "python@3.5", - "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "rfu4la457mdbpoffk2g5hikj2hhoek4s", - "b6417b9b90f3f4e98caaa869393edee08fad3d3c7db37fad8b332c785d0e81e6" - ] - ], - "python": "python@3.6", - "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "qg3utj2csbgtdwc2slqbjmwn25rkor5r", - "a1760e064d41d364cdf53f89248f7824dad9bf97c6b999df18343b57d21c06ed" - ] - ], - "python": "python@3.7", - "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "uxkpc2euofdkgveonftklstnxyha5wsf", - "d6a04e7b15dae05eacce54806fa18356b392a5e2d212a55bf0960116b8e9dfef" - ] - ], - "python": "python@3.8", - "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "i2uoawqsmmkr2uwb42oxfsnt4djzejrj", - "6511837f87e50c40a7f4aab2ec7454e5200594821e4d1fc4a441d3be647b9acb" - ] - ], - "python": "python@3.9", - "spec": "clingo-bootstrap%gcc platform=linux target=ppc64le" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "p3bqplnwqo66lvvolmtaezck77jafrc4", - "436f9483e4028c12c32ba9f4e7e91e944bf9819ef487dfe4e42ddd1d487c93ee" - ] - ], - "python": "python@2.6", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "rpa6yyujr7ilnfcowq2pbmkmh7uzrijp", - "3be0f4ccd412d45506f9f305ef7f6621cd246fbde97aed081595d01dafe3c397" - ] - ], - "python": "python@2.7+ucs4", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "y32mbn7swer3yxvgf6tmkgekpo23uo5z", - "f6e0716bd97f2df123abcd96ec8884c525a9fd10b81e0062784e7b0d2df3f622" - ] - ], - "python": "python@2.7~ucs4", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "ohtmyp5c74xt75csx4llbjs5anobryp6", - "7d613ddbca1640d761311fb00403c0cb65e279534c44a2129b8d9610f6146e78" - ] - ], - "python": "python@3.5", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "vcipwnf57slgoo7busvvkzjkk7vydeb5", - "db5222760045f20ad1e5c194179d31273b8e4bfa6ade38e15cd3182d685cc05b" - ] - ], - "python": "python@3.6", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "ffoyoewfd6pdwbjniodfkqusyvkrbhyi", - "14cea5f6cfd86bcb8de38ad8c1a5e44cc22955de2e7c78b825b617dccd107dbe" - ] - ], - "python": "python@3.7", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "kt74l7kjzrlp3cgtj2576o33mhsrgyrw", - "e71de4beb68bb3e58bd2dcb98dc3be3a375c82781b6f7cb01bc5d552c2240bd2" - ] - ], - "python": "python@3.8", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - }, - { - "binaries": [ - [ - "clingo-bootstrap", - "hmnv6gk5wha64k6r3s7hid35mzvhkuot", - "b08ff59357fa184ce39b8cc0a17aaf7f0a925a449ab389e1afa4eab6ae026f2e" - ] - ], - "python": "python@3.9", - "spec": "clingo-bootstrap%gcc platform=linux target=x86_64" - } - ] -} \ No newline at end of file diff --git a/share/spack/bootstrap/github-actions/gnupg.json b/share/spack/bootstrap/github-actions/gnupg.json deleted file mode 100644 index d6400febfc..0000000000 --- a/share/spack/bootstrap/github-actions/gnupg.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "verified": [ - { - "binaries": [ - [ - "libgpg-error", - "hph66gvb7vlinpzwoytxq27ojb7gtl2j", - "f040f513e212c428ee863d75924331f58b5f8f3946f98c757a9e0af0d0a34f63" - ], - [ - "libiconv", - "ckpif6rcf7mxdmceyv6sqvtnwfqi7fmc", - "1d745d04f7c8a1c4d17d9735eba0ee88c8acfbb213c22a15e45e58637867ed4c" - ], - [ - "npth", - "fjuoy73whriauk3bt6ma5fwet6iric7y", - "78d5d9e339ef901b0def0924a72ce87a93e0a8acb7394ec2c35be6c328154444" - ], - [ - "zlib", - "qo6otxqnn6mxpw4zhqc4wdwqmgcfjdfe", - "f00c38ecaf316cd665399ed14c233f839ae5868387ff04998e1ec949c1f4dcd6" - ], - [ - "libassuan", - "2upi74qccouj4k6d7wultp2u5fntayi3", - "f2118b102f9a94bb1e2804492689b44b260b7f6e46ac1208d5110ebffe24bf99" - ], - [ - "libgcrypt", - "xzhvvm44cfxwvgqgkpbeucpnl4dbj4p2", - "ae717e068f2f7f4eaeee4bdec4a6b20ff299c59c3d724c1661b6045fda628a9b" - ], - [ - "libksba", - "aodyg5mzfule3vimuetmzulv5mzdx37g", - "c665eb20f27b2d28fcb634fe958829165e44a27b1ad69995d5040f13d5693d52" - ], - [ - "pinentry", - "ihqcvdm5okxuvnln463l7h4flbkhrp44", - "b0c7781354eb4a7c9e979802590c0e4fb7eb53f440191367f0142eac4868f8d6" - ], - [ - "gnupg", - "47vilwybwuxved7jov7esiad3qlkv5rp", - "83f3de13b2712a05f520d16b5141797493f8b117041dd32aa5414a25d9d53439" - ] - ], - "spec": "gnupg@2.3: %apple-clang platform=darwin target=x86_64" - }, - { - "binaries": [ - [ - "libgpg-error", - "3dkguooajaaejhsebigs2e3lhk37mtem", - "09c5edd93fb479961d62d9938c1ea02b8f443babf0e79776f1539085c3422cd5" - ], - [ - "libiconv", - "i2eqtudh3zcxt5fvxuhe6n2ztuqbadtp", - "838786e029474d668b5f83a9669d227c812253c3c3f0328aa4f888542a7de830" - ], - [ - "npth", - "c3z6gg3ilutvvryxkjrboampqv5u5s2s", - "967522ae988ccce8c922f28aa2124170246f501f0a45179b919d827bf28c35d2" - ], - [ - "zlib", - "p2jozvok56voja7652dms4gvthpcjzta", - "41cbc69850640ed4466dbedc1bb4ccb0ade0c1a1e8fcd70d1e247b1387b937b5" - ], - [ - "libassuan", - "s2wx2xvt3iz3sigcdt5tvppj2m7e2bsf", - "5f766af4ff355769e3e456a9c95636a20a64f5ba32aecec633216a3d83a854f8" - ], - [ - "libgcrypt", - "gznmtryix6ck4x3chnuvbctz4xa3fmxl", - "0261b03f790c5320980d27bf0a471a1a4663929689ddfaeb5e568d33be8dc889" - ], - [ - "libksba", - "uxaryyfybbcw563jcwumufhfmbsawlbz", - "f45fff7a6a5c626a1474c7354fd00e18e629fcd086787336f7d62d1ead50c94f" - ], - [ - "pinentry", - "ias6sb4qi24u6i7axr5hkj4liq5dtr6l", - "a2a8e7652dceb7d080ff78726d28099f9050cb9f6e290d97f1f59f4b42521b9c" - ], - [ - "gnupg", - "qpm457bujhmfqy66euzhswokumuvufbz", - "d2371e26412e10fc702b9b2482aff776108194b84e1927644a3d64f5710fd163" - ] - ], - "spec": "gnupg@2.3: %gcc platform=linux target=aarch64" - }, - { - "binaries": [ - [ - "libgpg-error", - "4bp6dcfdbzbd4uuzvbgjyqunhjedg3lf", - "9a9947240c6af7e915aa8336bfaed8706c9129967eb9ab1895598217df91f301" - ], - [ - "libiconv", - "dscneqtpyy32r6ds24izlkki3euthnbr", - "a9dc099f6c7ee9fd6c63757cb81a59fe4b81672543d5253a50bb73bc819440ef" - ], - [ - "npth", - "jukmafxhkxo2s4udlzi5r5b6bbb3udw5", - "d2a2b11c0f1794ab0de813753221bde073508fbec19f0b15dbfd23455bc6de87" - ], - [ - "zlib", - "amqfrcbn67rochzkeu2ashklo35ayqqq", - "686fc10058d208530889bc5c3779aa2cc324b77301878a5405cf65ca53d613ba" - ], - [ - "libassuan", - "lyeih2j3miy7yugmwh37h667fogqn3fl", - "f87c474d81c890232cd8e1e4d93b5b232aa0ad428dcaa7231d7a8d182cea9ecc" - ], - [ - "libgcrypt", - "zb33zulvwcansfzu5km4d34avujnazfa", - "e67ae6a5345f9e864bd2009c1a9d7eb65a63ca2841368bebc477a770fb8dcaf5" - ], - [ - "libksba", - "yjuh2aplj23qyvaqixukd7a6eokfdgyp", - "6944fc047e8f0eb41daec734e2505016369319c64929f5ec8d3a8f99e01928d4" - ], - [ - "pinentry", - "xd7vajghgcueohv5qgahdvbjpcnrurns", - "a6b37efd6ef9f9374aa0c7d1869da990ae3668938b47ad6af50138d2ea05da02" - ], - [ - "gnupg", - "ti2ddl27nilobj2ctwsgzl52qque5o7z", - "43781437e3dfae158e7a6911313a4162d8ffa5313182438d1e6547a854f6f38a" - ] - ], - "spec": "gnupg@2.3: %gcc platform=linux target=ppc64le" - }, - { - "binaries": [ - [ - "libgpg-error", - "p7chd5hhecdkc27npia4uaoeabjit4gh", - "4b5e1f418b7afdd91755d54d38a51d5d048aa3b1e5239bcaf3453c8ca1cca4b6" - ], - [ - "libiconv", - "scpkgy6bmk3wcgfwzoiv7hw74drmnaoi", - "2bcb9a2868c20284ce65ab53d4f7bb4c7edccd4c14390460858e25a8bc48faa3" - ], - [ - "npth", - "6vh3jypaf7u2zez3vohn66fvo6znt35l", - "23a333c4e83910eb1f87c91caffb07f40b592561a4c44924fed9459751c017f7" - ], - [ - "zlib", - "uc25tb5r57nykfrxszsdy54trzqnk2jn", - "9e18c1146bc3dcb8454d18502013b8621ecf00d2f2d4d66d76cbe1e07f351ac8" - ], - [ - "libassuan", - "vdoskg5mldu6ixhvftwplp4zdftwxwws", - "1413b84af0c58127032e7bde86dbacf35dc65205aee1c2071718678bc57ce793" - ], - [ - "libgcrypt", - "ng7gfusjpnypmqgckq7rp4vq3bvylp3b", - "1a09e97eb2333812f8381d4737aca4d7cfd9f27ebae30eddbcf99f399ad67fec" - ], - [ - "libksba", - "p4feho36xa7dhabk766fzglwyo2dfbj6", - "000ef0f2ad3aa05c07272849be68e059ec60946970ab8875a824305afe832c9a" - ], - [ - "pinentry", - "m423kpm7k52r66q3sdctqcjxtekiyrrp", - "5739bee66271d7f0d5b9bcf5c248f1a434e9cdcb327a4a5a22fc47f565ac0de7" - ], - [ - "gnupg", - "dlapzqxrwduafgfq2evptizb7p4kgpkh", - "262177fa8f66468e589f8b3e10d17531f17a74ea0f5ac6905ac948198dca3c3c" - ] - ], - "spec": "gnupg@2.3: %gcc platform=linux target=x86_64" - } - ] -} \ No newline at end of file -- cgit v1.2.3-60-g2f50