From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 46/48] python3-flit:Modify lfs to work with python-3.10.8 Date: Wed, 09 Nov 2022 19:57:32 +0100 Message-ID: <20221109185734.3920-46-adolf.belka@ipfire.org> In-Reply-To: <20221109185734.3920-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0424500230922262110==" List-Id: --===============0424500230922262110== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - The change to python-3.10.8 caused the rootfile to have temp build files fr= om /root/.cache to be included in it. Added commands to remove these temp build files so t= hey were not included to the rootfile. Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- lfs/python3-flit | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lfs/python3-flit b/lfs/python3-flit index 36cd59596..c5c28a903 100644 --- a/lfs/python3-flit +++ b/lfs/python3-flit @@ -24,6 +24,8 @@ =20 include Config =20 +SUMMARY =3D Simple way to put Python packages and modules on PyPI + VER =3D 3.7.1 =20 THISAPP =3D flit-$(VER) @@ -31,8 +33,12 @@ DL_FILE =3D $(THISAPP).tar.gz DL_FROM =3D $(URL_IPFIRE) DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP) + PROG =3D python3-flit -PAK_VER =3D 2 +PAK_VER =3D 3 +DEPS =3D + +SERVICES =3D =20 ############################################################################= ### # Top-level Rules @@ -79,5 +85,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && PYTHONPATH=3Dflit_core python3 -m flit build --format wheel cd $(DIR_APP)/flit_core && PIP_CONFIG_FILE=3D/dev/null pip3 install --isola= ted \ --root=3D"/" --ignore-installed --no-deps dist/*.whl + =09 + # remove temp build files in /root/.cache from rootfile + cd $(DIR_APP) && rm -R /root/.cache/ +=09 @rm -rf $(DIR_APP) @$(POSTBUILD) --=20 2.38.1 --===============0424500230922262110==--