From owner-svn-ports-head@FreeBSD.ORG Fri Apr 25 13:09:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 537FBBC5; Fri, 25 Apr 2014 13:09:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 25F8311BC; Fri, 25 Apr 2014 13:09:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PD9VaI037288; Fri, 25 Apr 2014 13:09:31 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3PD9UcD037284; Fri, 25 Apr 2014 13:09:30 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201404251309.s3PD9UcD037284@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 25 Apr 2014 13:09:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r352124 - in head/www: . py-django-subdomains 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.17 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, 25 Apr 2014 13:09:31 -0000 Author: danfe Date: Fri Apr 25 13:09:29 2014 New Revision: 352124 URL: http://svnweb.freebsd.org/changeset/ports/352124 QAT: https://qat.redports.org/buildarchive/r352124/ Log: Subdomain helpers for the Django framework, including subdomain-based URL routing and reversing. WWW: https://github.com/tkaemming/django-subdomains PR: ports/188919 Added: head/www/py-django-subdomains/ head/www/py-django-subdomains/Makefile (contents, props changed) head/www/py-django-subdomains/distinfo (contents, props changed) head/www/py-django-subdomains/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Apr 25 13:08:34 2014 (r352123) +++ head/www/Makefile Fri Apr 25 13:09:29 2014 (r352124) @@ -1525,6 +1525,7 @@ SUBDIR += py-django-signals-ahoy SUBDIR += py-django-simple-captcha SUBDIR += py-django-storages + SUBDIR += py-django-subdomains SUBDIR += py-django-tables2 SUBDIR += py-django-tagging SUBDIR += py-django-tastypie Added: head/www/py-django-subdomains/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-subdomains/Makefile Fri Apr 25 13:09:29 2014 (r352124) @@ -0,0 +1,19 @@ +# Created by: Ilya A. Arkhipov +# $FreeBSD$ + +PORTNAME= django-subdomains +PORTVERSION= 2.0.4 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rum1cro@yandex.ru +COMMENT= Subdomains helpers for the Django framework + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>0:${PORTSDIR}/www/py-django + +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/www/py-django-subdomains/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-subdomains/distinfo Fri Apr 25 13:09:29 2014 (r352124) @@ -0,0 +1,2 @@ +SHA256 (django-subdomains-2.0.4.tar.gz) = 05e861b3459281318ce451443332e7e114a2b7c99d2306e9c89adfcc8fbcb098 +SIZE (django-subdomains-2.0.4.tar.gz) = 10912 Added: head/www/py-django-subdomains/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-subdomains/pkg-descr Fri Apr 25 13:09:29 2014 (r352124) @@ -0,0 +1,4 @@ +Subdomain helpers for the Django framework, including subdomain-based URL +routing and reversing. + +WWW: https://github.com/tkaemming/django-subdomains