Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package xmlgraphics-commons for
openSUSE:Factory checked in at 2026-02-07 15:33:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xmlgraphics-commons (Old)
and /work/SRC/openSUSE:Factory/.xmlgraphics-commons.new.1670 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xmlgraphics-commons"
Sat Feb 7 15:33:12 2026 rev:34 rq:1331674 version:2.10
Changes:
--------
--- /work/SRC/openSUSE:Factory/xmlgraphics-commons/xmlgraphics-commons.changes
2025-01-12 11:08:58.385644333 +0100
+++
/work/SRC/openSUSE:Factory/.xmlgraphics-commons.new.1670/xmlgraphics-commons.changes
2026-02-07 15:33:30.985597282 +0100
@@ -1,0 +2,8 @@
+Fri Feb 6 13:57:35 UTC 2026 - Fridrich Strba <[email protected]>
+
+- Added patch:
+ * ioexception.patch
+ + do not forward IOException that is not thrown with newer
+ commons-io versions
+
+-------------------------------------------------------------------
New:
----
_scmsync.obsinfo
build.specials.obscpio
ioexception.patch
----------(New B)----------
New:- Added patch:
* ioexception.patch
+ do not forward IOException that is not thrown with newer
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xmlgraphics-commons.spec ++++++
--- /var/tmp/diff_new_pack.LQfNkV/_old 2026-02-07 15:33:32.041641155 +0100
+++ /var/tmp/diff_new_pack.LQfNkV/_new 2026-02-07 15:33:32.041641155 +0100
@@ -1,7 +1,7 @@
#
# spec file for package xmlgraphics-commons
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
# Copyright (c) 2000-2008, JPackage Project
#
# All modifications and additions to the file contributed by third parties
@@ -27,6 +27,7 @@
Source0:
https://archive.apache.org/dist/xmlgraphics/commons/source/xmlgraphics-commons-%{version}-src.tar.gz
Patch0: xmlgraphics-commons-build_xml.patch
Patch1: xmlgraphics-commons-jdk10.patch
+Patch2: ioexception.patch
BuildRequires: ant >= 1.6.5
BuildRequires: commons-io >= 1.1
BuildRequires: commons-logging
@@ -55,6 +56,7 @@
%setup -q %{name}-%{version}
%patch -P 0
%patch -P 1 -p1
+%patch -P 2 -p1
find . -name "*.jar" | xargs rm
%build
++++++ _scmsync.obsinfo ++++++
mtime: 1770386333
commit: 32d2dd06fa543735a8276abbbb4e589f80b7e8e5e79e776357642f3aa9a36529
url: https://src.opensuse.org/java-packages/xmlgraphics-commons.git
revision: 32d2dd06fa543735a8276abbbb4e589f80b7e8e5e79e776357642f3aa9a36529
projectscmsync: https://src.opensuse.org/java-packages/_ObsPrj
++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore 1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore 2026-02-06 14:59:24.000000000 +0100
@@ -0,0 +1 @@
+.osc
++++++ ioexception.patch ++++++
---
xmlgraphics-commons-2.10/src/main/java/org/apache/xmlgraphics/image/loader/impl/ImageLoaderRawJPEG.java
2026-02-06 14:46:33.830690789 +0100
+++
xmlgraphics-commons-2.10/src/main/java/org/apache/xmlgraphics/image/loader/impl/ImageLoaderRawJPEG.java
2026-02-06 14:52:44.657115723 +0100
@@ -226,11 +226,7 @@
final int alignment = 4;
int padding = (alignment - (iccStream.size() % alignment)) %
alignment;
if (padding != 0) {
- try {
iccStream.write(new byte[padding]);
- } catch (IOException ioe) {
- throw new IOException("Error while aligning ICC stream: "
+ ioe.getMessage());
- }
}
ICC_Profile iccProfile = null;