* Added the art of fuzzing 0.3.2

This commit is contained in:
grimmlin 2008-12-03 10:16:21 +00:00
parent 09d8e109be
commit db3ae2a385
3 changed files with 35 additions and 0 deletions

3
app-fuzz/taof/Manifest Normal file
View file

@ -0,0 +1,3 @@
AUX taof 43 RMD160 2ad54bad2df5401c093a523b2d7d4d839f1417a3 SHA1 a9d6abd97f46d716d5802629c5f96da1f4e01859 SHA256 d14fbd3095e9e7f8425dcd89aa1bb1b30cb1ee3d068805348a4ce188199733d7
DIST taof-0.3.2.tgz 508670 RMD160 79eda88cf6f2a4bc403f103096fe43e100dfa6a4 SHA1 60912b8af80887f294fdc3cf66c0771056b6923d SHA256 2cdcfa280c07b6e4333f9530e55cb40d5f9dd36018a327a7f86d41f9ee4ed9a3
EBUILD taof-0.3.2.ebuild 631 RMD160 b68cc79c05f1b70da49bb6c6ac09fde4d8bd0dd9 SHA1 646f8f45f65b007f87e9825566b8d075ef3254b2 SHA256 9e910678bffd3139ccd4836db05ca38de927c8da4faa7551625c8c8bd99a1c2d

4
app-fuzz/taof/files/taof Normal file
View file

@ -0,0 +1,4 @@
#!/bin/sh
cd /usr/lib/taof
python taof.py

View file

@ -0,0 +1,28 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /root/portage/app-fuzz/Peach/Peach-0.4.ebuild,v 1.1.1.2 2006/03/13 21:42:50 grimmlin Exp $
inherit distutils python
DESCRIPTION="A generic fuzzer framework"
HOMEPAGE="http://taof.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND=">=dev-lang/python-2.4
dev-python/pygtk
dev-python/twisted"
src_compile() {
einfo "Nothing to compile"
}
src_install() {
insinto /usr/lib/"${PN}"
doins -r *
dodoc Changelog
dosbin "${FILESDIR}"/taof
}