Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package xmvn-connector-ivy for 
openSUSE:Factory checked in at 2023-09-13 20:44:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xmvn-connector-ivy (Old)
 and      /work/SRC/openSUSE:Factory/.xmvn-connector-ivy.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xmvn-connector-ivy"

Wed Sep 13 20:44:02 2023 rev:4 rq:1110613 version:4.0.0~20220623.8da91ea

Changes:
--------
--- /work/SRC/openSUSE:Factory/xmvn-connector-ivy/xmvn-connector-ivy.changes    
2023-05-05 15:59:23.380808584 +0200
+++ 
/work/SRC/openSUSE:Factory/.xmvn-connector-ivy.new.1766/xmvn-connector-ivy.changes
  2023-09-13 20:44:43.290416442 +0200
@@ -1,0 +2,5 @@
+Tue Sep 12 12:49:11 UTC 2023 - Fridrich Strba <fst...@suse.com>
+
+- Reproducible: don't include timestamp in javadoc
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xmvn-connector-ivy.spec ++++++
--- /var/tmp/diff_new_pack.94I5Hx/_old  2023-09-13 20:44:44.350454128 +0200
+++ /var/tmp/diff_new_pack.94I5Hx/_new  2023-09-13 20:44:44.350454128 +0200
@@ -18,7 +18,6 @@
 
 %global parent xmvn
 %global subname connector-ivy
-%bcond_with tests
 Name:           %{parent}-%{subname}
 Version:        4.0.0~20220623.8da91ea
 Release:        0
@@ -38,14 +37,6 @@
 BuildRequires:  xmvn-install
 BuildRequires:  xmvn-resolve
 BuildArch:      noarch
-%if %{with tests}
-BuildRequires:  ant-junit5
-BuildRequires:  apiguardian
-BuildRequires:  cglib
-BuildRequires:  easymock
-BuildRequires:  objectweb-asm
-BuildRequires:  objenesis
-%endif
 
 %description
 This package provides XMvn MOJO, which is a Maven plugin that consists
@@ -69,17 +60,10 @@
 %build
 mkdir -p lib
 build-jar-repository -s lib \
-%if %{with tests}
-    easymock junit5 junit \
-    apiguardian opentest4j \
-    objenesis cglib objectweb-asm \
-%endif
     ivy slf4j %{parent}
 
 %{ant} \
-%if %{without tests}
     -Dtest.skip=true \
-%endif
     package javadoc
 
 %{mvn_artifact} pom.xml target/%{name}-*.jar

++++++ xmvn-connector-ivy-build.xml ++++++
--- /var/tmp/diff_new_pack.94I5Hx/_old  2023-09-13 20:44:44.382455264 +0200
+++ /var/tmp/diff_new_pack.94I5Hx/_new  2023-09-13 20:44:44.386455407 +0200
@@ -20,10 +20,7 @@
   <property name="build.outputDir" value="${build.dir}/classes"/>
   <property name="build.srcDir" value="src/main/java"/>
   <property name="build.resourceDir" value="src/main/resources"/>
-  <property name="build.testOutputDir" value="${build.dir}/test-classes"/>
-  <property name="build.testDir" value="src/test/java"/>
-  <property name="build.testResourceDir" value="src/test/resources"/>
-  <property name="test.reports" value="${build.dir}/test-reports"/>
+
   <property name="reporting.outputDirectory" value="${build.dir}/site"/>
 
   <!-- ====================================================================== 
-->
@@ -79,97 +76,6 @@
   </target>
 
   <!-- ====================================================================== 
-->
-  <!-- Test-compilation target                                                
-->
-  <!-- ====================================================================== 
-->
-
-  <target name="compile-tests" 
-          depends="compile" 
-          description="Compile the test code" 
-          unless="test.skip">
-    <mkdir dir="${build.testOutputDir}"/>
-    <javac destdir="${build.testOutputDir}" 
-           nowarn="false" 
-           debug="true" 
-           optimize="false" 
-           deprecation="true" 
-           target="${compiler.target}" 
-           verbose="false" 
-           fork="false" 
-           source="${compiler.source}">
-      <src>
-        <pathelement location="${build.testDir}"/>
-      </src>
-      <classpath>
-        <path refid="build.test.classpath"/>
-        <pathelement location="${build.outputDir}"/>
-      </classpath>
-    </javac>
-    <copy todir="${build.testOutputDir}">
-      <fileset dir="${build.testResourceDir}"/>
-    </copy>
-  </target>
-
-  <!-- ====================================================================== 
-->
-  <!-- Run all tests                                                          
-->
-  <!-- ====================================================================== 
-->
-
-  <target name="test" 
-          depends="compile-tests, junit-missing" 
-          unless="junit.skipped" 
-          description="Run the test cases">
-    <mkdir dir="${test.reports}"/>
-    <condition property="modularJava">
-      <javaversion atleast="9"/>
-    </condition>
-    <junitlauncher printSummary="yes" haltonfailure="true">
-      <classpath>
-        <path refid="build.test.classpath"/>
-        <pathelement location="${build.outputDir}"/>
-        <pathelement location="${build.testOutputDir}"/>
-      </classpath>
-      <testclasses outputdir="${test.reports}" if="modularJava">
-        <fileset dir="${build.testOutputDir}"/>
-        <listener type="legacy-plain" sendSysOut="true"/>
-        <fork>
-          <jvmarg line="--add-opens java.base/java.lang=ALL-UNNAMED"/>
-        </fork>
-      </testclasses>
-      <testclasses outputdir="${test.reports}" unless="modularJava">
-        <fileset dir="${build.testOutputDir}"/>
-        <listener type="legacy-plain" sendSysOut="true"/>
-      </testclasses>
-    </junitlauncher>
-  </target>
-
-  <target name="test-junit-present">
-    <available 
classname="org.apache.tools.ant.taskdefs.optional.junitlauncher.StandaloneLauncher"
 property="junit.present" classpathref="build.test.classpath"/>
-  </target>
-
-  <target name="test-junit-status" 
-          depends="test-junit-present">
-    <condition property="junit.missing">
-      <and>
-        <isfalse value="${junit.present}"/>
-        <isfalse value="${test.skip}"/>
-      </and>
-    </condition>
-    <condition property="junit.skipped">
-      <or>
-        <isfalse value="${junit.present}"/>
-        <istrue value="${test.skip}"/>
-      </or>
-    </condition>
-  </target>
-
-  <target name="junit-missing" 
-          depends="test-junit-status" 
-          if="junit.missing">
-    <echo>=================================== WARNING 
===================================</echo>
-    <echo> JUnit is not present in the test classpath or your $ANT_HOME/lib 
directory. Tests not executed.</echo>
-    
<echo>===============================================================================</echo>
-  </target>
-
-  <!-- ====================================================================== 
-->
   <!-- Javadoc target                                                         
-->
   <!-- ====================================================================== 
-->
 
@@ -193,7 +99,8 @@
              serialwarn="false" 
              charset="ISO-8859-1" 
              linksource="false" 
-             breakiterator="false">
+             breakiterator="false" 
+             additionalparam="-notimestamp">
       <classpath refid="build.classpath"/>
     </javadoc>
   </target>
@@ -202,7 +109,7 @@
   <!-- Package target                                                         
-->
   <!-- ====================================================================== 
-->
 
-  <target name="package" depends="compile,test" description="Package the 
application">
+  <target name="package" depends="compile" description="Package the 
application">
     <jar jarfile="${build.dir}/${build.finalName}.jar" 
          compress="true" 
          index="false" 

Reply via email to