Hello community,

here is the log from the commit of package gnu-free-fonts for 
openSUSE:Leap:15.2 checked in at 2020-06-10 16:49:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/gnu-free-fonts (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.gnu-free-fonts.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnu-free-fonts"

Wed Jun 10 16:49:39 2020 rev:17 rq:812554 version:0.20120503

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/gnu-free-fonts/gnu-free-fonts.changes  
2020-01-15 15:05:28.253905431 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.gnu-free-fonts.new.3606/gnu-free-fonts.changes    
    2020-06-10 16:49:43.364327412 +0200
@@ -1,0 +2,7 @@
+Fri Jun  5 07:13:43 UTC 2020 - [email protected]
+
+- from factory: Fix building with fontforge 20190801 [bsc#1170856]
+- added patches
+  + make_ff_version_check_forward_compatible.patch
+
+-------------------------------------------------------------------

New:
----
  make_ff_version_check_forward_compatible.patch

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

Other differences:
------------------
++++++ gnu-free-fonts.spec ++++++
--- /var/tmp/diff_new_pack.zhjEBd/_old  2020-06-10 16:49:43.788328642 +0200
+++ /var/tmp/diff_new_pack.zhjEBd/_new  2020-06-10 16:49:43.792328653 +0200
@@ -32,6 +32,7 @@
 # PATCH-FIX-UPSTREAM -- bmwiedemann fix build-compare 
https://savannah.gnu.org/bugs/index.php?47722
 Patch0:         reproducible.patch
 Patch1:         freefont-build-using-py3.patch
+Patch2:         make_ff_version_check_forward_compatible.patch
 BuildRequires:  fontforge >= 20080429
 BuildRequires:  fontpackages-devel
 BuildRequires:  python3-base
@@ -56,6 +57,7 @@
 %setup -q -n %{fontname}-%{fontversion}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 chmod 755 $RPM_SOURCE_DIR/remove-kana-glyphs

++++++ make_ff_version_check_forward_compatible.patch ++++++
diff --git a/sfd/Makefile b/sfd/Makefile
index fdbc61f..67e2dc9 100644
--- a/sfd/Makefile
+++ b/sfd/Makefile
@@ -11,9 +11,9 @@ FF=fontforge -lang=ff -script
 FFPY=fontforge -lang=py -script 
 FFPY=fontforge -lang=py -script 
 
-ffversion=`fontforge --version 2> /dev/null | grep '^fontforge' | sed -e 
's/^fontforge //'`
+ffversion:=`fontforge -version 2> /dev/null | grep '^libfontforge' | sed -e 
's/^libfontforge //'`
 
-TESTFF=if test -z ${ffversion}; then echo FontForge program is required to 
build FreeFont; exit 1; fi; if test `fontforge --version 2> /dev/null | grep 
'^fontforge' | sed -e 's/^fontforge //'` -lt 20080429 ; then echo FontForge 
version too old; exit 1; fi
+TESTFF:=if test -z $(ffversion); then echo FontForge program is required to 
build FreeFont; exit 1; fi; if test $(ffversion) -lt 20080429 ; then echo 
FontForge version too old; exit 1; fi
 
 
 .SUFFIXES: $(SUFFIXES) .sfd .ttf .otf .woff

Reply via email to