diff options
author | Patrick Lauer <patrick@gentoo.org> | 2017-12-24 14:23:04 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2017-12-24 15:23:53 +0000 |
commit | 2fb2a1425fcbdcab6e138c113f5dfe852af03ac8 (patch) | |
tree | d05fbbb3083dd8cb4f24f97e942d1628487e7d78 /dev-vcs | |
parent | dev-util/jenkins-bin: Bump (diff) | |
download | gentoo-2fb2a1425fcbdcab6e138c113f5dfe852af03ac8.tar.gz gentoo-2fb2a1425fcbdcab6e138c113f5dfe852af03ac8.tar.bz2 gentoo-2fb2a1425fcbdcab6e138c113f5dfe852af03ac8.zip |
dev-vcs/git-crypt: Bump
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/git-crypt/Manifest | 1 | ||||
-rw-r--r-- | dev-vcs/git-crypt/git-crypt-0.6.0.ebuild | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/dev-vcs/git-crypt/Manifest b/dev-vcs/git-crypt/Manifest index e29eb32d8a7e..01b51c863841 100644 --- a/dev-vcs/git-crypt/Manifest +++ b/dev-vcs/git-crypt/Manifest @@ -1,3 +1,4 @@ DIST git-crypt-0.3.tar.gz 20660 BLAKE2B 7bc71c247faa773ec4866492ae5917a6b5c7a7a2f676cfcbb4ab3642d8433c15476049165c37bf8d1aaf5fdbb1db9ce7e5137865f126086a4b575da4b21b38d8 SHA512 526630e58a2e74bffe954bc2f489311fb2261337092a1c4462788d9412b7fa7b1aa744402558bba39fe776cfa6333700c4e0ad651d262a7ca14d920485192adc DIST git-crypt-0.4.tar.gz 44146 BLAKE2B 69e8c9a99f763c0b20c0d467ea8212a4688cb7e8f6d9b8241a20ae65680f7faea76a14794f2b01992b570a7adae518a79945b0e477cc539b7eb515c3729a853c SHA512 aa146d922258c4a68ad1a211b58e3b1e1b1135661ebecf3ede1b344fc93401eb9d0aa51cfa068f76fab3ab7c936ad6cf46e61e0e9505aaf4f338e54826ae88f6 DIST git-crypt-0.5.0.tar.gz 56694 BLAKE2B c82af3313523615a3839ee68210134cca898c78009e9b6edcfbdf14146dff81eafc909f135992367181278c584733affad307bdd1e1f2d32f9b8298c6d862c54 SHA512 0ed75e6962d8e8260811e048c22d724bdd63d461615e8f99c1d65a07f931f9630c1b853112f202b612dc69746a9ad03995f2947ad6fa39af56a878d993d65d77 +DIST git-crypt-0.6.0.tar.gz 57584 BLAKE2B 6557121ef4a3f49b2294f7c6268a55323b7ec192b851fac548e76a9301c65655be72f67eecc248205cefcb0184d52a55f8a462ccec0082552fce3115a18b7267 SHA512 06fd9f6dbdc5c9fa9196f3e81a87cd3688089623b2658daf9c98809d5ca14df0b7ca69fdfe8279abf575957c366f2f93bd5a6885092eb533bd0d1ed9fe9dfac5 diff --git a/dev-vcs/git-crypt/git-crypt-0.6.0.ebuild b/dev-vcs/git-crypt/git-crypt-0.6.0.ebuild new file mode 100644 index 000000000000..f107562053ad --- /dev/null +++ b/dev-vcs/git-crypt/git-crypt-0.6.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +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 +} |