diff options
author | Patrick Lauer <patrick@gentoo.org> | 2015-06-14 10:30:09 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2015-06-14 10:30:09 +0000 |
commit | 28cdfacae81b581f4a7921051e4eb83b53c1326d (patch) | |
tree | 5c556cf9b0e5ba6a16b038d0eb60a0e433d29a60 /dev-vcs | |
parent | Version bump. (diff) | |
download | gentoo-2-28cdfacae81b581f4a7921051e4eb83b53c1326d.tar.gz gentoo-2-28cdfacae81b581f4a7921051e4eb83b53c1326d.tar.bz2 gentoo-2-28cdfacae81b581f4a7921051e4eb83b53c1326d.zip |
Bump #551692
(Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/git-crypt/ChangeLog | 9 | ||||
-rw-r--r-- | dev-vcs/git-crypt/git-crypt-0.5.0.ebuild | 21 |
2 files changed, 28 insertions, 2 deletions
diff --git a/dev-vcs/git-crypt/ChangeLog b/dev-vcs/git-crypt/ChangeLog index d5d0b2f24dc2..02bf049dbe2a 100644 --- a/dev-vcs/git-crypt/ChangeLog +++ b/dev-vcs/git-crypt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-vcs/git-crypt -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-crypt/ChangeLog,v 1.2 2014/11/21 05:33:36 patrick Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-crypt/ChangeLog,v 1.3 2015/06/14 10:30:09 patrick Exp $ + +*git-crypt-0.5.0 (14 Jun 2015) + + 14 Jun 2015; Patrick Lauer <patrick@gentoo.org> +git-crypt-0.5.0.ebuild: + Bump #551692 *git-crypt-0.4 (21 Nov 2014) diff --git a/dev-vcs/git-crypt/git-crypt-0.5.0.ebuild b/dev-vcs/git-crypt/git-crypt-0.5.0.ebuild new file mode 100644 index 000000000000..c8bee1c8be36 --- /dev/null +++ b/dev-vcs/git-crypt/git-crypt-0.5.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-crypt/git-crypt-0.5.0.ebuild,v 1.1 2015/06/14 10:30:09 patrick Exp $ + +EAPI=5 + +DESCRIPTION="transparent file encryption in git" +HOMEPAGE="https://www.agwa.name/projects/git-crypt/" +SRC_URI="https://github.com/AGWA/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-vcs/git" +DEPEND="${RDEPEND}" + +src_install() { + mkdir -p "${D}"/usr/bin + emake PREFIX="${D}"/usr install +} |