Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package maven-reporting-impl for 
openSUSE:Factory checked in at 2022-03-11 21:41:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/maven-reporting-impl (Old)
 and      /work/SRC/openSUSE:Factory/.maven-reporting-impl.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "maven-reporting-impl"

Fri Mar 11 21:41:19 2022 rev:3 rq:961010 version:3.1.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/maven-reporting-impl/maven-reporting-impl.changes    
    2020-03-11 18:55:58.207691616 +0100
+++ 
/work/SRC/openSUSE:Factory/.maven-reporting-impl.new.25692/maven-reporting-impl.changes
     2022-03-11 21:41:34.378084731 +0100
@@ -1,0 +2,9 @@
+Fri Mar 11 07:02:31 UTC 2022 - Fridrich Strba <fst...@suse.com>
+
+- Upgrade to version 3.1.0
+  * API sync with maven-reporting-api 3.1.0
+- Modified patch:
+  * 0001-Remove-dependency-on-junit-addons.patch
+    + rediff
+
+-------------------------------------------------------------------

Old:
----
  maven-reporting-impl-3.0.0-source-release.zip

New:
----
  maven-reporting-impl-3.1.0-source-release.zip

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

Other differences:
------------------
++++++ maven-reporting-impl.spec ++++++
--- /var/tmp/diff_new_pack.fSjZVL/_old  2022-03-11 21:41:35.002085210 +0100
+++ /var/tmp/diff_new_pack.fSjZVL/_new  2022-03-11 21:41:35.006085213 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package maven-reporting-impl
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,13 @@
 
 %bcond_with tests
 Name:           maven-reporting-impl
-Version:        3.0.0
+Version:        3.1.0
 Release:        0
 Summary:        Abstract classes to manage report generation
 License:        Apache-2.0
 Group:          Development/Libraries/Java
 URL:            http://maven.apache.org/shared/%{name}
-Source0:        
http://repo1.maven.org/maven2/org/apache/maven/reporting/%{name}/%{version}/%{name}-%{version}-source-release.zip
+Source0:        
https://dlcdn.apache.org/maven/reporting/%{name}-%{version}-source-release.zip
 Source1:        %{name}-build.xml
 Patch0:         0001-Remove-dependency-on-junit-addons.patch
 BuildRequires:  ant
@@ -70,6 +70,8 @@
 cp %{SOURCE1} build.xml
 %patch0 -p1
 
+%pom_remove_parent
+
 # integration tests try to download stuff from the internet
 # and therefore they don't work in Build Service
 %pom_remove_plugin :maven-invoker-plugin

++++++ 0001-Remove-dependency-on-junit-addons.patch ++++++
--- /var/tmp/diff_new_pack.fSjZVL/_old  2022-03-11 21:41:35.034085234 +0100
+++ /var/tmp/diff_new_pack.fSjZVL/_new  2022-03-11 21:41:35.034085234 +0100
@@ -1,73 +1,53 @@
-From 2f414c5566febf44beb77c43340eafccad1547e2 Mon Sep 17 00:00:00 2001
-From: Mikolaj Izdebski <mizde...@redhat.com>
-Date: Tue, 17 Jul 2018 11:57:16 +0200
-Subject: [PATCH] Remove dependency on junit-addons
-
----
- pom.xml                                                        |  6 ------
- .../apache/maven/reporting/AbstractMavenReportRenderer.java    |  2 +-
- .../maven/reporting/AbstractMavenReportRendererTest.java       | 10 ++--------
- 3 files changed, 3 insertions(+), 15 deletions(-)
-
-diff --git a/pom.xml b/pom.xml
-index 239742e..dc75ecd 100644
---- a/pom.xml
-+++ b/pom.xml
-@@ -135,12 +135,6 @@
-       <version>3.8.2</version>
-       <scope>test</scope>
-     </dependency>
--    <dependency>
--      <groupId>junit-addons</groupId>
--      <artifactId>junit-addons</artifactId>
--      <version>1.4</version>
--      <scope>test</scope>
--    </dependency>
-   </dependencies>
- 
-   <build>
-diff --git 
a/src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java 
b/src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java
-index 6f954ae..c11acd3 100644
---- a/src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java
-+++ b/src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java
-@@ -597,7 +597,7 @@ public abstract class AbstractMavenReportRenderer
-      * @param text a text with or without the pattern <code>{text, url}</code>
-      * @return a map of text/href
-      */
--    private static List<String> applyPattern( String text )
-+    static List<String> applyPattern( String text )
-     {
-         if ( StringUtils.isEmpty( text ) )
-         {
-diff --git 
a/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java 
b/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
-index cdb9299..e8dce8f 100644
---- 
a/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
-+++ 
b/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
-@@ -24,7 +24,8 @@ import java.util.List;
- 
- import junit.framework.Assert;
- import junit.framework.TestCase;
--import junitx.util.PrivateAccessor;
-+
-+import static 
org.apache.maven.reporting.AbstractMavenReportRenderer.applyPattern;
- 
- /**
-  * Test case for some public method in AbstractMavenReportRenderer.
-@@ -32,13 +33,6 @@ import junitx.util.PrivateAccessor;
- public class AbstractMavenReportRendererTest
-     extends TestCase
- {
--    private static List<String> applyPattern( String pattern )
--        throws Throwable
--    {
--        return (List<String>) PrivateAccessor.invoke( 
AbstractMavenReportRenderer.class, "applyPattern",
--                                              new Class[] { String.class }, 
new Object[] { pattern } );
--    }
--
-     private static void checkPattern( String pattern, String[] expectedResult 
) throws Throwable
-     {
-         List<String> result = applyPattern( pattern );
--- 
-2.14.3
-
+--- maven-reporting-impl-3.1.0/pom.xml 2022-03-10 17:08:29.894389771 +0100
++++ maven-reporting-impl-3.1.0/pom.xml 2022-03-10 17:09:12.654649105 +0100
+@@ -140,12 +140,6 @@
+       <version>4.13.1</version>
+       <scope>test</scope>
+     </dependency>
+-    <dependency>
+-      <groupId>junit-addons</groupId>
+-      <artifactId>junit-addons</artifactId>
+-      <version>1.4</version>
+-      <scope>test</scope>
+-    </dependency>
+   </dependencies>
+ 
+   <build>
+--- 
maven-reporting-impl-3.1.0/src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java
       2022-03-10 17:08:29.894389771 +0100
++++ 
maven-reporting-impl-3.1.0/src/main/java/org/apache/maven/reporting/AbstractMavenReportRenderer.java
       2022-03-10 17:09:12.654649105 +0100
+@@ -599,7 +599,7 @@
+      * @param text a text with or without the pattern <code>{text, url}</code>
+      * @return a map of text/href
+      */
+-    private static List<String> applyPattern( String text )
++    static List<String> applyPattern( String text )
+     {
+         if ( StringUtils.isEmpty( text ) )
+         {
+--- 
maven-reporting-impl-3.1.0/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
   2022-03-10 17:08:29.898389795 +0100
++++ 
maven-reporting-impl-3.1.0/src/test/java/org/apache/maven/reporting/AbstractMavenReportRendererTest.java
   2022-03-10 17:09:12.654649105 +0100
+@@ -24,7 +24,8 @@
+ 
+ import junit.framework.Assert;
+ import junit.framework.TestCase;
+-import junitx.util.PrivateAccessor;
++
++import static 
org.apache.maven.reporting.AbstractMavenReportRenderer.applyPattern;
+ 
+ /**
+  * Test case for some public method in AbstractMavenReportRenderer.
+@@ -32,13 +33,6 @@
+ public class AbstractMavenReportRendererTest
+     extends TestCase
+ {
+-    private static List<String> applyPattern( String pattern )
+-        throws Throwable
+-    {
+-        return (List<String>) PrivateAccessor.invoke( 
AbstractMavenReportRenderer.class, "applyPattern",
+-                                              new Class[] { String.class }, 
new Object[] { pattern } );
+-    }
+-
+     private static void checkPattern( String pattern, String[] expectedResult 
) throws Throwable
+     {
+         List<String> result = applyPattern( pattern );
 

++++++ maven-reporting-impl-build.xml ++++++
--- /var/tmp/diff_new_pack.fSjZVL/_old  2022-03-11 21:41:35.066085259 +0100
+++ /var/tmp/diff_new_pack.fSjZVL/_new  2022-03-11 21:41:35.070085262 +0100
@@ -11,14 +11,14 @@
   <property name="project.groupId" value="org.apache.maven.reporting"/>
   <property name="project.artifactId" value="maven-reporting-impl"/>
   <property name="project.name" value="Apache Maven Reporting Implementation"/>
-  <property name="project.version" value="3.0.0"/>
+  <property name="project.version" value="3.1.0"/>
 
-  <property name="spec.version" value="3.0"/>
+  <property name="spec.version" value="3.1"/>
 
   <property name="project.organization.name"
             value="The Apache Software Foundation"/>
 
-  <property name="compiler.source" value="1.6"/>
+  <property name="compiler.source" value="1.7"/>
   <property name="compiler.target" value="${compiler.source}"/>
 
   <property name="build.finalName"

Reply via email to