From owner-svn-ports-head@freebsd.org Fri Aug 12 19:27:38 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14DF4BB363E; Fri, 12 Aug 2016 19:27:38 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C752912C2; Fri, 12 Aug 2016 19:27:37 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7CJRaep083253; Fri, 12 Aug 2016 19:27:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7CJRaCB083249; Fri, 12 Aug 2016 19:27:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201608121927.u7CJRaCB083249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 12 Aug 2016 19:27:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420140 - in head/www: . py-django_polymorphic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2016 19:27:38 -0000 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 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 +# $FreeBSD$ + +PORTNAME= django_polymorphic +PORTVERSION= 0.9.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@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 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