Diff rush-2.2 with a rush-2.3

/usr/portage/app-shells/rush/rush-2.3.ebuild 2023-10-09 14:52:28.860368334 +0300
5 5

  
6 6
DESCRIPTION="Restricted User Shell"
7 7
HOMEPAGE="https://puszcza.gnu.org.ua/projects/rush/"
8
SRC_URI="ftp://download.gnu.org.ua/pub/release/${PN}/${P}.tar.xz"
8
SRC_URI="https://download.gnu.org.ua/pub/release/${PN}/${P}.tar.xz"
9 9

  
10
KEYWORDS="~amd64 ~x86"
11 10
LICENSE="GPL-3"
12 11
SLOT="0"
13

  
12
KEYWORDS="~amd64 ~x86"
14 13
IUSE="nls"
15 14

  
16
BDEPEND="
17
	nls? ( sys-devel/gettext )
18
"
15
BDEPEND="nls? ( sys-devel/gettext )"
19 16

  
20
# Testsuite doesn't like our sandbox (bug #689554)
21
RESTRICT="test"
17
src_prepare() {
18
	default
19

  
20
	# These tests see SANDBOX_* variables and fail as a result, bug #689554
21
	for file in tests/{eval,clr,unset,keep,set}env.at tests/legacy/env.at ; do
22
		echo > ${file} || die
23
	done
24
}
22 25

  
23 26
src_configure() {
24 27
	local myeconfargs=(
25 28
		$(use_enable nls)
26 29
	)
30

  
27 31
	econf "${myeconfargs[@]}"
28 32
}
Thank you!