Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package paperjam for openSUSE:Factory 
checked in at 2023-03-02 23:03:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/paperjam (Old)
 and      /work/SRC/openSUSE:Factory/.paperjam.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "paperjam"

Thu Mar  2 23:03:28 2023 rev:3 rq:1068491 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/paperjam/paperjam.changes        2022-02-10 
23:12:51.512327208 +0100
+++ /work/SRC/openSUSE:Factory/.paperjam.new.31432/paperjam.changes     
2023-03-02 23:04:00.991968331 +0100
@@ -1,0 +2,8 @@
+Wed Mar  1 13:48:10 UTC 2023 - Adam Majer <adam.ma...@suse.de>
+
+- stop_using_obsolete_standards.patch: stop forcing obsolete C++
+  standards, like C++11. Furthermore, do not override CXXFLAGS
+  from environment that basically prevents __FORTIFY_SOURCE and the
+  other security flags to be set for compilation.
+
+-------------------------------------------------------------------

New:
----
  stop_using_obsolete_standards.patch

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

Other differences:
------------------
++++++ paperjam.spec ++++++
--- /var/tmp/diff_new_pack.PETZiU/_old  2023-03-02 23:04:01.547976278 +0100
+++ /var/tmp/diff_new_pack.PETZiU/_new  2023-03-02 23:04:01.551976336 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package paperjam
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,7 @@
 URL:            https://mj.ucw.cz/sw/paperjam/
 Source:         http://mj.ucw.cz/download/linux/paperjam-%{version}.tar.gz
 Patch0:         reproducible.patch
+Patch1:         stop_using_obsolete_standards.patch
 BuildRequires:  asciidoc
 BuildRequires:  gcc-c++
 BuildRequires:  libpaper-devel
@@ -38,6 +39,7 @@
 %autosetup -p1
 
 %build
+%set_build_flags
 %make_build
 
 %install

++++++ stop_using_obsolete_standards.patch ++++++
Index: paperjam-1.1.1/Makefile
===================================================================
--- paperjam-1.1.1.orig/Makefile
+++ paperjam-1.1.1/Makefile
@@ -3,12 +3,12 @@ YEAR=2020
 BUILD_DATE:=$(shell if [ -e .git ] ; then git log -1 --format=%cs ; else date 
-u -r NEWS '+%Y-%m-%d' 2>/dev/null || date '+%Y-%m-%d' ; fi)
 BUILD_COMMIT:=$(shell if git rev-parse >/dev/null 2>/dev/null ; then git 
describe --always --tags ; else echo '<unknown>' ; fi)
 
-DESTDIR=
-PREFIX=/usr/local
-BINDIR=$(PREFIX)/bin
-MANDIR=$(PREFIX)/share/man
+DESTDIR?=
+PREFIX?=/usr/local
+BINDIR?=$(PREFIX)/bin
+MANDIR?=$(PREFIX)/share/man
 
-CXXFLAGS=-O2 -Wall -Wextra -Wno-parentheses -std=gnu++11 -g
+CXXFLAGS?=-O2 -Wall -Wextra -Wno-parentheses -g
 
 all: paperjam paperjam.1 paperjam.1.html
 

Reply via email to