Date: Tue, 21 Apr 2020 21:09:12 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r532421 - in head/www: . py-secure-cookie Message-ID: <202004212109.03LL9C7W059553@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Tue Apr 21 21:09:11 2020 New Revision: 532421 URL: https://svnweb.freebsd.org/changeset/ports/532421 Log: - New port: www/py-secure-cookie Provides interfaces for secure cookies and sessions in WSGI applications. Secure cookies are cryptographically signed (but not encrypted) to prevent tampering. Sessions are data associated with a given user across requests and responses. WWW: https://github.com/pallets/secure-cookie Added: head/www/py-secure-cookie/ head/www/py-secure-cookie/Makefile (contents, props changed) head/www/py-secure-cookie/distinfo (contents, props changed) head/www/py-secure-cookie/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Apr 21 20:54:16 2020 (r532420) +++ head/www/Makefile Tue Apr 21 21:09:11 2020 (r532421) @@ -1757,6 +1757,7 @@ SUBDIR += py-scrapy SUBDIR += py-seafdav SUBDIR += py-seafobj + SUBDIR += py-secure-cookie SUBDIR += py-selector SUBDIR += py-selenium SUBDIR += py-slimit Added: head/www/py-secure-cookie/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-secure-cookie/Makefile Tue Apr 21 21:09:11 2020 (r532421) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= secure-cookie +PORTVERSION= 0.1.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= acm@FreeBSD.org +COMMENT= Secure cookie and session interface for WSGI applications + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.rst + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}werkzeug>0:www/py-werkzeug@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/www/py-secure-cookie/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-secure-cookie/distinfo Tue Apr 21 21:09:11 2020 (r532421) @@ -0,0 +1,3 @@ +TIMESTAMP = 1587501668 +SHA256 (secure-cookie-0.1.0.tar.gz) = 46d07b7d93ba9a44741001e3c2e5bd9feb808bc256a53c3180db41eabbf90d0f +SIZE (secure-cookie-0.1.0.tar.gz) = 16072 Added: head/www/py-secure-cookie/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-secure-cookie/pkg-descr Tue Apr 21 21:09:11 2020 (r532421) @@ -0,0 +1,6 @@ +Provides interfaces for secure cookies and sessions in WSGI applications. +Secure cookies are cryptographically signed (but not encrypted) to prevent +tampering. Sessions are data associated with a given user across requests and +responses. + +WWW: https://github.com/pallets/secure-cookie
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004212109.03LL9C7W059553>