Hello community, here is the log from the commit of package gnu-free-fonts for openSUSE:Factory checked in at 2019-09-07 11:29:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnu-free-fonts (Old) and /work/SRC/openSUSE:Factory/.gnu-free-fonts.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnu-free-fonts" Sat Sep 7 11:29:37 2019 rev:10 rq:727859 version:0.20120503 Changes: -------- --- /work/SRC/openSUSE:Factory/gnu-free-fonts/gnu-free-fonts.changes 2018-01-16 09:36:51.581166356 +0100 +++ /work/SRC/openSUSE:Factory/.gnu-free-fonts.new.7948/gnu-free-fonts.changes 2019-09-07 11:29:38.750462610 +0200 @@ -1,0 +2,7 @@ +Sun Sep 1 15:18:58 UTC 2019 - Stefan BrĂ¼ns <[email protected]> + +- Fix building with fontforge 20190801 + Add make_ff_version_check_forward_compatible.patch +- Use license for COPYING + +------------------------------------------------------------------- New: ---- make_ff_version_check_forward_compatible.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnu-free-fonts.spec ++++++ --- /var/tmp/diff_new_pack.X8utRT/_old 2019-09-07 11:29:39.538462511 +0200 +++ /var/tmp/diff_new_pack.X8utRT/_new 2019-09-07 11:29:39.538462511 +0200 @@ -1,7 +1,7 @@ # # spec file for package gnu-free-fonts # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # 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/ # @@ -32,6 +32,8 @@ # PATCH-FIX-UPSTREAM -- bmwiedemann fix build-compare https://savannah.gnu.org/bugs/index.php?47722 Patch0: reproducible.patch Patch1: freefont-build-using-py3.patch +# PATCH-FIX-UPSTREAM -- https://savannah.gnu.org/bugs/index.php?47634 +Patch2: make_ff_version_check_forward_compatible.patch BuildRequires: fontforge >= 20080429 BuildRequires: fontpackages-devel BuildRequires: python3-base @@ -56,6 +58,7 @@ %setup -q -n %{fontname}-%{fontversion} %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build chmod 755 $RPM_SOURCE_DIR/remove-kana-glyphs @@ -69,7 +72,8 @@ %reconfigure_fonts_scriptlets %files -%doc AUTHORS COPYING CREDITS ChangeLog README notes/troubleshooting.txt notes/usage.txt +%license COPYING +%doc AUTHORS CREDITS ChangeLog README notes/troubleshooting.txt notes/usage.txt %{_ttfontsdir} %changelog ++++++ 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
