Diff pass-1.7.4-r2 with a pass-9999

/usr/portage/app-admin/pass/pass-9999.ebuild 2026-01-27 11:18:04.378431178 +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
NEED_EMACS=26.1
6 7
inherit bash-completion-r1 elisp-common
7 8

  
8 9
if [[ ${PV} = 9999* ]]; then
......
12 13
	SRC_URI="https://git.zx2c4.com/password-store/snapshot/password-store-${PV}.tar.xz"
13 14
	S="${WORKDIR}/password-store-${PV}"
14 15

  
15
	KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86 ~arm64-macos ~x64-macos"
16
	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~x64-macos"
16 17
fi
17 18

  
18 19
DESCRIPTION="Stores, retrieves, generates, and synchronizes passwords securely"
......
31 32
	X? ( x11-misc/xclip )
32 33
	elibc_Darwin? ( app-misc/getopt )
33 34
	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 )
35
	emacs? ( >=app-editors/emacs-26.1:* >=app-emacs/with-editor-2.5.11 )
35 36
"
36 37

  
37 38
src_prepare() {
......
62 63
	use dmenu && dobin contrib/dmenu/passmenu
63 64

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

  
69 70
	if use importers; then
Thank you!