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 2024-10-21 16:26:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/os-maven-plugin (Old)
and /work/SRC/openSUSE:Factory/.os-maven-plugin.new.26871 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "os-maven-plugin"
Mon Oct 21 16:26:27 2024 rev:7 rq:1216704 version:1.7.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/os-maven-plugin/os-maven-plugin.changes
2024-02-21 18:00:48.584836978 +0100
+++
/work/SRC/openSUSE:Factory/.os-maven-plugin.new.26871/os-maven-plugin.changes
2024-10-21 16:26:46.350390083 +0200
@@ -1,0 +2,14 @@
+Mon Oct 21 11:44:17 UTC 2024 - Fridrich Strba <[email protected]>
+
+- Upgrade to upstream version 1.7.1
+ * Changes:
+ + Added detection of more RISC-V architectures. #61 #62 #66
+ - riscv32 is detected as riscv for backward compatibility
+ with 1.7.0.
+ - riscv64 is detected as riscv64.
+ + Added detection of Elbrus 2000 architecture. #57
+ + Added detection of LoongArch64 architecture. #63 #64
+ + Fixed the detection logic so that it detects more MacOS
+ variants
+
+-------------------------------------------------------------------
Old:
----
os-maven-plugin-1.7.0.tar.gz
New:
----
os-maven-plugin-1.7.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ os-maven-plugin.spec ++++++
--- /var/tmp/diff_new_pack.O8LKG2/_old 2024-10-21 16:26:47.118422302 +0200
+++ /var/tmp/diff_new_pack.O8LKG2/_new 2024-10-21 16:26:47.122422470 +0200
@@ -17,7 +17,7 @@
Name: os-maven-plugin
-Version: 1.7.0
+Version: 1.7.1
Release: 0
Summary: Maven plugin for generating platform-dependent properties
License: Apache-2.0
++++++ os-maven-plugin-1.7.0.tar.gz -> os-maven-plugin-1.7.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/os-maven-plugin-os-maven-plugin-1.7.0/README.md
new/os-maven-plugin-os-maven-plugin-1.7.1/README.md
--- old/os-maven-plugin-os-maven-plugin-1.7.0/README.md 2021-02-06
08:01:44.000000000 +0100
+++ new/os-maven-plugin-os-maven-plugin-1.7.1/README.md 2022-11-07
13:21:51.000000000 +0100
@@ -14,7 +14,7 @@
* `hpux` - if the value starts with `hpux`
* `os400` - if the value starts with `os400` and its following character is
*not* a digit (e.g. `os4000`)
* `linux` - if the value starts with `linux`
-* `osx` - if the value starts with `macosx` or `osx`
+* `osx` - if the value starts with `mac` or `osx`
* `freebsd` - if the value starts with `freebsd`
* `openbsd` - if the value starts with `openbsd`
* `netbsd` - if the value starts with `netbsd`
@@ -44,7 +44,11 @@
* `ppcle_64` - if the value is `ppc64le`
* `s390_32` - if the value is `s390`
* `s390_64` if the value is `s390x`
-* `riscv` if the value is `riscv`
+* `riscv` if the value is `riscv` or `riscv32`
+* `riscv64` if the value is `riscv64`
+* `e2k` if the value is `e2k`
+* `loongarch_64` if the value is `loongarch64`
+
Note: The bitness part of this property relies on the bitness of the JVM
binary, e.g. You'll get the property that ends with `_32` if you run a 32-bit
JVM on a 64-bit OS.
#### Property: `os.detected.bitness`
@@ -82,7 +86,7 @@
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
- <version>1.6.1</version>
+ <version>1.7.0</version>
</extension>
</extensions>
</build>
@@ -172,7 +176,7 @@
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
- <version>1.6.1</version>
+ <version>1.7.0</version>
</extension>
</extensions>
</build>
@@ -185,7 +189,7 @@
If you are using IntelliJ IDEA, you should not have any problem.
-If you are using Eclipse, you need to install an additional Eclipse plugin
because [m2e](https://www.eclipse.org/m2e/) does not evaluate the extension
specified in a `pom.xml`. [Download
`os-maven-plugin-1.6.1.jar`](http://repo1.maven.org/maven2/kr/motd/maven/os-maven-plugin/1.6.1/os-maven-plugin-1.6.1.jar)
and put it into the `<ECLIPSE_HOME>/dropins` directory.
+If you are using Eclipse, you need to install an additional Eclipse plugin
because [m2e](https://www.eclipse.org/m2e/) does not evaluate the extension
specified in a `pom.xml`. [Download
`os-maven-plugin-1.7.0.jar`](http://repo1.maven.org/maven2/kr/motd/maven/os-maven-plugin/1.7.0/os-maven-plugin-1.7.0.jar)
and put it into the `<ECLIPSE_HOME>/dropins` directory.
(As you might have noticed, `os-maven-plugin` is a Maven extension, a Maven
plugin, and an Eclipse plugin.)
@@ -195,7 +199,7 @@
<plugin>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
- <version>1.6.1</version>
+ <version>1.7.0</version>
<executions>
<execution>
<phase>initialize</phase>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/os-maven-plugin-os-maven-plugin-1.7.0/pom.xml
new/os-maven-plugin-os-maven-plugin-1.7.1/pom.xml
--- old/os-maven-plugin-os-maven-plugin-1.7.0/pom.xml 2021-02-06
08:01:44.000000000 +0100
+++ new/os-maven-plugin-os-maven-plugin-1.7.1/pom.xml 2022-11-07
13:21:51.000000000 +0100
@@ -8,7 +8,7 @@
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
- <version>1.7.0</version>
+ <version>1.7.1</version>
<packaging>maven-plugin</packaging>
<name>os-maven-plugin</name>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/os-maven-plugin-os-maven-plugin-1.7.0/src/build/test-pom.xml
new/os-maven-plugin-os-maven-plugin-1.7.1/src/build/test-pom.xml
--- old/os-maven-plugin-os-maven-plugin-1.7.0/src/build/test-pom.xml
2021-02-06 08:01:44.000000000 +0100
+++ new/os-maven-plugin-os-maven-plugin-1.7.1/src/build/test-pom.xml
2022-11-07 13:21:51.000000000 +0100
@@ -10,6 +10,35 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
+ <!--
+ Override the default repository so that the old versions of Maven do not
use
+ the insecure HTTP URLs.
+ -->
+ <repositories>
+ <repository>
+ <id>central-overridden</id>
+ <name>Maven Central</name>
+ <url>https://repo1.maven.org/maven2/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <checksumPolicy>fail</checksumPolicy>
+ </releases>
+ </repository>
+ </repositories>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>central-overridden</id>
+ <name>Maven Central</name>
+ <url>https://repo1.maven.org/maven2/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <checksumPolicy>fail</checksumPolicy>
+ </releases>
+ </pluginRepository>
+ </pluginRepositories>
+
<dependencies>
<dependency>
<groupId>io.netty</groupId>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/os-maven-plugin-os-maven-plugin-1.7.0/src/main/java/kr/motd/maven/os/Detector.java
new/os-maven-plugin-os-maven-plugin-1.7.1/src/main/java/kr/motd/maven/os/Detector.java
---
old/os-maven-plugin-os-maven-plugin-1.7.0/src/main/java/kr/motd/maven/os/Detector.java
2021-02-06 08:01:44.000000000 +0100
+++
new/os-maven-plugin-os-maven-plugin-1.7.1/src/main/java/kr/motd/maven/os/Detector.java
2022-11-07 13:21:51.000000000 +0100
@@ -164,7 +164,7 @@
if (value.startsWith("linux")) {
return "linux";
}
- if (value.startsWith("macosx") || value.startsWith("osx")) {
+ if (value.startsWith("mac") || value.startsWith("osx")) {
return "osx";
}
if (value.startsWith("freebsd")) {
@@ -245,9 +245,18 @@
if ("s390x".equals(value)) {
return "s390_64";
}
- if ("riscv".equals(value)) {
+ if (value.matches("^(riscv|riscv32)$")) {
return "riscv";
}
+ if ("riscv64".equals(value)) {
+ return "riscv64";
+ }
+ if ("e2k".equals(value)) {
+ return "e2k";
+ }
+ if ("loongarch64".equals(value)) {
+ return "loongarch_64";
+ }
return UNKNOWN;
}