Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qdox for openSUSE:Factory checked in 
at 2022-03-13 20:25:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qdox (Old)
 and      /work/SRC/openSUSE:Factory/.qdox.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qdox"

Sun Mar 13 20:25:08 2022 rev:27 rq:961197 version:2.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/qdox/qdox.changes        2022-01-15 
21:45:09.977613024 +0100
+++ /work/SRC/openSUSE:Factory/.qdox.new.25692/qdox.changes     2022-03-13 
20:25:26.423674631 +0100
@@ -1,0 +2,8 @@
+Sat Mar 12 06:06:28 UTC 2022 - Fridrich Strba <[email protected]>
+
+- Add Automatic-Module-Name to the manifest
+- Added patch:
+  * Port-to-JFlex-1.7.0.patch
+    + Don't use deprecated inputstreamctor option
+
+-------------------------------------------------------------------

New:
----
  Port-to-JFlex-1.7.0.patch

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

Other differences:
------------------
++++++ qdox.spec ++++++
--- /var/tmp/diff_new_pack.2Tyrum/_old  2022-03-13 20:25:26.983675289 +0100
+++ /var/tmp/diff_new_pack.2Tyrum/_new  2022-03-13 20:25:26.991675299 +0100
@@ -25,6 +25,7 @@
 URL:            https://github.com/paul-hammant/qdox
 Source0:        
https://repo1.maven.org/maven2/com/thoughtworks/qdox/qdox/%{version}/%{name}-%{version}-project.tar.bz2
 Source1:        qdox-build.xml
+Patch0:         Port-to-JFlex-1.7.0.patch
 BuildRequires:  ant
 BuildRequires:  byaccj
 BuildRequires:  fdupes
@@ -49,6 +50,7 @@
 %prep
 %setup -q
 cp %{SOURCE1} build.xml
+%patch0 -p1
 find -name *.jar -delete
 find -name *.class -delete
 rm -rf bootstrap

++++++ Port-to-JFlex-1.7.0.patch ++++++
+++ qdox-2.0.1/src/grammar/lexer.flex   2022-03-12 07:00:33.182053962 +0100
@@ -173,7 +173,7 @@
        }
 
     public JFlexLexer( java.io.InputStream stream, java.io.Writer writer ) {
-       this( stream );
+       this( new java.io.InputStreamReader( stream, 
java.nio.charset.Charset.forName( "UTF-8" ) ) );
        this.writer = writer;
        }
 
--- 
qdox-2.0.1/src/main/java/com/thoughtworks/qdox/library/ClassLoaderLibrary.java  
    2021-11-13 15:25:20.000000000 +0100
+++ 
qdox-2.0.1/src/main/java/com/thoughtworks/qdox/library/ClassLoaderLibrary.java  
    2022-03-12 07:00:33.182053962 +0100
@@ -112,7 +112,7 @@
             if ( sourceStream != null )
             {
                 Builder builder = getModelBuilder();
-                JavaLexer lexer = new JFlexLexer( sourceStream );
+                JavaLexer lexer = new JFlexLexer( new 
java.io.InputStreamReader( sourceStream, java.nio.charset.Charset.forName( 
"UTF-8" ) ) );
                 Parser parser = new Parser( lexer, builder );
                 parser.setDebugLexer( debugLexer );
                 parser.setDebugParser( debugParser );

++++++ qdox-build.xml ++++++
--- /var/tmp/diff_new_pack.2Tyrum/_old  2022-03-13 20:25:27.039675356 +0100
+++ /var/tmp/diff_new_pack.2Tyrum/_new  2022-03-13 20:25:27.043675360 +0100
@@ -88,6 +88,7 @@
          basedir="${build.outputDir}" 
          excludes="**/package.html">
       <manifest>
+               <attribute name="Automatic-Module-Name" 
value="com.thoughtworks.qdox"/>
                <attribute name="Bundle-Localization" value="plugin"/>
                <attribute name="Bundle-ManifestVersion" value="2"/>
                <attribute name="Bundle-Name" value="%pluginName"/>

Reply via email to