summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-forensics')
-rw-r--r--app-forensics/zzuf/ChangeLog23
-rw-r--r--app-forensics/zzuf/Manifest4
-rw-r--r--app-forensics/zzuf/metadata.xml26
-rw-r--r--app-forensics/zzuf/zzuf-0.10.ebuild28
4 files changed, 0 insertions, 81 deletions
diff --git a/app-forensics/zzuf/ChangeLog b/app-forensics/zzuf/ChangeLog
deleted file mode 100644
index 311eaac09..000000000
--- a/app-forensics/zzuf/ChangeLog
+++ /dev/null
@@ -1,23 +0,0 @@
-# ChangeLog for app-forensics/zzuf
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
- 11 Feb 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> zzuf-0.10.ebuild:
- src_test added, "looks good" jakub
-
- 11 Feb 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> zzuf-0.10.ebuild:
- src_unpack added, don't build the testsuite by default, "looks good" jakub
-
- 11 Feb 2008; Tiago Cunha (tcunha) <me@tiagocunha.org> zzuf-0.10.ebuild:
- Added ~sparc keyword
-
- 11 Nov 2007; Jukka Ruohonen <drear@iki.fi> -zzuf-0.9.ebuild,
- +zzuf-0.10.ebuild:
- Version bump; remove old.
-
- 11 Nov 2007; Jukka Ruohonen <drear@iki.fi> zzuf-0.9.ebuild:
- Added ~amd64 keyword; compiles fine, runtime behavior verified.
-
- 12 Aug 2007; Jakub Moc <jakub@gentoo.org> +metadata.xml, +zzuf-0.9.ebuild:
- New ebuild, Bug 188646
-
diff --git a/app-forensics/zzuf/Manifest b/app-forensics/zzuf/Manifest
deleted file mode 100644
index ff72fb5bb..000000000
--- a/app-forensics/zzuf/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST zzuf-0.10.tar.gz 425897 RMD160 521369e990b1e79db71de688494b264995baa508 SHA1 92d0948e6b821945011f9707244db6d17a4d0ba0 SHA256 a5fa82e49c01721f0ae339345780c55d1ae9e42ed6909901a1c688800e5b834c
-EBUILD zzuf-0.10.ebuild 643 RMD160 33bd7342ccbbee4ee0677e24311f36d2b9d4bb35 SHA1 e9501d5840f750237038ff786f507ba74e710152 SHA256 477901e19d5afa22d2ed1bf592eec37c506a750010167417e459a8c09dfa4379
-MISC ChangeLog 826 RMD160 5e6745f9bf90e216c1c8bf5414bb5df1c1a74030 SHA1 64c0614ce1e35a997a87506db1b62444d4f3067c SHA256 e06ef03845e8f03b2521f5fb94dd1124d9ea469982658230ea5cc2c71626123b
-MISC metadata.xml 1129 RMD160 d78d7401c7d0b1490553ad5c7ed6f38b6683dae9 SHA1 8a972e3c08c5919af0c6d8329cae942d152e27a2 SHA256 fba864978069d049ac2378a91300c080c127da91ad3445f995bee5594426d3c6
diff --git a/app-forensics/zzuf/metadata.xml b/app-forensics/zzuf/metadata.xml
deleted file mode 100644
index 1aac6029d..000000000
--- a/app-forensics/zzuf/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>maintainer-wanted</herd>
-<longdescription>
-From http://sam.zoy.org/zzuf/
-
-zzuf is a transparent application input fuzzer. Its purpose is to find bugs
-in applications by corrupting their user-contributed data (which more than
-often comes from untrusted sources on the Internet). It works by intercepting
-file and network operations and changing random bits in the program’s input.
-zzuf’s behaviour is deterministic, making it easier to reproduce bugs.
-
-Its main areas of use are:
-
- - quality assurance: use zzuf to test existing software,
- or integrate it into your own software’s testsuite
-
- - security: very often, segmentation faults or memory corruption issues
- mean a potential security hole, zzuf helps exposing some of them
-
-zzuf’s primary target is media players, image viewers and web browsers, because
-the data they process is inherently insecure, but it was also successfully used
-to find bugs in system utilities such as objdump.
-</longdescription>
-</pkgmetadata>
diff --git a/app-forensics/zzuf/zzuf-0.10.ebuild b/app-forensics/zzuf/zzuf-0.10.ebuild
deleted file mode 100644
index 5a01dfc1f..000000000
--- a/app-forensics/zzuf/zzuf-0.10.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-DESCRIPTION="A transparent application input fuzzer."
-HOMEPAGE="http://sam.zoy.org/zzuf/"
-SRC_URI="http://sam.zoy.org/zzuf/${P}.tar.gz"
-
-LICENSE="WTFPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~sparc ~x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
- sed -i -e '/^SUBDIRS/ s/test//' "${S}"/Makefile.in || die "sed failed."
-}
-
-src_test() {
- cd test
- emake || die "emake failed."
- sh ./testsuite.sh || die "testsuite failed."
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "install failed"
- dodoc AUTHORS ChangeLog NEWS README TODO
-}