From owner-svn-ports-head@freebsd.org Fri May 11 18:32:16 2018 Return-Path: Delivered-To: svn-ports-head@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 AE290FC377B; Fri, 11 May 2018 18:32:16 +0000 (UTC) (envelope-from pi@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 61AD66D805; Fri, 11 May 2018 18:32:16 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 40EDC134BE; Fri, 11 May 2018 18:32:16 +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 w4BIWGBu089688; Fri, 11 May 2018 18:32:16 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4BIWFXV089683; Fri, 11 May 2018 18:32:15 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201805111832.w4BIWFXV089683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 11 May 2018 18:32:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469683 - in head/security: . py-requests-credssp X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/security: . py-requests-credssp X-SVN-Commit-Revision: 469683 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 May 2018 18:32:16 -0000 Author: pi Date: Fri May 11 18:32:15 2018 New Revision: 469683 URL: https://svnweb.freebsd.org/changeset/ports/469683 Log: New port: security/py-requests-credssp An authentication handler for using CredSSP with Python Requests. WWW: https://github.com/jborean93/requests-credssp PR: 226448 Submitted by: rozhuk.im@gmail.com Added: head/security/py-requests-credssp/ head/security/py-requests-credssp/Makefile (contents, props changed) head/security/py-requests-credssp/distinfo (contents, props changed) head/security/py-requests-credssp/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri May 11 18:10:20 2018 (r469682) +++ head/security/Makefile Fri May 11 18:32:15 2018 (r469683) @@ -1003,6 +1003,7 @@ SUBDIR += py-python3-openid SUBDIR += py-rekall SUBDIR += py-rekall-core + SUBDIR += py-requests-credssp SUBDIR += py-requests-kerberos SUBDIR += py-rsa SUBDIR += py-safe Added: head/security/py-requests-credssp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-requests-credssp/Makefile Fri May 11 18:32:15 2018 (r469683) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= requests-credssp +PORTVERSION= 0.1.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rozhuk.im@gmail.com +COMMENT= Authentication handler for using CredSSP with Python Requests + +LICENSE= ISCL + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openssl>=16.0.0:security/py-openssl@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ntlm-auth>=0:security/py-ntlm-auth@${FLAVOR} + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/security/py-requests-credssp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-requests-credssp/distinfo Fri May 11 18:32:15 2018 (r469683) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520514244 +SHA256 (requests-credssp-0.1.0.tar.gz) = f2888920b065bc1d3c8c13004fbb0df76fbd6585ee4d951d89c42ef22becee03 +SIZE (requests-credssp-0.1.0.tar.gz) = 14545 Added: head/security/py-requests-credssp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-requests-credssp/pkg-descr Fri May 11 18:32:15 2018 (r469683) @@ -0,0 +1,3 @@ +An authentication handler for using CredSSP with Python Requests. + +WWW: https://github.com/jborean93/requests-credssp