Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-crypt/
Date: Tue, 01 Nov 2022 23:22:00
Message-Id: 1667344565.afcb7f713732686924071d264af386df97b757bb.sam@gentoo
1 commit: afcb7f713732686924071d264af386df97b757bb
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 23:14:39 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 23:16:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afcb7f71
7
8 dev-vcs/git-crypt: add 0.7.0
9
10 Closes: https://bugs.gentoo.org/522286
11 Closes: https://bugs.gentoo.org/689180
12 Closes: https://bugs.gentoo.org/805545
13 Thanks-to: John R. Graham <john_r_graham <AT> gentoo.org>
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 dev-vcs/git-crypt/Manifest | 1 +
17 dev-vcs/git-crypt/git-crypt-0.7.0.ebuild | 34 ++++++++++++++++++++++++++++++++
18 2 files changed, 35 insertions(+)
19
20 diff --git a/dev-vcs/git-crypt/Manifest b/dev-vcs/git-crypt/Manifest
21 index f861fde81c85..1dee4d421921 100644
22 --- a/dev-vcs/git-crypt/Manifest
23 +++ b/dev-vcs/git-crypt/Manifest
24 @@ -1 +1,2 @@
25 DIST git-crypt-0.6.0.tar.gz 57584 BLAKE2B 6557121ef4a3f49b2294f7c6268a55323b7ec192b851fac548e76a9301c65655be72f67eecc248205cefcb0184d52a55f8a462ccec0082552fce3115a18b7267 SHA512 06fd9f6dbdc5c9fa9196f3e81a87cd3688089623b2658daf9c98809d5ca14df0b7ca69fdfe8279abf575957c366f2f93bd5a6885092eb533bd0d1ed9fe9dfac5
26 +DIST git-crypt-0.7.0.tar.gz 57621 BLAKE2B 3307420f2ddeb6742ea53b8e58351dfa68e34e8d83cf6eada626fc9778387c356cd38cfa29f70729ebe39fb9acb9388e489487be7839e40d0a4a47a1b12f4ece SHA512 88eb730f0f0b4622c1a3ce64c62fa97a9a4da0716f4cce86fad8d700e2cb248dae8fc9e92996448564903564dbcddaa1f87201cf7ebc77144660f3044ae92904
27
28 diff --git a/dev-vcs/git-crypt/git-crypt-0.7.0.ebuild b/dev-vcs/git-crypt/git-crypt-0.7.0.ebuild
29 new file mode 100644
30 index 000000000000..8a641959908a
31 --- /dev/null
32 +++ b/dev-vcs/git-crypt/git-crypt-0.7.0.ebuild
33 @@ -0,0 +1,34 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +inherit flag-o-matic toolchain-funcs
40 +
41 +DESCRIPTION="Transparent file encryption in git"
42 +HOMEPAGE="https://www.agwa.name/projects/git-crypt/"
43 +SRC_URI="https://www.agwa.name/projects/git-crypt/downloads/${P}.tar.gz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +RDEPEND="
50 + dev-libs/openssl:=
51 + dev-vcs/git
52 +"
53 +DEPEND="${RDEPEND}"
54 +BDEPEND="dev-libs/libxslt"
55 +
56 +src_configure() {
57 + append-cppflags -DOPENSSL_API_COMPAT=0x30000000L
58 + tc-export CXX
59 +
60 + # bug #689180
61 + export ENABLE_MAN=yes
62 +}
63 +
64 +src_install() {
65 + mkdir -p "${D}"/usr/bin || die
66 + emake PREFIX="${D}"/usr install
67 +}