commit google-errorprone for openSUSE:Factory

2024-04-30 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package google-errorprone for 
openSUSE:Factory checked in at 2024-04-30 17:27:16

Comparing /work/SRC/openSUSE:Factory/google-errorprone (Old)
 and  /work/SRC/openSUSE:Factory/.google-errorprone.new.1880 (New)


Package is "google-errorprone"

Tue Apr 30 17:27:16 2024 rev:5 rq:1170842 version:2.26.1

Changes:

--- 
/work/SRC/openSUSE:Factory/google-errorprone/google-errorprone-annotations.changes
  2024-04-18 22:13:14.114868650 +0200
+++ 
/work/SRC/openSUSE:Factory/.google-errorprone.new.1880/google-errorprone-annotations.changes
2024-04-30 17:28:21.392345785 +0200
@@ -1,0 +2,5 @@
+Mon Apr 29 14:50:29 UTC 2024 - Fridrich Strba 
+
+- The binaries are compatible with java 1.8
+
+---



Other differences:
--
++ google-errorprone-annotations.spec ++
--- /var/tmp/diff_new_pack.szVdru/_old  2024-04-30 17:28:22.312379242 +0200
+++ /var/tmp/diff_new_pack.szVdru/_new  2024-04-30 17:28:22.316379388 +0200
@@ -19,6 +19,9 @@
 %global source_name error-prone
 %global artifactId error_prone_annotations
 %global group_name google-errorprone
+# The automatic requires would be java-headless >= 9, but the
+# binaries are java 8 compatible
+%define __requires_exclude java-headless
 Name:   %{group_name}-annotations
 Version:2.26.1
 Release:0
@@ -32,6 +35,7 @@
 BuildRequires:  fdupes
 BuildRequires:  java-devel >= 9
 BuildRequires:  javapackages-local >= 6
+Requires:   java-headless >= 1.8
 BuildArch:  noarch
 
 %description


commit google-errorprone for openSUSE:Factory

2024-04-18 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package google-errorprone for 
openSUSE:Factory checked in at 2024-04-18 22:12:09

Comparing /work/SRC/openSUSE:Factory/google-errorprone (Old)
 and  /work/SRC/openSUSE:Factory/.google-errorprone.new.26366 (New)


Package is "google-errorprone"

Thu Apr 18 22:12:09 2024 rev:4 rq:1168637 version:2.26.1

Changes:

--- 
/work/SRC/openSUSE:Factory/google-errorprone/google-errorprone-annotations.changes
  2023-05-04 17:11:38.920742303 +0200
+++ 
/work/SRC/openSUSE:Factory/.google-errorprone.new.26366/google-errorprone-annotations.changes
   2024-04-18 22:13:14.114868650 +0200
@@ -1,0 +2,266 @@
+Mon Apr 15 05:13:37 UTC 2024 - Fridrich Strba 
+
+- Upgrade to version 2.26.1
+  * Changes of version 2.26.1:
++ Fixes the module name: from 'com.google.errorprone.annotation'
+  to 'com.google.errorprone.annotations'. Amends the OSGi build
+  not to include 'Automatic-Module-Name' in the MANIFEST.MF for the
+  'annotations' project.
+  * Changes of version 2.26.0:
++ The 'annotations' artifact now includes a module-info.java for
+  Java Platform Module System support.
++ Disabled checks passed to -XepPatchChecks are now ignored,
+  instead of causing a crash.
++ New checks:
+  - SystemConsoleNull: Null-checking System.console() is not a
+reliable way to detect if the console is connected to a
+terminal.
+  - EnumOrdinal: Discourage uses of Enum.ordinal()
++ Closed issues:
+  - Add module-info.java #2649
+  - 2.19.x: Exception thrown when a disabled check is passed to
+-XepPatchChecks #3908
+  - Ignore disabled checks passed to -XepPatchChecks #4028
+  - feat: add jpms definition for annotations #4311
+  - Add the 'compile' goal for 'compile-java9' #4314
+  * Changes of version 2.25.0:
++ New checks:
+  - JUnitIncompatibleType: Detects incompatible types passed to
+an assertion, similar to TruthIncompatibleType
+  - RedundantSetterCall: Detects fields set twice in the same
+chained expression. Generalization of previous
+ProtoRedundantSet check to also handle AutoValue.
++ Closed issues:
+  - Crash in UnnecessaryStringBuilder #4195
+  - Fix typos #4224
+  - Add support for specifying badEnclosingTypes for BadImport
+via flags #4228
+  - Some BugPattern docs are missing code examples #4248
+  - Remove incorrect statement from BugPattern index doc #4249
+  - Do not report NonFinalStaticField findings for fields
+modified in @BeforeAll methods #4251
+  * Changes of version 2.24.1:
++ Add an assertion to try to help debug #4225
+  * Changes of version 2.24.0:
++ New checks:
+  - MultipleNullnessAnnotations: Discourage multiple nullness
+annotations
+  - NullableTypeParameter: Discourage nullness annotations on
+type parameters
+  - NullableWildcard: Discourage nullness annotations on
+wildcards
+  - SuperCallToObjectMethod: Generalization of
+SuperEqualsIsObjectEquals, now covers hashCode
+  * Changes of version 2.23.0:
++ New checks: DuplicateDateFormatField, NonFinalStaticField,
+  StringCharset, StringFormatWithLiteral,
+  SuperEqualsIsObjectEquals
++ Bug fixes and improvements: #3897, #4114, #4123
+  * Changes of version 2.22.0:
++ New checks:
+  - ClosingStandardOutputStreams: Prevents accidentally closing
+System.{out,err} with try-with-resources
+  - TruthContainsExactlyElementsInUsage: containsExactly is
+preferred over containsExactlyElementsIn when creating new
+iterables
+  - UnnecessaryAsync: detects unnecessary use of async
+primitives in local (and hence single-threaded) scopes
+  - ReturnAtTheEndOfVoidFunction: detects unnecessary return
+statements at the end of void functions
+  - MultimapKeys: Suggests using keySet() instead of iterating
+over Multimap.keys(), which does not collapse duplicates
++ Bug fixes and improvements:
+  - Don't complain about literal IP addresses in
+AddressSelection
+  - Prevent SuggestedFixes#renameMethod from modifying return
+type declaration
+  - Fix UnusedVariable false positives for private record
+parameters
+  - When running in conservative mode, no longer assume that
+implementations of Map.get, etc. return null
+  - CanIgnoreReturnValueSuggester: Support additional exempting
+method annotations
+  - UnusedVariable: exclude junit5's @RegisterExtension
+  - Support running all available patch checks
+  - Upgrade java-diff-utils 4.0 -> 4.12
+  - Flag unused Refaster template parameters
+  - Support @SuppressWarnings("all")
+  - 

commit google-errorprone for openSUSE:Factory

2023-09-20 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package google-errorprone for 
openSUSE:Factory checked in at 2023-09-20 13:29:27

Comparing /work/SRC/openSUSE:Factory/google-errorprone (Old)
 and  /work/SRC/openSUSE:Factory/.google-errorprone.new.16627 (New)


Package is "google-errorprone"

Wed Sep 20 13:29:27 2023 rev:3 rq:1112230 version:2.11.0

Changes:

--- /work/SRC/openSUSE:Factory/google-errorprone/google-errorprone.changes  
2022-05-18 17:48:14.258837312 +0200
+++ 
/work/SRC/openSUSE:Factory/.google-errorprone.new.16627/google-errorprone.changes
   2023-09-20 13:32:19.665390977 +0200
@@ -1,0 +2,5 @@
+Tue Sep 19 11:00:56 UTC 2023 - Fridrich Strba 
+
+- Do not require maven-javadoc-plugin that we don't use
+
+---



Other differences:
--
++ google-errorprone.spec ++
--- /var/tmp/diff_new_pack.llBKLf/_old  2023-09-20 13:32:21.013439271 +0200
+++ /var/tmp/diff_new_pack.llBKLf/_new  2023-09-20 13:32:21.017439415 +0200
@@ -86,6 +86,7 @@
 %pom_disable_module refaster
 
 %pom_remove_plugin -r :maven-enforcer-plugin
+%pom_remove_plugin -r :maven-javadoc-plugin
 %pom_remove_plugin -r :maven-site-plugin
 %pom_remove_plugin -r :maven-source-plugin
 


commit google-errorprone for openSUSE:Factory

2023-05-04 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package google-errorprone for 
openSUSE:Factory checked in at 2023-05-04 17:11:21

Comparing /work/SRC/openSUSE:Factory/google-errorprone (Old)
 and  /work/SRC/openSUSE:Factory/.google-errorprone.new.1533 (New)


Package is "google-errorprone"

Thu May  4 17:11:21 2023 rev:2 rq:1084661 version:2.11.0

Changes:

--- 
/work/SRC/openSUSE:Factory/google-errorprone/google-errorprone-annotations.changes
  2022-05-18 17:48:14.242837299 +0200
+++ 
/work/SRC/openSUSE:Factory/.google-errorprone.new.1533/google-errorprone-annotations.changes
2023-05-04 17:11:38.920742303 +0200
@@ -1,0 +2,6 @@
+Thu May  4 11:40:47 UTC 2023 - Dominique Leuenberger 
+
+- Add _multibuild to define 2nd spec file as additional flavor.
+  Eliminates the need for source package links in OBS.
+
+---

New:

  _multibuild



Other differences:
--
++ google-errorprone-annotations.spec ++
--- /var/tmp/diff_new_pack.iEPmvY/_old  2023-05-04 17:11:39.440745347 +0200
+++ /var/tmp/diff_new_pack.iEPmvY/_new  2023-05-04 17:11:39.444745371 +0200
@@ -1,7 +1,7 @@
 #
 # spec file
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ google-errorprone.spec ++
--- /var/tmp/diff_new_pack.iEPmvY/_old  2023-05-04 17:11:39.472745535 +0200
+++ /var/tmp/diff_new_pack.iEPmvY/_new  2023-05-04 17:11:39.480745582 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package google-errorprone
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ _multibuild ++

  google-errorprone-annotations