Hello community,

here is the log from the commit of package brlemu for openSUSE:Factory checked 
in at 2017-06-12 15:29:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/brlemu (Old)
 and      /work/SRC/openSUSE:Factory/.brlemu.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "brlemu"

Mon Jun 12 15:29:06 2017 rev:18 rq:501310 version:0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/brlemu/brlemu.changes    2011-10-04 
18:07:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.brlemu.new/brlemu.changes       2017-06-12 
15:29:31.432967298 +0200
@@ -1,0 +2,6 @@
+Tue Jun  6 07:53:03 UTC 2017 - [email protected]
+
+- add brlemu-0.1-gcc7.diff to fix build with gcc 7
+- add brlemu-0.1-nostrip.diff to fix debuginfo package generation
+
+-------------------------------------------------------------------

New:
----
  brlemu-0.1-gcc7.diff
  brlemu-0.1-nostrip.diff

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

Other differences:
------------------
++++++ brlemu.spec ++++++
--- /var/tmp/diff_new_pack.hvUNWN/_old  2017-06-12 15:29:34.296563437 +0200
+++ /var/tmp/diff_new_pack.hvUNWN/_new  2017-06-12 15:29:34.296563437 +0200
@@ -27,6 +27,8 @@
 Url:            http://sourceforge.net/
 Source:         brlemu-0.1.tgz
 Patch:          brlemu-fakeport.diff
+Patch1:         brlemu-0.1-gcc7.diff
+Patch2:         brlemu-0.1-nostrip.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -36,6 +38,8 @@
 %prep
 %setup -n brlemu-0.1
 %patch -p1
+%patch1 -p1
+%patch2 -p1
 
 %build
 make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags} CC="%{__cc}"

++++++ brlemu-0.1-gcc7.diff ++++++
Index: b/brlemu.c
===================================================================
--- a/brlemu.c
+++ b/brlemu.c
@@ -21,7 +21,7 @@
 
 /* communication functions */
 void send_id (void);
-inline void read_data (void);
+void read_data (void);
 void send_cmd (const unsigned char *cmd);
 
 /* helper functions */
@@ -353,7 +353,7 @@ void send_cmd (const unsigned char *cmd)
 
 }
 
-inline void read_data (void)
+void read_data (void)
 {
   unsigned char code = 0;
   unsigned char brldsp[81];
++++++ brlemu-0.1-nostrip.diff ++++++
Index: b/Makefile
===================================================================
--- a/Makefile
+++ b/Makefile
@@ -20,5 +20,5 @@ clean:
 
 
 install: $(PRG)
-       install -s -m 755 $(PRG) $(DESTDIR)/usr/bin
+       install -m 755 $(PRG) $(DESTDIR)/usr/bin
 

Reply via email to