mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-11 23:24:17 +02:00
libsecret was enabled in8a8cf569db
for pinentry-gnome. However, pinentry-gnome was removed ineac1b684bd
in favour of pinentry-ui, but libsecret was not removed. > libsecret is a library for storing and retrieving passwords and > other secrets. It communicates with the "Secret Service" using D-Bus. > gnome-keyring and ksecretservice are both implementations of a > Secret Service. This is clearly intended for the desktop usage where users will typically use Gtk or Qt based pinentry, not curses-based pinentry. However, to maintain backward compatibility, I added subpackage pinentry-curses-ss that provides pinentry-curses variant built with libsecret.
12 lines
229 B
Bash
12 lines
229 B
Bash
#!/bin/sh
|
|
|
|
ver_old="$2"
|
|
|
|
if [ "$(apk version -t "$ver_old" '1.1.1-r1')" = '<' ]; then
|
|
cat >&2 <<-EOF
|
|
*
|
|
* If you use pinentry-curses with Secret Service (for password caching),
|
|
* install package pinentry-curses-ss.
|
|
*
|
|
EOF
|
|
fi
|