From owner-svn-ports-all@freebsd.org Tue Mar 24 13:35:27 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A6F3D2A61C1; Tue, 24 Mar 2020 13:35:27 +0000 (UTC) (envelope-from wen@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 48msgx0SBsz4TjH; Tue, 24 Mar 2020 13:35:25 +0000 (UTC) (envelope-from wen@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 89B4711B; Tue, 24 Mar 2020 13:27:35 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02ODRZQH028995; Tue, 24 Mar 2020 13:27:35 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02ODRYVQ028988; Tue, 24 Mar 2020 13:27:34 GMT (envelope-from wen@FreeBSD.org) Message-Id: <202003241327.02ODRYVQ028988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 24 Mar 2020 13:27:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r529045 - in head/security: . py-scramp X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/security: . py-scramp X-SVN-Commit-Revision: 529045 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.29 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: Tue, 24 Mar 2020 13:35:27 -0000 Author: wen Date: Tue Mar 24 13:27:34 2020 New Revision: 529045 URL: https://svnweb.freebsd.org/changeset/ports/529045 Log: A Python implementation of the SCRAM authentication protocol defined by RFC 5802 and RFC 7677. Scramp supports the following mechanisms: * SCRAM-SHA-256 * SCRAM-SHA-1 WWW: https://github.com/tlocke/scramp Added: head/security/py-scramp/ head/security/py-scramp/Makefile (contents, props changed) head/security/py-scramp/distinfo (contents, props changed) head/security/py-scramp/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Mar 24 13:14:46 2020 (r529044) +++ head/security/Makefile Tue Mar 24 13:27:34 2020 (r529045) @@ -977,6 +977,7 @@ SUBDIR += py-rsa SUBDIR += py-safe SUBDIR += py-scp + SUBDIR += py-scramp SUBDIR += py-scrypt SUBDIR += py-securesystemslib SUBDIR += py-service_identity Added: head/security/py-scramp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-scramp/Makefile Tue Mar 24 13:27:34 2020 (r529045) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= scramp +PORTVERSION= 1.1.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Pure-Python implementation of the SCRAM authentication protocol + +LICENSE= MIT + +USES= python:3.5+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/security/py-scramp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-scramp/distinfo Tue Mar 24 13:27:34 2020 (r529045) @@ -0,0 +1,3 @@ +TIMESTAMP = 1585042269 +SHA256 (scramp-1.1.0.tar.gz) = 475aa6296deb2737b86e9df9098e8eca0f30c8ad1cc0a8adadb99ef012a5ceba +SIZE (scramp-1.1.0.tar.gz) = 20211 Added: head/security/py-scramp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-scramp/pkg-descr Tue Mar 24 13:27:34 2020 (r529045) @@ -0,0 +1,6 @@ +A Python implementation of the SCRAM authentication protocol defined +by RFC 5802 and RFC 7677. Scramp supports the following mechanisms: + * SCRAM-SHA-256 + * SCRAM-SHA-1 + +WWW: https://github.com/tlocke/scramp