From 29badda007a3bcd85bb351f602790eb3b8922448 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 2 Nov 2022 03:08:46 +0000 Subject: gentoo auto-resync : 02:11:2022 - 03:08:46 --- dev-vcs/git-crypt/Manifest | 6 +++-- dev-vcs/git-crypt/git-crypt-0.6.0-r1.ebuild | 23 +++++++++++++++++++ dev-vcs/git-crypt/git-crypt-0.6.0.ebuild | 20 ----------------- dev-vcs/git-crypt/git-crypt-0.7.0.ebuild | 35 +++++++++++++++++++++++++++++ dev-vcs/git-crypt/metadata.xml | 5 +---- 5 files changed, 63 insertions(+), 26 deletions(-) create mode 100644 dev-vcs/git-crypt/git-crypt-0.6.0-r1.ebuild delete mode 100644 dev-vcs/git-crypt/git-crypt-0.6.0.ebuild create mode 100644 dev-vcs/git-crypt/git-crypt-0.7.0.ebuild (limited to 'dev-vcs/git-crypt') diff --git a/dev-vcs/git-crypt/Manifest b/dev-vcs/git-crypt/Manifest index 2f8c687e488a..d3a39b46209c 100644 --- a/dev-vcs/git-crypt/Manifest +++ b/dev-vcs/git-crypt/Manifest @@ -1,3 +1,5 @@ DIST git-crypt-0.6.0.tar.gz 57584 BLAKE2B 6557121ef4a3f49b2294f7c6268a55323b7ec192b851fac548e76a9301c65655be72f67eecc248205cefcb0184d52a55f8a462ccec0082552fce3115a18b7267 SHA512 06fd9f6dbdc5c9fa9196f3e81a87cd3688089623b2658daf9c98809d5ca14df0b7ca69fdfe8279abf575957c366f2f93bd5a6885092eb533bd0d1ed9fe9dfac5 -EBUILD git-crypt-0.6.0.ebuild 467 BLAKE2B 85c6549dd984b8f379b783e781c79d51f75522da667f630527bc5b0155e661b762ef1b0787871c0de23cea0096a8d2bb17bc7187ef169c304d938aca4e85ca8e SHA512 b9798b44e47469d4ce9e85b9e10f6ad5dfefa62daa0cbedd854cb0f1691d68f47abd7a897595d6b72a62eb814e3c5f517f848fb41728fb67b02d07fed2d7bfa0 -MISC metadata.xml 327 BLAKE2B 9b7ffcd827d5206250fd28c4f3d690e0d654011f63abd1d1f1d612f80cf1d8964d6571e9d23bbb1ccf97b25ee5e559ca2e726980822488ba4ad3f336a9e4d1bb SHA512 763b0e659bc5522664e7d7ca08dad4df71aa5b85835dab19386516c7d978ade530a771af060fdeebe1b64b4e30c1339745af65e6fbd23eb29ef5d249bdfd6157 +DIST git-crypt-0.7.0.tar.gz 57621 BLAKE2B 3307420f2ddeb6742ea53b8e58351dfa68e34e8d83cf6eada626fc9778387c356cd38cfa29f70729ebe39fb9acb9388e489487be7839e40d0a4a47a1b12f4ece SHA512 88eb730f0f0b4622c1a3ce64c62fa97a9a4da0716f4cce86fad8d700e2cb248dae8fc9e92996448564903564dbcddaa1f87201cf7ebc77144660f3044ae92904 +EBUILD git-crypt-0.6.0-r1.ebuild 490 BLAKE2B 74bb5b907cd33f7810e802780d7d1ff49c973eed60ed1ec1b34f9e8644a0dc82545d453a5143d3c66f3f743e82df38f796f92e37fb05dd58a4b244ae3a7d952b SHA512 a710297799d4bbe154abe757e6f157321c3ac1b379cd108af4ada1505f45ad0d2647b1a0613e704a349068f9dfc39bee755393a0f66fd7be2b0c9f0e55fa8e8f +EBUILD git-crypt-0.7.0.ebuild 722 BLAKE2B 9f4dc8f19987e14f01b0602accafb49c40e94b1cf47ad6ebad5eed96b8d18af82969b9eb3336bc6a4b13a2d0a5c80fea650285571dc25e3bd79fcb0453b147d7 SHA512 d3375f104fc8195504cbe889ae542897a22b67a514e505e0d87c9ac2b9fdc4a1bd91968adf516e53affc4834eb681b1c2203ff8bb0024fea5de4d7697752b206 +MISC metadata.xml 247 BLAKE2B 05f2a0f2b2f1ac968ed92c5d4ffc66421f91a19759f60e01d055de91fbd9871678561d144a03dcd6f39971ba7d7444042ce3d698508dab169d586427a51763be SHA512 dac25200faaac22943382193113794462c4861abe2146ed0fee8876dd3ead1d7206d207c787fdffe46b9fb010764c896dc7e77aa6234fc0839ff4de325dd622c diff --git a/dev-vcs/git-crypt/git-crypt-0.6.0-r1.ebuild b/dev-vcs/git-crypt/git-crypt-0.6.0-r1.ebuild new file mode 100644 index 000000000000..d1f3a018f685 --- /dev/null +++ b/dev-vcs/git-crypt/git-crypt-0.6.0-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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-libs/openssl:= + dev-vcs/git +" +DEPEND="${RDEPEND}" + +src_install() { + mkdir -p "${D}"/usr/bin || die + emake PREFIX="${D}"/usr install +} diff --git a/dev-vcs/git-crypt/git-crypt-0.6.0.ebuild b/dev-vcs/git-crypt/git-crypt-0.6.0.ebuild deleted file mode 100644 index c7e0f1a2401a..000000000000 --- a/dev-vcs/git-crypt/git-crypt-0.6.0.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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 || die - emake PREFIX="${D}"/usr install -} diff --git a/dev-vcs/git-crypt/git-crypt-0.7.0.ebuild b/dev-vcs/git-crypt/git-crypt-0.7.0.ebuild new file mode 100644 index 000000000000..d9424c732212 --- /dev/null +++ b/dev-vcs/git-crypt/git-crypt-0.7.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="Transparent file encryption in git" +HOMEPAGE="https://www.agwa.name/projects/git-crypt/" +SRC_URI="https://www.agwa.name/projects/git-crypt/downloads/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/openssl:= + dev-vcs/git +" +DEPEND="${RDEPEND}" +BDEPEND="dev-libs/libxslt" + +src_configure() { + # bug #805545, https://github.com/AGWA/git-crypt/issues/232 + append-cppflags -DOPENSSL_API_COMPAT=0x30000000L + tc-export CXX + + # bug #689180 + export ENABLE_MAN=yes +} + +src_install() { + dodir /usr/bin + emake PREFIX="${D}"/usr install +} diff --git a/dev-vcs/git-crypt/metadata.xml b/dev-vcs/git-crypt/metadata.xml index 351d3eb7d9e4..ec02737047b7 100644 --- a/dev-vcs/git-crypt/metadata.xml +++ b/dev-vcs/git-crypt/metadata.xml @@ -1,10 +1,7 @@ - - patrick@gentoo.org - Patrick Lauer - + AGWA/git-crypt -- cgit v1.2.3