git: 86503f60a344 - main - www/py-dj42-django-otp: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Sat, 15 Jun 2024 18:11:36 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=86503f60a3447f9b50b3a4c61f56123d3c77069f

commit 86503f60a3447f9b50b3a4c61f56123d3c77069f
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2024-06-15 18:11:16 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2024-06-15 18:11:16 +0000

    www/py-dj42-django-otp: Remove expired port
    
    2024-06-15 www/py-dj42-django-otp: Obsolete, please use www/py-django-otp instead
---
 MOVED                            |  1 +
 www/Makefile                     |  1 -
 www/py-dj42-django-otp/Makefile  | 34 ----------------------------------
 www/py-dj42-django-otp/distinfo  |  3 ---
 www/py-dj42-django-otp/pkg-descr | 10 ----------
 5 files changed, 1 insertion(+), 48 deletions(-)

diff --git a/MOVED b/MOVED
index 20c2cafc1fa6..5e1179cb8b1c 100644
--- a/MOVED
+++ b/MOVED
@@ -3325,3 +3325,4 @@ www/py-dj42-django-auth-ldap|www/py-django-auth-ldap|2024-06-15|Has expired: Obs
 www/py-dj42-django-permissionedforms|www/py-django-permissionedforms|2024-06-15|Has expired: Obsolete, please use www/py-django-permissionedforms instead
 www/py-dj42-django-cors-headers|www/py-django-cors-headers|2024-06-15|Has expired: Obsolete, please use www/py-django-cors-headers instead
 www/py-dj42-django-treebeard|www/py-django-treebeard|2024-06-15|Has expired: Obsolete, please use www/py-django-treebeard instead
+www/py-dj42-django-otp|www/py-django-otp|2024-06-15|Has expired: Obsolete, please use www/py-django-otp instead
diff --git a/www/Makefile b/www/Makefile
index d3b52f673a95..0f1d915777be 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1490,7 +1490,6 @@
     SUBDIR += py-dj42-django-filter
     SUBDIR += py-dj42-django-graphiql-debug-toolbar
     SUBDIR += py-dj42-django-modelcluster
-    SUBDIR += py-dj42-django-otp
     SUBDIR += py-dj42-django-prometheus
     SUBDIR += py-dj42-django-redis
     SUBDIR += py-dj42-django-rich
diff --git a/www/py-dj42-django-otp/Makefile b/www/py-dj42-django-otp/Makefile
deleted file mode 100644
index 37b1ba9ae81f..000000000000
--- a/www/py-dj42-django-otp/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-PORTNAME=	django-otp
-PORTVERSION=	1.5.0
-CATEGORIES=	www python
-MASTER_SITES=	PYPI
-DISTNAME=	django_otp-${PORTVERSION}
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}dj42-
-
-MAINTAINER=	sunpoet@FreeBSD.org
-COMMENT=	Pluggable framework for adding two-factor authentication to Django
-WWW=		https://github.com/django-otp/django-otp
-
-LICENSE=	BSD2CLAUSE
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-DEPRECATED=	Obsolete, please use www/py-django-otp instead
-EXPIRATION_DATE=2024-06-15
-
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}hatchling>=0:devel/py-hatchling@${PY_FLAVOR}
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django42>=3.2:www/py-django42@${PY_FLAVOR}
-
-USES=		python
-USE_PYTHON=	autoplist concurrent pep517
-
-NO_ARCH=	yes
-
-OPTIONS_RADIO=	QR
-OPTIONS_RADIO_QR=	QRCODE SEGNO
-QRCODE_DESC=	QR code support via qrcode module
-SEGNO_DESC=	QR code support via segno module
-
-QRCODE_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}qrcode>=0:textproc/py-qrcode@${PY_FLAVOR}
-SEGNO_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}segno>=0:textproc/py-segno@${PY_FLAVOR}
-
-.include <bsd.port.mk>
diff --git a/www/py-dj42-django-otp/distinfo b/www/py-dj42-django-otp/distinfo
deleted file mode 100644
index f63b0e7fc592..000000000000
--- a/www/py-dj42-django-otp/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1713528554
-SHA256 (django_otp-1.5.0.tar.gz) = e7142139f1e9686be5f396669a3d3d61178cd9b3e9de9de5933888668908b46b
-SIZE (django_otp-1.5.0.tar.gz) = 72265
diff --git a/www/py-dj42-django-otp/pkg-descr b/www/py-dj42-django-otp/pkg-descr
deleted file mode 100644
index 9e6d14ea948c..000000000000
--- a/www/py-dj42-django-otp/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-This project makes it easy to add support for one-time passwords (OTPs) to
-Django. It can be integrated at various levels, depending on how much
-customization is required. It integrates with django.contrib.auth, although it
-is not a Django authentication backend. The primary target is developers wishing
-to incorporate OTPs into their Django projects as a form of two-factor
-authentication.
-
-Several simple OTP plugins are included and more are available separately. This
-package also includes an implementation of OATH HOTP and TOTP for convenience,
-as these are standard OTP algorithms used by multiple plugins.