Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package lpe for openSUSE:Factory checked in 
at 2021-02-04 20:24:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lpe (Old)
 and      /work/SRC/openSUSE:Factory/.lpe.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lpe"

Thu Feb  4 20:24:39 2021 rev:4 rq:869469 version:1.2.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/lpe/lpe.changes  2017-06-12 15:33:37.254297587 
+0200
+++ /work/SRC/openSUSE:Factory/.lpe.new.28504/lpe.changes       2021-02-04 
20:25:11.078927703 +0100
@@ -1,0 +2,5 @@
+Thu Feb  4 14:11:21 UTC 2021 - Adam Majer <adam.ma...@suse.de>
+
+- multiple_definitions.patch: fix build with GCC10
+
+-------------------------------------------------------------------

New:
----
  multiple_definitions.patch

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

Other differences:
------------------
++++++ lpe.spec ++++++
--- /var/tmp/diff_new_pack.V1Alyl/_old  2021-02-04 20:25:11.770928757 +0100
+++ /var/tmp/diff_new_pack.V1Alyl/_new  2021-02-04 20:25:11.774928763 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lpe
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,11 +20,12 @@
 Version:        1.2.8
 Release:        0
 Summary:        Programming text editor
-License:        GPL-2.0
+License:        GPL-2.0-only
 Group:          Productivity/Editors/Other
-Url:            https://github.com/AdamMajer/lpe
+URL:            https://github.com/AdamMajer/lpe
 Source:         https://github.com/AdamMajer/lpe/archive/v%version.tar.gz
 Patch:          drop_gettext_version.patch
+Patch2:         multiple_definitions.patch
 BuildRequires:  libtool
 BuildRequires:  ncurses-devel
 BuildRequires:  slang-devel
@@ -38,6 +39,7 @@
 %prep
 %setup -q
 %patch -p1
+%patch2 -p1
 
 %build
 %configure

++++++ multiple_definitions.patch ++++++
Index: lpe-1.2.8/src/lpe.c
===================================================================
--- lpe-1.2.8.orig/src/lpe.c
+++ lpe-1.2.8/src/lpe.c
@@ -25,6 +25,8 @@
 #include "strfuncs.h"
 #include "exports.h"
 
+char *LPE_CONFIG_FILE;
+
 /* A flag indicating a desire to quit the editor.  This is set whenever a
  * command should cause an exit.
  */
Index: lpe-1.2.8/src/options.h
===================================================================
--- lpe-1.2.8.orig/src/options.h
+++ lpe-1.2.8/src/options.h
@@ -38,6 +38,6 @@
 /*
  * Other things that are used in some places...
  */
-char *LPE_CONFIG_FILE;
+extern char *LPE_CONFIG_FILE;
 
 #endif /* LPE_OPTIONS_H */

Reply via email to