Diff eselect-1.4.27 with a eselect-9999

/usr/portage/app-admin/eselect/eselect-9999.ebuild 2023-10-09 14:52:28.144368316 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2020 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6
# Packages sharing a common release tarball:
7
# app-admin/eselect
8
# app-emacs/eselect-mode
9
# Please bump and mark them stable together!
6
EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/eselect.git"
10 7

  
11
inherit bash-completion-r1
8
inherit autotools git-r3 bash-completion-r1
12 9

  
13 10
DESCRIPTION="Gentoo's multi-purpose configuration and management tool"
14 11
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Eselect"
15
SRC_URI="https://dev.gentoo.org/~ulm/eselect/${P}.tar.xz"
16 12

  
17 13
LICENSE="GPL-2+ || ( GPL-2+ CC-BY-SA-4.0 )"
18 14
SLOT="0"
19
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
20 15
IUSE="doc emacs vim-syntax"
21 16

  
22 17
DEPEND="sys-apps/sed
......
31 26
PDEPEND="emacs? ( app-emacs/eselect-mode )
32 27
	vim-syntax? ( app-vim/eselect-syntax )"
33 28

  
29
src_prepare() {
30
	default
31
	eautoreconf
32
}
33

  
34 34
src_compile() {
35 35
	emake
36 36
	use doc && emake html
Thank you!