From aec8eff48b943e6a543898b5faf2b51bdb0de708 Mon Sep 17 00:00:00 2001 From: Matthew Wigley Date: Sat, 14 Dec 2024 21:10:05 +1300 Subject: [PATCH] bugid-11423: Remove references to no-longer-existing python-lockfile package Fixes https://gitlab.com/inkscape/inbox/-/issues/11423 - Building inscape fails on Windows due unavailable python-lockfile package --- CMakeScripts/InstallMSYS2.cmake | 2 +- buildtools/msys2installdeps.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeScripts/InstallMSYS2.cmake b/CMakeScripts/InstallMSYS2.cmake index 8191e2b71f..e67cc0cf7d 100644 --- a/CMakeScripts/InstallMSYS2.cmake +++ b/CMakeScripts/InstallMSYS2.cmake @@ -352,7 +352,7 @@ if(WIN32) # Python packages for the extensions manager, and clipart importer extensions set(packages - "python-appdirs" "python-msgpack" "python-lockfile" "python-cachecontrol" + "python-appdirs" "python-msgpack" "python-cachecontrol" "python-idna" "python-urllib3" "python-chardet" "python-certifi" "python-requests" "python-beautifulsoup4" "python-filelock") foreach(package ${packages}) list_files_pacman(${package} paths) diff --git a/buildtools/msys2installdeps.sh b/buildtools/msys2installdeps.sh index 09ef206df2..02b06e8bf5 100644 --- a/buildtools/msys2installdeps.sh +++ b/buildtools/msys2installdeps.sh @@ -104,7 +104,6 @@ $ARCH-python-appdirs \ $ARCH-python-beautifulsoup4 \ $ARCH-python-filelock \ $ARCH-python-msgpack \ -$ARCH-python-lockfile \ $ARCH-python-cachecontrol \ $ARCH-python-idna \ $ARCH-python-urllib3 \ -- GitLab