amazonlinux / amazon-linux-2023

Amazon Linux 2023
https://aws.amazon.com/linux/amazon-linux-2023/
Other
538 stars 40 forks source link

[Package Request] - gpg-agent #791

Open amarkum opened 2 months ago

amarkum commented 2 months ago

What package is missing from Amazon Linux 2023? Please describe and include package name. gpg-agent

Is this an update to existing package or new package request? new package request

Is this package available in Amazon Linux 2? If it is available via external sources such as EPEL, please specify. yes

Any additional information you'd like to include. (use-cases, etc) basically to have gpg decryption / encryption support, it looks for gpg-agent, which is not existing, the newer ariflow has gpg 2.7.X where it requires gpg-agent though we are using python-gnupg, i trier pinetary bypass but that does not work and it still searches for gpg-agent

zcobol commented 2 months ago

AL2023 comes with gnupg2-minimal only. If you want gpg-agent install gnupg2 package.

sudo dnf install --allowerasing gnupg2

danie-dejager commented 2 months ago

You want to:

dnf swap gnupg2-minimal.x86_64 gnupg2.x86_64
elsaco commented 2 months ago

FYI: under the hood dnf swap uses --allowerasing option to resolve package conflicts, so both commands mentioned above are doing exactly the same thing. Pick either one!