Diff esearch-1.3-r3 with a esearch-9999

/usr/portage/app-portage/esearch/esearch-9999.ebuild 2023-10-09 14:52:28.844368334 +0300
7 7
PYTHON_REQ_USE="readline(+)"
8 8
DISTUTILS_USE_SETUPTOOLS=no
9 9

  
10
inherit distutils-r1
10
inherit distutils-r1 git-r3
11 11

  
12 12
DESCRIPTION="Replacement for 'emerge --search' with search-index"
13 13
HOMEPAGE="https://github.com/fuzzyray/esearch"
14
SRC_URI="https://github.com/fuzzyray/esearch/archive/refs/tags/${P}.tar.gz -> ${P}.gh.tar.gz"
15
S="${WORKDIR}"/${PN}-${P}
14
EGIT_REPO_URI="https://github.com/fuzzyray/esearch.git"
16 15

  
17 16
LICENSE="GPL-2"
18 17
SLOT="0"
19 18
IUSE="l10n_fr l10n_it"
20 19

  
21
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
20
KEYWORDS=""
22 21

  
23 22
DEPEND="sys-apps/portage"
24 23
RDEPEND="${DEPEND}"
25 24

  
26
# Populate the patches array for any patches for -rX releases
27
# It is an array of patch file names of the form:
28
# "${FILESDIR}"/${PV}-fix-EPREFIX-capability.patch
29
PATCHES=(
30
	"${FILESDIR}"/${PV}-Fix-setup.py.patch
31
	"${FILESDIR}"/${PV}-Fix-python-3-compatability.patch
32
	"${FILESDIR}"/${PV}-updatedb-quoting.patch
33
)
34

  
35 25
python_configure_all() {
36 26
	echo VERSION="${PVR}" "${EPYTHON}" setup.py set_version
37 27
	VERSION="${PVR}" "${EPYTHON}" setup.py set_version \
Thank you!