From owner-svn-ports-head@freebsd.org Wed Jan 30 19:06:56 2019 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 C305D14C9DF0; Wed, 30 Jan 2019 19:06:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68CFC80EBD; Wed, 30 Jan 2019 19:06:56 +0000 (UTC) (envelope-from swills@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 5B38523736; Wed, 30 Jan 2019 19:06:56 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0UJ6uWo010011; Wed, 30 Jan 2019 19:06:56 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0UJ6tTL010005; Wed, 30 Jan 2019 19:06:55 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201901301906.x0UJ6tTL010005@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 30 Jan 2019 19:06:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491641 - in head/security: . py-python-pam X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/security: . py-python-pam X-SVN-Commit-Revision: 491641 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 68CFC80EBD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Wed, 30 Jan 2019 19:06:57 -0000 Author: swills Date: Wed Jan 30 19:06:55 2019 New Revision: 491641 URL: https://svnweb.freebsd.org/changeset/ports/491641 Log: security/py-python-pam: create port Python PAM module WWW: https://github.com/FirefighterBlu3/python-pam PR: 235212 Submitted by: Charlie Li Reviewed by: koobs Differential Revision: https://reviews.freebsd.org/D18979 Added: head/security/py-python-pam/ head/security/py-python-pam/Makefile (contents, props changed) head/security/py-python-pam/distinfo (contents, props changed) head/security/py-python-pam/pkg-descr (contents, props changed) Modified: head/security/Makefile (contents, props changed) Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Jan 30 18:54:26 2019 (r491640) +++ head/security/Makefile Wed Jan 30 19:06:55 2019 (r491641) @@ -1018,6 +1018,7 @@ SUBDIR += py-python-jose SUBDIR += py-python-nss SUBDIR += py-python-openid + SUBDIR += py-python-pam SUBDIR += py-python-registry SUBDIR += py-python3-openid SUBDIR += py-pywinrm Added: head/security/py-python-pam/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-pam/Makefile Wed Jan 30 19:06:55 2019 (r491641) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= python-pam +DISTVERSION= 1.8.4 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vishwin@vishwin.info +COMMENT= Python PAM module + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/security/py-python-pam/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-pam/distinfo Wed Jan 30 19:06:55 2019 (r491641) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548486350 +SHA256 (python-pam-1.8.4.tar.gz) = c856d9c89fedb33951dd8a95727ae57c6887b02d065bbdffd2fd9dbc0183909b +SIZE (python-pam-1.8.4.tar.gz) = 4990 Added: head/security/py-python-pam/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python-pam/pkg-descr Wed Jan 30 19:06:55 2019 (r491641) @@ -0,0 +1,3 @@ +Python PAM module + +WWW: https://github.com/FirefighterBlu3/python-pam