]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/python3-pep517
shadow: Update to version 4.14.5
[people/pmueller/ipfire-2.x.git] / lfs / python3-pep517
index eb8a211d828df6e86533698b9faff32288bc2ebf..8c66d9b26b0a6ab695393017a96c53ad4f3bc670 100644 (file)
@@ -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)_MD5 = 7ed0adb5f737c316e071d48d66329a5d
+$(DL_FILE)_BLAKE2 = a61fb94645b2eeaab228b47dbb5b249454eafe5f0db3eac46af059aa9c6ffc323dd8dd9104bb0a97e07ec7e13c03a7968e0aa8faf85dd0773bfb55e392f8d825
 
 install : $(TARGET)
 
@@ -48,13 +48,13 @@ check : $(patsubst %,$(DIR_CHK)/%,$(objects))
 
 download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
-md5 : $(subst %,%_MD5,$(objects))
+b2 : $(subst %,%_BLAKE2,$(objects))
 
 dist: 
        @$(PAK)
 
 ###############################################################################
-# Downloading, checking, md5sum
+# Downloading, checking, b2sum
 ###############################################################################
 
 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
@@ -63,8 +63,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) :
 $(patsubst %,$(DIR_DL)/%,$(objects)) :
        @$(LOAD)
 
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
+$(subst %,%_BLAKE2,$(objects)) :
+       @$(B2SUM)
 
 ###############################################################################
 # Installation Details
@@ -73,7 +73,7 @@ $(subst %,%_MD5,$(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)