Date: Sat, 10 Mar 2018 09:04:20 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464054 - in head/www: . py-requests_ntlm Message-ID: <201803100904.w2A94Kjs080684@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Mar 10 09:04:20 2018 New Revision: 464054 URL: https://svnweb.freebsd.org/changeset/ports/464054 Log: New port: www/py-requests_ntlm: HTTP NTLM authentication using the requests library Approved by: tcberner (mentor, implicit) Added: head/www/py-requests_ntlm/ head/www/py-requests_ntlm/Makefile (contents, props changed) head/www/py-requests_ntlm/distinfo (contents, props changed) head/www/py-requests_ntlm/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Mar 10 09:03:10 2018 (r464053) +++ head/www/Makefile Sat Mar 10 09:04:20 2018 (r464054) @@ -1836,6 +1836,7 @@ SUBDIR += py-requests-oauthlib SUBDIR += py-requests-toolbelt SUBDIR += py-requests1 + SUBDIR += py-requests_ntlm SUBDIR += py-restclient SUBDIR += py-rfc3986 SUBDIR += py-rfc3987 Added: head/www/py-requests_ntlm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests_ntlm/Makefile Sat Mar 10 09:04:20 2018 (r464054) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= requests_ntlm +DISTVERSION= 1.1.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= HTTP NTLM authentication using the requests library + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=1.3:security/py-cryptography@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ntlm-auth>=1.0.2:security/py-ntlm-auth@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/py-requests_ntlm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests_ntlm/distinfo Sat Mar 10 09:04:20 2018 (r464054) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520670327 +SHA256 (requests_ntlm-1.1.0.tar.gz) = 9189c92e8c61ae91402a64b972c4802b2457ce6a799d658256ebf084d5c7eb71 +SIZE (requests_ntlm-1.1.0.tar.gz) = 5183 Added: head/www/py-requests_ntlm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-requests_ntlm/pkg-descr Sat Mar 10 09:04:20 2018 (r464054) @@ -0,0 +1,6 @@ +This package allows for HTTP NTLM authentication using the requests library. + +NTLM is a suite of authentication and session security protocols used in +various Microsoft network protocol implementations. + +WWW: https://github.com/requests/requests-ntlm
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803100904.w2A94Kjs080684>