svn commit: r420140 - in head/www: . py-django_polymorphic

Kurt Jaeger pi at FreeBSD.org
Fri Aug 12 19:27:38 UTC 2016


Author: pi
Date: Fri Aug 12 19:27:36 2016
New Revision: 420140
URL: https://svnweb.freebsd.org/changeset/ports/420140

Log:
  New port: www/py-django_polymorphic
  
  Django-polymorphic simplifies using inherited models in Django projects.
  When a query is made at the base model, the inherited model classes are
  returned.
  
  WWW: https://github.com/chrisglass/django_polymorphic
  
  PR:		207023
  Submitted by:	Kevin Golding <ports at caomhin.org>

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Fri Aug 12 19:16:13 2016	(r420139)
+++ head/www/Makefile	Fri Aug 12 19:27:36 2016	(r420140)
@@ -1582,6 +1582,7 @@
     SUBDIR += py-django18
     SUBDIR += py-django19
     SUBDIR += py-django_compressor
+    SUBDIR += py-django_polymorphic
     SUBDIR += py-djangorestframework
     SUBDIR += py-djangorestframework-csv
     SUBDIR += py-djangorestframework-filters

Added: head/www/py-django_polymorphic/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django_polymorphic/Makefile	Fri Aug 12 19:27:36 2016	(r420140)
@@ -0,0 +1,21 @@
+# Created by: Kevin Golding <ports at caomhin.org>
+# $FreeBSD$
+
+PORTNAME=	django_polymorphic
+PORTVERSION=	0.9.2
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ports at caomhin.org
+COMMENT=	Seamless Polymorphic Inheritance for Django Models
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django18>=0:www/py-django18
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/www/py-django_polymorphic/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django_polymorphic/distinfo	Fri Aug 12 19:27:36 2016	(r420140)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1471029556
+SHA256 (django_polymorphic-0.9.2.tar.gz) = fd8e88ed6b01b038fedf8eb63392f29a158143b36bde71424e194cbc382a447c
+SIZE (django_polymorphic-0.9.2.tar.gz) = 39400

Added: head/www/py-django_polymorphic/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django_polymorphic/pkg-descr	Fri Aug 12 19:27:36 2016	(r420140)
@@ -0,0 +1,5 @@
+Django-polymorphic simplifies using inherited models in Django projects.
+When a query is made at the base model, the inherited model classes are 
+returned.
+
+WWW: https://github.com/chrisglass/django_polymorphic


More information about the svn-ports-head mailing list