diff options
author | pi <pi@FreeBSD.org> | 2016-07-15 00:47:07 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2016-07-15 00:47:07 +0800 |
commit | e50111054472a305f7b9df8ac42552a9c090fbe3 (patch) | |
tree | 6a64730c10434b5ff64e5f47912f096609b5a0e7 /net | |
parent | 9d094e733acb6eb52a2b2b9bb32153dbe11b34d1 (diff) | |
download | freebsd-ports-gnome-e50111054472a305f7b9df8ac42552a9c090fbe3.tar.gz freebsd-ports-gnome-e50111054472a305f7b9df8ac42552a9c090fbe3.tar.zst freebsd-ports-gnome-e50111054472a305f7b9df8ac42552a9c090fbe3.zip |
New port: net/py-python-ntlm
Python library that provides NTLM support, including an authentication
handler for urllib2. Works with pass-the-hash in additon to password
authentication.
WWW: https://pypi.python.org/pypi/python-ntlm
PR: 211053
Submitted by: Danilo G. Baio <dbaio@bsd.com.br>
Reviewed by: koobs
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/py-python-ntlm/Makefile | 16 | ||||
-rw-r--r-- | net/py-python-ntlm/distinfo | 3 | ||||
-rw-r--r-- | net/py-python-ntlm/pkg-descr | 5 |
4 files changed, 25 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 7b4905727c97..6234f4e8c41b 100644 --- a/net/Makefile +++ b/net/Makefile @@ -997,6 +997,7 @@ SUBDIR += py-pysocks SUBDIR += py-pystun SUBDIR += py-python-bitcoinrpc + SUBDIR += py-python-ntlm SUBDIR += py-pyvmomi SUBDIR += py-pyzmq SUBDIR += py-qt4-network diff --git a/net/py-python-ntlm/Makefile b/net/py-python-ntlm/Makefile new file mode 100644 index 000000000000..f92badb76d10 --- /dev/null +++ b/net/py-python-ntlm/Makefile @@ -0,0 +1,16 @@ +# $FreeBSD$ + +PORTNAME= python-ntlm +PORTVERSION= 1.1.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dbaio@bsd.com.br +COMMENT= Python library that provides NTLM support + +NO_ARCH= yes +USES= python:2 +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> diff --git a/net/py-python-ntlm/distinfo b/net/py-python-ntlm/distinfo new file mode 100644 index 000000000000..b69509d4c1c1 --- /dev/null +++ b/net/py-python-ntlm/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1468029495 +SHA256 (python-ntlm-1.1.0.tar.gz) = 35ffa68216a3622860f34b7dd49df77dde22136ae37ffcd57e3f8dd26b218c61 +SIZE (python-ntlm-1.1.0.tar.gz) = 15311 diff --git a/net/py-python-ntlm/pkg-descr b/net/py-python-ntlm/pkg-descr new file mode 100644 index 000000000000..c6a32339a0af --- /dev/null +++ b/net/py-python-ntlm/pkg-descr @@ -0,0 +1,5 @@ +Python library that provides NTLM support, including an authentication +handler for urllib2. Works with pass-the-hash in additon to password +authentication. + +WWW: https://pypi.python.org/pypi/python-ntlm |