[NEW PORT] www/py-django-pglocks

This package provides a useful context manager via Django to manage
PostgreSQL advisory locks, which are application-level locks that are
acquired and released purely by the client of the database.

WWW: https://github.com/Xof/django-pglocks
This commit is contained in:
Kai Knoblich 2020-02-25 21:35:16 +00:00
parent 1cdc43548c
commit 3ef6a32120
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=527135
4 changed files with 31 additions and 0 deletions

View File

@ -1535,6 +1535,7 @@
SUBDIR += py-django-otp
SUBDIR += py-django-otp-yubikey
SUBDIR += py-django-overextends
SUBDIR += py-django-pglocks
SUBDIR += py-django-photologue
SUBDIR += py-django-picklefield
SUBDIR += py-django-pipeline

View File

@ -0,0 +1,22 @@
# $FreeBSD$
PORTNAME= django-pglocks
PORTVERSION= 1.0.4
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= kai@FreeBSD.org
COMMENT= Provides useful context managers for advisory locks for PostgreSQL
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.0.0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1582632858
SHA256 (django-pglocks-1.0.4.tar.gz) = 3c47c66fbfbd268ef46269673a0516a039539b0972b8ed2ec9cfee44c4b65523
SIZE (django-pglocks-1.0.4.tar.gz) = 4085

View File

@ -0,0 +1,5 @@
This package provides a useful context manager via Django to manage PostgreSQL
advisory locks, which are application-level locks that are acquired and
released purely by the client of the database.
WWW: https://github.com/Xof/django-pglocks