--- src/bin/pungi.py.orig 2014-03-14 13:13:45.000000000 -0500 +++ src/bin/pungi.py 2014-03-14 13:16:56.000000000 -0500 @@ -252,6 +252,13 @@ help="Flag to enable processing the BuildInstall stage") parser.add_option("-I", action="store_true", default=False, dest="do_createiso", help="Flag to enable processing the CreateISO stage") + parser.add_option("--relnotepkgs", dest="relnotepkgs", type="string", + action="callback", callback=set_config, callback_args=(config, ), + help='Rpms which contain the release notes') + parser.add_option("--relnotefilere", dest="relnotefilere", type="string", + action="callback", callback=set_config, callback_args=(config, ), + help='Which files are the release notes -- GPL EULA') + (opts, args) = parser.parse_args()