From 9818aee8f85ce17a0fc6249fc6e3348babfd013f Mon Sep 17 00:00:00 2001 From: grimmlin Date: Wed, 25 Feb 2009 19:40:05 +0000 Subject: [PATCH] * Deleted sslstrip --- app-crypt/sslstrip/Manifest | 4 -- app-crypt/sslstrip/files/sslstrip | 3 -- .../files/sslstrip-0.1_fix-port.patch | 12 ------ app-crypt/sslstrip/sslstrip-0.1-r1.ebuild | 43 ------------------- 4 files changed, 62 deletions(-) delete mode 100644 app-crypt/sslstrip/Manifest delete mode 100644 app-crypt/sslstrip/files/sslstrip delete mode 100644 app-crypt/sslstrip/files/sslstrip-0.1_fix-port.patch delete mode 100644 app-crypt/sslstrip/sslstrip-0.1-r1.ebuild diff --git a/app-crypt/sslstrip/Manifest b/app-crypt/sslstrip/Manifest deleted file mode 100644 index 883f321ae..000000000 --- a/app-crypt/sslstrip/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX sslstrip 53 RMD160 6048af5a8c685f6ddeacfe411e87aecae1ecff72 SHA1 0b66e9826b4f60cec22f6999a8dfefa9d7ae8374 SHA256 19a745e303542c58c270171feae1112dd24d2dd84155cdd42596a2d2403ccb42 -AUX sslstrip-0.1_fix-port.patch 599 RMD160 7fe8a9b9c6c0b4f2884fe0d20bb064c39524d27b SHA1 74dc2de36f2aa71b7ba60b10c9d8bbd4d2576f89 SHA256 a8950f1de0924e0100d89ac7ecbad28f0db4e5158bcc93f47be1f560152910ac -DIST sslstrip-0.1.tar.gz 22216 RMD160 dbcdd41f33b324381b4101f460148965275520b1 SHA1 9bdf2984b0e786fbc362d98a78032f65ffef8cb9 SHA256 3429415fc74bc96786d0cceec6f98bc8b98b02af1ce3d2b0c56b51bd9443a51b -EBUILD sslstrip-0.1-r1.ebuild 881 RMD160 057624475a4d1fdc1924d670b0d23902a5781317 SHA1 a1304e5c4bf721901a7847f535b35eba770b95d1 SHA256 97cbfd6021c5c3f48727284c0dbae1c6a1696c52407635f85f2297d7d5df9ca0 diff --git a/app-crypt/sslstrip/files/sslstrip b/app-crypt/sslstrip/files/sslstrip deleted file mode 100644 index 558cb634a..000000000 --- a/app-crypt/sslstrip/files/sslstrip +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -python /usr/lib/sslstrip/sslstrip.py $@ diff --git a/app-crypt/sslstrip/files/sslstrip-0.1_fix-port.patch b/app-crypt/sslstrip/files/sslstrip-0.1_fix-port.patch deleted file mode 100644 index e1e8f370c..000000000 --- a/app-crypt/sslstrip/files/sslstrip-0.1_fix-port.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur sslstrip-0.1.orig/sslstrip.py sslstrip-0.1/sslstrip.py ---- sslstrip-0.1.orig/sslstrip.py 2009-02-23 01:38:14.000000000 +0000 -+++ sslstrip-0.1/sslstrip.py 2009-02-24 12:06:27.000000000 +0000 -@@ -230,7 +230,7 @@ - elif opt in ("-a", "--all"): - logLevel = logging.DEBUG - elif opt in ("-l", "--listen"): -- listenPort = arg -+ listenPort = int(arg) - elif opt in ("-f", "--favicon"): - StripProxy.swapFavicon = True - elif opt in ("-k", "--killsessions"): diff --git a/app-crypt/sslstrip/sslstrip-0.1-r1.ebuild b/app-crypt/sslstrip/sslstrip-0.1-r1.ebuild deleted file mode 100644 index 3da420c6d..000000000 --- a/app-crypt/sslstrip/sslstrip-0.1-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -DESCRIPTION="sslstrip remove https and forwards http" -HOMEPAGE="http://www.thoughtcrime.org/software/sslstrip/" -SRC_URI="http://www.thoughtcrime.org/software/sslstrip/${P}.tar.gz" - -inherit eutils python distutils -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="" -EAPI=2 - -RDEPEND=">=dev-lang/python-2.5" - - -src_compile() { - epatch "${FILESDIR}/sslstrip-0.1_fix-port.patch" - einfo "Nothing to compile" -} - -src_install() { - dodir /usr/lib/"${PN}" - insinto /usr/lib/"${PN}" - doins sslstrip.py lock.ico - dodir /usr/lib/${PN}/sslstrip - insinto /usr/lib/${PN}/sslstrip - doins sslstrip/*.py - dosbin "${FILESDIR}/sslstrip" - dodoc README COPYING -} - -pkg_postinst() { - python_mod_optimize -} - -pkg_postrm() { - python_mod_cleanup -} - -