From owner-svn-ports-all@freebsd.org Sat Mar 10 09:04:21 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5AB14F2E438; Sat, 10 Mar 2018 09:04:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 002426B245; Sat, 10 Mar 2018 09:04:20 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D24EE3E4B; Sat, 10 Mar 2018 09:04:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2A94KxI080688; Sat, 10 Mar 2018 09:04:20 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2A94Kjs080684; Sat, 10 Mar 2018 09:04:20 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803100904.w2A94Kjs080684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 10 Mar 2018 09:04:20 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www: . py-requests_ntlm X-SVN-Commit-Revision: 464054 X-SVN-Commit-Repository: ports 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.25 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: Sat, 10 Mar 2018 09:04:21 -0000 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 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