Hello community,

here is the log from the commit of package ebiso for openSUSE:Factory checked 
in at 2020-06-10 00:47:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ebiso (Old)
 and      /work/SRC/openSUSE:Factory/.ebiso.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ebiso"

Wed Jun 10 00:47:46 2020 rev:7 rq:812747 version:0.2.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/ebiso/ebiso.changes      2017-06-01 
16:33:43.466742048 +0200
+++ /work/SRC/openSUSE:Factory/.ebiso.new.3606/ebiso.changes    2020-06-10 
00:47:50.406854563 +0200
@@ -1,0 +2,5 @@
+Mon Jun  8 22:41:27 CEST 2020 - [email protected]
+
+- workaround for compiling with gcc-10
+
+-------------------------------------------------------------------

Old:
----
  ebiso-0.2.5.tar.gz

New:
----
  ebiso-0.2.7.tar.gz

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

Other differences:
------------------
++++++ ebiso.spec ++++++
--- /var/tmp/diff_new_pack.xQmvvq/_old  2020-06-10 00:47:50.906855871 +0200
+++ /var/tmp/diff_new_pack.xQmvvq/_new  2020-06-10 00:47:50.910855882 +0200
@@ -17,17 +17,17 @@
 
 
 Name:           ebiso
-Version:        0.2.5
+Version:        0.2.7
 Release:        0
 Summary:        UEFI bootable ISO image creator for Relax-and-Recover
-License:        GPL-2.0+
+License:        GPL-3.0
 Group:          Productivity/Archiving/Backup
 # Refer to http://license.opensuse.org/
 # for the list of known licences and their exact spelling:
 # ebiso is only used by rear to make UEFI bootable ISO images
 # accordingly ebiso is in the same RPM group as rear:
-Url:            https://github.com/gozora/ebiso
-Source0:        
https://github.com/gozora/ebiso/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+Url:            https://gitlab.com/gozora/ebiso
+Source0:        
https://gitlab.com/gozora/ebiso/-/archive/%{version}/ebiso-%{version}.tar.gz#/%{name}-%{version}.tar.gz
 # Supplements is a reverse "Recommends" which means
 # (cf. https://tr.opensuse.org/Libzypp/Dependencies):
 # ebiso should be be installed if rear is is provided by an installed package.
@@ -41,7 +41,7 @@
 Supplements:    rear
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 # Enable building only on architectures which support UEFI
-ExclusiveArch:  %ix86 x86_64 aarch64
+ExclusiveArch:  x86_64
 
 %description
 ebiso is needed by Relax-and-Recover (abbreviated ReaR)
@@ -51,7 +51,7 @@
 ebiso only works for systems with UEFI boot.
 ebiso cannot create legacy bootable ISOs.
 
-See project pages at https://github.com/gozora/ebiso
+See project pages at https://gitlab.com/gozora/ebiso
 
 %prep
 %setup -q

++++++ ebiso-0.2.5.tar.gz -> ebiso-0.2.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ebiso-0.2.5/Makefile new/ebiso-0.2.7/Makefile
--- old/ebiso-0.2.5/Makefile    2017-02-28 20:47:17.000000000 +0100
+++ new/ebiso-0.2.7/Makefile    2020-06-08 23:02:59.000000000 +0200
@@ -20,10 +20,11 @@
 MANDIR=/usr/share/man
 
 #FLAGS=-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 
-fstack-protector -funwind-tables -fasynchronous-unwind-tables -I${INCLUDEDIR}
+CFLAGS=-fcommon
 FLAGS=$(CFLAGS) -g3 -std=gnu9x -Wall -Wshadow -Wcast-qual -Wstrict-prototypes 
-Wmissing-prototypes -I${INCLUDEDIR}
 VERSION=$(shell grep "\#define EBISO_VERSION" ${INCLUDEDIR}/${PROGNAME}.h | 
awk '{ print $$NF }' | sed s/\"//g)
 
-SRC=$(wildcard ${LIBDIR}/*.c)
+SRC=$(sort $(wildcard ${LIBDIR}/*.c))
 HEADERS=$(wildcard ${INCLUDEDIR}/*.h)
 OBJ=$(addprefix ${LIBDIR}/,$(notdir $(SRC:.c=.o)))
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ebiso-0.2.5/README.md new/ebiso-0.2.7/README.md
--- old/ebiso-0.2.5/README.md   2017-02-28 20:47:17.000000000 +0100
+++ new/ebiso-0.2.7/README.md   2020-06-08 23:02:59.000000000 +0200
@@ -6,8 +6,8 @@
  - no additional dependencies
  - released under GPL
  - supports 8.3 and long file names (up to 255 characters) formats
- - more info can be found in [ebiso wiki](https://github.com/gozora/ebiso/wiki)
+ - more info can be found in [ebiso 
wiki](https://gitlab.com/gozora/ebiso/wikis/home)
  - tested with rear on SLES11 SP3 and Centos 6.7
- - basic [usage](https://github.com/gozora/ebiso/wiki/Usage)
- - 
[features](https://github.com/gozora/ebiso/wiki/Features-in-progress-(limitations))
 that can be expected
- - [packages](https://github.com/gozora/ebiso/wiki/Packages)
+ - basic [usage](https://gitlab.com/gozora/ebiso/wikis/Usage)
+ - 
[features](https://gitlab.com/gozora/ebiso/wikis/Features-in-progress-(limitations))
 that can be expected
+ - [packages](https://gitlab.com/gozora/ebiso/wikis/Packages)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ebiso-0.2.5/include/ebiso.h 
new/ebiso-0.2.7/include/ebiso.h
--- old/ebiso-0.2.5/include/ebiso.h     2017-02-28 20:47:17.000000000 +0100
+++ new/ebiso-0.2.7/include/ebiso.h     2020-06-08 23:02:59.000000000 +0200
@@ -14,7 +14,7 @@
  * 
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the       
  * GNU General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
@@ -33,7 +33,7 @@
 #include <getopt.h>
 
 #define PROGNAME "ebiso"
-#define EBISO_VERSION "0.2.5"
+#define EBISO_VERSION "0.2.7"
 
 #if (DEBUG == 1)
 static void disp_level(struct file_list_t *list_to_display, int level);


Reply via email to