deps on * considered harmful

This commit is contained in:
Max Howell 2023-11-21 08:07:51 -05:00
parent 495dbaa1d9
commit c1e0efc929
No known key found for this signature in database
GPG key ID: 741BB84EF5BB9EEC
2 changed files with 15 additions and 8 deletions

View file

@ -1,16 +1,23 @@
#!/bin/sh
d=$(dirname "$0")
d="$(dirname "$0")"
etc="$d/../etc/gnupg"
export GNUPGHOME="${GNUPGHOME:-"$etc"}"
<<<<<<< HEAD
mkdir -p "$etc"
chmod 700 "$etc"
cat << EOF > "$etc"/gpg.conf
=======
if [ ! -f "$etc/gpg.conf" ]; then
mkdir -p "$etc"
chmod 700 "$etc"
cat << EOF > "$etc"/gpg.conf
>>>>>>> 055bba74 (deps on `*` considered harmful)
use-agent
pinentry-mode loopback
agent-program $d/gpg-agent
EOF
exec "$d"/gpg-exec "$@"
exec "$d"/gpg-exec "$@"

View file

@ -10,7 +10,6 @@ versions:
- /.tar.bz2/
dependencies:
thrysoee.dk/editline: ^3
zlib.net: '*'
sourceware.org/bzip2: '*'
gnupg.org/npth: '*'
@ -19,12 +18,13 @@ dependencies:
gnupg.org/libassuan: '*'
gnupg.org/libgcrypt: '*'
gnupg.org/pinentry: '*'
gnutls.org: '*'
openldap.org: '*'
gnu.org/readline: '*'
sqlite.org: '*'
gnutls.org: ^3
openldap.org: ^2
gnu.org/readline: ^8
sqlite.org: ^3
thrysoee.dk/editline: ^3 #NOTE added by jacob to try and fix a bug
darwin:
gnu.org/gettext: '*'
gnu.org/gettext: ^0.22.4
runtime:
env: