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
This commit is contained in:
Massimiliano Culpo 2022-04-13 23:32:23 +02:00 committed by GitHub
parent 4c1250854a
commit c846b5149d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 508 additions and 26 deletions

View file

@ -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/

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

1 Name Supported Versions Notes Requirement Reason
2 Python 2.7/3.5-3.9 2.7/3.5-3.10 Interpreter for Spack
3 C/C++ Compilers Building software
4 make Build software
5 patch Build software

View file

@ -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))

View file

@ -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"
}
]
}

View file

@ -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"
}
]
}