]> Pileus Git - ~andy/sunrise/commitdiff
net-analyzer/ w3af: Moved to tree by me
authorMarkos Chandras <hwoarang@gentoo.org>
Tue, 31 Aug 2010 09:26:21 +0000 (09:26 +0000)
committerMarkos Chandras <hwoarang@gentoo.org>
Tue, 31 Aug 2010 09:26:21 +0000 (09:26 +0000)
svn path=/sunrise/; revision=11265

net-analyzer/w3af/ChangeLog [deleted file]
net-analyzer/w3af/Manifest [deleted file]
net-analyzer/w3af/metadata.xml [deleted file]
net-analyzer/w3af/w3af-1.0_rc3.ebuild [deleted file]

diff --git a/net-analyzer/w3af/ChangeLog b/net-analyzer/w3af/ChangeLog
deleted file mode 100644 (file)
index d05187d..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-# ChangeLog for net-analyzer/w3af
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  11 Aug 2010; LABBE Corentin (Montjoie) <corentin.labbe@geomatys.fr
-  +w3af-1.0_rc3.ebuild, +metadata.xml:
-  New Ebuild for bug 272200 thanks to hwoarang, c1pher, binki, xmw and
-  apostrophe for reviewing
-
diff --git a/net-analyzer/w3af/Manifest b/net-analyzer/w3af/Manifest
deleted file mode 100644 (file)
index f263efb..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST w3af-1.0-rc3.tar.bz2 19128303 RMD160 63f775c967d0c5d5149befc868f1872a021b0d68 SHA1 f0004aece2a21c12acddb90c71cc40b9cc5d557f SHA256 36bf724726ec152f125680597f7314a424717cf2f1aa464ca4f18b7c5361ac86
-EBUILD w3af-1.0_rc3.ebuild 1364 RMD160 bbf290558c49feef4395b719798028d9439dec44 SHA1 b365be18573fbe941f3868481163d9cad5897e65 SHA256 7559908f39fa6dab85cf2dafb47da5852dcc108495707caeab801655a2b396cc
-MISC ChangeLog 325 RMD160 e60f25252b43fabadb754200e9f06b6a6e3d2a56 SHA1 16f06df8536c463d71f05df7113047a583f24aa2 SHA256 a5f5fbbabaac1c3e599e9e87089b47f79dc27206c290b4f087182b941b963d6d
-MISC metadata.xml 231 RMD160 6aebfea93d789d2b96ea6d8259dc842dd1fdacd3 SHA1 e10a04c4c18a66af326abc1f40c61b28cc610fae SHA256 48054ea190d00518c1e035fc6663b2368854cdea5ff69a94830e4f9a38260987
diff --git a/net-analyzer/w3af/metadata.xml b/net-analyzer/w3af/metadata.xml
deleted file mode 100644 (file)
index c6be580..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-       <herd>no-herd</herd>
-       <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
-</pkgmetadata>
diff --git a/net-analyzer/w3af/w3af-1.0_rc3.ebuild b/net-analyzer/w3af/w3af-1.0_rc3.ebuild
deleted file mode 100644 (file)
index 769e2df..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-
-PYTHON_USE_WITH="sqlite"
-PYTHON_DEPEND="2"
-
-inherit multilib python versionator
-
-MY_P=${PN}-"$(replace_version_separator 2 '-')"
-DESCRIPTION="Web Application Attack and Audit Framework"
-HOMEPAGE="http://w3af.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc gtk"
-
-RDEPEND="dev-python/beautifulsoup
-       >=dev-python/fpconst-0.7.2
-       dev-python/nltk
-       dev-python/pyopenssl
-       dev-python/pyPdf
-       dev-python/pysqlite
-       dev-python/soappy
-       net-analyzer/scapy
-       gtk? ( media-gfx/graphviz
-               >dev-python/pygtk-2.0 )"
-
-S=${WORKDIR}/${PN}
-
-src_prepare(){
-       rm -r extlib/{BeautifulSoup.py,fpconst-0.7.2,jsonpy,nltk,nltk_contrib,pygoogle,pyPdf,scapy,SOAPpy,yaml} || die
-       rm readme/{GPL,INSTALL} || die
-}
-
-src_install() {
-       insinto /usr/$(get_libdir)/w3af
-       doins -r core extlib locales plugins profiles scripts tools w3af_gui w3af_console || die
-       dosym /usr/$(get_libdir)/w3af/w3af_gui usr/bin/w3af_gui || die
-       dosym /usr/$(get_libdir)/w3af/w3af_console usr/bin/w3af_console || die
-       fperms +x /usr/$(get_libdir)/w3af/w3af_{gui,console} || die
-       #use flag doc is here because doc is bigger than 3 Mb
-       if use doc ; then
-               insinto /usr/share/doc/${PF}/
-               doins -r readme/* || die
-       fi
-}