Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package junit5 for openSUSE:Factory checked in at 2025-03-31 11:41:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/junit5 (Old) and /work/SRC/openSUSE:Factory/.junit5.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "junit5" Mon Mar 31 11:41:06 2025 rev:11 rq:1265278 version:5.10.2 Changes: -------- --- /work/SRC/openSUSE:Factory/junit5/junit5.changes 2024-05-24 19:53:16.742202235 +0200 +++ /work/SRC/openSUSE:Factory/.junit5.new.2696/junit5.changes 2025-03-31 11:42:02.821343418 +0200 @@ -1,0 +2,7 @@ +Fri Mar 28 18:22:24 UTC 2025 - Fridrich Strba <[email protected]> + +- Fix errors in aggregator.pom and in ant build system that prevent + successful builds with upcoming Maven 4 +- Generate a non-modular javadoc + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ junit5.spec ++++++ --- /var/tmp/diff_new_pack.lmXQ0z/_old 2025-03-31 11:42:03.545373420 +0200 +++ /var/tmp/diff_new_pack.lmXQ0z/_new 2025-03-31 11:42:03.549373585 +0200 @@ -1,7 +1,7 @@ # # spec file for package junit5 # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -184,8 +184,7 @@ %{ant} package javadoc %else %{mvn_build} -f -- \ - -Dproject.build.outputTimestamp=$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)} +%%Y-%%m-%%dT%%H:%%M:%%SZ) \ - -Dencoding=utf-8 -Dsource=8 + -Dencoding=utf-8 -DlegacyMode=true -Dverbose=true -Dsource=8 # Build docs. Ignore exit asciidoc -- it fails for some reason, but # still produces readable docs. ++++++ aggregator.pom ++++++ --- /var/tmp/diff_new_pack.lmXQ0z/_old 2025-03-31 11:42:03.609376071 +0200 +++ /var/tmp/diff_new_pack.lmXQ0z/_new 2025-03-31 11:42:03.613376237 +0200 @@ -60,6 +60,7 @@ </goals> <configuration> <release>9</release> + <useIncrementalCompilation>false</useIncrementalCompilation> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot> </compileSourceRoots> ++++++ junit5-build.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/junit-platform-commons/build.xml new/junit-platform-commons/build.xml --- old/junit-platform-commons/build.xml 2024-04-26 21:03:26.598121999 +0200 +++ new/junit-platform-commons/build.xml 2025-03-28 19:08:09.812161526 +0100 @@ -61,22 +61,24 @@ <exclude name="**/module-info.java"/> <classpath refid="build.classpath"/> </javac> - <javac destdir="${build.outputDir}" + <mkdir dir="${build.outputDirJava9}"/> + <javac destdir="${build.outputDirJava9}" nowarn="false" debug="true" encoding="utf-8" optimize="false" deprecation="true" - release="9" + target="1.8" verbose="false" - fork="false"> + fork="false" + source="1.8"> <src> <pathelement location="${build.srcDirJava9}"/> </src> - <modulepath> + <classpath> <path refid="build.classpath"/> <pathelement location="${build.outputDir}"/> - </modulepath> + </classpath> </javac> <javac destdir="${build.outputDir}" nowarn="false" @@ -94,6 +96,7 @@ <modulepath> <path refid="build.classpath"/> <pathelement location="${build.outputDir}"/> + <pathelement location="${build.outputDirJava9}"/> </modulepath> </javac> </target>
