Diff pass-1.7.4-r2 with a pass-1.7.4-r5

/usr/portage/app-admin/pass/pass-1.7.4-r5.ebuild 2026-03-18 11:46:04.189055660 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit bash-completion-r1 elisp-common
7 7

  
......
23 23
IUSE="+git wayland X emacs dmenu importers"
24 24

  
25 25
RDEPEND="
26
	app-crypt/gnupg
26
	|| (
27
		app-alternatives/gpg[reference]
28
		app-alternatives/gpg[freepg(-)]
29
	)
27 30
	media-gfx/qrencode[png(+)]
28 31
	>=app-text/tree-1.7.0
29 32
	git? ( dev-vcs/git )
......
31 34
	X? ( x11-misc/xclip )
32 35
	elibc_Darwin? ( app-misc/getopt )
33 36
	dmenu? ( x11-misc/dmenu x11-misc/xdotool )
34
	emacs? ( >=app-editors/emacs-23.1:* >=app-emacs/f-0.11.0 >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 )
37
	emacs? ( >=app-editors/emacs-25.1:* >=app-emacs/s-1.9.0 >=app-emacs/with-editor-2.5.11 )
35 38
"
36 39

  
37 40
src_prepare() {
......
62 65
	use dmenu && dobin contrib/dmenu/passmenu
63 66

  
64 67
	if use emacs; then
65
		elisp-install ${PN} contrib/emacs/*.{el,elc}
66
		elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el"
68
		elisp-install password-store contrib/emacs/*.{el,elc}
69
		elisp-site-file-install "${FILESDIR}/50password-store-gentoo.el"
67 70
	fi
68 71

  
69 72
	if use importers; then
Thank you!