- 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
This commit is contained in:
Jose Alonso Cardenas Marquez 2020-04-21 21:09:11 +00:00
parent bc80f776c4
commit 7faf459648
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=532421
4 changed files with 32 additions and 0 deletions

View File

@ -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

View File

@ -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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1587501668
SHA256 (secure-cookie-0.1.0.tar.gz) = 46d07b7d93ba9a44741001e3c2e5bd9feb808bc256a53c3180db41eabbf90d0f
SIZE (secure-cookie-0.1.0.tar.gz) = 16072

View File

@ -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