Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package modello for openSUSE:Factory checked in at 2025-06-10 09:03:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/modello (Old) and /work/SRC/openSUSE:Factory/.modello.new.19631 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "modello" Tue Jun 10 09:03:34 2025 rev:24 rq:1283740 version:2.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/modello/modello-maven-plugin.changes 2025-06-05 20:37:26.677040647 +0200 +++ /work/SRC/openSUSE:Factory/.modello.new.19631/modello-maven-plugin.changes 2025-06-10 09:07:01.979770052 +0200 @@ -1,0 +2,8 @@ +Fri Jun 6 19:32:50 UTC 2025 - Fridrich Strba <fst...@suse.com> + +- Modified patch: + * 0002-Handle-also-the-velocity-stuff-in-ModelloCli.patch + + Do not bother with velocity parameters if the output type is + not "velocity" + +------------------------------------------------------------------- modello.changes: same change ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ modello.spec: same change ++++++ 0002-Handle-also-the-velocity-stuff-in-ModelloCli.patch ++++++ --- /var/tmp/diff_new_pack.4tGmeU/_old 2025-06-10 09:07:02.791803610 +0200 +++ /var/tmp/diff_new_pack.4tGmeU/_new 2025-06-10 09:07:02.795803776 +0200 @@ -27,15 +27,15 @@ parameters.put(ModelloParameterConstants.DOM_AS_XPP3, args[7]); } + -+ if (args.length > 8) { ++ if (args.length > 8 && StringUtils.equalsIgnoreCase(outputType, "velocity")) { + parameters.put("modello.velocity.basedir", args[8]); + } + -+ if (args.length > 9) { ++ if (args.length > 9 && StringUtils.equalsIgnoreCase(outputType, "velocity")) { + parameters.put("modello.velocity.templates", args[9]); + } + -+ if (args.length > 10) { ++ if (args.length > 10 && StringUtils.equalsIgnoreCase(outputType, "velocity")) { + parameters.put( + "modello.velocity.parameters", (HashMap<String, String>) Arrays.asList(args[10].split(",")).stream() + .map(s -> s.split("="))