Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: Makefile
===================================================================
--- Makefile	(.../65.5.0)	(revision 449)
+++ Makefile	(.../75.8.0)	(revision 450)
@@ -67,7 +67,7 @@
 PYTHON3_VERSION = 3.12
 
 
-version            = 65.5.0
+version            = 75.8.0
 tar_gz_archive     = $(SRC_PACKAGE_PATH)/packages/d/python-modules/setuptools/setuptools-$(version).tar.gz
 SRC_ARCHIVE        = $(tar_gz_archive)
 SRC_DIR            = $(TARGET_BUILD_DIR)/setuptools-$(version)
@@ -89,7 +89,7 @@
 # *PKG_NAME & *PKG_VERSION shouldn't be a reference to value.
 #
 SETUPTOOLS3_PKG_NAME                = setuptools3
-SETUPTOOLS3_PKG_VERSION             = 65.5.0
+SETUPTOOLS3_PKG_VERSION             = 75.8.0
 SETUPTOOLS3_PKG_ARCH                = $(PKGARCH)
 SETUPTOOLS3_PKG_DISTRO_NAME         = $(DISTRO_NAME)
 SETUPTOOLS3_PKG_DISTRO_VERSION      = $(DISTRO_VERSION)
@@ -146,7 +146,6 @@
 	 )
 	@touch $@
 
-
 $(install_target): $(build_target)
 	@mkdir -p $(SETUPTOOLS3_PKG)
 	@( cd $(SRC_DIR) ; \
@@ -168,10 +167,10 @@
 	         $(SETUPTOOLS3_PKG)/usr/share/doc/$(doc_dir_name) ; \
 	 )
 	@( cd $(SRC_DIR) ; \
-	   if [ -r CHANGES.rst ]; then \
+	   if [ -r NEWS.rst ]; then \
 	     DOCSDIR=`echo $(SETUPTOOLS3_PKG)/usr/share/doc/$(doc_dir_name)` ; \
-	     cat CHANGES.rst | head -n 1000 > $$DOCSDIR/CHANGES.rst ; \
-	     touch -r CHANGES.rst $$DOCSDIR/CHANGES.rst ; \
+	     cat NEWS.rst | head -n 1000 > $$DOCSDIR/NEWS.rst ; \
+	     touch -r NEWS.rst $$DOCSDIR/NEWS.rst ; \
 	   fi \
 	 )
 	# ======= Install the same to $(TARGET_DEST_DIR) =======