Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package maven-plugin-bundle for
openSUSE:Factory checked in at 2022-03-11 21:41:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/maven-plugin-bundle (Old)
and /work/SRC/openSUSE:Factory/.maven-plugin-bundle.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "maven-plugin-bundle"
Fri Mar 11 21:41:23 2022 rev:3 rq:961134 version:3.5.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/maven-plugin-bundle/maven-plugin-bundle.changes
2019-11-26 16:59:54.852096881 +0100
+++
/work/SRC/openSUSE:Factory/.maven-plugin-bundle.new.25692/maven-plugin-bundle.changes
2022-03-11 21:41:39.234088458 +0100
@@ -1,0 +2,7 @@
+Fri Mar 11 19:15:17 UTC 2022 - Fridrich Strba <[email protected]>
+
+- Added patch:
+ * new-reporting-api.patch
+ + fix building with the new maven-reporting-api
+
+-------------------------------------------------------------------
New:
----
new-reporting-api.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ maven-plugin-bundle.spec ++++++
--- /var/tmp/diff_new_pack.33D9XW/_old 2022-03-11 21:41:39.798088890 +0100
+++ /var/tmp/diff_new_pack.33D9XW/_new 2022-03-11 21:41:39.798088890 +0100
@@ -1,7 +1,7 @@
#
# spec file for package maven-plugin-bundle
#
-# Copyright (c) 2019 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
@@ -26,7 +26,7 @@
License: Apache-2.0
Group: Development/Libraries/Java
URL: http://felix.apache.org
-Source0:
http://repo2.maven.org/maven2/org/apache/felix/%{site_name}/%{version}/%{site_name}-%{version}-source-release.tar.gz
+Source0:
https://repo1.maven.org/maven2/org/apache/felix/%{site_name}/%{version}/%{site_name}-%{version}-source-release.tar.gz
# Needs polishing to be sent upstream
Patch0: 0001-Port-to-current-maven-dependency-tree.patch
# New maven-archiver removed some deprecated methods we were using
@@ -35,6 +35,7 @@
Patch2: 0003-Port-to-plexus-utils-3.0.24.patch
# Port to newer Maven
Patch3: 0004-Use-Maven-3-APIs.patch
+Patch4: new-reporting-api.patch
BuildRequires: fdupes
BuildRequires: maven-local
BuildRequires: mvn(biz.aQute.bnd:biz.aQute.bndlib)
@@ -80,6 +81,7 @@
%patch1 -p1
%patch2 -p1
%patch3 -p1
+%patch4 -p1
find -name '*.jar' -delete
++++++ new-reporting-api.patch ++++++
---
maven-bundle-plugin-5.1.1/src/main/java/org/apache/felix/bundleplugin/baseline/BaselineReport.java
2020-07-09 18:44:18.000000000 +0200
+++
maven-bundle-plugin-5.1.1/src/main/java/org/apache/felix/bundleplugin/baseline/BaselineReport.java
2022-03-11 07:46:59.951664164 +0100
@@ -324,6 +324,12 @@
return !skip && outputDirectory != null;
}
+ public void generate( org.apache.maven.doxia.sink.Sink sink, Locale locale
)
+ throws MavenReportException
+ {
+ generate( (org.codehaus.doxia.sink.Sink) sink, locale );
+ }
+
public void generate( @SuppressWarnings( "deprecation" )
org.codehaus.doxia.sink.Sink sink, Locale locale )
throws MavenReportException
{