Diff docker-2.4.0 with a docker-2.5.0

/usr/portage/app-emacs/docker/docker-2.5.0.ebuild 2026-04-04 11:46:07.550975775 +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=8
4
EAPI=9
5 5

  
6
NEED_EMACS=26.1
6
NEED_EMACS="28.1"
7 7

  
8 8
inherit elisp
9 9

  
......
13 13
if [[ "${PV}" == *9999* ]] ; then
14 14
	inherit git-r3
15 15

  
16
	EGIT_REPO_URI="https://github.com/Silex/${PN}.el.git"
16
	EGIT_REPO_URI="https://github.com/Silex/${PN}.el"
17 17
else
18 18
	SRC_URI="https://github.com/Silex/${PN}.el/archive/${PV}.tar.gz
19
		-> ${PN}.el-${PV}.tar.gz"
19
		-> ${PN}.el-${PV}.gh.tar.gz"
20 20
	S="${WORKDIR}/${PN}.el-${PV}"
21 21

  
22 22
	KEYWORDS="amd64 ~x86"
......
26 26
SLOT="0"
27 27

  
28 28
RDEPEND="
29
	>=app-emacs/transient-0.4.3
30 29
	app-emacs/dash
31 30
	app-emacs/emacs-aio
32 31
	app-emacs/s
33 32
	app-emacs/tablist
33
	app-emacs/transient
34 34
"
35 35
BDEPEND="
36 36
	${RDEPEND}
Thank you!