Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package os-maven-plugin for openSUSE:Factory 
checked in at 2022-01-19 00:35:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-maven-plugin (Old)
 and      /work/SRC/openSUSE:Factory/.os-maven-plugin.new.1892 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "os-maven-plugin"

Wed Jan 19 00:35:06 2022 rev:3 rq:947106 version:1.7.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/os-maven-plugin/os-maven-plugin.changes  
2019-11-26 16:58:56.616116110 +0100
+++ 
/work/SRC/openSUSE:Factory/.os-maven-plugin.new.1892/os-maven-plugin.changes    
    2022-01-19 00:35:12.758291218 +0100
@@ -1,0 +2,12 @@
+Mon Jan 17 09:06:21 UTC 2022 - Fridrich Strba <[email protected]>
+
+- Upgrade to upstream version 1.7.0
+- Modified patch:
+  * 0002-Don-t-fail-on-unknown-arch.patch ->
+    0001-Don-t-fail-on-unknown-arch.patch
+       + Rediff to changed context
+- Removed patch:
+  * 0001-Port-to-current-plexus-utils.patch
+    + not needed any more
+
+-------------------------------------------------------------------

Old:
----
  0001-Port-to-current-plexus-utils.patch
  0002-Don-t-fail-on-unknown-arch.patch
  os-maven-plugin-1.2.3.Final.tar.gz

New:
----
  0001-Don-t-fail-on-unknown-arch.patch
  os-maven-plugin-1.7.0.tar.gz

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

Other differences:
------------------
++++++ os-maven-plugin.spec ++++++
--- /var/tmp/diff_new_pack.j5JpTl/_old  2022-01-19 00:35:13.230291555 +0100
+++ /var/tmp/diff_new_pack.j5JpTl/_new  2022-01-19 00:35:13.238291561 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package os-maven-plugin
 #
-# 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
@@ -16,18 +16,17 @@
 #
 
 
-%global vertag Final
 Name:           os-maven-plugin
-Version:        1.2.3
+Version:        1.7.0
 Release:        0
 Summary:        Maven plugin for generating platform-dependent properties
 License:        Apache-2.0
 URL:            https://github.com/trustin/os-maven-plugin/
-Source0:        
https://github.com/trustin/%{name}/archive/%{name}-%{version}.Final.tar.gz
-Patch0:         0001-Port-to-current-plexus-utils.patch
-Patch1:         0002-Don-t-fail-on-unknown-arch.patch
+Source0:        
https://github.com/trustin/%{name}/archive/%{name}-%{version}.tar.gz
+Patch0:         0001-Don-t-fail-on-unknown-arch.patch
 BuildRequires:  fdupes
 BuildRequires:  maven-local
+BuildRequires:  mvn(com.google.code.findbugs:jsr305)
 BuildRequires:  mvn(org.apache.maven.plugin-tools:maven-plugin-annotations)
 BuildRequires:  mvn(org.apache.maven.plugins:maven-plugin-plugin)
 BuildRequires:  mvn(org.apache.maven:maven-core)
@@ -55,10 +54,9 @@
 This package provides %{summary}.
 
 %prep
-%setup -q -n %{name}-%{name}-%{version}.%{vertag}
+%setup -q -n %{name}-%{name}-%{version}
 
 %patch0 -p1
-%patch1 -p1
 
 # Remove Eclipse plugin
 %pom_remove_dep org.eclipse:ui
@@ -66,6 +64,8 @@
 find -name EclipseStartup.java -delete
 find -name plugin.xml -delete
 
+%pom_remove_plugin org.codehaus.mojo:animal-sniffer-maven-plugin
+
 %build
 %{mvn_build} -f \
 %if %{?pkg_vcmp:%pkg_vcmp java-devel >= 9}%{!?pkg_vcmp:0}

++++++ 0002-Don-t-fail-on-unknown-arch.patch -> 
0001-Don-t-fail-on-unknown-arch.patch ++++++
--- 
/work/SRC/openSUSE:Factory/os-maven-plugin/0002-Don-t-fail-on-unknown-arch.patch
    2019-11-13 13:28:44.607723723 +0100
+++ 
/work/SRC/openSUSE:Factory/.os-maven-plugin.new.1892/0001-Don-t-fail-on-unknown-arch.patch
  2022-01-19 00:35:12.738291204 +0100
@@ -8,18 +8,18 @@
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/src/main/java/kr/motd/maven/os/Detector.java 
b/src/main/java/kr/motd/maven/os/Detector.java
-index 9dd6688..37ced72 100644
+index 86bf6a6..e9d4dfe 100644
 --- a/src/main/java/kr/motd/maven/os/Detector.java
 +++ b/src/main/java/kr/motd/maven/os/Detector.java
-@@ -46,7 +46,7 @@ public abstract class Detector {
-         setProperty(props, DETECTED_CLASSIFIER, detectedClassifier);
+@@ -95,7 +95,7 @@ public abstract class Detector {
  
-         final String failOnUnknownOS = 
allProps.getProperty("failOnUnknownOS");
--        if (failOnUnknownOS == null || 
!failOnUnknownOS.equalsIgnoreCase("false")) {
-+        if (failOnUnknownOS != null && 
failOnUnknownOS.equalsIgnoreCase("true")) {
+         final String failOnUnknownOS =
+             
systemPropertyOperationProvider.getSystemProperty("failOnUnknownOS");
+-        if (!"false".equalsIgnoreCase(failOnUnknownOS)) {
++        if ("true".equalsIgnoreCase(failOnUnknownOS)) {
              if (UNKNOWN.equals(detectedName)) {
                  throw new DetectionException("unknown os.name: " + osName);
              }
 -- 
-2.1.0
+2.21.0
 

++++++ os-maven-plugin-1.2.3.Final.tar.gz -> os-maven-plugin-1.7.0.tar.gz ++++++
++++ 1936 lines of diff (skipped)

Reply via email to