Diff vcsh-2.0.4 with a vcsh-2.0.8
| /usr/portage/dev-vcs/vcsh/vcsh-2.0.8.ebuild 2025-08-12 18:21:08.245054626 +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 | 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() {
|