Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package picocli for openSUSE:Factory checked 
in at 2024-04-30 17:27:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/picocli (Old)
 and      /work/SRC/openSUSE:Factory/.picocli.new.1880 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "picocli"

Tue Apr 30 17:27:26 2024 rev:9 rq:1170854 version:4.7.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/picocli/picocli.changes  2023-09-11 
21:26:47.715240511 +0200
+++ /work/SRC/openSUSE:Factory/.picocli.new.1880/picocli.changes        
2024-04-30 17:28:37.328925322 +0200
@@ -1,0 +2,5 @@
+Mon Apr 29 11:53:54 UTC 2024 - Fridrich Strba <fst...@suse.com>
+
+- The binaries are compatible with java 1.8
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ picocli.spec ++++++
--- /var/tmp/diff_new_pack.FIV8UO/_old  2024-04-30 17:28:37.948947869 +0200
+++ /var/tmp/diff_new_pack.FIV8UO/_new  2024-04-30 17:28:37.952948015 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package picocli
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,6 +16,9 @@
 #
 
 
+# The automatic requires would be java-headless >= 9, but the
+# binaries are java 8 compatible
+%define __requires_exclude java-headless
 Name:           picocli
 Version:        4.7.5
 Release:        0
@@ -34,6 +37,7 @@
 BuildRequires:  java-devel >= 9
 BuildRequires:  javapackages-local
 BuildRequires:  jline >= 2
+Requires:       java-headless >= 1.8
 BuildArch:      noarch
 
 %description
@@ -44,6 +48,7 @@
 %package codegen
 Summary:        Picocli Code Generation
 Group:          Development/Libraries/Java
+Requires:       java-headless >= 1.8
 
 %description codegen
 Java command line parser with both an annotations API and a programmatic API.
@@ -56,6 +61,7 @@
 %package shell-jline2
 Summary:        Picocli Shell JLine2
 Group:          Development/Libraries/Java
+Requires:       java-headless >= 1.8
 
 %description shell-jline2
 Java command line parser with both an annotations API and a programmatic API.

++++++ picocli-build.xml ++++++
--- /var/tmp/diff_new_pack.FIV8UO/_old  2024-04-30 17:28:38.012950197 +0200
+++ /var/tmp/diff_new_pack.FIV8UO/_new  2024-04-30 17:28:38.016950342 +0200
@@ -11,7 +11,8 @@
   <property name="project.artifactId" value="picocli"/>
   <property name="project.version" value="[UNKNOWN]"/>
 
-  <property name="compiler.source" value="8"/>
+  <property name="compiler.release" value="8"/>
+  <property name="compiler.source" value="1.${compiler.release}"/>
   <property name="compiler.target" value="${compiler.source}"/>
 
   <property name="build.dir" value="target"/>
@@ -43,6 +44,7 @@
            debug="true"
            optimize="false"
            deprecation="true"
+           release="${compiler.release}"
            target="${compiler.target}"
            verbose="false"
            fork="false"
@@ -75,6 +77,7 @@
            debug="true"
            optimize="false"
            deprecation="true"
+           release="${compiler.release}"
            target="${compiler.target}"
            verbose="false"
            fork="false"
@@ -114,6 +117,7 @@
            debug="true"
            optimize="false"
            deprecation="true"
+           release="${compiler.release}"
            target="${compiler.target}"
            verbose="false"
            fork="false"
@@ -154,8 +158,7 @@
   <!-- ====================================================================== 
-->
 
   <target name="javadoc" description="Generates the Javadoc of the 
application">
-    <javadoc
-             packagenames="*"
+    <javadoc packagenames="*"
              destdir="${reporting.outputDirectory}/apidocs"
              access="protected"
              verbose="false"
@@ -174,14 +177,15 @@
              charset="UTF-8"
              linksource="false"
              breakiterator="false"
-             source="${compiler.source}"
-             >
+             source="${compiler.source}">
       <sourcepath>
         <pathelement location="${build.srcDir}"/>
         <pathelement location="picocli-codegen/${build.srcDir}"/>
+        <pathelement location="picocli-shell-jline2/${build.srcDir}"/>
       </sourcepath>
       <classpath>
         <pathelement location="${build.outputDir}"/>
+        <pathelement location="${jline2.jar}"/>
       </classpath>
     </javadoc>
   </target>

Reply via email to