1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

- Update to 0.15

- While here, add LICENSE_FILE and NO_ARCH

PR:		207568
Submitted by:	w.schwarzenfeld@aon.at
Approved by:	maintainer timeout (gaod@hychen.org, 3 weeks)
This commit is contained in:
Dmitry Marakasov 2016-03-24 16:26:47 +00:00
parent a2bbcbc7cc
commit e45cbcb1b4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=411803
3 changed files with 5 additions and 26 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= mitmproxy
PORTVERSION= 0.10.1
PORTREVISION= 1
PORTVERSION= 0.15
CATEGORIES= www python
MASTER_SITES= http://mitmproxy.org/download/
@ -11,6 +10,7 @@ MAINTAINER= gaod@hychen.org
COMMENT= SSL-capable man-in-the-middle proxy
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyasn1>0:${PORTSDIR}/devel/py-pyasn1 \
${PYTHON_PKGNAMEPREFIX}Flask>0:${PORTSDIR}/www/py-flask \
@ -22,5 +22,6 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyasn1>0:${PORTSDIR}/devel/py-pyasn1 \
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (mitmproxy-0.10.1.tar.gz) = 527cbff76e0d49d7db62561252d399e1c747730676515c4ed89250c223e2fe56
SIZE (mitmproxy-0.10.1.tar.gz) = 3426109
SHA256 (mitmproxy-0.15.tar.gz) = 3565086026b5ca0b048e826498a9ed9b37489f5b5639a728d280f73783914aac
SIZE (mitmproxy-0.15.tar.gz) = 1503247

View File

@ -1,22 +0,0 @@
--- setup.py.orig 2014-02-26 19:33:21.000000000 +0000
+++ setup.py 2014-06-06 06:28:44.000000000 +0100
@@ -1,4 +1,5 @@
from distutils.core import setup
+from setuptools import setup
import fnmatch, os.path
from libmproxy import version
@@ -98,13 +99,4 @@
"Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Testing"
],
- install_requires=[
- "netlib>=%s"%version.MINORVERSION,
- "urwid>=1.1",
- "pyasn1>0.1.2",
- "pyopenssl>=0.13",
- "Pillow>=2.3.0,<2.4",
- "lxml",
- "flask"
- ],
)