Diff detox-1.4.2-r1 with a detox-1.4.5-r1

/usr/portage/app-misc/detox/detox-1.4.5-r1.ebuild 2024-07-02 13:51:43.845851454 +0300
10 10
DESCRIPTION="Safely remove spaces and strange characters from filenames"
11 11
HOMEPAGE="http://detox.sourceforge.net/ https://github.com/dharple/detox"
12 12
SRC_URI="https://github.com/dharple/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
13
S="${WORKDIR}"/${MY_P}
13 14

  
14 15
LICENSE="BSD"
15 16
SLOT="0"
16
KEYWORDS="amd64 ~arm64 ~hppa ~mips ppc x86 ~amd64-linux ~x86-linux"
17
IUSE=""
18

  
19
S="${WORKDIR}"/${MY_P}
20

  
21
RDEPEND="
22
	!dev-python/detox"
17
KEYWORDS="amd64 ~arm64 ~hppa ~mips ppc ~riscv x86 ~amd64-linux ~x86-linux"
23 18

  
19
RDEPEND="!dev-python/detox"
24 20
DEPEND="${RDEPEND}"
25
BDEPEND="
26
	app-alternatives/lex
27
	app-alternatives/yacc
28
"
21
BDEPEND="app-alternatives/yacc
22
	app-alternatives/lex"
29 23

  
30 24
src_prepare() {
31 25
	default
26

  
32 27
	sed \
33 28
		-e '/detoxrc.sample/d' \
34 29
		-i Makefile.am || die
30

  
35 31
	eautoreconf
36 32
}
37 33

  
Thank you!