Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/yadm/
Date: Tue, 31 Mar 2020 08:39:30
Message-Id: 1585643940.d3ee7f2da2b73ae0c7cfd7abc61c4b819abc55b2.juippis@gentoo
1 commit: d3ee7f2da2b73ae0c7cfd7abc61c4b819abc55b2
2 Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
3 AuthorDate: Sun Mar 29 00:26:04 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 31 08:39:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3ee7f2d
7
8 app-admin/yadm: Security cleanup
9
10 Bug: https://bugs.gentoo.org/625394
11 Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
12 Closes: https://github.com/gentoo/gentoo/pull/15158
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-admin/yadm/Manifest | 1 -
16 app-admin/yadm/yadm-1.12.0.ebuild | 54 ---------------------------------------
17 2 files changed, 55 deletions(-)
18
19 diff --git a/app-admin/yadm/Manifest b/app-admin/yadm/Manifest
20 index 77a3614ccc9..2a3b64f3cdf 100644
21 --- a/app-admin/yadm/Manifest
22 +++ b/app-admin/yadm/Manifest
23 @@ -1,2 +1 @@
24 -DIST yadm-1.12.0.tar.gz 47340 BLAKE2B ef710f56c96244c082bfcc887cae4aee00aaaadec5e7466500dde263c5e4f43df046e11742fd275e989bd9704b39a123f17248cd70d64f6ca552b28db6c44814 SHA512 402a67770154ce3ae7ab947ff4d4e26ca5040d343110fb749195ca5c3f4ee435aba1d8cdf02d4ecf4a81d3f331c1b891bed4fb3fcfcc893867e0fce45b9c8cd8
25 DIST yadm-2.4.0.tar.gz 96877 BLAKE2B 462a5816e106c4502007ff34ab338904e14a9851ebcfc7ff79a32a8b11fbbe3e0b7e6538ed6b489ab67e2205c84b2250749e3091c77fa663886dc9792078a576 SHA512 43e16a9502f9dd9f6c6dba3bb5403bb048244a406d44cb42a96a43e62bf7342efd5f302304dbedede61423546787fc929f378d68da9031207e70239ec4e265ce
26
27 diff --git a/app-admin/yadm/yadm-1.12.0.ebuild b/app-admin/yadm/yadm-1.12.0.ebuild
28 deleted file mode 100644
29 index 55922bd1e75..00000000000
30 --- a/app-admin/yadm/yadm-1.12.0.ebuild
31 +++ /dev/null
32 @@ -1,54 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -inherit bash-completion-r1
39 -
40 -DESCRIPTION="A dotfile manager for the config files in your home folder"
41 -HOMEPAGE="https://github.com/TheLocehiliosan/yadm/"
42 -SRC_URI="https://github.com/TheLocehiliosan/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="zsh-completion test"
48 -RESTRICT="!test? ( test )"
49 -
50 -DEPEND="
51 - test? (
52 - dev-tcltk/expect
53 - dev-util/bats
54 - dev-vcs/git
55 - )"
56 -
57 -RDEPEND="
58 - dev-vcs/git
59 - app-crypt/gnupg
60 - zsh-completion? ( app-shells/gentoo-zsh-completions )"
61 -
62 -src_compile() {
63 - emake "${PN}.md"
64 -}
65 -
66 -src_test() {
67 - # 109_accept_encryption tests are interactive, thus fail. Skip them
68 - # 113_accept_jinja_alt.bats are depepending on the optional envtpl
69 - while IFS="" read -d $'\0' -r f ; do
70 - bats "${f}" || die "test ${f} failed"
71 - done < <(find test -name '*.bats' -and -not -name '109_accept_encryption.bats' -and -not -name '113_accept_jinja_alt.bats' -print0)
72 -}
73 -
74 -src_install() {
75 - einstalldocs
76 -
77 - dobin "${PN}"
78 - doman "${PN}.1"
79 -
80 - dobashcomp completion/yadm.bash_completion
81 -
82 - if use zsh-completion; then
83 - insinto /usr/share/zsh/site-functions
84 - newins completion/yadm.zsh_completion _${PN}
85 - fi
86 -}