Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package plexus-utils for openSUSE:Factory checked in at 2022-05-12 23:00:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/plexus-utils (Old) and /work/SRC/openSUSE:Factory/.plexus-utils.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plexus-utils" Thu May 12 23:00:15 2022 rev:5 rq:976416 version:3.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/plexus-utils/plexus-utils.changes 2022-03-24 23:00:08.584374638 +0100 +++ /work/SRC/openSUSE:Factory/.plexus-utils.new.1538/plexus-utils.changes 2022-05-12 23:00:34.432814004 +0200 @@ -1,0 +2,6 @@ +Wed May 11 14:05:52 UTC 2022 - Fridrich Strba <fst...@suse.com> + +- Upgrade to upstream version 3.3.1 + * the latest version supporting Java 8 still + +------------------------------------------------------------------- Old: ---- plexus-utils-3.3.0.tar.gz New: ---- plexus-utils-3.3.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ plexus-utils.spec ++++++ --- /var/tmp/diff_new_pack.VdRE5K/_old 2022-05-12 23:00:34.940814685 +0200 +++ /var/tmp/diff_new_pack.VdRE5K/_new 2022-05-12 23:00:34.948814696 +0200 @@ -17,7 +17,7 @@ Name: plexus-utils -Version: 3.3.0 +Version: 3.3.1 Release: 0 Summary: Plexus Common Utilities License: Apache-1.1 AND Apache-2.0 AND xpp AND BSD-3-Clause AND SUSE-Public-Domain ++++++ plexus-utils-3.3.0.tar.gz -> plexus-utils-3.3.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plexus-utils-plexus-utils-3.3.0/pom.xml new/plexus-utils-plexus-utils-3.3.1/pom.xml --- old/plexus-utils-plexus-utils-3.3.0/pom.xml 2019-10-10 19:37:07.000000000 +0200 +++ new/plexus-utils-plexus-utils-3.3.1/pom.xml 2021-12-27 23:22:22.000000000 +0100 @@ -26,7 +26,7 @@ </parent> <artifactId>plexus-utils</artifactId> - <version>3.3.0</version> + <version>3.3.1</version> <name>Plexus Common Utilities</name> <description>A collection of various utility classes to ease working with strings, files, command lines, XML and @@ -37,7 +37,7 @@ <connection>scm:git:g...@github.com:codehaus-plexus/plexus-utils.git</connection> <developerConnection>scm:git:g...@github.com:codehaus-plexus/plexus-utils.git</developerConnection> <url>http://github.com/codehaus-plexus/plexus-utils</url> - <tag>plexus-utils-3.3.0</tag> + <tag>plexus-utils-3.3.1</tag> </scm> <issueManagement> <system>github</system> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/plexus-utils-plexus-utils-3.3.0/src/main/java/org/codehaus/plexus/util/AbstractScanner.java new/plexus-utils-plexus-utils-3.3.1/src/main/java/org/codehaus/plexus/util/AbstractScanner.java --- old/plexus-utils-plexus-utils-3.3.0/src/main/java/org/codehaus/plexus/util/AbstractScanner.java 2019-10-10 19:37:07.000000000 +0200 +++ new/plexus-utils-plexus-utils-3.3.1/src/main/java/org/codehaus/plexus/util/AbstractScanner.java 2021-12-27 23:22:22.000000000 +0100 @@ -42,8 +42,8 @@ * <li>SurroundSCM: **/.MySCMServerInfo</li> * <li>Mac: **/.DS_Store</li> * <li>Serena Dimension: **/.metadata, **/.metadata/**</li> - * <li>Mercurial: **/.hg, **/.hg/**, **/.hgignore</li> - * <li>GIT: **/.git, **/.gitignore, **/.gitattributes, **/.git/**</li> + * <li>Mercurial: **/.hg, **/.hg/**</li> + * <li>Git: **/.git, **/.git/**</li> * <li>Bitkeeper: **/BitKeeper, **/BitKeeper/**, **/ChangeSet, * **/ChangeSet/**</li> * <li>Darcs: **/_darcs, **/_darcs/**, **/.darcsrepo, @@ -90,10 +90,10 @@ "**/.metadata", "**/.metadata/**", // Mercurial - "**/.hg", "**/.hgignore", "**/.hg/**", + "**/.hg", "**/.hg/**", // git - "**/.git", "**/.gitignore", "**/.gitattributes", "**/.git/**", + "**/.git", "**/.git/**", // BitKeeper "**/BitKeeper", "**/BitKeeper/**", "**/ChangeSet", "**/ChangeSet/**", @@ -124,7 +124,7 @@ * @since 3.3.0 */ protected Comparator<String> filenameComparator; - + /** * Sets whether or not the file system should be regarded as case sensitive. * @@ -137,7 +137,7 @@ /** * <p>Tests whether or not a given path matches the start of a given pattern up to the first "**".</p> - * + * * <p>This is not a general purpose test and should only be used if you can live with false positives. For example, * <code>pattern=**\a</code> and <code>str=b</code> will yield <code>true</code>.</p> * @@ -152,7 +152,7 @@ /** * <p>Tests whether or not a given path matches the start of a given pattern up to the first "**".</p> - * + * * <p>This is not a general purpose test and should only be used if you can live with false positives. For example, * <code>pattern=**\a</code> and <code>str=b</code> will yield <code>true</code>.</p> * @@ -223,7 +223,7 @@ /** * <p>Sets the list of include patterns to use. All '/' and '\' characters are replaced by * <code>File.separatorChar</code>, so the separator used need not match <code>File.separatorChar</code>.</p> - * + * * <p>When a pattern ends with a '/' or '\', "**" is appended.</p> * * @param includes A list of include patterns. May be <code>null</code>, indicating that all files should be @@ -252,7 +252,7 @@ /** * <p>Sets the list of exclude patterns to use. All '/' and '\' characters are replaced by * <code>File.separatorChar</code>, so the separator used need not match <code>File.separatorChar</code>.</p> - * + * * <p>When a pattern ends with a '/' or '\', "**" is appended.</p> * * @param excludes A list of exclude patterns. May be <code>null</code>, indicating that no files should be ++++++ plexus-utils-build.xml ++++++ --- /var/tmp/diff_new_pack.VdRE5K/_old 2022-05-12 23:00:35.256815110 +0200 +++ /var/tmp/diff_new_pack.VdRE5K/_new 2022-05-12 23:00:35.256815110 +0200 @@ -11,7 +11,7 @@ <property name="project.groupId" value="org.codehaus.plexus"/> <property name="project.fragment" value="utils"/> <property name="project.artifactId" value="plexus-${project.fragment}"/> - <property name="project.version" value="3.3.0"/> + <property name="project.version" value="3.3.1"/> <property name="project.name" value="Plexus Common Utilities"/> <property name="project.description" value="A collection of various utility classes to ease working with strings, files, command lines, XML and more."/> <property name="project.organization.name" value="Codehaus Plexus"/>