Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 May 2020 11:40:24 +0000 (UTC)
From:      Kai Knoblich <kai@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r536460 - in head/www: . py-django-compat
Message-ID:  <202005251140.04PBeOVI097623@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kai
Date: Mon May 25 11:40:23 2020
New Revision: 536460
URL: https://svnweb.freebsd.org/changeset/ports/536460

Log:
  [NEW PORT] www/py-django-compat
  
  Forward and backwards compatibility layer for different Django versions.
  
  Reasons to use django-compat:
  
  * Be able to use LTS versions of Django and support newer versions in an app
  * Use features from newer Django versions in an old one
  * Manage and master the gap between different framework versions
  
  WWW: https://github.com/arteria/django-compat
  
  PR:		246716

Added:
  head/www/py-django-compat/
  head/www/py-django-compat/Makefile   (contents, props changed)
  head/www/py-django-compat/distinfo   (contents, props changed)
  head/www/py-django-compat/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Mon May 25 11:27:42 2020	(r536459)
+++ head/www/Makefile	Mon May 25 11:40:23 2020	(r536460)
@@ -1477,6 +1477,7 @@
     SUBDIR += py-django-classy-tags
     SUBDIR += py-django-cms
     SUBDIR += py-django-common-helpers
+    SUBDIR += py-django-compat
     SUBDIR += py-django-configurations
     SUBDIR += py-django-constance
     SUBDIR += py-django-contact-form

Added: head/www/py-django-compat/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-compat/Makefile	Mon May 25 11:40:23 2020	(r536460)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	django-compat
+PORTVERSION=	1.0.15
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ports@caomhin.org
+COMMENT=	For- and backwards compatibility layer for different Django versions
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django22>=1.4:www/py-django22@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR}
+
+USES=		python:3.5+
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-django-compat/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-compat/distinfo	Mon May 25 11:40:23 2020	(r536460)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1590387237
+SHA256 (django-compat-1.0.15.tar.gz) = 3ac9a3bedc56b9365d9eb241bc5157d0c193769bf995f9a78dc1bc24e7c2331b
+SIZE (django-compat-1.0.15.tar.gz) = 21980

Added: head/www/py-django-compat/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-compat/pkg-descr	Mon May 25 11:40:23 2020	(r536460)
@@ -0,0 +1,9 @@
+Forward and backwards compatibility layer for different Django versions.
+
+Reasons to use django-compat:
+
+* Be able to use LTS versions of Django and support newer versions in an app
+* Use features from newer Django versions in an old one
+* Manage and master the gap between different framework versions
+
+WWW: https://github.com/arteria/django-compat



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005251140.04PBeOVI097623>