Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Jan 2014 20:44:25 +0000 (UTC)
From:      Rusmir Dusko <nemysis@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r339546 - in head/www: . py-django-picklefield
Message-ID:  <201401122044.s0CKiPus003971@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nemysis
Date: Sun Jan 12 20:44:24 2014
New Revision: 339546
URL: http://svnweb.freebsd.org/changeset/ports/339546

Log:
  picklefield provides an implementation of a pickled object field.
  Such fields can contain any picklable objects.
  
  It is incredibly useful for storing just about anything in the database
  (provided it is Pickle-able, of course) when there isn't a 'proper' field
  for the job.
  
  WWW: https://pypi.python.org/pypi/django-picklefield/
  
  PR:		ports/185548
  Submitted by:	Johannes Jost Meixner <xmj@chaot.net>

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Jan 12 20:41:27 2014	(r339545)
+++ head/www/Makefile	Sun Jan 12 20:44:24 2014	(r339546)
@@ -1506,6 +1506,7 @@
     SUBDIR += py-django-mptt
     SUBDIR += py-django-openid-auth
     SUBDIR += py-django-photologue
+    SUBDIR += py-django-picklefield
     SUBDIR += py-django-pipeline
     SUBDIR += py-django-piston
     SUBDIR += py-django-profiles

Added: head/www/py-django-picklefield/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-picklefield/Makefile	Sun Jan 12 20:44:24 2014	(r339546)
@@ -0,0 +1,31 @@
+# Created by: Johannes Meixner <xmj@chaot.net>
+# $FreeBSD$
+
+PORTNAME=	picklefield
+PORTVERSION=	0.3.1
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}django-
+DISTNAME=	django-${PORTNAME}-${PORTVERSION}
+
+MAINTAINER=	xmj@chaot.net
+COMMENT=	Pickled object field for Django
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django>=0:${PORTSDIR}/www/py-django \
+		${PYTHON_PKGNAMEPREFIX}six>=0:${PORTSDIR}/devel/py-six
+
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+PORTDOCS=	README
+
+OPTIONS_DEFINE=	DOCS
+
+post-install:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/www/py-django-picklefield/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-picklefield/distinfo	Sun Jan 12 20:44:24 2014	(r339546)
@@ -0,0 +1,2 @@
+SHA256 (django-picklefield-0.3.1.tar.gz) = d99426be46fd92fe6b64b9f5c5926ea9859394e44ec3ef9e1f7c647d3a26657f
+SIZE (django-picklefield-0.3.1.tar.gz) = 10410

Added: head/www/py-django-picklefield/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-picklefield/pkg-descr	Sun Jan 12 20:44:24 2014	(r339546)
@@ -0,0 +1,8 @@
+picklefield provides an implementation of a pickled object field.
+Such fields can contain any picklable objects.
+
+It is incredibly useful for storing just about anything in the database
+(provided it is Pickle-able, of course) when there isn't a 'proper' field
+for the job.
+
+WWW: https://pypi.python.org/pypi/django-picklefield/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401122044.s0CKiPus003971>