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: Tue, 03 Jan 2023 00:32:49
Message-Id: 1672705938.0fdf91f85e5f934693002364f1c3c411e662f9cc.sam@gentoo
1 commit: 0fdf91f85e5f934693002364f1c3c411e662f9cc
2 Author: Mario Haustein <mario.haustein <AT> hrz <DOT> tu-chemnitz <DOT> de>
3 AuthorDate: Sat Dec 31 15:37:26 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 00:32:18 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fdf91f8
7
8 app-forensics/yara: drop 4.2.2
9
10 Signed-off-by: Mario Haustein <mario.haustein <AT> hrz.tu-chemnitz.de>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-forensics/yara/Manifest | 1 -
14 app-forensics/yara/yara-4.2.2.ebuild | 57 ------------------------------------
15 2 files changed, 58 deletions(-)
16
17 diff --git a/app-forensics/yara/Manifest b/app-forensics/yara/Manifest
18 index ce50cf366466..a29c11ba9394 100644
19 --- a/app-forensics/yara/Manifest
20 +++ b/app-forensics/yara/Manifest
21 @@ -1,2 +1 @@
22 -DIST yara-4.2.2.tar.gz 1287486 BLAKE2B 956a9ed4dab64d24cff680248b4f95b06287e96d27b3f94ff80e97641b3dc4581eaee59cf0d19dfffa9f90a6f0a56f95d3f90f9e9472b65e133bf4aac3e42da3 SHA512 6eb42e63eff93ce636e1d2ae84e30621eeea0d91e1d72bb2cbe826aca6af306bb3564ac2314bc090fb59c9aca5436e72d33658009722ce0cfbaae7ef87cc894e
23 DIST yara-4.2.3.tar.gz 1288334 BLAKE2B 4e92570e4dced5c1aa114065d791fc6780ea1281919eb1e908d4181fb5a966137c58d82ae09e8ba18edc69a25d542e3820d8e8de4ac62c0636e273e158086954 SHA512 1df23837d14d3f9f72db901190e7412241514a8914d72b753df32ad8a44c7a49ad8f14941a95de83754e4d1dd0f23d712d8e6a43916343341b92cb1bc66f3c09
24
25 diff --git a/app-forensics/yara/yara-4.2.2.ebuild b/app-forensics/yara/yara-4.2.2.ebuild
26 deleted file mode 100644
27 index 2c2cc68a11ab..000000000000
28 --- a/app-forensics/yara/yara-4.2.2.ebuild
29 +++ /dev/null
30 @@ -1,57 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="A malware identification and classification tool"
39 -HOMEPAGE="http://virustotal.github.io/yara/"
40 -SRC_URI="https://github.com/virustotal/yara/archive/v${PV/_/-}.tar.gz -> ${P}.tar.gz"
41 -S="${WORKDIR}/${PN}-${PV/_/-}"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0/8"
45 -if [[ ${PV} != *_rc* ]] ; then
46 - KEYWORDS="amd64 ~ppc64 x86"
47 -fi
48 -IUSE="+dex +dotnet +cuckoo +macho +magic profiling python test"
49 -RESTRICT="!test? ( test )"
50 -
51 -DEPEND="
52 - dev-libs/openssl:=
53 - cuckoo? ( dev-libs/jansson:= )
54 - magic? ( sys-apps/file:= )
55 -"
56 -RDEPEND="${DEPEND}"
57 -PDEPEND="python? ( =dev-python/yara-python-$(ver_cut 1)* )"
58 -
59 -PATCHES=( "${FILESDIR}/${PN}-$(ver_cut 1-2)-test.patch" )
60 -
61 -src_prepare() {
62 - default
63 - eautoreconf
64 -}
65 -
66 -src_configure() {
67 - econf \
68 - $(use_enable profiling) \
69 - $(use_enable cuckoo) \
70 - $(use_enable magic) \
71 - $(use_enable dotnet) \
72 - $(use_enable macho) \
73 - $(use_enable dex) \
74 - $(use_enable test static)
75 -}
76 -
77 -src_test() {
78 - emake check
79 -}
80 -
81 -src_install() {
82 - default
83 -
84 - # TODO: Allow tests to work against dyn. lib rather than building
85 - # statically just for tests.
86 - find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die
87 -}