Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Sep 2018 16:35:29 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480868 - in head/www: . py-django-taggit-serializer
Message-ID:  <201809281635.w8SGZTB8052112@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Fri Sep 28 16:35:29 2018
New Revision: 480868
URL: https://svnweb.freebsd.org/changeset/ports/480868

Log:
  This package makes it possible to serialize tags generated by the django-taggit
  package. Because the tags in the django-taggit package need to be added into a
  TaggableManager() one cannot use the usual Serializer that is retrieved from the
  Django REST Framework.
  
  WWW: https://github.com/glemmaPaul/django-taggit-serializer
  
  PR:		231114
  Submitted by:	freebsd_ports@k-worx.org
  Sponsored by:	iXsystems Inc.

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

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Fri Sep 28 16:34:26 2018	(r480867)
+++ head/www/Makefile	Fri Sep 28 16:35:29 2018	(r480868)
@@ -1617,6 +1617,7 @@
     SUBDIR += py-django-tables2
     SUBDIR += py-django-tagging
     SUBDIR += py-django-taggit
+    SUBDIR += py-django-taggit-serializer
     SUBDIR += py-django-tastypie
     SUBDIR += py-django-templatetag-sugar
     SUBDIR += py-django-timezone-field

Added: head/www/py-django-taggit-serializer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-taggit-serializer/Makefile	Fri Sep 28 16:35:29 2018	(r480868)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	django-taggit-serializer
+DISTVERSION=	0.1.7
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports@k-worx.org
+COMMENT=	Django Taggit serializer for the Django REST Framework
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django-taggit>=0:www/py-django-taggit@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-django-taggit-serializer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-taggit-serializer/distinfo	Fri Sep 28 16:35:29 2018	(r480868)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1533884090
+SHA256 (django-taggit-serializer-0.1.7.tar.gz) = f712eb2482079be452bcd1e82b18a820e26427c3ee1cef2b4fcd4d6b8b9f14d0
+SIZE (django-taggit-serializer-0.1.7.tar.gz) = 5589

Added: head/www/py-django-taggit-serializer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-taggit-serializer/pkg-descr	Fri Sep 28 16:35:29 2018	(r480868)
@@ -0,0 +1,6 @@
+This package makes it possible to serialize tags generated by the django-taggit
+package. Because the tags in the django-taggit package need to be added into a
+TaggableManager() one cannot use the usual Serializer that is retrieved from the
+Django REST Framework. 
+
+WWW: https://github.com/glemmaPaul/django-taggit-serializer



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