- Updated from version 0.12.0 to 0.13.0 - Update of rootfile - No Changelog available in the source tarball or pypi or the github repository
Tested-by: Adolf Belka adolf.belka@ipfire.org Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/python3-pep517 | 8 ++++++-- lfs/python3-pep517 | 8 ++++---- 2 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/config/rootfiles/common/python3-pep517 b/config/rootfiles/common/python3-pep517 index 4adfa7137..101368045 100644 --- a/config/rootfiles/common/python3-pep517 +++ b/config/rootfiles/common/python3-pep517 @@ -1,10 +1,14 @@ #usr/lib/python3.10/site-packages/pep517 -#usr/lib/python3.10/site-packages/pep517-0.12.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/pep517-0.13.0-py3.10.egg-info +#usr/lib/python3.10/site-packages/pep517-0.13.0-py3.10.egg-info/PKG-INFO +#usr/lib/python3.10/site-packages/pep517-0.13.0-py3.10.egg-info/SOURCES.txt +#usr/lib/python3.10/site-packages/pep517-0.13.0-py3.10.egg-info/dependency_links.txt +#usr/lib/python3.10/site-packages/pep517-0.13.0-py3.10.egg-info/top_level.txt #usr/lib/python3.10/site-packages/pep517/__init__.py +#usr/lib/python3.10/site-packages/pep517/_compat.py #usr/lib/python3.10/site-packages/pep517/build.py #usr/lib/python3.10/site-packages/pep517/check.py #usr/lib/python3.10/site-packages/pep517/colorlog.py -#usr/lib/python3.10/site-packages/pep517/compat.py #usr/lib/python3.10/site-packages/pep517/dirtools.py #usr/lib/python3.10/site-packages/pep517/envbuild.py #usr/lib/python3.10/site-packages/pep517/in_process diff --git a/lfs/python3-pep517 b/lfs/python3-pep517 index 34ad631f6..8c66d9b26 100644 --- a/lfs/python3-pep517 +++ b/lfs/python3-pep517 @@ -24,7 +24,7 @@
include Config
-VER = 0.12.0 +VER = 0.13.0
THISAPP = pep517-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 41d9ed4d0c7012d6d9cbea68251d33ad418bf083fc17400071bd0eb0650b585979d3e2b2ea531b123913063e788c230c5994657edd4e44f63aa568ed2e313117 +$(DL_FILE)_BLAKE2 = a61fb94645b2eeaab228b47dbb5b249454eafe5f0db3eac46af059aa9c6ffc323dd8dd9104bb0a97e07ec7e13c03a7968e0aa8faf85dd0773bfb55e392f8d825
install : $(TARGET)
@@ -73,7 +73,7 @@ $(subst %,%_BLAKE2,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && python3 setup.py build - cd $(DIR_APP) && python3 setup.py install --root=/ + cd $(DIR_APP) && python3 -m pyproject2setuppy.main build + cd $(DIR_APP) && python3 -m pyproject2setuppy.main install --root=/ @rm -rf $(DIR_APP) @$(POSTBUILD)