]> gitweb.fluxo.info Git - puppet-trac.git/commitdiff
Adding packages for pdf conversion plugins
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 26 Jan 2011 18:28:31 +0000 (16:28 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 26 Jan 2011 18:28:31 +0000 (16:28 -0200)
manifests/init.pp

index 6fa890afc724923be9112342537e744c588f78b2..21e8072994b244796c3b81efd9231f7f2889d52a 100644 (file)
@@ -3,4 +3,16 @@ class trac {
   package { "trac":                  ensure => installed, }
   package { "trac-git":              ensure => installed, }
   package { "libapache2-mod-python": ensure => installed, }
+
+  # needed by http://trac-hacks.org/wiki/TracWikiPrintPlugin
+  # wikiprint needs also pisa, which is still in testing (as the
+  # time of writing), see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504277
+  #package { [ 'python-reportlab', 'python-html5lib', 'python-pypdf', 'python-imaging', 'python-pygments' ]:
+  #  ensure => installed,
+  #}
+
+  # needed by http://trac-hacks.org/wiki/TracWikiToPdfPlugin
+  package { [ "htmldoc", "python-clearsilver" ]:
+    ensure => present,
+  }
 }