Hello community,

here is the log from the commit of package zxing-cpp for openSUSE:Factory 
checked in at 2019-12-23 22:34:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/zxing-cpp (Old)
 and      /work/SRC/openSUSE:Factory/.zxing-cpp.new.6675 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "zxing-cpp"

Mon Dec 23 22:34:02 2019 rev:3 rq:755234 version:1.0.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/zxing-cpp/zxing-cpp.changes      2019-06-20 
18:56:09.932908719 +0200
+++ /work/SRC/openSUSE:Factory/.zxing-cpp.new.6675/zxing-cpp.changes    
2019-12-23 22:34:29.725743566 +0100
@@ -1,0 +2,6 @@
+Thu Dec  5 08:57:46 UTC 2019 - Martin Liška <[email protected]>
+
+- Add add-missing-includes-of-stdexcept-header.patch
+  in order to fix boo#1158377.
+
+-------------------------------------------------------------------

New:
----
  add-missing-includes-of-stdexcept-header.patch

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

Other differences:
------------------
++++++ zxing-cpp.spec ++++++
--- /var/tmp/diff_new_pack.phe0Gb/_old  2019-12-23 22:34:31.821744475 +0100
+++ /var/tmp/diff_new_pack.phe0Gb/_new  2019-12-23 22:34:31.825744476 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package zxing-cpp
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,6 +27,7 @@
 Source0:        
https://github.com/nu-book/zxing-cpp/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM
 Patch1:         fix-library-installation-and-versioning.patch
+Patch2:         add-missing-includes-of-stdexcept-header.patch
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 

++++++ add-missing-includes-of-stdexcept-header.patch ++++++
diff --git a/core/src/datamatrix/DMBitMatrixParser.cpp 
b/core/src/datamatrix/DMBitMatrixParser.cpp
index 4b8e94a..f4402d6 100644
--- a/core/src/datamatrix/DMBitMatrixParser.cpp
+++ b/core/src/datamatrix/DMBitMatrixParser.cpp
@@ -22,6 +22,8 @@
 #include "DecodeStatus.h"
 #include "ByteArray.h"
 
+#include <stdexcept>
+
 namespace ZXing {
 namespace DataMatrix {
 
diff --git a/core/src/oned/ODCode128Writer.cpp 
b/core/src/oned/ODCode128Writer.cpp
index fc3cac3..eb7bb2c 100644
--- a/core/src/oned/ODCode128Writer.cpp
+++ b/core/src/oned/ODCode128Writer.cpp
@@ -21,6 +21,7 @@
 
 #include <list>
 #include <numeric>
+#include <stdexcept>
 
 namespace ZXing {
 namespace OneD {
diff --git a/core/src/oned/ODCode39Writer.cpp b/core/src/oned/ODCode39Writer.cpp
index 30b5aba..e8472db 100644
--- a/core/src/oned/ODCode39Writer.cpp
+++ b/core/src/oned/ODCode39Writer.cpp
@@ -20,6 +20,7 @@
 #include "ZXContainerAlgorithms.h"
 
 #include <array>
+#include <stdexcept>
 
 namespace ZXing {
 namespace OneD {
diff --git a/core/src/oned/ODCode93Writer.cpp b/core/src/oned/ODCode93Writer.cpp
index 8ad8ca5..90970a5 100644
--- a/core/src/oned/ODCode93Writer.cpp
+++ b/core/src/oned/ODCode93Writer.cpp
@@ -21,6 +21,7 @@
 #include "ZXTestSupport.h"
 
 #include <array>
+#include <stdexcept>
 
 namespace ZXing {
 namespace OneD {
diff --git a/core/src/oned/ODITFWriter.cpp b/core/src/oned/ODITFWriter.cpp
index c33fba8..62c3f15 100644
--- a/core/src/oned/ODITFWriter.cpp
+++ b/core/src/oned/ODITFWriter.cpp
@@ -18,6 +18,7 @@
 #include "oned/ODWriterHelper.h"
 
 #include <array>
+#include <stdexcept>
 
 namespace ZXing {
 namespace OneD {
diff --git a/core/src/pdf417/PDFCodewordDecoder.cpp 
b/core/src/pdf417/PDFCodewordDecoder.cpp
index 1a15247..c96c60b 100644
--- a/core/src/pdf417/PDFCodewordDecoder.cpp
+++ b/core/src/pdf417/PDFCodewordDecoder.cpp
@@ -20,6 +20,7 @@
 #include <vector>
 #include <numeric>
 #include <limits>
+#include <stdexcept>
 
 namespace ZXing {
 namespace Pdf417 {
diff --git a/core/src/pdf417/PDFEncoder.cpp b/core/src/pdf417/PDFEncoder.cpp
index 2d32147..1942fcd 100644
--- a/core/src/pdf417/PDFEncoder.cpp
+++ b/core/src/pdf417/PDFEncoder.cpp
@@ -21,6 +21,7 @@
 #include <array>
 #include <cmath>
 #include <vector>
+#include <stdexcept>
 
 namespace ZXing {
 namespace Pdf417 {
diff --git a/core/src/qrcode/QRWriter.cpp b/core/src/qrcode/QRWriter.cpp
index c48e4b0..a480acc 100644
--- a/core/src/qrcode/QRWriter.cpp
+++ b/core/src/qrcode/QRWriter.cpp
@@ -22,6 +22,8 @@
 #include "BitMatrix.h"
 #include "CharacterSet.h"
 
+#include <stdexcept>
+
 namespace ZXing {
 namespace QRCode {
 

Reply via email to