blob: 55922bd1e7573af02d949266e8940fd7525a11e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit bash-completion-r1
DESCRIPTION="A dotfile manager for the config files in your home folder"
HOMEPAGE="https://github.com/TheLocehiliosan/yadm/"
SRC_URI="https://github.com/TheLocehiliosan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="zsh-completion test"
RESTRICT="!test? ( test )"
DEPEND="
test? (
dev-tcltk/expect
dev-util/bats
dev-vcs/git
)"
RDEPEND="
dev-vcs/git
app-crypt/gnupg
zsh-completion? ( app-shells/gentoo-zsh-completions )"
src_compile() {
emake "${PN}.md"
}
src_test() {
# 109_accept_encryption tests are interactive, thus fail. Skip them
# 113_accept_jinja_alt.bats are depepending on the optional envtpl
while IFS="" read -d $'\0' -r f ; do
bats "${f}" || die "test ${f} failed"
done < <(find test -name '*.bats' -and -not -name '109_accept_encryption.bats' -and -not -name '113_accept_jinja_alt.bats' -print0)
}
src_install() {
einstalldocs
dobin "${PN}"
doman "${PN}.1"
dobashcomp completion/yadm.bash_completion
if use zsh-completion; then
insinto /usr/share/zsh/site-functions
newins completion/yadm.zsh_completion _${PN}
fi
}
|