Diff vcsh-2.0.4 with a vcsh-2.0.8

/usr/portage/dev-vcs/vcsh/vcsh-2.0.8.ebuild 2025-07-29 16:22:14.264455053 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
DESCRIPTION="Manage config files in $HOME via fake bare git repositories"
6
DESCRIPTION="Manage config files in \$HOME via fake bare git repositories"
7 7
HOMEPAGE="https://github.com/RichiH/vcsh"
8 8
SRC_URI="https://github.com/RichiH/vcsh/releases/download/v${PV}/${P}.tar.xz"
9 9

  
10 10
LICENSE="GPL-2+"
11 11
SLOT="0"
12
KEYWORDS="amd64 x86"
12
KEYWORDS="amd64 ~x86"
13
IUSE="test"
14
RESTRICT="!test? ( test )"
13 15

  
14 16
RDEPEND="dev-vcs/git"
17
BDEPEND="
18
	test? (
19
		dev-lang/perl
20
		dev-perl/Shell-Command
21
		dev-perl/Test-Most
22
	)
23
"
15 24

  
16 25
src_configure() {
17
	# bash for https://github.com/RichiH/vcsh/issues/325
18
	CONFIG_SHELL="${BROOT}"/bin/bash econf
26
	econf \
27
		$(use_enable test tests) \
28
		--with-man-page \
29
		--with-deployment=${PR}
19 30
}
20 31

  
21 32
src_install() {
Thank you!