commit openscad for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package openscad for openSUSE:Factory checked in at 2024-06-03 17:40:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openscad (Old) and /work/SRC/openSUSE:Factory/.openscad.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "openscad" Mon Jun 3 17:40:47 2024 rev:13 rq:1177828 version:2021.01 Changes: -------- --- /work/SRC/openSUSE:Factory/openscad/openscad.changes 2022-07-05 12:10:27.984641719 +0200 +++ /work/SRC/openSUSE:Factory/.openscad.new.24587/openscad.changes 2024-06-03 17:40:48.809151699 +0200 @@ -1,0 +2,6 @@ +Mon May 27 11:42:51 UTC 2024 - George <georgewoodall82@gmail.com> + +- Add patch to fix is_regular is not a member of fs + + fix_fs_error.patch + +------------------------------------------------------------------- New: ---- fix_fs_error.patch BETA DEBUG BEGIN: New:- Add patch to fix is_regular is not a member of fs + fix_fs_error.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openscad.spec ++++++ --- /var/tmp/diff_new_pack.Hdy1yO/_old 2024-06-03 17:40:49.777187218 +0200 +++ /var/tmp/diff_new_pack.Hdy1yO/_new 2024-06-03 17:40:49.777187218 +0200 @@ -1,7 +1,7 @@ # # spec file for package openscad # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,6 +29,7 @@ Patch2: CVE-2022-0497.patch Patch3: fix_build_with_cgal-5.4.patch Patch4: fix_build_issue_with_overloaded_join.patch +Patch5: fix_fs_error.patch BuildRequires: bison BuildRequires: double-conversion-devel BuildRequires: flex ++++++ fix_fs_error.patch ++++++ diff '--color=auto' -Naur openscad-2021.01.orig/src/FileModule.cc openscad-2021.01/src/FileModule.cc --- openscad-2021.01.orig/src/FileModule.cc 2024-05-27 11:57:04.154249159 +0100 +++ openscad-2021.01/src/FileModule.cc 2024-05-27 11:52:36.324609857 +0100 @@ -65,7 +65,7 @@ auto ext = fs::path(path).extension().generic_string(); if (boost::iequals(ext, ".otf") || boost::iequals(ext, ".ttf")) { - if (fs::is_regular(path)) { + if (fs::is_regular_file(path)) { FontCache::instance()->register_font_file(path); } else { LOG(message_group::Error,Location::NONE,"","Can't read font with path '%1$s'",path);
participants (1)
-
Source-Sync