Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/volatility: metadata.xml volatility-2.4.1.ebuild ChangeLog
Date: Sat, 29 Nov 2014 21:04:09
Message-Id: 20141129210404.DDD8AB2DB@oystercatcher.gentoo.org
1 chithanh 14/11/29 21:04:04
2
3 Added: metadata.xml volatility-2.4.1.ebuild ChangeLog
4 Log:
5 Initial commit. Based in part on ebuild from Pentoo.
6
7 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x2324E7B566DF2611!)
8
9 Revision Changes Path
10 1.1 app-forensics/volatility/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/volatility/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/volatility/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>forensics</herd>
21 <maintainer>
22 <email>chithanh@g.o</email>
23 <name>Chí-Thanh Christopher Nguyễn</name>
24 </maintainer>
25 </pkgmetadata>
26
27
28
29
30 1.1 app-forensics/volatility/volatility-2.4.1.ebuild
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/volatility/volatility-2.4.1.ebuild?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/volatility/volatility-2.4.1.ebuild?rev=1.1&content-type=text/plain
34
35 Index: volatility-2.4.1.ebuild
36 ===================================================================
37 # Copyright 1999-2014 Gentoo Foundation
38 # Distributed under the terms of the GNU General Public License v2
39 # $Header: /var/cvsroot/gentoo-x86/app-forensics/volatility/volatility-2.4.1.ebuild,v 1.1 2014/11/29 21:04:04 chithanh Exp $
40
41 EAPI=5
42
43 PYTHON_COMPAT=( python2_7 )
44 inherit distutils-r1
45
46 DESCRIPTION="Framework for analyzing volatile memory"
47 HOMEPAGE="http://www.volatilityfoundation.org/"
48 #2.4.1 not on mirrors yet
49 #SRC_URI="http://downloads.volatilityfoundation.org/releases/${PV}/${P}.tar.gz"
50 SRC_URI="mirror://gentoo/${P}.tar.gz"
51
52 LICENSE="GPL-2+"
53 SLOT="0"
54 KEYWORDS="~amd64 ~x86"
55 IUSE=""
56
57 DEPEND=""
58 RDEPEND=">=dev-libs/distorm64-3
59 dev-libs/libpcre
60 dev-python/pycrypto[${PYTHON_USEDEP}]"
61
62 src_install() {
63 distutils-r1_src_install
64 mkdir "${D}/usr/share/${PN}"
65 mv "${D}/usr/contrib/plugins" "${D}/usr/share/${PN}/"
66 rmdir "${D}/usr/contrib"
67 mv "${D}/usr/tools" "${D}/usr/share/${PN}/"
68 dosym /usr/bin/vol.py /usr/bin/volatility
69 }
70
71
72
73 1.1 app-forensics/volatility/ChangeLog
74
75 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/volatility/ChangeLog?rev=1.1&view=markup
76 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/volatility/ChangeLog?rev=1.1&content-type=text/plain
77
78 Index: ChangeLog
79 ===================================================================
80 # ChangeLog for app-forensics/volatility
81 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
82 # $Header: /var/cvsroot/gentoo-x86/app-forensics/volatility/ChangeLog,v 1.1 2014/11/29 21:04:04 chithanh Exp $
83
84 *volatility-2.4.1 (29 Nov 2014)
85
86 29 Nov 2014; Chí-Thanh Christopher Nguyễn <chithanh@g.o> +metadata.xml,
87 +volatility-2.4.1.ebuild:
88 Initial commit. Based in part on ebuild from Pentoo.