summaryrefslogtreecommitdiff
path: root/databases/py-django-transaction-hooks
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-07-02 10:27:00 +0000
committerRene Ladan <rene@FreeBSD.org>2020-07-02 10:27:00 +0000
commitcd28f6cd5a0d687829c95e0afe6466ee43d0a855 (patch)
tree9f3a76fc275b4e0018c717765a46a855f613a217 /databases/py-django-transaction-hooks
parentUpdate to 4.3.2 (diff)
Remove expired port:
2020-07-02 databases/py-django-transaction-hooks: Unmaintained upstream and merged into Django since 1.9
Diffstat (limited to 'databases/py-django-transaction-hooks')
-rw-r--r--databases/py-django-transaction-hooks/Makefile26
-rw-r--r--databases/py-django-transaction-hooks/distinfo2
-rw-r--r--databases/py-django-transaction-hooks/pkg-descr14
3 files changed, 0 insertions, 42 deletions
diff --git a/databases/py-django-transaction-hooks/Makefile b/databases/py-django-transaction-hooks/Makefile
deleted file mode 100644
index 7cfe97756bd3..000000000000
--- a/databases/py-django-transaction-hooks/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# Created by: René Ladan <rene@freebsd.org>
-# $FreeBSD$
-
-PORTNAME= django-transaction-hooks
-PORTVERSION= 0.2
-PORTREVISION= 3
-CATEGORIES= databases python
-MASTER_SITES= CHEESESHOP
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= python@FreeBSD.org
-COMMENT= Django database backends to register transaction-commit hooks
-
-LICENSE= BSD3CLAUSE
-
-DEPRECATED= Unmaintained upstream and merged into Django since 1.9
-EXPIRATION_DATE= 2020-07-02
-
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.11:www/py-django111@${PY_FLAVOR}
-
-NO_ARCH= yes
-
-USES= python
-USE_PYTHON= autoplist distutils
-
-.include <bsd.port.mk>
diff --git a/databases/py-django-transaction-hooks/distinfo b/databases/py-django-transaction-hooks/distinfo
deleted file mode 100644
index 55d6ae07afbd..000000000000
--- a/databases/py-django-transaction-hooks/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (django-transaction-hooks-0.2.tar.gz) = 51bab09547fab673a24d6c59f1df560183b3a49f24a7a5bf35e7eb34ef939e79
-SIZE (django-transaction-hooks-0.2.tar.gz) = 7527
diff --git a/databases/py-django-transaction-hooks/pkg-descr b/databases/py-django-transaction-hooks/pkg-descr
deleted file mode 100644
index 99488c1e4f43..000000000000
--- a/databases/py-django-transaction-hooks/pkg-descr
+++ /dev/null
@@ -1,14 +0,0 @@
-A better alternative to the native transaction signals of Django.
-
-Sometimes you need to fire off an action related to the current database
-transaction, but only if the transaction successfully commits. Examples:
-a Celery task, an email notification, or a cache invalidation.
-
-Doing this correctly while accounting for savepoints that might be
-individually rolled back, closed/dropped connections, and idiosyncrasies of
-various databases, is non-trivial. Transaction signals just make it easier
-to do it wrong.
-
-django-transaction-hooks does the heavy lifting so you don't have to.
-
-WWW: https://github.com/carljm/django-transaction-hooks