From patchwork Wed Nov 9 18:56:50 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 6080 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4N6vPJ2RZfz3wgZ for ; Wed, 9 Nov 2022 18:58:12 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4N6vPB2XKdz2qR; Wed, 9 Nov 2022 18:58:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4N6vP93h1Yz30BP; Wed, 9 Nov 2022 18:58:05 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4N6vP74dWcz2ylT for ; Wed, 9 Nov 2022 18:58:03 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4N6vP731s3z7C; Wed, 9 Nov 2022 18:58:03 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1668020283; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=x96f4f8FPYYoSsNs+hPpzo9lYiSEME3yNMG0gtSqIkQ=; b=xhpFYaG+YeO8kGIRjPthw6YMqzH21bxAarlkxkU5ZXV42JMcQ5SNfXM9pVNuExSy8be7ll XKVxfsFUDe9IR2Bw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1668020283; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=x96f4f8FPYYoSsNs+hPpzo9lYiSEME3yNMG0gtSqIkQ=; b=RvfO3BZGNX2tCr5n7lLhFh7QfyB3o9rcmniRvDSL/sdeQ2zbU1kprhFlQUTnOQT2POVwjI 7uOJu8Abs+GZA47EANA0KMCmDWFWXTM+tmkpOvp9/3UMCaisBTny2MG+FhXBzEjAIwflHC hNVV0X5u+lkor63RRlVAqjjgg98STn5QtdQsCLGYtpUP68pJFK+3md7tlZYgcRmdX7KzS9 jH0TRQq94504WU3pqXnKGf3gbVv7Xxddf1+Y1lKNhS3vWbxwJ2dkZk57UKmu7zFsrjxcDH jrdA2ZcKvK/fTEyIpvr3VviSVlhV96zwbqwn86enOH4Y1O5KrY0oS9TpUbRitA== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 04/48] python3-build: Update to version 0.8.0 and to work with python-3.10.8 Date: Wed, 9 Nov 2022 19:56:50 +0100 Message-Id: <20221109185734.3920-4-adolf.belka@ipfire.org> In-Reply-To: <20221109185734.3920-1-adolf.belka@ipfire.org> References: <20221109185734.3920-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Updated from version 0.7.0 to 0.8.0 - Update of rootfile - Changelog 0.8.0 (2022-05-22) Accept os.PathLike[str] in addition to str for paths in public API (PR #392, Fixes #372) Add schema validation for build-system table to check conformity with PEP 517 and PEP 518 (PR #365, Fixes #364) Better support for Python 3.11 (sysconfig schemes PR #434, PR #463, tomllib PR #443, warnings PR #420) Improved error printouts (PR #442) Avoid importing packaging unless needed (PR #395, Fixes #393) Breaking Changes Failure to create a virtual environment in the build.env module now raises build.FailedProcessError (PR #442) - As far as I can tell IPFire does not use the build.env module and the built iso installed successfully Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- config/rootfiles/common/python3-build | 14 +++++++------- lfs/python3-build | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/rootfiles/common/python3-build b/config/rootfiles/common/python3-build index 61431ada5..f1fff8c5e 100644 --- a/config/rootfiles/common/python3-build +++ b/config/rootfiles/common/python3-build @@ -1,12 +1,12 @@ #usr/bin/pyproject-build #usr/lib/python3.10/site-packages/build -#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info -#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/PKG-INFO -#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/SOURCES.txt -#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/dependency_links.txt -#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/entry_points.txt -#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/requires.txt -#usr/lib/python3.10/site-packages/build-0.7.0-py3.10.egg-info/top_level.txt +#usr/lib/python3.10/site-packages/build-0.8.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/build-0.8.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/build-0.8.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/build-0.8.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/build-0.8.0-py3.10.egg-info/entry_points.txt +#usr/lib/python3.10/site-packages/build-0.8.0-py3.10.egg-info/requires.txt +#usr/lib/python3.10/site-packages/build-0.8.0-py3.10.egg-info/top_level.txt #usr/lib/python3.10/site-packages/build/__init__.py #usr/lib/python3.10/site-packages/build/__main__.py #usr/lib/python3.10/site-packages/build/env.py diff --git a/lfs/python3-build b/lfs/python3-build index 3a88000e3..03967f773 100644 --- a/lfs/python3-build +++ b/lfs/python3-build @@ -24,7 +24,7 @@ include Config -VER = 0.7.0 +VER = 0.8.0 THISAPP = build-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = b06ba16c154087046bd5efddb5fd6f60dad9ee79a204a0c1124fb4885d3692bcf4bd88b75c9665ade3f8457e12742d32e3cef40a0ffb5a894b049a6e942c09e3 +$(DL_FILE)_BLAKE2 = 96cbee3864ce02139d9927353bdfe70e667f41336d1685d837ef3c10894f44eceb4d2415f81f9376697640e39eb38fd9ffa4205f1f5f894b812d7f3ce6d55398 install : $(TARGET)