net-proxy/mitmproxy: remove old
authorTim Harder <radhermit@gentoo.org>
Thu, 31 Jan 2019 09:01:08 +0000 (03:01 -0600)
committerTim Harder <radhermit@gentoo.org>
Thu, 31 Jan 2019 09:12:33 +0000 (03:12 -0600)
Signed-off-by: Tim Harder <radhermit@gentoo.org>
net-proxy/mitmproxy/Manifest
net-proxy/mitmproxy/files/mitmproxy-0.10-jsbeautifier-imports.patch [deleted file]
net-proxy/mitmproxy/mitmproxy-0.10.1.ebuild [deleted file]
net-proxy/mitmproxy/mitmproxy-0.11.1.ebuild [deleted file]
net-proxy/mitmproxy/mitmproxy-0.11.3.ebuild [deleted file]

index 6de72da0f04fd0bd864ad03a184b19ebf1c62e43..6ff5004dcc48d2a017c90b41d292b2729752d85f 100644 (file)
@@ -1,4 +1 @@
-DIST mitmproxy-0.10.1.tar.gz 3426109 BLAKE2B 0e0822310d8b97041e6f25cb760297fb83a8544c24b0419d8215a7a65874a1c6763c6095c2e80b89231dc1de2a946471d6436713c092a1b95e7cb441f0617112 SHA512 2bef02f07942177044afa24749c4e8e2ba1aae5ee33e2cbffbecc557a09351865b70dc92b9acfd285716a82c84026a3eb93f889176fd288c1e8d67a415a5c79a
-DIST mitmproxy-0.11.1.tar.gz 6253324 BLAKE2B a3d3e06834a545138574246887c1ab5dab90d933b3995a613dabee2f6c55a436dfcb2220ded90ef91f5238d6bfcb10b2a1f64dcf801baa93598d6a8c13fadd1b SHA512 f265441825b22e2a7ec3c8f2f3152d123fbd6ac463fd4de0e973e24b2ab9feaf28689d3c995bb361ff06a88a6d88536b642944463573117640b1c096b79f20b1
-DIST mitmproxy-0.11.3.tar.gz 6172130 BLAKE2B 9001882db499e1e4a6ec082fef661a3369a36a218f3f19c08fc75d403b29b6aff22512c159a25250894e5419069ef662b691272eb5a7fbd23e2fb3e49d269adf SHA512 81184b3034b78d51368b4066adcc8337fc59332c80ce085c854610f70cd96531612520c1b751135e26093265c5475c8fef5fcb0908b77b5a18a5c605c0c94934
 DIST mitmproxy-4.0.4.tar.gz 27131713 BLAKE2B 2748b0f3b66e1f5840aae792a1b4cd8ef8efa3673fa24bc0c3e15474b36d68c0f6b2203cf629b6444545b8c6223752232b2ce8526290fe5d74916946e8917a03 SHA512 e08ea8b1c75a95b822c463625509037bbc8a979161cacaa1f0185f98df8d6d7e5400925365dbbe70d18751251b1005824f739a8cd035c0389f7b4aea562adfb3
diff --git a/net-proxy/mitmproxy/files/mitmproxy-0.10-jsbeautifier-imports.patch b/net-proxy/mitmproxy/files/mitmproxy-0.10-jsbeautifier-imports.patch
deleted file mode 100644 (file)
index bd6f65a..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
---- mitmproxy-0.10/libmproxy/contrib/jsbeautifier/__init__.py
-+++ mitmproxy-0.10/libmproxy/contrib/jsbeautifier/__init__.py
-@@ -246,7 +246,7 @@
-         return sweet_code
-     def unpack(self, source, evalcode=False):
--        import jsbeautifier.unpackers as unpackers
-+        from ..jsbeautifier import unpackers
-         try:
-             return unpackers.run(source, evalcode)
-         except unpackers.UnpackingError as error:
---- mitmproxy-0.10/libmproxy/contrib/jsbeautifier/unpackers/__init__.py
-+++ mitmproxy-0.10/libmproxy/contrib/jsbeautifier/unpackers/__init__.py
-@@ -7,7 +7,7 @@
- import pkgutil
- import re
--from jsbeautifier.unpackers import evalbased
-+from ...jsbeautifier.unpackers import evalbased
- # NOTE: AT THE MOMENT, IT IS DEACTIVATED FOR YOUR SECURITY: it runs js!
- BLACKLIST = ['jsbeautifier.unpackers.evalbased']
---- mitmproxy-0.10/libmproxy/contrib/jsbeautifier/unpackers/myobfuscate.py
-+++ mitmproxy-0.10/libmproxy/contrib/jsbeautifier/unpackers/myobfuscate.py
-@@ -40,7 +40,7 @@
- except ImportError:
-     from urllib.parse import unquote
--from jsbeautifier.unpackers import UnpackingError
-+from ...jsbeautifier.unpackers import UnpackingError
- PRIORITY = 1
---- mitmproxy-0.10/libmproxy/contrib/jsbeautifier/unpackers/packer.py
-+++ mitmproxy-0.10/libmproxy/contrib/jsbeautifier/unpackers/packer.py
-@@ -14,7 +14,7 @@
- import re
- import string
--from jsbeautifier.unpackers import UnpackingError
-+from ...jsbeautifier.unpackers import UnpackingError
- PRIORITY = 1
diff --git a/net-proxy/mitmproxy/mitmproxy-0.10.1.ebuild b/net-proxy/mitmproxy/mitmproxy-0.10.1.ebuild
deleted file mode 100644 (file)
index 4dc5407..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 versionator
-
-DESCRIPTION="An interactive, SSL-capable, man-in-the-middle HTTP proxy"
-HOMEPAGE="http://mitmproxy.org/"
-SRC_URI="http://mitmproxy.org/download/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples test"
-
-RDEPEND=">=dev-python/pillow-2.3.0[${PYTHON_USEDEP}]
-       dev-python/flask[${PYTHON_USEDEP}]
-       >=dev-python/lxml-2.3[${PYTHON_USEDEP}]
-       =dev-python/netlib-$(get_version_component_range 1-2)*[${PYTHON_USEDEP}]
-       >dev-python/pyasn1-0.1.2[${PYTHON_USEDEP}]
-       >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
-       >=dev-python/urwid-1.1[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-       test? (
-               >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-               >=dev-python/nose-1.3.0[${PYTHON_USEDEP}]
-               =www-servers/pathod-$(get_version_component_range 1-2)*[${PYTHON_USEDEP}]
-       )"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.10-jsbeautifier-imports.patch )
-
-python_prepare_all() {
-       distutils-r1_python_prepare_all
-
-       # remove unwanted bytecode files
-       rm -r libmproxy/protocol || die
-}
-
-python_test() {
-       nosetests -v || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
-       local DOCS=( CHANGELOG CONTRIBUTORS )
-       use doc && local HTML_DOCS=( doc/. )
-       use examples && local EXAMPLES=( examples/. )
-
-       distutils-r1_python_install_all
-}
diff --git a/net-proxy/mitmproxy/mitmproxy-0.11.1.ebuild b/net-proxy/mitmproxy/mitmproxy-0.11.1.ebuild
deleted file mode 100644 (file)
index 535d134..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 versionator
-
-DESCRIPTION="An interactive, SSL-capable, man-in-the-middle HTTP proxy"
-HOMEPAGE="http://mitmproxy.org/"
-SRC_URI="http://mitmproxy.org/download/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples test"
-
-RDEPEND=">=dev-python/pillow-2.3.0[${PYTHON_USEDEP}]
-       >=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
-       >=dev-python/lxml-3.3.6[${PYTHON_USEDEP}]
-       =dev-python/netlib-$(get_version_component_range 1-2)*[${PYTHON_USEDEP}]
-       >dev-python/pyasn1-0.1.2[${PYTHON_USEDEP}]
-       >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
-       >=www-servers/tornado-4.0.2[${PYTHON_USEDEP}]
-       >=dev-python/urwid-1.1[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-       test? (
-               >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-               >=dev-python/nose-1.3.0[${PYTHON_USEDEP}]
-               =www-servers/pathod-$(get_version_component_range 1-2)*[${PYTHON_USEDEP}]
-       )"
-
-#PATCHES=( "${FILESDIR}"/${PN}-0.10-jsbeautifier-imports.patch )
-
-python_prepare_all() {
-       distutils-r1_python_prepare_all
-
-       # remove bundled netlib and pathod
-       rm -r libpathod netlib || die
-
-       # remove unused dep
-       sed -i '/sortedcontainers/d' setup.py || die
-}
-
-python_test() {
-       nosetests -v || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
-       local DOCS=( CHANGELOG CONTRIBUTORS )
-       use doc && local HTML_DOCS=( doc/. )
-       use examples && local EXAMPLES=( examples/. )
-
-       distutils-r1_python_install_all
-}
diff --git a/net-proxy/mitmproxy/mitmproxy-0.11.3.ebuild b/net-proxy/mitmproxy/mitmproxy-0.11.3.ebuild
deleted file mode 100644 (file)
index 9020f47..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 versionator
-
-DESCRIPTION="An interactive, SSL-capable, man-in-the-middle HTTP proxy"
-HOMEPAGE="http://mitmproxy.org/"
-SRC_URI="http://mitmproxy.org/download/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples test"
-
-RDEPEND="
-       >=dev-python/pillow-2.3.0[${PYTHON_USEDEP}]
-       >=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
-       >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
-       >=dev-python/lxml-3.3.6[${PYTHON_USEDEP}]
-       =dev-python/netlib-$(get_version_component_range 1-2)*[${PYTHON_USEDEP}]
-       >dev-python/pyasn1-0.1.2[${PYTHON_USEDEP}]
-       >=dev-python/pyopenssl-0.14[${PYTHON_USEDEP}]
-       >=www-servers/tornado-4.0.2[${PYTHON_USEDEP}]
-       >=dev-python/urwid-1.1[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
-       test? (
-               >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-               >=dev-python/nose-1.3.0[${PYTHON_USEDEP}]
-               =www-servers/pathod-$(get_version_component_range 1-2)*[${PYTHON_USEDEP}]
-       )"
-
-python_prepare_all() {
-       distutils-r1_python_prepare_all
-
-       # don't run example scripts tests
-       rm test/test_examples.py || die
-
-}
-
-python_test() {
-       nosetests -v || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
-       local DOCS=( CHANGELOG CONTRIBUTORS )
-       use doc && local HTML_DOCS=( doc/. )
-       use examples && local EXAMPLES=( examples/. )
-
-       distutils-r1_python_install_all
-}