Gentoo Archives: gentoo-commits

From: Mike Auty <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/ikelos:master commit in: app-forensics/yara/, dev-python/yara-python/
Date: Mon, 01 Aug 2011 11:26:25
Message-Id: 70cce14774c1e0f7669b90a90e4762a83a5b799f.ikelos@gentoo
1 commit: 70cce14774c1e0f7669b90a90e4762a83a5b799f
2 Author: Mike Auty <mike.auty <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 11 16:09:41 2011 +0000
4 Commit: Mike Auty <ikelos <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 11 16:09:41 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ikelos.git;a=commit;h=70cce147
7
8 Add in initial versions of yara and yara-python.
9
10 ---
11 app-forensics/yara/Manifest | 2 ++
12 app-forensics/yara/yara-1.5.ebuild | 23 +++++++++++++++++++++++
13 dev-python/yara-python/Manifest | 2 ++
14 dev-python/yara-python/yara-python-1.5.ebuild | 21 +++++++++++++++++++++
15 4 files changed, 48 insertions(+), 0 deletions(-)
16
17 diff --git a/app-forensics/yara/Manifest b/app-forensics/yara/Manifest
18 new file mode 100644
19 index 0000000..bee95b0
20 --- /dev/null
21 +++ b/app-forensics/yara/Manifest
22 @@ -0,0 +1,2 @@
23 +DIST yara-1.5.tar.gz 586642 RMD160 c10318ceaa76a8a06df1febc0882b654d7d1d21e SHA1 b6ba50ed65574eaffad2837117832721acd275f1 SHA256 de9827abd884e79282461dec878254f537c141110e7e2c9e7b4091ecd7ad7666
24 +EBUILD yara-1.5.ebuild 518 RMD160 2914bbad82b304cada8d19b56a8d6cf33da670ce SHA1 055a268bc576c7615dfa63e26583e604f8356d60 SHA256 db63ce76e794b7d23d75529c7c69ef8d8005803ecfc98aceaf351e7708b6429c
25
26 diff --git a/app-forensics/yara/yara-1.5.ebuild b/app-forensics/yara/yara-1.5.ebuild
27 new file mode 100644
28 index 0000000..999f4d2
29 --- /dev/null
30 +++ b/app-forensics/yara/yara-1.5.ebuild
31 @@ -0,0 +1,23 @@
32 +# Copyright 1999-2011 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Header: $
35 +
36 +EAPI=3
37 +
38 +DESCRIPTION="A malware identification and classification tool"
39 +HOMEPAGE="http://yara-project.googlecode.com/"
40 +SRC_URI="http://yara-project.googlecode.com/files/${P}.tar.gz"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~x86 ~amd64"
45 +IUSE="python"
46 +
47 +DEPEND=""
48 +RDEPEND="${DEPEND}
49 + python? ( ~dev-python/yara-python-${PV} )"
50 +
51 +src_install() {
52 + emake install DESTDIR="${D}" || die "Failed to install"
53 +}
54 +
55
56 diff --git a/dev-python/yara-python/Manifest b/dev-python/yara-python/Manifest
57 new file mode 100644
58 index 0000000..1c58b9b
59 --- /dev/null
60 +++ b/dev-python/yara-python/Manifest
61 @@ -0,0 +1,2 @@
62 +DIST yara-python-1.5.tar.gz 8072 RMD160 3a093ec25640da353901641e6d1a4ee17777e409 SHA1 d26646d21671f2be14942c3eca5965fb94dc7e64 SHA256 77175498845e49e680022da4812967d041a5937c3daae54285d589e1b856f55a
63 +EBUILD yara-python-1.5.ebuild 457 RMD160 33b943e12b3ed568d729b17c2598902c505b097f SHA1 a3a911cfa6f8ce337fc8199a4ccb9de880b4aee4 SHA256 9052ae61e44acb49a97aff95877fa9fcb78634ac154a02249420c57651405833
64
65 diff --git a/dev-python/yara-python/yara-python-1.5.ebuild b/dev-python/yara-python/yara-python-1.5.ebuild
66 new file mode 100644
67 index 0000000..0c9e031
68 --- /dev/null
69 +++ b/dev-python/yara-python/yara-python-1.5.ebuild
70 @@ -0,0 +1,21 @@
71 +# Copyright 1999-2011 Gentoo Foundation
72 +# Distributed under the terms of the GNU General Public License v2
73 +# $Header: $
74 +
75 +EAPI=3
76 +PYTHON_DEPEND="2:2.5"
77 +
78 +inherit distutils
79 +
80 +DESCRIPTION="A malware identification and classification tool"
81 +HOMEPAGE="http://yara-project.googlecode.com/"
82 +SRC_URI="http://yara-project.googlecode.com/files/${P}.tar.gz"
83 +
84 +LICENSE="GPL-3"
85 +SLOT="0"
86 +KEYWORDS="~x86 ~amd64"
87 +IUSE=""
88 +
89 +DEPEND="~app-forensics/yara-${PV}"
90 +RDEPEND="${DEPEND}"
91 +