From: Yang Zhang Date: Wed, 13 Aug 2008 05:46:00 +0000 (-0400) Subject: * removed the `mako` program since python-mako already includes a X-Git-Tag: sipb-xen-base/8.17~1 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-base.git/commitdiff_plain/5946462affd4e09ced68a45277ae8293291b5568?hp=ee7db70ee3b3be5f075b70270d1827d27c8a8c96 * removed the `mako` program since python-mako already includes a mako-render svn path=/trunk/packages/sipb-xen-base/; revision=885 --- diff --git a/debian/changelog b/debian/changelog index d90eab5..380b3c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +sipb-xen-base (8.17) unstable; urgency=low + + * removed the `mako` program since python-mako already includes a + mako-render + + -- Yang Zhang 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 diff --git a/files/usr/bin/mako b/files/usr/bin/mako deleted file mode 100755 index b2908ca..0000000 --- a/files/usr/bin/mako +++ /dev/null @@ -1,10 +0,0 @@ -#!/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()