Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cargo-audit/
Date: Fri, 24 Jun 2022 18:11:37
Message-Id: 1656094244.8bb73b239a249202e150c0e5e52851a5b9abe29f.gyakovlev@gentoo
1 commit: 8bb73b239a249202e150c0e5e52851a5b9abe29f
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 24 18:09:20 2022 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 24 18:10:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb73b23
7
8 dev-util/cargo-audit: revbump 0.15.2, use bundled libgit2
9
10 Bug: https://bugs.gentoo.org/854117
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 ...rgo-audit-0.15.2.ebuild => cargo-audit-0.15.2-r1.ebuild} | 13 +++++++------
14 1 file changed, 7 insertions(+), 6 deletions(-)
15
16 diff --git a/dev-util/cargo-audit/cargo-audit-0.15.2.ebuild b/dev-util/cargo-audit/cargo-audit-0.15.2-r1.ebuild
17 similarity index 98%
18 rename from dev-util/cargo-audit/cargo-audit-0.15.2.ebuild
19 rename to dev-util/cargo-audit/cargo-audit-0.15.2-r1.ebuild
20 index 4929e9260b9c..3f0cc8a36c16 100644
21 --- a/dev-util/cargo-audit/cargo-audit-0.15.2.ebuild
22 +++ b/dev-util/cargo-audit/cargo-audit-0.15.2-r1.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 2021 Gentoo Authors
25 +# Copyright 2021-2022 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=8
29 @@ -300,10 +300,7 @@ SLOT="0"
30 KEYWORDS="~amd64 ~ppc64"
31 IUSE="fix"
32
33 -RDEPEND="
34 - dev-libs/openssl:0=
35 - dev-libs/libgit2:=
36 -"
37 +RDEPEND="dev-libs/openssl:0="
38 DEPEND="${RDEPEND}"
39
40 S="${WORKDIR}/rustsec-${PN}-v${PV}"
41 @@ -315,7 +312,11 @@ PROPERTIES="test_network"
42 RESTRICT="test"
43
44 src_configure() {
45 - local myfeatures=( $(usev fix) )
46 + local myfeatures=(
47 + $(usev fix)
48 + vendored-libgit2
49 + )
50 +
51 cargo_src_configure
52 }