Commit 3bcee308 authored by Rene Ladan's avatar Rene Ladan
Browse files

www/py-dj42-django-crispy-forms: Remove expired port

2024-06-15 www/py-dj42-django-crispy-forms: Obsolete, please use www/py-django-crispy-forms instead
parent bc7a7437
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3336,3 +3336,4 @@ www/py-dj42-django-graphiql-debug-toolbar|www/py-django-graphiql-debug-toolbar|2
www/py-dj42-django-rich|www/py-django-rich|2024-06-15|Has expired: Obsolete, please use www/py-django-rich instead
www/py-dj42-django-redis|www/py-django-redis|2024-06-15|Has expired: Obsolete, please use www/py-django-redis instead
www/py-dj42-django-allauth|www/py-django-allauth|2024-06-15|Has expired: Obsolete, please use www/py-django-allauth instead
www/py-dj42-django-crispy-forms|www/py-django-crispy-forms|2024-06-15|Has expired: Obsolete, please use www/py-django-crispy-forms instead
+0 −1
Original line number Diff line number Diff line
@@ -1482,7 +1482,6 @@
    SUBDIR += py-cssutils
    SUBDIR += py-daphne
    SUBDIR += py-dj-database-url
    SUBDIR += py-dj42-django-crispy-forms
    SUBDIR += py-dj42-django-debug-toolbar
    SUBDIR += py-dj42-django-extensions
    SUBDIR += py-dj42-django-modelcluster
+0 −30
Original line number Diff line number Diff line
PORTNAME=	django-crispy-forms
PORTVERSION=	2.0
CATEGORIES=	www python
MASTER_SITES=	PYPI
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}dj42-

MAINTAINER=	grembo@FreeBSD.org
COMMENT=	Best way to have Django DRY forms
WWW=		https://github.com/django-crispy-forms/django-crispy-forms

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/LICENSE.txt

DEPRECATED=	Obsolete, please use www/py-django-crispy-forms instead
EXPIRATION_DATE=2024-06-15

BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=61.0:devel/py-setuptools@${PY_FLAVOR} \
		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django42>=0:www/py-django42@${PY_FLAVOR}

USES=		dos2unix python
USE_PYTHON=	autoplist concurrent pep517

NO_ARCH=	yes

CONFLICTS_INSTALL=	${PYTHON_PKGNAMEPREFIX}dj22-django-crispy-forms

PORTSCOUT=	skipv:2.1

.include <bsd.port.mk>
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1684104566
SHA256 (django-crispy-forms-2.0.tar.gz) = 90193b068bf948d9c68449bc8260afed1a8e2afe11ee0bac8c4ebfaeb175b322
SIZE (django-crispy-forms-2.0.tar.gz) = 277697
+0 −12
Original line number Diff line number Diff line
The best way to have Django DRY forms. Build programmatic reusable layouts out
of components, having full control of the rendered HTML without writing HTML in
templates. All this without breaking the standard way of doing things in Django,
so it plays nice with any other form application.

The application mainly provides:
- A filter named |crispy that will render elegant div based forms. Think of it
  as the built-in methods: as_table, as_ul and as_p. You cannot tune up the
  output, but it is easy to start using it.
- A tag named {% crispy %} that will render a form based on your configuration
  and specific layout setup. This gives you amazing power without much hassle,
  helping you save tons of time.