From dbcda05bc203ef69db4a1e40fdaaf2470e8db32c Mon Sep 17 00:00:00 2001 From: Filippo Cremonese Date: Tue, 17 Aug 2021 10:26:10 +0200 Subject: [PATCH] Fix xcbproto build error with python3.9 A version bump is required to fix a build error in xcb libraries due to them importing gcd from the fractions module, which was deprecated in python 3.5 and removed in python 3.9. --- .orchestra/config/components/ui/libX.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.orchestra/config/components/ui/libX.yml b/.orchestra/config/components/ui/libX.yml index 2deb5291..649d8218 100644 --- a/.orchestra/config/components/ui/libX.yml +++ b/.orchestra/config/components/ui/libX.yml @@ -5,7 +5,7 @@ #@ load("/lib/create_component.lib.yml", "single_build_component") #@ load("/lib/make.lib.yml", "make") -#@ xcb_proto_source_url = "https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-1.14.tar.gz" +#@ xcb_proto_source_url = "https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-1.14.1.tar.gz" #@ libxcb_source_url = "https://xorg.freedesktop.org/archive/individual/lib/libxcb-1.14.tar.gz" #@ libx11_source_url = "https://www.x.org/releases/individual/lib/libX11-1.6.12.tar.gz" #@ xtrans_source_url = "https://xorg.freedesktop.org/releases/individual/lib/xtrans-1.4.0.tar.bz2"