svn commit: r532421 - in head/www: . py-secure-cookie
Jose Alonso Cardenas Marquez
acm at FreeBSD.org
Tue Apr 21 21:09:13 UTC 2020
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 at 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
More information about the svn-ports-head
mailing list