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: Sun, 28 Feb 2016 05:14:17
Message-Id: 1456636292.44b677a2e0a9979ece299672c0f3bf2c822bc087.tamiko@gentoo
1 commit: 44b677a2e0a9979ece299672c0f3bf2c822bc087
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 05:11:32 2016 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 05:11:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44b677a2
7
8 dev-vcs/vcsh: version bump to 1.20151229
9
10 Package-Manager: portage-2.2.26
11
12 dev-vcs/vcsh/Manifest | 1 +
13 dev-vcs/vcsh/vcsh-1.20151229.ebuild | 40 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-vcs/vcsh/Manifest b/dev-vcs/vcsh/Manifest
17 index cd1ea2a..23c394b 100644
18 --- a/dev-vcs/vcsh/Manifest
19 +++ b/dev-vcs/vcsh/Manifest
20 @@ -1 +1,2 @@
21 DIST vcsh-1.20150502.tar.gz 33813 SHA256 127c7f35e9b097b722917d42f9652375033b12f14b6702a08621cb16205d253f SHA512 54306b424bbef145f1231b88823a6959b6263c11b677200a2d3914e0cdfd0595902e6193cd9acfa53c3c5c3aff18d2e9a974373e70da4516b0237005d95d5630 WHIRLPOOL 51f6a51e625e39e17143dd7ba8d51800bcd17d06849dbce4c35ee3f277b10a575d117cc68be2ffa042085e223c0dc7d1e5aee61ed6921438cc0088ba90295a5f
22 +DIST vcsh-1.20151229.tar.gz 34481 SHA256 ae069506b0490287aefa582ab4e6af1c7ebc4dca743b17d91e0c8d0327d7a3fa SHA512 213297d008f6f0701e9002e5b44eca0e7eb4bcaf62c12bc1efbf6d5c9590d1ca59a38f102e735eec9b2e85556e003632d948abc4325c7e78e478521d1c164d80 WHIRLPOOL 331abfe5fb22bd5ff72b43cddbe406dd0a6a62e5fed53f2c8ecc59f57d9b6728641941b94c8b82ce2a9ca54a931f72243f38cb8dbf44a1b66a402595d41ea9c0
23
24 diff --git a/dev-vcs/vcsh/vcsh-1.20151229.ebuild b/dev-vcs/vcsh/vcsh-1.20151229.ebuild
25 new file mode 100644
26 index 0000000..8bbd845
27 --- /dev/null
28 +++ b/dev-vcs/vcsh/vcsh-1.20151229.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +DESCRIPTION='Manage config files in $HOME via fake bare git repositories'
37 +HOMEPAGE="https://github.com/RichiH/vcsh/"
38 +SRC_URI="https://github.com/RichiH/vcsh/archive/v${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="|| ( GPL-3 GPL-2 )"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE=""
44 +
45 +RDEPEND="dev-vcs/git"
46 +DEPEND=""
47 +
48 +DOCS=( changelog README.md CONTRIBUTORS )
49 +
50 +src_prepare() {
51 + default
52 + sed -i \
53 + -e 's,vendor-completions,site-functions,' \
54 + -e "s,\(\$(DOCDIR_PREFIX)\)/\$(self),\1/${PF}," \
55 + Makefile || die "sed failed"
56 +
57 + # remove dysfunctional tests
58 + sed -i -e 's,install: all,install:,' \
59 + Makefile || die "sed failed"
60 +}
61 +
62 +src_compile() {
63 + :
64 +}
65 +
66 +src_install() {
67 + default
68 + dodoc -r doc/sample_hooks
69 +}