Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package apache-commons-io for 
openSUSE:Factory checked in at 2021-06-09 21:54:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/apache-commons-io (Old)
 and      /work/SRC/openSUSE:Factory/.apache-commons-io.new.32437 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "apache-commons-io"

Wed Jun  9 21:54:58 2021 rev:16 rq:897998 version:2.9.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/apache-commons-io/apache-commons-io.changes      
2020-11-06 23:44:01.435387664 +0100
+++ 
/work/SRC/openSUSE:Factory/.apache-commons-io.new.32437/apache-commons-io.changes
   2021-06-09 21:55:00.726764565 +0200
@@ -1,0 +2,7 @@
+Thu Jun  3 16:51:10 UTC 2021 - Pedro Monreal <pmonr...@suse.com>
+
+- Update to 2.9.0
+  * Lots of added functions, fixes and updates.
+  * https://commons.apache.org/proper/commons-io/changes-report.html#a2.9.0
+
+-------------------------------------------------------------------

Old:
----
  commons-io-2.8.0-src.tar.gz
  commons-io-2.8.0-src.tar.gz.asc

New:
----
  commons-io-2.9.0-src.tar.gz
  commons-io-2.9.0-src.tar.gz.asc

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

Other differences:
------------------
++++++ apache-commons-io.spec ++++++
--- /var/tmp/diff_new_pack.fHkCSq/_old  2021-06-09 21:55:01.326765635 +0200
+++ /var/tmp/diff_new_pack.fHkCSq/_new  2021-06-09 21:55:01.330765642 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package apache-commons-io
+# spec file
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,9 +18,8 @@
 
 %define base_name       io
 %define short_name      commons-%{base_name}
-%bcond_with tests
 Name:           apache-%{short_name}
-Version:        2.8.0
+Version:        2.9.0
 Release:        0
 Summary:        Utilities to assist with developing IO functionality
 License:        Apache-2.0
@@ -37,9 +36,6 @@
 Provides:       jakarta-%{short_name} = %{version}-%{release}
 Obsoletes:      jakarta-%{short_name} < %{version}-%{release}
 BuildArch:      noarch
-%if %{with tests}
-BuildRequires:  ant-junit
-%endif
 
 %description
 Commons-IO contains utility classes, stream implementations,
@@ -58,13 +54,12 @@
 cp %{SOURCE2} build.xml
 
 %pom_remove_parent
+%pom_remove_dep :junit-bom
+%pom_change_dep -r -f ::::: :::::
 
 %build
 %{ant} \
        -Dcompiler.source=1.8 \
-%if %{without tests }
-       -Dtest.skip=true \
-%endif
     jar javadoc
 
 %install

++++++ apache-commons-io-build.xml ++++++
--- /var/tmp/diff_new_pack.fHkCSq/_old  2021-06-09 21:55:01.378765727 +0200
+++ /var/tmp/diff_new_pack.fHkCSq/_new  2021-06-09 21:55:01.378765727 +0200
@@ -10,7 +10,7 @@
 
   <property name="project.groupId" value="commons-io"/>
   <property name="project.artifactId" value="commons-io"/>
-  <property name="project.version" value="2.8.0"/>
+  <property name="project.version" value="2.9.0"/>
   <property name="project.name" value="Apache Commons IO"/>
   <property name="project.description" value="The Apache Commons IO library 
 contains utility classes, stream implementations, file filters, 
@@ -29,11 +29,6 @@
   <property name="build.srcDir" value="src/main/java"/>
   <property name="build.resourceDir.0" value="src/main/resources"/>
   <property name="build.resourceDir.1" value="."/>
-  <property name="build.testOutputDir" value="${build.dir}/test-classes"/>
-  <property name="build.testDir" value="src/test/java"/>
-  <property name="build.testResourceDir.0" value="src/test/resources"/>
-  <property name="build.testResourceDir.1" value="."/>
-  <property name="test.reports" value="${build.dir}/test-reports"/>
   <property name="reporting.outputDirectory" value="${build.dir}/site"/>
 
   <!-- ====================================================================== 
-->
@@ -82,108 +77,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}"
-           encoding="iso-8859-1"
-           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.0}"/>
-    </copy>
-    <mkdir dir="${build.testOutputDir}/META-INF"/>
-    <copy todir="${build.testOutputDir}/META-INF">
-      <fileset dir="${build.testResourceDir.1}">
-        <include name="NOTICE.txt"/>
-        <include name="LICENSE.txt"/>
-      </fileset>
-    </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}"/>
-    <junit printSummary="yes" haltonerror="true" haltonfailure="true" 
fork="true" dir=".">
-      <sysproperty key="basedir" value="."/>
-      <formatter type="xml"/>
-      <formatter type="plain" usefile="false"/>
-      <classpath>
-        <path refid="build.test.classpath"/>
-        <pathelement location="${build.outputDir}"/>
-        <pathelement location="${build.testOutputDir}"/>
-      </classpath>
-      <batchtest todir="${test.reports}" unless="test">
-        <fileset dir="${build.testDir}">
-          <include name="**/*Test*.java"/>
-          <exclude name="**/*Abstract*TestCase*"/>
-          <exclude name="**/testtools/**"/>
-        </fileset>
-      </batchtest>
-      <batchtest todir="${test.reports}" if="test">
-        <fileset dir="${build.testDir}">
-          <include name="**/${test}.java"/>
-          <exclude name="**/*Abstract*TestCase*"/>
-          <exclude name="**/testtools/**"/>
-        </fileset>
-      </batchtest>
-    </junit>
-  </target>
-
-  <target name="test-junit-present">
-    <available classname="junit.framework.Test" 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                                                         
-->
   <!-- ====================================================================== 
-->
 
@@ -215,7 +108,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"

++++++ commons-io-2.8.0-src.tar.gz -> commons-io-2.9.0-src.tar.gz ++++++
++++ 46636 lines of diff (skipped)

Reply via email to