Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/yara/
Date: Mon, 04 Jul 2022 23:24:21
Message-Id: 1656977019.400298c4db1d19f1d1bdcdfdcbca688563c29a02.sam@gentoo
1 commit: 400298c4db1d19f1d1bdcdfdcbca688563c29a02
2 Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
3 AuthorDate: Mon Jul 4 19:44:34 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 23:23:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=400298c4
7
8 app-forensics/yara: don't install static libraries with FEATURES=test
9
10 Closes: https://bugs.gentoo.org/856085
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
13 Closes: https://github.com/gentoo/gentoo/pull/26224
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 app-forensics/yara/yara-4.2.0-r1.ebuild | 2 +-
17 app-forensics/yara/yara-4.2.1.ebuild | 2 +-
18 app-forensics/yara/yara-4.2.2.ebuild | 2 +-
19 3 files changed, 3 insertions(+), 3 deletions(-)
20
21 diff --git a/app-forensics/yara/yara-4.2.0-r1.ebuild b/app-forensics/yara/yara-4.2.0-r1.ebuild
22 index 55e7f11069d5..a4761519106a 100644
23 --- a/app-forensics/yara/yara-4.2.0-r1.ebuild
24 +++ b/app-forensics/yara/yara-4.2.0-r1.ebuild
25 @@ -53,5 +53,5 @@ src_install() {
26
27 # TODO: Allow tests to work against dyn. lib rather than building
28 # statically just for tests.
29 - find "${ED}" -name '*.a' -o -name '*.la' -delete || die
30 + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die
31 }
32
33 diff --git a/app-forensics/yara/yara-4.2.1.ebuild b/app-forensics/yara/yara-4.2.1.ebuild
34 index 55e7f11069d5..a4761519106a 100644
35 --- a/app-forensics/yara/yara-4.2.1.ebuild
36 +++ b/app-forensics/yara/yara-4.2.1.ebuild
37 @@ -53,5 +53,5 @@ src_install() {
38
39 # TODO: Allow tests to work against dyn. lib rather than building
40 # statically just for tests.
41 - find "${ED}" -name '*.a' -o -name '*.la' -delete || die
42 + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die
43 }
44
45 diff --git a/app-forensics/yara/yara-4.2.2.ebuild b/app-forensics/yara/yara-4.2.2.ebuild
46 index 6370d398ea67..cf8905b87957 100644
47 --- a/app-forensics/yara/yara-4.2.2.ebuild
48 +++ b/app-forensics/yara/yara-4.2.2.ebuild
49 @@ -53,5 +53,5 @@ src_install() {
50
51 # TODO: Allow tests to work against dyn. lib rather than building
52 # statically just for tests.
53 - find "${ED}" -name '*.a' -o -name '*.la' -delete || die
54 + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die
55 }