From owner-svn-ports-head@freebsd.org Thu Apr 14 16:39:46 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 77B8BADA10F; Thu, 14 Apr 2016 16:39:46 +0000 (UTC) (envelope-from swills@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 1DFC410B2; Thu, 14 Apr 2016 16:39:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3EGdj7i053198; Thu, 14 Apr 2016 16:39:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3EGdiSx053179; Thu, 14 Apr 2016 16:39:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201604141639.u3EGdiSx053179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 14 Apr 2016 16:39:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413287 - in head/www: . py-django-cors-headers 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.21 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: Thu, 14 Apr 2016 16:39:46 -0000 Author: swills Date: Thu Apr 14 16:39:44 2016 New Revision: 413287 URL: https://svnweb.freebsd.org/changeset/ports/413287 Log: www/py-django-cors-headers: create port A Django App that adds CORS (Cross-Origin Resource Sharing) headers to responses. WWW: https://github.com/ottoyiu/django-cors-headers Added: head/www/py-django-cors-headers/ head/www/py-django-cors-headers/Makefile (contents, props changed) head/www/py-django-cors-headers/distinfo (contents, props changed) head/www/py-django-cors-headers/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Apr 14 16:39:40 2016 (r413286) +++ head/www/Makefile Thu Apr 14 16:39:44 2016 (r413287) @@ -1535,6 +1535,7 @@ SUBDIR += py-django-configurations SUBDIR += py-django-contact-form SUBDIR += py-django-contrib-comments + SUBDIR += py-django-cors-headers SUBDIR += py-django-countries SUBDIR += py-django-crispy-forms SUBDIR += py-django-datetime-widget Added: head/www/py-django-cors-headers/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-cors-headers/Makefile Thu Apr 14 16:39:44 2016 (r413287) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= django-cors-headers +PORTVERSION= 1.1.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= swills@FreeBSD.org +COMMENT= Handles server headers required for Cross-Origin Resource Sharing + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>0:www/py-django18 + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-django-cors-headers/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-cors-headers/distinfo Thu Apr 14 16:39:44 2016 (r413287) @@ -0,0 +1,2 @@ +SHA256 (django-cors-headers-1.1.0.tar.gz) = fcd96e2be47c8eef34c650e007a6d546e19e7ee61041b89edbbbbe7619aa3987 +SIZE (django-cors-headers-1.1.0.tar.gz) = 4633 Added: head/www/py-django-cors-headers/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-cors-headers/pkg-descr Thu Apr 14 16:39:44 2016 (r413287) @@ -0,0 +1,4 @@ +A Django App that adds CORS (Cross-Origin Resource Sharing) headers to +responses. + +WWW: https://github.com/ottoyiu/django-cors-headers