From owner-svn-ports-all@freebsd.org Thu Jul 14 16:47:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 400AEB99729; Thu, 14 Jul 2016 16:47:09 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E788A1724; Thu, 14 Jul 2016 16:47:08 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6EGl8ER092359; Thu, 14 Jul 2016 16:47:08 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6EGl70T092355; Thu, 14 Jul 2016 16:47:07 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607141647.u6EGl70T092355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 14 Jul 2016 16:47:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418542 - in head/net: . py-python-ntlm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 16:47:09 -0000 Author: pi Date: Thu Jul 14 16:47:07 2016 New Revision: 418542 URL: https://svnweb.freebsd.org/changeset/ports/418542 Log: 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 Reviewed by: koobs Added: head/net/py-python-ntlm/ head/net/py-python-ntlm/Makefile (contents, props changed) head/net/py-python-ntlm/distinfo (contents, props changed) head/net/py-python-ntlm/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Jul 14 16:43:31 2016 (r418541) +++ head/net/Makefile Thu Jul 14 16:47:07 2016 (r418542) @@ -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 Added: head/net/py-python-ntlm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-python-ntlm/Makefile Thu Jul 14 16:47:07 2016 (r418542) @@ -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 Added: head/net/py-python-ntlm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-python-ntlm/distinfo Thu Jul 14 16:47:07 2016 (r418542) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468029495 +SHA256 (python-ntlm-1.1.0.tar.gz) = 35ffa68216a3622860f34b7dd49df77dde22136ae37ffcd57e3f8dd26b218c61 +SIZE (python-ntlm-1.1.0.tar.gz) = 15311 Added: head/net/py-python-ntlm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-python-ntlm/pkg-descr Thu Jul 14 16:47:07 2016 (r418542) @@ -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