volatility: 2.1 rc1 version bump

This commit is contained in:
Anton Bolshakov 2012-07-20 01:04:34 +00:00
parent 6edd163dfc
commit bcd6370fd5
2 changed files with 35 additions and 0 deletions

View file

@ -1,3 +1,5 @@
DIST volatility-2.0.tar.gz 806334 RMD160 3f224d0576a240341b3a3d77e569575dd63fe17e SHA1 3f1089ffd0f419df21ce30fb281f814670391edc SHA256 a151ccb866f39538c2e7634d88a3e67a7754b31be97bdd4b89bccc2cc9c38d5e
DIST volatility-2.1-rc1.tar.gz 1522401 RMD160 2cb74ceb2428328ec6f38ca6b004f419d954aa18 SHA1 4119353886798e25b5e09fa5dd2f0e847175dfa8 SHA256 1b8e97aa9c09be079c80448fbb50ac8c30b0cda5494c4aebf8a83bdf74043d03
EBUILD volatility-1.3.1.ebuild 610 RMD160 d56adf4af867195697ddaa28e99280ee63e87366 SHA1 35186e7588220d436074b7d203c43dae36b27def SHA256 0a5a940386ae15d82f0c1875941c55b6a579e6e766bdd4537cd8f1b480a923a8
EBUILD volatility-2.0.ebuild 634 RMD160 d3e005d7fde6f18e6722ad2ef32b70c69ed13dd4 SHA1 fafed237e84b4032fcd1e530e76d306088300ab8 SHA256 dcecfaaee9a0623d9461ec572043f333b562aa7fbb45848ce6f131895bffc61a
EBUILD volatility-2.1_rc1.ebuild 680 RMD160 2c1309e6191a92b118d5d3f9d5628cbce6ebf6fe SHA1 50aea25ba27c2e4eb632f092bea5a0b0924df9b6 SHA256 96e9023dc0f2fc9885ed5292e00f37f4199bd063b43c7f0f061ee610373e2abb

View file

@ -0,0 +1,33 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
PYTHON_DEPEND="2:2.6"
inherit distutils
MY_P=${P/_rc/-rc}
DESCRIPTION="Forensic tool for analyzing volatile memory"
HOMEPAGE="http://code.google.com/p/volatility/"
SRC_URI="http://volatility.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND="dev-python/pycrypto
>=dev-libs/distorm64-3"
S="${WORKDIR}/${MY_P}"
src_install() {
distutils_src_install
mkdir "${D}/usr/share/${PN}"
mv "${D}/usr/plugins" "${D}/usr/share/${PN}"
mv "${D}/usr/bin/vol.py" "${D}/usr/bin/volatility"
}