mako-render
svn path=/trunk/packages/sipb-xen-base/; revision=885
+sipb-xen-base (8.17) unstable; urgency=low
+
+ * removed the `mako` program since python-mako already includes a
+ mako-render
+
+ -- Yang Zhang <y_z@mit.edu> Wed, 13 Aug 2008 01:45:26 -0400
+
sipb-xen-base (8.16) unstable; urgency=low
* added `mako` program for processing templates in invirt packages
+++ /dev/null
-#!/usr/bin/env python
-
-from os.path import splitext
-from sys import argv
-from mako.template import Template
-from invirt.common import with_closing
-
-for inpath in argv:
- @with_closing(file(splitext(inpath)[0], 'w'))
- def render(f): print >> f, Template(filename = inpath).render()