Diff jdupes-1.26.1 with a jdupes-9999

/usr/portage/app-misc/jdupes/jdupes-9999.ebuild 2023-10-09 14:52:28.804368333 +0300
12 12
	inherit git-r3
13 13
else
14 14
	SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
15
	KEYWORDS="amd64"
15
	KEYWORDS="~amd64"
16 16
fi
17 17
LICENSE="MIT"
18 18
SLOT="0"
......
20 20
DEPEND="dev-libs/libjodycode"
21 21
RDEPEND="${DEPEND}"
22 22

  
23
IUSE="+dedupe hardened"
23
IUSE="+dedupe lowmem hardened"
24 24

  
25 25
# missing test.sh script
26 26
# https://github.com/jbruchon/jdupes/issues/191
......
35 35
	tc-export CC
36 36
	local myconf=(
37 37
		$(usex dedupe 'ENABLE_DEDUPE=1' '')
38
		$(usex lowmem 'LOW_MEMORY=1' '')
38 39
		$(usex hardened 'HARDEN=1' '')
39 40
	)
40 41
	emake ${myconf[@]}
Thank you!