diff options
author | rm <rm@FreeBSD.org> | 2012-03-26 03:30:49 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2012-03-26 03:30:49 +0800 |
commit | eb6b764a5afd73d5c0851e1981a714baf61dc26c (patch) | |
tree | 51775e9a87796aad97b7a5cb40f6da39ad300cac | |
parent | 82b4886ba88e8c434d373e77266940b5163146d1 (diff) | |
download | freebsd-ports-gnome-eb6b764a5afd73d5c0851e1981a714baf61dc26c.tar.gz freebsd-ports-gnome-eb6b764a5afd73d5c0851e1981a714baf61dc26c.tar.zst freebsd-ports-gnome-eb6b764a5afd73d5c0851e1981a714baf61dc26c.zip |
Pystache is a Python implementation of Mustache.
Inspired by ctemplate and et, Mustache is a framework-agnostic
way to render logic-free views.
WWW: https://github.com/defunkt/pystache
PR: 166314
Submitted by: Grzegorz Blach <magik@roorback.net>
Feature safe: yes
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/py-pystache/Makefile | 23 | ||||
-rw-r--r-- | textproc/py-pystache/distinfo | 2 | ||||
-rw-r--r-- | textproc/py-pystache/pkg-descr | 5 |
4 files changed, 31 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index f4b259c6b416..c987e5fcf343 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1126,6 +1126,7 @@ SUBDIR += py-paragrep SUBDIR += py-pss SUBDIR += py-pygments + SUBDIR += py-pystache SUBDIR += py-pyx12 SUBDIR += py-qt4-xml SUBDIR += py-qt4-xmlpatterns diff --git a/textproc/py-pystache/Makefile b/textproc/py-pystache/Makefile new file mode 100644 index 000000000000..3cb40e0a29dd --- /dev/null +++ b/textproc/py-pystache/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: pystache +# Date created: 19 March 2012 +# Whom: Grzegorz Blach <magik@roorback.net> +# +# $FreeBSD$ + +PORTNAME= pystache +PORTVERSION= 0.4.0 +CATEGORIES= textproc www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= magik@roorback.net +COMMENT= Logic-less templates for Python + +LICENSE= MIT + +USE_PYTHON= -2.7 +USE_PYDISTUTILS= easy_install + +PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% + +.include <bsd.port.mk> diff --git a/textproc/py-pystache/distinfo b/textproc/py-pystache/distinfo new file mode 100644 index 000000000000..b3e24d46a360 --- /dev/null +++ b/textproc/py-pystache/distinfo @@ -0,0 +1,2 @@ +SHA256 (pystache-0.4.0.tar.gz) = afdcf222583193f1dcca17b1e6801a864b05c1e772abff90c88f41f4f77b3ae9 +SIZE (pystache-0.4.0.tar.gz) = 6360 diff --git a/textproc/py-pystache/pkg-descr b/textproc/py-pystache/pkg-descr new file mode 100644 index 000000000000..a18959804767 --- /dev/null +++ b/textproc/py-pystache/pkg-descr @@ -0,0 +1,5 @@ +Pystache is a Python implementation of Mustache. +Inspired by ctemplate and et, Mustache is a framework-agnostic +way to render logic-free views. + +WWW: https://github.com/defunkt/pystache |