summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2013-08-09 03:06:54 +0000
committerPatrick Lauer <patrick@gentoo.org>2013-08-09 03:06:54 +0000
commit5463b877fe5602b29323faf6cb337852afa8acc4 (patch)
tree08e8021f42972407f73b14f0ffe481ec0e11a2d7 /dev-vcs
parentUnmask qemu-1.5.2-r1 (diff)
downloadgentoo-2-5463b877fe5602b29323faf6cb337852afa8acc4.tar.gz
gentoo-2-5463b877fe5602b29323faf6cb337852afa8acc4.tar.bz2
gentoo-2-5463b877fe5602b29323faf6cb337852afa8acc4.zip
Bump
(Portage version: 2.2.0_alpha196/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-vcs')
-rw-r--r--dev-vcs/vcsh/ChangeLog10
-rw-r--r--dev-vcs/vcsh/vcsh-1.20130724.ebuild28
2 files changed, 35 insertions, 3 deletions
diff --git a/dev-vcs/vcsh/ChangeLog b/dev-vcs/vcsh/ChangeLog
index f63c734302f6..8cedb7ad8a39 100644
--- a/dev-vcs/vcsh/ChangeLog
+++ b/dev-vcs/vcsh/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-vcs/vcsh
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/vcsh/ChangeLog,v 1.2 2012/04/22 11:54:05 tove Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/vcsh/ChangeLog,v 1.3 2013/08/09 03:06:54 patrick Exp $
+
+*vcsh-1.20130724 (09 Aug 2013)
+
+ 09 Aug 2013; Patrick Lauer <patrick@gentoo.org> +vcsh-1.20130724.ebuild:
+ Bump
22 Apr 2012; Torsten Veller <tove@gentoo.org> vcsh-0.20120227.ebuild:
dev-vcs/git is a runtime dependency
@@ -10,4 +15,3 @@
08 Apr 2012; Torsten Veller <tove@gentoo.org> +vcsh-0.20120227.ebuild,
+metadata.xml:
Initial commit
-
diff --git a/dev-vcs/vcsh/vcsh-1.20130724.ebuild b/dev-vcs/vcsh/vcsh-1.20130724.ebuild
new file mode 100644
index 000000000000..a98db1413212
--- /dev/null
+++ b/dev-vcs/vcsh/vcsh-1.20130724.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/vcsh/vcsh-1.20130724.ebuild,v 1.1 2013/08/09 03:06:54 patrick Exp $
+
+EAPI=4
+
+DESCRIPTION='Manage config files in $HOME via fake bare git repositories'
+HOMEPAGE="https://github.com/RichiH/vcsh/blob/master/README.md"
+SRC_URI="http://github.com/RichiH/vcsh/archive/v${PV}-1.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( GPL-3 GPL-2 )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-vcs/git"
+DEPEND="app-text/ronn"
+
+DOCS=( changelog )
+
+S=${S}-1
+src_prepare() {
+ default
+ sed -i \
+ -e 's,vendor-completions,site-functions,' \
+ -e "s,share/doc/\$(self),share/doc/${PF}," \
+ Makefile || die
+}