diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-11-21 05:33:36 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-11-21 05:33:36 +0000 |
commit | 1415865c9aec58861e8606b2b0c5a89f9ac95ff3 (patch) | |
tree | 81d91af335334e017afceec3bfa7f91f7856e524 /dev-vcs/git-crypt | |
parent | Bump (diff) | |
download | gentoo-2-1415865c9aec58861e8606b2b0c5a89f9ac95ff3.tar.gz gentoo-2-1415865c9aec58861e8606b2b0c5a89f9ac95ff3.tar.bz2 gentoo-2-1415865c9aec58861e8606b2b0c5a89f9ac95ff3.zip |
Bump
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-vcs/git-crypt')
-rw-r--r-- | dev-vcs/git-crypt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-vcs/git-crypt/git-crypt-0.4.ebuild | 21 |
2 files changed, 27 insertions, 1 deletions
diff --git a/dev-vcs/git-crypt/ChangeLog b/dev-vcs/git-crypt/ChangeLog index 334fb1eab21b..d5d0b2f24dc2 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.1 2014/02/18 02:58:42 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-crypt/ChangeLog,v 1.2 2014/11/21 05:33:36 patrick Exp $ + +*git-crypt-0.4 (21 Nov 2014) + + 21 Nov 2014; Patrick Lauer <patrick@gentoo.org> +git-crypt-0.4.ebuild: + Bump *git-crypt-0.3 (18 Feb 2014) diff --git a/dev-vcs/git-crypt/git-crypt-0.4.ebuild b/dev-vcs/git-crypt/git-crypt-0.4.ebuild new file mode 100644 index 000000000000..e6c434472491 --- /dev/null +++ b/dev-vcs/git-crypt/git-crypt-0.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2014 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.4.ebuild,v 1.1 2014/11/21 05:33:36 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 +} |