All this talk about pungi has made me realize that it might have a little bug when handling the three variables (relnotefilere, relnotedirre and relnotepkgs). If the user specifies these variables in the config file, the values specified in pungi will be ignored. This means that the release notes, images ... will be ignored.
patch is attached....

--
Joel Andres Granados

diff -r ec1ec141228a pungi
--- a/pungi     Mon Jun 11 20:45:32 2007 -0400
+++ b/pungi     Thu May 31 15:37:43 2007 +0200
@@ -62,12 +62,18 @@ def main():
 
     if not config.has_option('default', 'relnotefilere'):
         config.set('default', 'relnotefilere', relnotefilere)
+    else:
+        config.set('default', 'relnotefilere', relnotefilere+' 
'+config.get('default','relnotefilere'))
 
     if not config.has_option('default', 'relnotedirre'):
         config.set('default', 'relnotedirre', relnotedirre)
+    else:
+        config.set('default', 'relnotedirre', relnotedirre+' 
'+config.get('default','relnotedirre'))
 
     if not config.has_option('default', 'relnotepkgs'):
         config.set('default', 'relnotepkgs', relnotepkgs)
+    else:
+        config.set('default', 'relnotepkgs', relnotepkgs+' 
'+config.get('default','relnotepkgs'))
 
     # set some other defaults
     if not config.has_option('default', 'product_path'):
--
Fedora-buildsys-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/fedora-buildsys-list

Reply via email to