Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package QR-Code-generator for 
openSUSE:Factory checked in at 2021-04-01 14:16:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/QR-Code-generator (Old)
 and      /work/SRC/openSUSE:Factory/.QR-Code-generator.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "QR-Code-generator"

Thu Apr  1 14:16:03 2021 rev:3 rq:881410 version:1.6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/QR-Code-generator/QR-Code-generator.changes      
2020-01-30 09:38:58.525412227 +0100
+++ 
/work/SRC/openSUSE:Factory/.QR-Code-generator.new.2401/QR-Code-generator.changes
    2021-04-01 14:16:10.603885834 +0200
@@ -1,0 +2,8 @@
+Mon Mar  8 23:39:10 UTC 2021 - Dirk M??ller <dmuel...@suse.com>
+
+- update to 1.6.0:
+  * https://github.com/nayuki/QR-Code-generator/compare/v1.5.0...v1.6.0
+- drop cflags.patch (upstream)
+  
+
+-------------------------------------------------------------------

Old:
----
  cflags.patch
  v1.5.0.tar.gz

New:
----
  v1.6.0.tar.gz

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

Other differences:
------------------
++++++ QR-Code-generator.spec ++++++
--- /var/tmp/diff_new_pack.mjtrqX/_old  2021-04-01 14:16:11.307887056 +0200
+++ /var/tmp/diff_new_pack.mjtrqX/_new  2021-04-01 14:16:11.311887062 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package QR-Code-generator
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,12 @@
 %define libcname libqrcodegen1
 %define libcppname libqrcodegencpp1
 Name:           QR-Code-generator
-Version:        1.5.0
+Version:        1.6.0
 Release:        0
 Summary:        QR Code generator library
 License:        MIT
 URL:            https://github.com/nayuki/QR-Code-generator
 Source:         
https://github.com/nayuki/QR-Code-generator/archive/v%{version}.tar.gz
-Patch0:         cflags.patch
 Patch2:         0002-Make-use-of-fPIC-parameter-when-building.patch
 Patch3:         0003-Generate-both-shared-and-static-libraries.patch
 Patch4:         0004-Create-install-targets-for-C-and-CPP.patch

++++++ 0003-Generate-both-shared-and-static-libraries.patch ++++++
--- /var/tmp/diff_new_pack.mjtrqX/_old  2021-04-01 14:16:11.331887098 +0200
+++ /var/tmp/diff_new_pack.mjtrqX/_new  2021-04-01 14:16:11.331887098 +0200
@@ -8,11 +8,11 @@
  cpp/Makefile | 14 ++++++++++----
  2 files changed, 20 insertions(+), 8 deletions(-)
 
-diff --git a/c/Makefile b/c/Makefile
-index bf79462..38eda2d 100644
---- a/c/Makefile
-+++ b/c/Makefile
-@@ -51,16 +51,19 @@ CFLAGS ?= -std=c99 -O
+Index: QR-Code-generator-1.6.0/c/Makefile
+===================================================================
+--- QR-Code-generator-1.6.0.orig/c/Makefile
++++ QR-Code-generator-1.6.0/c/Makefile
+@@ -51,16 +51,19 @@ CFLAGS += -std=c99 -O
  # ---- Targets to build ----
  
  LIB = qrcodegen
@@ -35,7 +35,7 @@
        rm -rf .deps
  
  # Executable files
-@@ -72,9 +75,12 @@ qrcodegen-test: qrcodegen-test.c $(LIBOBJ:%.o=%.c)
+@@ -72,9 +75,12 @@ qrcodegen-test: qrcodegen-test.c $(LIBOB
        $(CC) $(CFLAGS) -DQRCODEGEN_TEST -o $@ $^
  
  # The library
@@ -49,11 +49,11 @@
  # Object files
  %.o: %.c .deps/timestamp
        $(CC) $(CFLAGS) -fPIC -c -o $@ -MMD -MF .deps/$*.d $<
-diff --git a/cpp/Makefile b/cpp/Makefile
-index deb8924..2f5b2af 100644
---- a/cpp/Makefile
-+++ b/cpp/Makefile
-@@ -51,16 +51,19 @@ CXXFLAGS ?= -std=c++11 -O
+Index: QR-Code-generator-1.6.0/cpp/Makefile
+===================================================================
+--- QR-Code-generator-1.6.0.orig/cpp/Makefile
++++ QR-Code-generator-1.6.0/cpp/Makefile
+@@ -51,16 +51,19 @@ CXXFLAGS += -std=c++11 -O
  # ---- Targets to build ----
  
  LIB = qrcodegen
@@ -62,17 +62,17 @@
 +LIBFILE = lib$(LIB).so
 +# Bump the soname number when the ABI changes and gets incompatible
 +SO_NAME = $(LIBFILE).1
- LIBOBJ = BitBuffer.o QrCode.o QrSegment.o
+ LIBOBJ = QrCode.o
  MAINS = QrCodeGeneratorDemo QrCodeGeneratorWorker
  
  # Build all binaries
 -all: $(LIBFILE) $(MAINS)
-+all: $(LIBFILE) $(ARFILE) $(MAINS)
++all: $(ARFILE) $(LIBFILE) $(MAINS)
  
  # Delete build output
  clean:
 -      rm -f -- $(LIBOBJ) $(LIBFILE) $(MAINS:=.o) $(MAINS)
-+      rm -f -- $(LIBOBJ) $(LIBFILE) $(ARFILE) $(MAINS:=.o) $(MAINS)
++      rm -f -- $(LIBOBJ) $(ARFILE) $(LIBFILE) $(MAINS:=.o) $(MAINS)
        rm -rf .deps
  
  # Executable files
@@ -90,6 +90,3 @@
  # Object files
  %.o: %.cpp .deps/timestamp
        $(CXX) $(CXXFLAGS) -fPIC -c -o $@ -MMD -MF .deps/$*.d $<
--- 
-2.24.0
-

++++++ 0004-Create-install-targets-for-C-and-CPP.patch ++++++
--- /var/tmp/diff_new_pack.mjtrqX/_old  2021-04-01 14:16:11.343887119 +0200
+++ /var/tmp/diff_new_pack.mjtrqX/_new  2021-04-01 14:16:11.343887119 +0200
@@ -8,11 +8,11 @@
  cpp/Makefile | 27 +++++++++++++++++++++++++++
  2 files changed, 53 insertions(+)
 
-diff --git a/c/Makefile b/c/Makefile
-index 38eda2d..7521944 100644
---- a/c/Makefile
-+++ b/c/Makefile
-@@ -34,6 +34,8 @@ CFLAGS ?= -std=c99 -O
+Index: QR-Code-generator-1.6.0/c/Makefile
+===================================================================
+--- QR-Code-generator-1.6.0.orig/c/Makefile
++++ QR-Code-generator-1.6.0/c/Makefile
+@@ -34,6 +34,8 @@ CFLAGS += -std=c99 -O
  # Extra flags for diagnostics:
  # CFLAGS += -g -Wall -Wextra -Wpedantic -Wconversion -Wsign-conversion 
-fsanitize=undefined,address
  
@@ -62,11 +62,11 @@
  # Executable files
  %: %.o $(LIBFILE)
        $(CC) $(CFLAGS) -o $@ $< -L . -l $(LIB)
-diff --git a/cpp/Makefile b/cpp/Makefile
-index 2f5b2af..d131f30 100644
---- a/cpp/Makefile
-+++ b/cpp/Makefile
-@@ -34,6 +34,8 @@ CXXFLAGS ?= -std=c++11 -O
+Index: QR-Code-generator-1.6.0/cpp/Makefile
+===================================================================
+--- QR-Code-generator-1.6.0.orig/cpp/Makefile
++++ QR-Code-generator-1.6.0/cpp/Makefile
+@@ -34,6 +34,8 @@ CXXFLAGS += -std=c++11 -O
  # Extra flags for diagnostics:
  # CXXFLAGS += -g -Wall -Wextra -Wpedantic -Wconversion -Wsign-conversion 
-fsanitize=undefined,address
  
@@ -75,25 +75,24 @@
  
  # ---- Controlling make ----
  
-@@ -55,9 +57,16 @@ ARFILE = lib$(LIB).a
+@@ -55,9 +57,15 @@ ARFILE = lib$(LIB).a
  LIBFILE = lib$(LIB).so
  # Bump the soname number when the ABI changes and gets incompatible
  SO_NAME = $(LIBFILE).1
 +REAL_NAME = $(LIBFILE).$(VERSION)
-+HEADERS = BitBuffer.hpp QrCode.hpp QrSegment.hpp
- LIBOBJ = BitBuffer.o QrCode.o QrSegment.o
++HEADERS = QrCode.hpp
+ LIBOBJ = QrCode.o
  MAINS = QrCodeGeneratorDemo QrCodeGeneratorWorker
  
 +# define paths to install
 +INCLUDEDIR ?= $(DESTDIR)/usr/include/qrcodegen
 +LIBDIR ?= $(DESTDIR)/usr/lib
 +
-+
  # Build all binaries
- all: $(LIBFILE) $(ARFILE) $(MAINS)
+ all: $(ARFILE) $(LIBFILE) $(MAINS)
  
-@@ -66,6 +75,24 @@ clean:
-       rm -f -- $(LIBOBJ) $(LIBFILE) $(ARFILE) $(MAINS:=.o) $(MAINS)
+@@ -66,6 +74,24 @@ clean:
+       rm -f -- $(LIBOBJ) $(ARFILE) $(LIBFILE) $(MAINS:=.o) $(MAINS)
        rm -rf .deps
  
 +install-shared: $(LIBFILE)
@@ -117,6 +116,3 @@
  # Executable files
  %: %.o $(LIBFILE)
        $(CXX) $(CXXFLAGS) -o $@ $< -L . -l $(LIB)
--- 
-2.24.0
-

++++++ 0005-Rename-cpp-library-to-qrcodegencpp-to-avoid-conflict.patch ++++++
--- /var/tmp/diff_new_pack.mjtrqX/_old  2021-04-01 14:16:11.355887139 +0200
+++ /var/tmp/diff_new_pack.mjtrqX/_new  2021-04-01 14:16:11.359887146 +0200
@@ -7,10 +7,10 @@
  cpp/Makefile | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/cpp/Makefile b/cpp/Makefile
-index d131f30..2e7ed1f 100644
---- a/cpp/Makefile
-+++ b/cpp/Makefile
+Index: QR-Code-generator-1.6.0/cpp/Makefile
+===================================================================
+--- QR-Code-generator-1.6.0.orig/cpp/Makefile
++++ QR-Code-generator-1.6.0/cpp/Makefile
 @@ -52,7 +52,7 @@ VERSION = 1.5.0
  
  # ---- Targets to build ----
@@ -20,6 +20,3 @@
  ARFILE = lib$(LIB).a
  LIBFILE = lib$(LIB).so
  # Bump the soname number when the ABI changes and gets incompatible
--- 
-2.24.0
-

++++++ v1.5.0.tar.gz -> v1.6.0.tar.gz ++++++
++++ 7553 lines of diff (skipped)

Reply via email to