From owner-svn-ports-all@freebsd.org Mon Jan 25 20:41:07 2016 Return-Path: Delivered-To: svn-ports-all@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 B0BF2A46033; Mon, 25 Jan 2016 20:41:07 +0000 (UTC) (envelope-from rm@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 64551176; Mon, 25 Jan 2016 20:41:07 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0PKf6NP030094; Mon, 25 Jan 2016 20:41:06 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0PKf6CZ030090; Mon, 25 Jan 2016 20:41:06 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201601252041.u0PKf6CZ030090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Mon, 25 Jan 2016 20:41:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407241 - in head/www: . py-django-bitfield X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jan 2016 20:41:07 -0000 Author: rm Date: Mon Jan 25 20:41:05 2016 New Revision: 407241 URL: https://svnweb.freebsd.org/changeset/ports/407241 Log: Provides a BitField like class (using a BigIntegerField) for your Django models. WWW: https://github.com/disqus/django-bitfield Added: head/www/py-django-bitfield/ head/www/py-django-bitfield/Makefile (contents, props changed) head/www/py-django-bitfield/distinfo (contents, props changed) head/www/py-django-bitfield/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jan 25 20:39:02 2016 (r407240) +++ head/www/Makefile Mon Jan 25 20:41:05 2016 (r407241) @@ -1529,6 +1529,7 @@ SUBDIR += py-django-appmedia SUBDIR += py-django-assets SUBDIR += py-django-auth-ldap + SUBDIR += py-django-bitfield SUBDIR += py-django-bootstrap-form SUBDIR += py-django-caching-app-plugins SUBDIR += py-django-classy-tags Added: head/www/py-django-bitfield/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-bitfield/Makefile Mon Jan 25 20:41:05 2016 (r407241) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= django-bitfield +PORTVERSION= 1.8.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= BitField in Django + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django18>0:${PORTSDIR}/www/py-django18 \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/www/py-django-bitfield/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-bitfield/distinfo Mon Jan 25 20:41:05 2016 (r407241) @@ -0,0 +1,2 @@ +SHA256 (django-bitfield-1.8.0.tar.gz) = 738a50e1a3ec3d48fdb57896cd4daf69017c59656c4780d25a74d8aee6168f34 +SIZE (django-bitfield-1.8.0.tar.gz) = 15478 Added: head/www/py-django-bitfield/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-bitfield/pkg-descr Mon Jan 25 20:41:05 2016 (r407241) @@ -0,0 +1,3 @@ +Provides a BitField like class (using a BigIntegerField) for your Django models. + +WWW: https://github.com/disqus/django-bitfield