diff options
author | 2013-12-24 22:52:05 +0000 | |
---|---|---|
committer | 2013-12-24 22:52:05 +0000 | |
commit | 911715d302d46547139e4949a72084d03563f5cd (patch) | |
tree | df44cac7179577af3424db503ae21843421c1d65 /dev-vcs/vcsh | |
parent | Version bump, see http://www.winehq.org/announce/1.7.9 for the announcement. (diff) | |
download | gentoo-2-911715d302d46547139e4949a72084d03563f5cd.tar.gz gentoo-2-911715d302d46547139e4949a72084d03563f5cd.tar.bz2 gentoo-2-911715d302d46547139e4949a72084d03563f5cd.zip |
EAPI 5, version bump
(Portage version: 2.1.13.1/cvs/Linux x86_64, signed Manifest commit with key 0x3A051746)
Diffstat (limited to 'dev-vcs/vcsh')
-rw-r--r-- | dev-vcs/vcsh/ChangeLog | 7 | ||||
-rw-r--r-- | dev-vcs/vcsh/vcsh-1.20131214.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/dev-vcs/vcsh/ChangeLog b/dev-vcs/vcsh/ChangeLog index b4a44fff65fb..299a404bc775 100644 --- a/dev-vcs/vcsh/ChangeLog +++ b/dev-vcs/vcsh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/vcsh # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/vcsh/ChangeLog,v 1.6 2013/12/24 17:17:50 dastergon Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/vcsh/ChangeLog,v 1.7 2013/12/24 22:52:05 dastergon Exp $ + +*vcsh-1.20131214 (24 Dec 2013) + + 24 Dec 2013; Pavlos Ratis <dastergon@gentoo.org> +vcsh-1.20131214.ebuild: + EAPI 5, version bump 24 Dec 2013; Pavlos Ratis <dastergon@gentoo.org> metadata.xml: add myself as maintainer diff --git a/dev-vcs/vcsh/vcsh-1.20131214.ebuild b/dev-vcs/vcsh/vcsh-1.20131214.ebuild new file mode 100644 index 000000000000..9efa418bc694 --- /dev/null +++ b/dev-vcs/vcsh/vcsh-1.20131214.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.20131214.ebuild,v 1.1 2013/12/24 22:52:05 dastergon Exp $ + +EAPI=5 + +DESCRIPTION='Manage config files in $HOME via fake bare git repositories' +HOMEPAGE="https://github.com/RichiH/vcsh/" +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 README.md ) + +S=${S}-1 +src_prepare() { + default + sed -i \ + -e 's,vendor-completions,site-functions,' \ + -e "s,share/doc/\$(self),share/doc/${PF}," \ + Makefile || die +} |