Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/vcsh/
Date: Mon, 17 May 2021 05:17:44
Message-Id: 1621228657.b8e6764087fb5f5559f2cda70bc24ebcdbeb0b41.tamiko@gentoo
1 commit: b8e6764087fb5f5559f2cda70bc24ebcdbeb0b41
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 17 05:16:55 2021 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Mon May 17 05:17:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e67640
7
8 dev-vcs/vcsh: version bump to 20190621.4
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
12
13 dev-vcs/vcsh/Manifest | 1 +
14 dev-vcs/vcsh/vcsh-1.20190621.4.ebuild | 45 +++++++++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/dev-vcs/vcsh/Manifest b/dev-vcs/vcsh/Manifest
18 index 1e7936a81be..f8987fdd7db 100644
19 --- a/dev-vcs/vcsh/Manifest
20 +++ b/dev-vcs/vcsh/Manifest
21 @@ -1 +1,2 @@
22 DIST vcsh-1.20151229.1.tar.gz 38309 BLAKE2B 9f9bb6fecfbfb01a88f7f0fb15cac3d83cb470ee6a73bfbbf2fde11b6d0bc7b8ea70da0c527563b4c06caa261fde98273baa80623783bef7345e02380d005f04 SHA512 da26044aa9bf884c178b1a2493f6bb4bea978d39d97f0dd31aef0130bac375ef2e519a3f7a14087467a3fccfd815f11c0718ca0f668d61dd91c97ac74af8afeb
23 +DIST vcsh-1.20190621.4.tar.gz 40262 BLAKE2B 541f0fe4873236d6b2af2f2a71c446954ca401b69beeca9b21c61a51e3cff11fd1999addcdf4f5d699ff54fa08e6b81a33e0b6d586cad250470e4646cbd5edd9 SHA512 d86168198f468bbf74d7c83dfe61e07e39772c98467b713f7a4972b779f046c51a2c983ddd444d0332d2a586159d86ccb6560d4cffb5a6441534c425a717ffe3
24
25 diff --git a/dev-vcs/vcsh/vcsh-1.20190621.4.ebuild b/dev-vcs/vcsh/vcsh-1.20190621.4.ebuild
26 new file mode 100644
27 index 00000000000..20daa45b2ae
28 --- /dev/null
29 +++ b/dev-vcs/vcsh/vcsh-1.20190621.4.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION='Manage config files in $HOME via fake bare git repositories'
37 +HOMEPAGE="https://github.com/RichiH/vcsh/"
38 +
39 +MY_PV="$(ver_rs 2 '-')"
40 +SRC_URI="https://github.com/RichiH/vcsh/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="|| ( GPL-3 GPL-2 )"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +RESTRICT="test"
48 +
49 +RDEPEND="dev-vcs/git"
50 +DEPEND=""
51 +
52 +DOCS=( changelog README.md CONTRIBUTORS )
53 +
54 +S="${WORKDIR}/${PN}-${MY_PV}"
55 +
56 +src_prepare() {
57 + default
58 + sed -i \
59 + -e 's,vendor-completions,site-functions,' \
60 + -e "s,\(\$(DOCDIR_PREFIX)\)/\$(self),\1/${PF}," \
61 + Makefile || die "sed failed"
62 +
63 + # remove dysfunctional tests
64 + sed -i -e 's,install: all,install:,' \
65 + Makefile || die "sed failed"
66 +}
67 +
68 +src_compile() {
69 + :
70 +}
71 +
72 +src_install() {
73 + default
74 + dodoc -r doc/sample_hooks
75 +}