From owner-svn-ports-head@freebsd.org Sat Sep 30 10:50:16 2017 Return-Path: Delivered-To: svn-ports-head@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 6CE6FE24BDC; Sat, 30 Sep 2017 10:50:16 +0000 (UTC) (envelope-from tcberner@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 3E2596B7D8; Sat, 30 Sep 2017 10:50:16 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8UAoFwa091828; Sat, 30 Sep 2017 10:50:15 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8UAoEwg091824; Sat, 30 Sep 2017 10:50:14 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201709301050.v8UAoEwg091824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 30 Sep 2017 10:50:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450973 - in head/net-mgmt: . py-adal X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/net-mgmt: . py-adal X-SVN-Commit-Revision: 450973 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.23 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: Sat, 30 Sep 2017 10:50:16 -0000 Author: tcberner Date: Sat Sep 30 10:50:14 2017 New Revision: 450973 URL: https://svnweb.freebsd.org/changeset/ports/450973 Log: New port: net-mgmt/py-adal: Authentication of Azure Active Directory for python apps PR: 222209 Submitted by: xmj Added: head/net-mgmt/py-adal/ head/net-mgmt/py-adal/Makefile (contents, props changed) head/net-mgmt/py-adal/distinfo (contents, props changed) head/net-mgmt/py-adal/pkg-descr (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Sat Sep 30 10:24:18 2017 (r450972) +++ head/net-mgmt/Makefile Sat Sep 30 10:50:14 2017 (r450973) @@ -294,6 +294,7 @@ SUBDIR += portmon SUBDIR += prometheus SUBDIR += pushgateway + SUBDIR += py-adal SUBDIR += py-ipcalc SUBDIR += py-ipy SUBDIR += py-pdagent Added: head/net-mgmt/py-adal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/py-adal/Makefile Sat Sep 30 10:50:14 2017 (r450973) @@ -0,0 +1,23 @@ +# Created by: Johannes Jost Meixner +# $FreeBSD$ + +PORTNAME= adal +PORTVERSION= 0.4.7 +CATEGORIES= net-mgmt python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= johannes@perceivon.net +COMMENT= Authentication ot Azure Active Directory for python apps + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}pyjwt>=1.0.0:www/py-pyjwt \ + ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/net-mgmt/py-adal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/py-adal/distinfo Sat Sep 30 10:50:14 2017 (r450973) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505103027 +SHA256 (adal-0.4.7.tar.gz) = 114046ac85d0054791c21b00922f26286822bc6f2ba3716db42e7e57f762ef20 +SIZE (adal-0.4.7.tar.gz) = 28161 Added: head/net-mgmt/py-adal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/py-adal/pkg-descr Sat Sep 30 10:50:14 2017 (r450973) @@ -0,0 +1,5 @@ +The ADAL for Python library makes it easy for python application to +authenticate to Azure Active Directory (AAD) in order to access AAD protected +web resources. + +WWW: https://pypi.python.org/pypi/adal