1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Creating delicious APIs for Django apps since 2010.

Here are some common reasons for tastypie:

    * You need an API that is RESTful and uses HTTP well.
    * You want to support deep relations.
    * You DON'T want to have to write your own serializer to make the output
      right.
    * You want an API framework that has little magic, very flexible and maps
      well to the problem domain.
    * You want/need XML serialization that is treated equally to JSON (and
      YAML is there too).
    * You want to support my perceived NIH syndrome, which is less about
      NIH and more about trying to help out friends/coworkers.

PR:		ports/167716
Submitted by:	William Grzybowski <william88 gmail.com>
This commit is contained in:
Xin LI 2012-05-08 21:25:51 +00:00
parent bb795197a8
commit 49b9e0b7c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=296253
4 changed files with 44 additions and 0 deletions

View File

@ -1471,6 +1471,7 @@
SUBDIR += py-django-signals-ahoy
SUBDIR += py-django-storages
SUBDIR += py-django-tagging
SUBDIR += py-django-tastypie
SUBDIR += py-django-threaded-multihost
SUBDIR += py-django12
SUBDIR += py-django13

View File

@ -0,0 +1,25 @@
# New ports collection makefile for: django-tastypie
# Date created: May 8, 2012
# Whom: William Grzybowski
#
# $FreeBSD$
#
PORTNAME= django-tastypie
PORTVERSION= 0.9.11
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= william88@gmail.com
COMMENT= Create REST API for Django apps
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=1.5:${PORTSDIR}/devel/py-dateutil
USE_PYTHON= 2.5+
USE_PYDISTUTILS= easy_install
PYDISTUTILS_NOEGGINFO= yes
PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (django-tastypie-0.9.11.tar.gz) = 6425f065aae6a6a3aecf6c83ed728efbd1f490ce32aabd16ddcdfb5826c74214
SIZE (django-tastypie-0.9.11.tar.gz) = 519484

View File

@ -0,0 +1,16 @@
Creating delicious APIs for Django apps since 2010.
Here are some common reasons for tastypie:
* You need an API that is RESTful and uses HTTP well.
* You want to support deep relations.
* You DON'T want to have to write your own serializer to make the output
right.
* You want an API framework that has little magic, very flexible and maps
well to the problem domain.
* You want/need XML serialization that is treated equally to JSON (and
YAML is there too).
* You want to support my perceived NIH syndrome, which is less about
NIH and more about trying to help out friends/coworkers.
WWW: http://south.aeracode.org://github.com/toastdriven/django-tastypie/