https://bugzilla.redhat.com/show_bug.cgi?id=1835876 Sandro Mani <manisandro@xxxxxxxxx> changed: What |Removed |Added ---------------------------------------------------------------------------- Flags|fedora-review? |fedora-review+ --- Comment #6 from Sandro Mani <manisandro@xxxxxxxxx> --- > License: LGPLv2+ with exceptions Consider adding a comment (like the following from the native package) # see COPYING (or http://www.fltk.org/COPYING.php ) for exceptions details > Patch0: mingw-fltk-cmake.patch It's good practice to add a minimal comment as to the purpose of the patch. > {?mingw_debug_package} Typo, should be %{?mingw_debug_package} > %exclude %{mingw32_bindir}/lib*.dll.debug > %exclude %{mingw32_datadir}/man/* The debug exclude shouldn't isn't necessary. The man pages you'll probably want to explicitly remove them in %install. Rest is good. Please fix at least the debug typo when importing. Approved. (General mingw remark: I typically try to patch the buildsystem to output versioned dlls, i.e. in this case something like diff -rupN fltk-1.3.5/CMake/macros.cmake fltk-1.3.5-new/CMake/macros.cmake --- fltk-1.3.5/CMake/macros.cmake 2019-03-03 09:40:23.000000000 +0100 +++ fltk-1.3.5-new/CMake/macros.cmake 2020-05-22 20:31:04.755781310 +0200 @@ -51,6 +51,9 @@ macro(FL_ADD_LIBRARY LIBNAME LIBTYPE LIB SOVERSION ${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR} PREFIX "lib" # for MSVC static/shared coexistence ) + if(MINGW) + set_target_properties(${LIBRARY_NAME} PROPERTIES SUFFIX "-${FLTK_VERSION_MAJOR}${CMAKE_SHARED_LIBRARY_SUFFIX}") + endif(MINGW) endif (${LIBTYPE} STREQUAL "SHARED") if (MSVC) but up to you) -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- package-review@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to package-review-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/package-review@xxxxxxxxxxxxxxxxxxxxxxx