From 6281667ef91283074cb9517aa36e9bf09751260a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 18:36:29 +0000 Subject: [PATCH 1/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- fontforge.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fontforge.spec b/fontforge.spec index 7dd5d58..63dbc4f 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -2,7 +2,7 @@ Name: fontforge Version: 20230101 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later @@ -132,6 +132,9 @@ popd %doc %{_pkgdocdir} %changelog +* Thu Jan 16 2025 Fedora Release Engineering - 20230101-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Jul 17 2024 Fedora Release Engineering - 20230101-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From cf776b66303b49b97ad41ebc6303bacd158bd66b Mon Sep 17 00:00:00 2001 From: Python Maint Date: Tue, 3 Jun 2025 11:00:02 +0200 Subject: [PATCH 2/9] Rebuilt for Python 3.14 --- fontforge.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fontforge.spec b/fontforge.spec index 63dbc4f..9a43418 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -2,7 +2,7 @@ Name: fontforge Version: 20230101 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later @@ -132,6 +132,9 @@ popd %doc %{_pkgdocdir} %changelog +* Tue Jun 03 2025 Python Maint - 20230101-16 +- Rebuilt for Python 3.14 + * Thu Jan 16 2025 Fedora Release Engineering - 20230101-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From a138beedb9753bac6636d8691b221ea39b6a259f Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Wed, 28 Aug 2024 19:09:04 +0530 Subject: [PATCH 3/9] Add tmt testcase for CI --- .fmf/version | 1 + plans/fontforge.fmf | 5 +++ tests/{scripts => }/generate-font.py | 0 tests/{scripts => }/generate-sfd.pe | 0 tests/{scripts => }/generate-ttf.pe | 0 tests/{scripts => }/get-font-metadata.py | 0 tests/main.fmf | 5 +++ tests/{scripts => }/run_tests.sh | 0 tests/runtests.sh | 47 ++++++++++++++++++++++++ tests/tests.yml | 9 ----- 10 files changed, 58 insertions(+), 9 deletions(-) create mode 100644 .fmf/version create mode 100644 plans/fontforge.fmf rename tests/{scripts => }/generate-font.py (100%) rename tests/{scripts => }/generate-sfd.pe (100%) rename tests/{scripts => }/generate-ttf.pe (100%) rename tests/{scripts => }/get-font-metadata.py (100%) create mode 100644 tests/main.fmf rename tests/{scripts => }/run_tests.sh (100%) mode change 100644 => 100755 create mode 100755 tests/runtests.sh delete mode 100644 tests/tests.yml diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/plans/fontforge.fmf b/plans/fontforge.fmf new file mode 100644 index 0000000..c1627f9 --- /dev/null +++ b/plans/fontforge.fmf @@ -0,0 +1,5 @@ +summary: Basic smoke test +discover: + how: fmf +execute: + how: tmt diff --git a/tests/scripts/generate-font.py b/tests/generate-font.py similarity index 100% rename from tests/scripts/generate-font.py rename to tests/generate-font.py diff --git a/tests/scripts/generate-sfd.pe b/tests/generate-sfd.pe similarity index 100% rename from tests/scripts/generate-sfd.pe rename to tests/generate-sfd.pe diff --git a/tests/scripts/generate-ttf.pe b/tests/generate-ttf.pe similarity index 100% rename from tests/scripts/generate-ttf.pe rename to tests/generate-ttf.pe diff --git a/tests/scripts/get-font-metadata.py b/tests/get-font-metadata.py similarity index 100% rename from tests/scripts/get-font-metadata.py rename to tests/get-font-metadata.py diff --git a/tests/main.fmf b/tests/main.fmf new file mode 100644 index 0000000..542903b --- /dev/null +++ b/tests/main.fmf @@ -0,0 +1,5 @@ +require: +- fontforge +test: bash ./run_tests.sh +framework: shell + diff --git a/tests/scripts/run_tests.sh b/tests/run_tests.sh old mode 100644 new mode 100755 similarity index 100% rename from tests/scripts/run_tests.sh rename to tests/run_tests.sh diff --git a/tests/runtests.sh b/tests/runtests.sh new file mode 100755 index 0000000..a94d8f5 --- /dev/null +++ b/tests/runtests.sh @@ -0,0 +1,47 @@ +#!/bin/bash +. /usr/share/beakerlib/beakerlib.sh || exit 1 + +NAME=fontforge + +rlJournalStart + rlPhaseStartSetup + rlAssertRpm ${NAME} + rlAssertRpm ${NAME}-devel + rlShowPackageVersion ${NAME} + rlRun -t -l "VERSION=$(rpm -q ${NAME} --queryformat='%{version}')" 0 "Get VERSION" + FEDORA_VERSION=$(rlGetDistroRelease) + rlLog "FEDORA_VERSION=${DISTRO_RELEASE}" + rlRun "tmp=\$(mktemp -d)" 0 "Create tmp directory" + rlRun "pushd $tmp" + rlFetchSrcForInstalled "${NAME}" + rlRun "rpm --define '_topdir $tmp' -i *src.rpm" + rlRun -t -l "mkdir BUILD" 0 "Creating BUILD directory" + rlRun -t -l "rpmbuild --noclean --nodeps --define '_topdir $tmp' -bp $tmp/SPECS/*spec" + if [ -d BUILD/${NAME}-${VERSION}-build ]; then + rlRun -t -l "pushd BUILD/${NAME}-${VERSION}-build/${NAME}-${VERSION}" + else + rlRun -t -l "pushd BUILD/${NAME}-${VERSION}" + fi + rlRun "set -o pipefail" + rlRun "NOCONFIGURE=1 ./autogen.sh" + rlRun "./configure --disable-static --with-graphite2 --with-gobject --enable-introspection" + rlRun "make check" + rlRun "retval=$?" + rlRun "echo $retval" + rlPhaseEnd + + rlPhaseStartTest + rlRun -t -l "INSTALLED_VERSION=$(hb-info --version|awk 'NR==1 {print $3}')" \ + 0 "Get installed version" + rlAssertEquals "versions should be equal" "${VERSION}" "${INSTALLED_VERSION}" + rlGetTestState + rlLog "Number of failed asserts so far: ${ECODE}" + rlRun "popd" 0 + rlPhaseEnd + + rlPhaseStartCleanup + rlRun "popd" + rlRun "rm -r $tmp" 0 "Remove tmp directory" + rlPhaseEnd +rlJournalEnd + diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index aaf3946..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,9 +0,0 @@ -- hosts: localhost - roles: - - role: standard-test-basic - tags: - - classic - tests: - - simple: - dir: scripts/ - run: ./run_tests.sh From 24f3eadd43b4123ba5b9da0514b0e4cde1930602 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Thu, 17 Jul 2025 21:49:13 +0530 Subject: [PATCH 4/9] Update for https://fedoraproject.org/wiki/Changes/CMake_ninja_default (rh#2381004) --- fontforge.spec | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/fontforge.spec b/fontforge.spec index 9a43418..9d8b33b 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -2,7 +2,7 @@ Name: fontforge Version: 20230101 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later @@ -107,9 +107,7 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml %find_lang %{gettext_package} %check -pushd %{__cmake_builddir} -make check -popd +%ctest %files -f %{gettext_package}.lang %doc AUTHORS @@ -132,6 +130,9 @@ popd %doc %{_pkgdocdir} %changelog +* Thu Jul 17 2025 Parag Nemade - 20230101-17 +- Update for https://fedoraproject.org/wiki/Changes/CMake_ninja_default (rh#2381004) + * Tue Jun 03 2025 Python Maint - 20230101-16 - Rebuilt for Python 3.14 From c75fc2832363562d9c1a718ddc107b8f7a6acfd8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 20:41:11 +0000 Subject: [PATCH 5/9] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- fontforge.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fontforge.spec b/fontforge.spec index 9d8b33b..335a34e 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -2,7 +2,7 @@ Name: fontforge Version: 20230101 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later @@ -130,6 +130,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml %doc %{_pkgdocdir} %changelog +* Wed Jul 23 2025 Fedora Release Engineering - 20230101-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Thu Jul 17 2025 Parag Nemade - 20230101-17 - Update for https://fedoraproject.org/wiki/Changes/CMake_ninja_default (rh#2381004) From 7f20c24b80e5256095e94fb1b55afbafebef5d73 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Fri, 10 Oct 2025 13:37:13 +0530 Subject: [PATCH 6/9] Update to 20251009 version (#2402960) --- .gitignore | 1 + fontforge.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 03adcba..c15e946 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ fontforge_full-20100501.tar.bz2 /fontforge-20200314.tar.gz /fontforge-20201107.tar.gz /fontforge-20230101.tar.gz +/fontforge-20251009.tar.gz diff --git a/fontforge.spec b/fontforge.spec index 335a34e..828305d 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -1,8 +1,8 @@ %global gettext_package FontForge Name: fontforge -Version: 20230101 -Release: 18%{?dist} +Version: 20251009 +Release: 1%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later @@ -130,6 +130,9 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml %doc %{_pkgdocdir} %changelog +* Fri Oct 10 2025 Parag Nemade - 20251009-1 +- Update to 20251009 version (#2402960) + * Wed Jul 23 2025 Fedora Release Engineering - 20230101-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild diff --git a/sources b/sources index b0ab3ee..3c609cb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (fontforge-20230101.tar.gz) = 67c21f7e55a78097ef7d7d9abac3add2017400015a6a9dfd56674d933bdba963cb6c4e631ae066026fe1862298d60dd968dec61a9bbee7253dd2f7d105655178 +SHA512 (fontforge-20251009.tar.gz) = 2923c54e10585551c93102d8b7a389c9de3c629c1676fc8c576c9b9c3f1f6fe28f7a1e39fd5a57ab7eeadf0b17d722bf439ca94f0a788ceab6993e1a93ea7d5f From 5e74208b9fc3996a6cb1c3bdcd1b0aa35e24908f Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Fri, 10 Oct 2025 17:44:14 +0530 Subject: [PATCH 7/9] Remove upstreamed patches and add new BR: gtkmm3.0-devel --- fontforge.spec | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/fontforge.spec b/fontforge.spec index 828305d..846dfdd 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -8,12 +8,6 @@ Summary: Outline and bitmap font editor License: GPL-3.0-or-later URL: http://fontforge.github.io/ Source0: https://github.com/fontforge/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz -# Fix translations with gettext-0.22, https://github.com/fontforge/fontforge/pull/5257 -Patch0: 0001-Fix-errors-in-French-and-Italian-translations.patch -# https://github.com/fontforge/fontforge/pull/5367 -# Fixes CVE-2024-25081 and CVE-2024-25082 -Patch1: https://patch-diff.githubusercontent.com/raw/fontforge/fontforge/pull/5367.patch#/Fix_Splinefont_shell_invocation.patch -Patch2: pyconfig.patch Requires: xdg-utils Requires: (autotrace or potrace) @@ -44,6 +38,8 @@ BuildRequires: shared-mime-info BuildRequires: gtk3-devel BuildRequires: python3-sphinx BuildRequires: make +# 20151009 version requires below +BuildRequires: gtkmm3.0-devel %py_provides python3-fontforge %py_provides python3-psMat @@ -72,14 +68,7 @@ This package contains documentation files for %{name}. %prep -%setup -q -%patch -P 0 -p1 -%patch -P 1 -p1 -%patch -P 2 -p0 - -# Remove tests that requires Internet access -sed -i '45d;82d;101d;127d' tests/CMakeLists.txt - +%autosetup %build export CFLAGS="%{optflags} -fno-strict-aliasing" @@ -132,6 +121,8 @@ appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/*.appdata.xml %changelog * Fri Oct 10 2025 Parag Nemade - 20251009-1 - Update to 20251009 version (#2402960) +- Remove upstream released patches +- Add new BR: gtkmm3.0-devel * Wed Jul 23 2025 Fedora Release Engineering - 20230101-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 2a40f2facfce399ab209134f0c7a90b4e902aff1 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Mon, 27 Oct 2025 11:59:24 +0530 Subject: [PATCH 8/9] Resolves: CVE-2025-50949 and CVE-2025-50951 --- fix_memleak_in_function_DlgCreate8-5491.patch | 31 +++++++++++++++++++ ...eak_in_function_utf7toutf8_copy-5495.patch | 21 +++++++++++++ fontforge.spec | 9 +++++- 3 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 fix_memleak_in_function_DlgCreate8-5491.patch create mode 100644 fix_memleak_in_function_utf7toutf8_copy-5495.patch diff --git a/fix_memleak_in_function_DlgCreate8-5491.patch b/fix_memleak_in_function_DlgCreate8-5491.patch new file mode 100644 index 0000000..9af06f8 --- /dev/null +++ b/fix_memleak_in_function_DlgCreate8-5491.patch @@ -0,0 +1,31 @@ +From 701e4d7569d6bd777704ab3364d7d1c519d89a91 Mon Sep 17 00:00:00 2001 +From: zhailiangliang +Date: Mon, 4 Nov 2024 08:56:07 +0000 +Subject: [PATCH] fix memleak in function DlgCreate8 + +--- + gdraw/gaskdlg.c | 9 +++++---- + 1 file changed, 5 insertions(+), 4 deletions(-) + +diff --git a/gdraw/gaskdlg.c b/gdraw/gaskdlg.c +index 3563361796..8178be14c8 100644 +--- a/gdraw/gaskdlg.c ++++ b/gdraw/gaskdlg.c +@@ -209,12 +209,13 @@ static GWindow DlgCreate8(const char *title,const char *question,va_list ap, + extern GBox _GGadget_defaultbutton_box; + + if ( d!=NULL ) +- memset(d,0,sizeof(*d)); ++ memset(d,0,sizeof(*d)); + buf = vsmprintf(question, ap); + if ( screen_display==NULL ) { +- fprintf(stderr, "%s\n", buf ); +- if ( d!=NULL ) d->done = true; +-return( NULL ); ++ fprintf(stderr, "%s\n", buf); ++ if ( d!=NULL ) d->done = true; ++ free(buf); ++ return( NULL ); + } + ubuf = utf82u_copy(buf); + free(buf); diff --git a/fix_memleak_in_function_utf7toutf8_copy-5495.patch b/fix_memleak_in_function_utf7toutf8_copy-5495.patch new file mode 100644 index 0000000..90493c2 --- /dev/null +++ b/fix_memleak_in_function_utf7toutf8_copy-5495.patch @@ -0,0 +1,21 @@ +From 68c3802c1492c85cea35a2dcaeaada85cbb23c6f Mon Sep 17 00:00:00 2001 +From: zhailiangliang +Date: Wed, 13 Nov 2024 03:28:52 +0000 +Subject: [PATCH] fix memleak in function utf7toutf8_copy + +--- + fontforge/sfd.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/fontforge/sfd.c b/fontforge/sfd.c +index 4a38be915f..00ee231a34 100644 +--- a/fontforge/sfd.c ++++ b/fontforge/sfd.c +@@ -449,6 +449,7 @@ return( NULL ); + + ucs2_str = (unichar_t *) malloc((strlen(_str)+1)*sizeof(unichar_t)); + utf162u_strcpy(ucs2_str, utf16buf); ++ free(utf16buf); + utf8_buf = u2utf8_copy(ucs2_str); /* Convert from ucs2 to utf8 */ + free(ucs2_str); + diff --git a/fontforge.spec b/fontforge.spec index 7dd5d58..c046a50 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -2,7 +2,7 @@ Name: fontforge Version: 20230101 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later @@ -14,6 +14,10 @@ Patch0: 0001-Fix-errors-in-French-and-Italian-translations.patch # Fixes CVE-2024-25081 and CVE-2024-25082 Patch1: https://patch-diff.githubusercontent.com/raw/fontforge/fontforge/pull/5367.patch#/Fix_Splinefont_shell_invocation.patch Patch2: pyconfig.patch +# https://github.com/fontforge/fontforge/pull/5491 +Patch3: fix_memleak_in_function_DlgCreate8-5491.patch +# https://github.com/fontforge/fontforge/pull/5495 +Patch4: fix_memleak_in_function_utf7toutf8_copy-5495.patch Requires: xdg-utils Requires: (autotrace or potrace) @@ -132,6 +136,9 @@ popd %doc %{_pkgdocdir} %changelog +* Mon Oct 27 2025 Parag Nemade - 20230101-15 +- Resolves: CVE-2025-50949 and CVE-2025-50951 + * Wed Jul 17 2024 Fedora Release Engineering - 20230101-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 47a3aa2ea3807557193ceda00d56b3ce330b6621 Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Tue, 28 Oct 2025 13:31:49 +0530 Subject: [PATCH 9/9] Move to use %autosetup macro so that we will not forget to apply patches --- ...eak_in_function_utf7toutf8_copy-5495.patch | 21 ------------------- fontforge.spec | 14 ++++++------- pyconfig.patch | 8 +++---- 3 files changed, 10 insertions(+), 33 deletions(-) delete mode 100644 fix_memleak_in_function_utf7toutf8_copy-5495.patch diff --git a/fix_memleak_in_function_utf7toutf8_copy-5495.patch b/fix_memleak_in_function_utf7toutf8_copy-5495.patch deleted file mode 100644 index 90493c2..0000000 --- a/fix_memleak_in_function_utf7toutf8_copy-5495.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 68c3802c1492c85cea35a2dcaeaada85cbb23c6f Mon Sep 17 00:00:00 2001 -From: zhailiangliang -Date: Wed, 13 Nov 2024 03:28:52 +0000 -Subject: [PATCH] fix memleak in function utf7toutf8_copy - ---- - fontforge/sfd.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/fontforge/sfd.c b/fontforge/sfd.c -index 4a38be915f..00ee231a34 100644 ---- a/fontforge/sfd.c -+++ b/fontforge/sfd.c -@@ -449,6 +449,7 @@ return( NULL ); - - ucs2_str = (unichar_t *) malloc((strlen(_str)+1)*sizeof(unichar_t)); - utf162u_strcpy(ucs2_str, utf16buf); -+ free(utf16buf); - utf8_buf = u2utf8_copy(ucs2_str); /* Convert from ucs2 to utf8 */ - free(ucs2_str); - diff --git a/fontforge.spec b/fontforge.spec index c046a50..2696d40 100644 --- a/fontforge.spec +++ b/fontforge.spec @@ -2,7 +2,7 @@ Name: fontforge Version: 20230101 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later @@ -16,8 +16,6 @@ Patch1: https://patch-diff.githubusercontent.com/raw/fontforge/fontforge Patch2: pyconfig.patch # https://github.com/fontforge/fontforge/pull/5491 Patch3: fix_memleak_in_function_DlgCreate8-5491.patch -# https://github.com/fontforge/fontforge/pull/5495 -Patch4: fix_memleak_in_function_utf7toutf8_copy-5495.patch Requires: xdg-utils Requires: (autotrace or potrace) @@ -76,10 +74,7 @@ This package contains documentation files for %{name}. %prep -%setup -q -%patch -P 0 -p1 -%patch -P 1 -p1 -%patch -P 2 -p0 +%autosetup -p1 # Remove tests that requires Internet access sed -i '45d;82d;101d;127d' tests/CMakeLists.txt @@ -136,8 +131,11 @@ popd %doc %{_pkgdocdir} %changelog +* Tue Oct 28 2025 Parag Nemade - 20230101-16 +- Move to use %%autosetup macro so that we will not forget to apply patches + * Mon Oct 27 2025 Parag Nemade - 20230101-15 -- Resolves: CVE-2025-50949 and CVE-2025-50951 +- Resolves: CVE-2025-50949 * Wed Jul 17 2024 Fedora Release Engineering - 20230101-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/pyconfig.patch b/pyconfig.patch index cfd90f4..628902e 100644 --- a/pyconfig.patch +++ b/pyconfig.patch @@ -1,5 +1,5 @@ ---- pycontrib/FontCompare/setup.py~ 2022-12-31 23:25:21.000000000 -0600 -+++ pycontrib/FontCompare/setup.py 2024-06-14 15:14:14.119920623 -0500 +--- fontforge/pycontrib/FontCompare/setup.py~ 2022-12-31 23:25:21.000000000 -0600 ++++ fontforge/pycontrib/FontCompare/setup.py 2024-06-14 15:14:14.119920623 -0500 @@ -15,7 +15,6 @@ along with this program. If not, see . """ @@ -8,8 +8,8 @@ from setuptools import setup setup(name='Font Compare', version='1.0', ---- fontforge/python.c~ 2022-12-31 23:25:21.000000000 -0600 -+++ fontforge/python.c 2024-06-14 15:38:41.397897757 -0500 +--- fontforge/fontforge/python.c~ 2022-12-31 23:25:21.000000000 -0600 ++++ fontforge/fontforge/python.c 2024-06-14 15:38:41.397897757 -0500 @@ -19633,7 +19633,10 @@ if ( saved_progname ) free(saved_progname);