Index: build-system-1.11.x/3pp/app/python2-modules/pip/20.3/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python2-modules/pip/20.3/Makefile (revision 45)
+++ build-system-1.11.x/3pp/app/python2-modules/pip/20.3/Makefile (revision 46)
@@ -48,7 +48,7 @@
)
@echo -e "\n======= Install Python2 M2Crypto package =======\n"
@( cd $(BUILDSYSTEM)/usr/bin ; \
- ./pip2.7 install M2Crypto==0.38.0 ; \
+ ./pip2.7 install M2Crypto==0.42.0 ; \
)
@echo -e "\n======= Setup PIP2 build-system variable =======\n"
@mkdir -p $(BUILDSYSTEM)/sbin && \
Index: build-system-1.11.x/3pp/app/python3/3.10.8/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3/3.10.8/Makefile (revision 45)
+++ build-system-1.11.x/3pp/app/python3/3.10.8/Makefile (nonexistent)
@@ -1,114 +0,0 @@
-
-COMPONENT_TARGETS = $(HARDWARE_BUILD)
-
-include ../../../../../build-system/constants.mk
-
-SOURCE_REQUIRES = build-system/3pp/sources/packages/python3
-
-REQUIRES = build-system/3pp/app/python2-modules/pip/20.3
-
-# ======= __END_OF_REQUIRES__ =======
-
-version = 3.10.8
-tar_xz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python3/Python-$(version).tar.xz
-SRC_ARCHIVE = $(tar_xz_archive)
-SRC_DIR = $(TARGET_BUILD_DIR)/Python-$(version)
-src_done = $(TARGET_BUILD_DIR)/.source-done
-
-PATCHES = PATCHES
-
-build_target = $(TARGET_BUILD_DIR)/.built
-install_target = $(TARGET_BUILD_DIR)/.installed
-
-BUILD_TARGETS = $(build_target)
-BUILD_TARGETS += $(install_target)
-
-
-include ../../../../../build-system/core.mk
-
-
-LDFLAGS += -Wl,-rpath,$(BUILDSYSTEM)/usr/lib
-
-extra_configure_switches = --libdir=$(BUILDSYSTEM)/usr/lib
-extra_configure_switches += --bindir=$(BUILDSYSTEM)/usr/bin
-extra_configure_switches += --docdir=$(BUILDSYSTEM)/usr/share/doc/$(src_dir_name)
-extra_configure_switches += --mandir=$(BUILDSYSTEM)/usr/share/man
-extra_configure_switches += --with-system-expat
-extra_configure_switches += --with-system-ffi
-extra_configure_switches += --with-threads
-extra_configure_switches += --without-ensurepip
-extra_configure_switches += --enable-ipv6
-extra_configure_switches += --enable-shared
-
-python_environment = RFS=$(BUILDSYSTEM)
-python_environment += PYTHONHOME=$(BUILDSYSTEM)/usr/lib/python3.10
-python_environment += LDFLAGS='$(LDFLAGS)'
-
-
-$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
- $(UNPACK_SRC_ARCHIVE)
- $(APPLY_PATCHES)
- @cd $(SRC_DIR) && sed -i 's|\("install",\)|\1 "--ignore-installed",|' Lib/ensurepip/__init__.py
- @touch $@
-
-$(build_target): $(src_done)
- @cd $(SRC_DIR) && $(python_environment) ./configure \
- --prefix=$(BUILDSYSTEM)/usr \
- --exec-prefix=$(BUILDSYSTEM)/usr \
- --build=$(BUILD) \
- --host=$(BUILD) \
- $(extra_configure_switches)
- @cd $(SRC_DIR) && $(python_environment) $(MAKE)
- @touch $@
-
-$(install_target): $(build_target)
- @echo -e "\n======= Installing Python 3.10 binary =======\n"
- @cd $(SRC_DIR) && $(MAKE) -j1 $(python_environment) install
- @( cd $(BUILDSYSTEM)/usr/bin ; \
- ln -sf 2to3-2.7 2to3 ; \
- )
- @echo -e "\n======= tune python3.10-config CFLAGS for target machine =======\n"
- @( cd $(BUILDSYSTEM)/usr/bin ; \
- sed -i 's,includedir=$$(echo "$${prefix},includedir=$$(echo "/usr,g' python3.10-config ; \
- sed -i 's,LIBPL=$$(echo "$${prefix},LIBPL=$$(echo "/usr,g' python3.10-config ; \
- sed -i "s,$(BUILDSYSTEM),,g" python3.10-config ; \
- )
- @( cd $(BUILDSYSTEM)/usr/include/python3.10 ; \
- mv pyconfig.h pyconfig-64.h ; \
- echo '' > pyconfig.h ; \
- echo '/******************************' >> pyconfig.h ; \
- echo ' pyconfig.h - Multilib Header' >> pyconfig.h ; \
- echo ' ******************************/' >> pyconfig.h ; \
- echo '' >> pyconfig.h ; \
- echo '#ifndef __MULTILIB__PYCONFIG_H__' >> pyconfig.h ; \
- echo '#define __MULTILIB__PYCONFIG_H__' >> pyconfig.h ; \
- echo '' >> pyconfig.h ; \
- echo '#if defined(__x86_64__) || \' >> pyconfig.h ; \
- echo ' defined(__aarch64__) || \' >> pyconfig.h ; \
- echo ' defined(__powerpc64__) || \' >> pyconfig.h ; \
- echo ' defined(__sparc__) && defined(__arch64__) || \' >> pyconfig.h ; \
- echo ' defined(__riscv_xlen) && __riscv_xlen == 64' >> pyconfig.h ; \
- echo '#include "pyconfig-64.h"' >> pyconfig.h ; \
- echo '#else' >> pyconfig.h ; \
- echo '#include "pyconfig-32.h"' >> pyconfig.h ; \
- echo '#endif' >> pyconfig.h ; \
- echo '' >> pyconfig.h ; \
- echo '#endif /* __MULTILIB__PYCONFIG_H__ */' >> pyconfig.h ; \
- cat pyconfig-64.h | \
- sed -e 's,^#define HAVE_GCC_ASM_FOR_X64 1,\/\* #undef HAVE_GCC_ASM_FOR_X64 \*\/,' \
- -e 's,^#define HAVE_GCC_UINT128_T 1,/* #undef HAVE_GCC_UINT128_T */,' \
- -e 's,^\/\* #undef HAVE_LARGEFILE_SUPPORT \*\/,#define HAVE_LARGEFILE_SUPPORT 1,' \
- -e 's,^#define SIZEOF_LONG 8,#define SIZEOF_LONG 4,' \
- -e 's,^#define SIZEOF_LONG_DOUBLE 16,#define SIZEOF_LONG_DOUBLE 12,' \
- -e 's,^#define SIZEOF_PTHREAD_T 8,#define SIZEOF_PTHREAD_T 4,' \
- -e 's,^#define SIZEOF_OFF_T 8,#define SIZEOF_OFF_T 4,' \
- -e 's,^#define SIZEOF_SIZE_T 8,#define SIZEOF_SIZE_T 4,' \
- -e 's,^#define SIZEOF_TIME_T 8,#define SIZEOF_TIME_T 4,' \
- -e 's,^#define SIZEOF_UINTPTR_T 8,#define SIZEOF_UINTPTR_T 4,' \
- -e 's,^#define SIZEOF_VOID_P 8,#define SIZEOF_VOID_P 4,' \
- > pyconfig-32.h ; \
- )
- @echo -e "\n======= Setup PYTHON3 build-system variable =======\n"
- @mkdir -p $(BUILDSYSTEM)/sbin && \
- echo "PYTHON3 := $(BUILDSYSTEM)/usr/bin/python3" >> $(BUILDSYSTEM)/sbin/.config
- @touch $@
Index: build-system-1.11.x/3pp/app/python3/3.10.8
===================================================================
--- build-system-1.11.x/3pp/app/python3/3.10.8 (revision 45)
+++ build-system-1.11.x/3pp/app/python3/3.10.8 (nonexistent)
Property changes on: build-system-1.11.x/3pp/app/python3/3.10.8
___________________________________________________________________
Deleted: svn:ignore
## -1,51 +0,0 ##
-
-# local config & object files
-build-config.mk
-sbin
-usr
-var
-
-# configure targets
-autom4te.cache
-.config
-config.log
-config.status
-configure
-
-# cpan configure targets
-.installed
-CPAN-Config.pm
-CPAN-install
-
-# Target build dirs
-.build-machine
-
-# Timestamps
-.makefile
-
-# src & hw requires
-.src_requires
-.src_requires_depend
-
-# Tarballs
-*.gz
-*.bz2
-*.lz
-*.xz
-*.tgz
-*.txz
-
-# Signatures
-*.asc
-*.sig
-*.sign
-*.sha1sum
-
-# Patches
-*.patch
-
-# Object Files
-*.[ao]
-
-# backup copies
-*~
Index: build-system-1.11.x/3pp/app/python3/3.12.6/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3/3.12.6/Makefile (nonexistent)
+++ build-system-1.11.x/3pp/app/python3/3.12.6/Makefile (revision 46)
@@ -0,0 +1,114 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/python3
+
+REQUIRES = build-system/3pp/app/python2-modules/pip/20.3
+
+# ======= __END_OF_REQUIRES__ =======
+
+version = 3.12.6
+tar_xz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python3/Python-$(version).tar.xz
+SRC_ARCHIVE = $(tar_xz_archive)
+SRC_DIR = $(TARGET_BUILD_DIR)/Python-$(version)
+src_done = $(TARGET_BUILD_DIR)/.source-done
+
+PATCHES = PATCHES
+
+build_target = $(TARGET_BUILD_DIR)/.built
+install_target = $(TARGET_BUILD_DIR)/.installed
+
+BUILD_TARGETS = $(build_target)
+BUILD_TARGETS += $(install_target)
+
+
+include ../../../../../build-system/core.mk
+
+
+LDFLAGS += -Wl,-rpath,$(BUILDSYSTEM)/usr/lib
+
+extra_configure_switches = --libdir=$(BUILDSYSTEM)/usr/lib
+extra_configure_switches += --bindir=$(BUILDSYSTEM)/usr/bin
+extra_configure_switches += --docdir=$(BUILDSYSTEM)/usr/share/doc/$(src_dir_name)
+extra_configure_switches += --mandir=$(BUILDSYSTEM)/usr/share/man
+extra_configure_switches += --with-system-expat
+extra_configure_switches += --with-system-ffi
+extra_configure_switches += --with-threads
+extra_configure_switches += --without-ensurepip
+extra_configure_switches += --enable-ipv6
+extra_configure_switches += --enable-shared
+
+python_environment = RFS=$(BUILDSYSTEM)
+python_environment += PYTHONHOME=$(BUILDSYSTEM)/usr/lib/python3.12
+python_environment += LDFLAGS='$(LDFLAGS)'
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+ $(UNPACK_SRC_ARCHIVE)
+ $(APPLY_PATCHES)
+ @cd $(SRC_DIR) && sed -i 's|\("install",\)|\1 "--ignore-installed",|' Lib/ensurepip/__init__.py
+ @touch $@
+
+$(build_target): $(src_done)
+ @cd $(SRC_DIR) && $(python_environment) ./configure \
+ --prefix=$(BUILDSYSTEM)/usr \
+ --exec-prefix=$(BUILDSYSTEM)/usr \
+ --build=$(BUILD) \
+ --host=$(BUILD) \
+ $(extra_configure_switches)
+ @cd $(SRC_DIR) && $(python_environment) $(MAKE)
+ @touch $@
+
+$(install_target): $(build_target)
+ @echo -e "\n======= Installing Python 3.12 binary =======\n"
+ @cd $(SRC_DIR) && $(MAKE) -j1 $(python_environment) install
+ @( cd $(BUILDSYSTEM)/usr/bin ; \
+ ln -sf 2to3-2.7 2to3 ; \
+ )
+ @echo -e "\n======= tune python3.12-config CFLAGS for target machine =======\n"
+ @( cd $(BUILDSYSTEM)/usr/bin ; \
+ sed -i 's,includedir=$$(echo "$${prefix},includedir=$$(echo "/usr,g' python3.12-config ; \
+ sed -i 's,LIBPL=$$(echo "$${prefix},LIBPL=$$(echo "/usr,g' python3.12-config ; \
+ sed -i "s,$(BUILDSYSTEM),,g" python3.12-config ; \
+ )
+ @( cd $(BUILDSYSTEM)/usr/include/python3.12 ; \
+ mv pyconfig.h pyconfig-64.h ; \
+ echo '' > pyconfig.h ; \
+ echo '/******************************' >> pyconfig.h ; \
+ echo ' pyconfig.h - Multilib Header' >> pyconfig.h ; \
+ echo ' ******************************/' >> pyconfig.h ; \
+ echo '' >> pyconfig.h ; \
+ echo '#ifndef __MULTILIB__PYCONFIG_H__' >> pyconfig.h ; \
+ echo '#define __MULTILIB__PYCONFIG_H__' >> pyconfig.h ; \
+ echo '' >> pyconfig.h ; \
+ echo '#if defined(__x86_64__) || \' >> pyconfig.h ; \
+ echo ' defined(__aarch64__) || \' >> pyconfig.h ; \
+ echo ' defined(__powerpc64__) || \' >> pyconfig.h ; \
+ echo ' defined(__sparc__) && defined(__arch64__) || \' >> pyconfig.h ; \
+ echo ' defined(__riscv_xlen) && __riscv_xlen == 64' >> pyconfig.h ; \
+ echo '#include "pyconfig-64.h"' >> pyconfig.h ; \
+ echo '#else' >> pyconfig.h ; \
+ echo '#include "pyconfig-32.h"' >> pyconfig.h ; \
+ echo '#endif' >> pyconfig.h ; \
+ echo '' >> pyconfig.h ; \
+ echo '#endif /* __MULTILIB__PYCONFIG_H__ */' >> pyconfig.h ; \
+ cat pyconfig-64.h | \
+ sed -e 's,^#define HAVE_GCC_ASM_FOR_X64 1,\/\* #undef HAVE_GCC_ASM_FOR_X64 \*\/,' \
+ -e 's,^#define HAVE_GCC_UINT128_T 1,/* #undef HAVE_GCC_UINT128_T */,' \
+ -e 's,^\/\* #undef HAVE_LARGEFILE_SUPPORT \*\/,#define HAVE_LARGEFILE_SUPPORT 1,' \
+ -e 's,^#define SIZEOF_LONG 8,#define SIZEOF_LONG 4,' \
+ -e 's,^#define SIZEOF_LONG_DOUBLE 16,#define SIZEOF_LONG_DOUBLE 12,' \
+ -e 's,^#define SIZEOF_PTHREAD_T 8,#define SIZEOF_PTHREAD_T 4,' \
+ -e 's,^#define SIZEOF_OFF_T 8,#define SIZEOF_OFF_T 4,' \
+ -e 's,^#define SIZEOF_SIZE_T 8,#define SIZEOF_SIZE_T 4,' \
+ -e 's,^#define SIZEOF_TIME_T 8,#define SIZEOF_TIME_T 4,' \
+ -e 's,^#define SIZEOF_UINTPTR_T 8,#define SIZEOF_UINTPTR_T 4,' \
+ -e 's,^#define SIZEOF_VOID_P 8,#define SIZEOF_VOID_P 4,' \
+ > pyconfig-32.h ; \
+ )
+ @echo -e "\n======= Setup PYTHON3 build-system variable =======\n"
+ @mkdir -p $(BUILDSYSTEM)/sbin && \
+ echo "PYTHON3 := $(BUILDSYSTEM)/usr/bin/python3" >> $(BUILDSYSTEM)/sbin/.config
+ @touch $@
Index: build-system-1.11.x/3pp/app/python3/3.12.6/PATCHES
===================================================================
Index: build-system-1.11.x/3pp/app/python3/3.12.6
===================================================================
--- build-system-1.11.x/3pp/app/python3/3.12.6 (nonexistent)
+++ build-system-1.11.x/3pp/app/python3/3.12.6 (revision 46)
Property changes on: build-system-1.11.x/3pp/app/python3/3.12.6
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.38.0/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.38.0/Makefile (revision 45)
+++ build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.38.0/Makefile (nonexistent)
@@ -1,47 +0,0 @@
-
-COMPONENT_TARGETS = $(HARDWARE_BUILD)
-
-include ../../../../../../build-system/constants.mk
-
-SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/m2crypto
-
-REQUIRES = build-system/3pp/app/python3-modules/setuptools/65.5.0
-
-# ======= __END_OF_REQUIRES__ =======
-
-version = 0.38.0
-tar_gz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python-modules/m2crypto/m2crypto-$(version).tar.gz
-SRC_ARCHIVE = $(tar_gz_archive)
-SRC_DIR = $(TARGET_BUILD_DIR)/m2crypto-$(version)
-src_done = $(TARGET_BUILD_DIR)/.source-done
-
-PATCHES = PATCHES
-
-build_target = $(TARGET_BUILD_DIR)/.built
-install_target = $(TARGET_BUILD_DIR)/.installed
-
-BUILD_TARGETS = $(build_target)
-BUILD_TARGETS += $(install_target)
-
-
-include ../../../../../../build-system/core.mk
-
-
-$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
- $(UNPACK_SRC_ARCHIVE)
- $(APPLY_PATCHES)
- @touch $@
-
-$(build_target): $(src_done)
- @( cd $(SRC_DIR) ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py egg_info ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py build ; \
- )
- @touch $@
-
-$(install_target): $(build_target)
- @echo -e "\n======= Installing M2Crypto-$(version) =======\n"
- @( cd $(SRC_DIR) ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py install --root=/ ; \
- )
- @touch $@
Index: build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.38.0
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.38.0 (revision 45)
+++ build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.38.0 (nonexistent)
Property changes on: build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.38.0
___________________________________________________________________
Deleted: svn:ignore
## -1,51 +0,0 ##
-
-# local config & object files
-build-config.mk
-sbin
-usr
-var
-
-# configure targets
-autom4te.cache
-.config
-config.log
-config.status
-configure
-
-# cpan configure targets
-.installed
-CPAN-Config.pm
-CPAN-install
-
-# Target build dirs
-.build-machine
-
-# Timestamps
-.makefile
-
-# src & hw requires
-.src_requires
-.src_requires_depend
-
-# Tarballs
-*.gz
-*.bz2
-*.lz
-*.xz
-*.tgz
-*.txz
-
-# Signatures
-*.asc
-*.sig
-*.sign
-*.sha1sum
-
-# Patches
-*.patch
-
-# Object Files
-*.[ao]
-
-# backup copies
-*~
Index: build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0/Makefile (nonexistent)
+++ build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0/Makefile (revision 46)
@@ -0,0 +1,47 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/m2crypto
+
+REQUIRES = build-system/3pp/app/python3-modules/setuptools/75.1.0
+
+# ======= __END_OF_REQUIRES__ =======
+
+version = 0.42.0
+tar_gz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python-modules/m2crypto/m2crypto-$(version).tar.gz
+SRC_ARCHIVE = $(tar_gz_archive)
+SRC_DIR = $(TARGET_BUILD_DIR)/m2crypto-$(version)
+src_done = $(TARGET_BUILD_DIR)/.source-done
+
+PATCHES = PATCHES
+
+build_target = $(TARGET_BUILD_DIR)/.built
+install_target = $(TARGET_BUILD_DIR)/.installed
+
+BUILD_TARGETS = $(build_target)
+BUILD_TARGETS += $(install_target)
+
+
+include ../../../../../../build-system/core.mk
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+ $(UNPACK_SRC_ARCHIVE)
+ $(APPLY_PATCHES)
+ @touch $@
+
+$(build_target): $(src_done)
+ @( cd $(SRC_DIR) ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py egg_info ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py build ; \
+ )
+ @touch $@
+
+$(install_target): $(build_target)
+ @echo -e "\n======= Installing M2Crypto-$(version) =======\n"
+ @( cd $(SRC_DIR) ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py install --root=/ ; \
+ )
+ @touch $@
Index: build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0/PATCHES
===================================================================
Index: build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0 (nonexistent)
+++ build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0 (revision 46)
Property changes on: build-system-1.11.x/3pp/app/python3-modules/m2crypto/0.42.0
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: build-system-1.11.x/3pp/app/python3-modules/pip/22.2.2/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/pip/22.2.2/Makefile (revision 45)
+++ build-system-1.11.x/3pp/app/python3-modules/pip/22.2.2/Makefile (nonexistent)
@@ -1,61 +0,0 @@
-
-COMPONENT_TARGETS = $(HARDWARE_BUILD)
-
-include ../../../../../../build-system/constants.mk
-
-SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/pip
-
-REQUIRES = build-system/3pp/app/python3-modules/m2crypto/0.38.0
-
-# ======= __END_OF_REQUIRES__ =======
-
-version = 22.2.2
-tar_gz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python-modules/pip/pip-$(version).tar.gz
-SRC_ARCHIVE = $(tar_gz_archive)
-SRC_DIR = $(TARGET_BUILD_DIR)/pip-$(version)
-src_done = $(TARGET_BUILD_DIR)/.source-done
-
-PATCHES = PATCHES
-
-build_target = $(TARGET_BUILD_DIR)/.built
-install_target = $(TARGET_BUILD_DIR)/.installed
-
-BUILD_TARGETS = $(build_target)
-BUILD_TARGETS += $(install_target)
-
-
-include ../../../../../../build-system/core.mk
-
-
-$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
- $(UNPACK_SRC_ARCHIVE)
- $(APPLY_PATCHES)
- @touch $@
-
-$(build_target): $(src_done)
- @( cd $(SRC_DIR) ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py egg_info ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py build ; \
- )
- @touch $@
-
-$(install_target): $(build_target)
- @echo -e "\n======= Installing setuptools-$(version) =======\n"
- @( cd $(SRC_DIR) ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py install --root=/ ; \
- )
- @echo -e "\n======= Install Python3 wheel, PLY, pygments, cryptography packages =======\n"
- @( cd $(BUILDSYSTEM)/usr/bin ; \
- rm -f pip ; ln -sf pip2 pip ; \
- ./pip3.10 install --upgrade wheel 2>/dev/null ; \
- ./pip3.10 install --upgrade ply 2>/dev/null ; \
- ./pip3.10 install --upgrade pygments 2>/dev/null ; \
- ./pip3.10 install --upgrade cryptography 2>/dev/null ; \
- ./pip3.10 install --upgrade Mako 2>/dev/null ; \
- ./pip3.10 install --upgrade Markdown 2>/dev/null ; \
- ./pip3.10 install --upgrade pyelftools 2>/dev/null ; \
- )
- @echo -e "\n======= Setup PIP3 build-system variable =======\n"
- @mkdir -p $(BUILDSYSTEM)/sbin && \
- echo "PIP3 := $(BUILDSYSTEM)/usr/bin/pip3" >> $(BUILDSYSTEM)/sbin/.config
- @touch $@
Index: build-system-1.11.x/3pp/app/python3-modules/pip/22.2.2
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/pip/22.2.2 (revision 45)
+++ build-system-1.11.x/3pp/app/python3-modules/pip/22.2.2 (nonexistent)
Property changes on: build-system-1.11.x/3pp/app/python3-modules/pip/22.2.2
___________________________________________________________________
Deleted: svn:ignore
## -1,51 +0,0 ##
-
-# local config & object files
-build-config.mk
-sbin
-usr
-var
-
-# configure targets
-autom4te.cache
-.config
-config.log
-config.status
-configure
-
-# cpan configure targets
-.installed
-CPAN-Config.pm
-CPAN-install
-
-# Target build dirs
-.build-machine
-
-# Timestamps
-.makefile
-
-# src & hw requires
-.src_requires
-.src_requires_depend
-
-# Tarballs
-*.gz
-*.bz2
-*.lz
-*.xz
-*.tgz
-*.txz
-
-# Signatures
-*.asc
-*.sig
-*.sign
-*.sha1sum
-
-# Patches
-*.patch
-
-# Object Files
-*.[ao]
-
-# backup copies
-*~
Index: build-system-1.11.x/3pp/app/python3-modules/pip/24.2/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/pip/24.2/Makefile (nonexistent)
+++ build-system-1.11.x/3pp/app/python3-modules/pip/24.2/Makefile (revision 46)
@@ -0,0 +1,61 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/pip
+
+REQUIRES = build-system/3pp/app/python3-modules/m2crypto/0.42.0
+
+# ======= __END_OF_REQUIRES__ =======
+
+version = 24.2
+tar_gz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python-modules/pip/pip-$(version).tar.gz
+SRC_ARCHIVE = $(tar_gz_archive)
+SRC_DIR = $(TARGET_BUILD_DIR)/pip-$(version)
+src_done = $(TARGET_BUILD_DIR)/.source-done
+
+PATCHES = PATCHES
+
+build_target = $(TARGET_BUILD_DIR)/.built
+install_target = $(TARGET_BUILD_DIR)/.installed
+
+BUILD_TARGETS = $(build_target)
+BUILD_TARGETS += $(install_target)
+
+
+include ../../../../../../build-system/core.mk
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+ $(UNPACK_SRC_ARCHIVE)
+ $(APPLY_PATCHES)
+ @touch $@
+
+$(build_target): $(src_done)
+ @( cd $(SRC_DIR) ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py egg_info ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py build ; \
+ )
+ @touch $@
+
+$(install_target): $(build_target)
+ @echo -e "\n======= Installing setuptools-$(version) =======\n"
+ @( cd $(SRC_DIR) ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py install --root=/ ; \
+ )
+ @echo -e "\n======= Install Python3 wheel, PLY, pygments, cryptography packages =======\n"
+ @( cd $(BUILDSYSTEM)/usr/bin ; \
+ rm -f pip ; ln -sf pip2 pip ; \
+ ./pip3.12 install --upgrade wheel 2>/dev/null ; \
+ ./pip3.12 install --upgrade ply 2>/dev/null ; \
+ ./pip3.12 install --upgrade pygments 2>/dev/null ; \
+ ./pip3.12 install --upgrade cryptography 2>/dev/null ; \
+ ./pip3.12 install --upgrade Mako 2>/dev/null ; \
+ ./pip3.12 install --upgrade Markdown 2>/dev/null ; \
+ ./pip3.12 install --upgrade pyelftools 2>/dev/null ; \
+ )
+ @echo -e "\n======= Setup PIP3 build-system variable =======\n"
+ @mkdir -p $(BUILDSYSTEM)/sbin && \
+ echo "PIP3 := $(BUILDSYSTEM)/usr/bin/pip3" >> $(BUILDSYSTEM)/sbin/.config
+ @touch $@
Index: build-system-1.11.x/3pp/app/python3-modules/pip/24.2/PATCHES
===================================================================
Index: build-system-1.11.x/3pp/app/python3-modules/pip/24.2
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/pip/24.2 (nonexistent)
+++ build-system-1.11.x/3pp/app/python3-modules/pip/24.2 (revision 46)
Property changes on: build-system-1.11.x/3pp/app/python3-modules/pip/24.2
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: build-system-1.11.x/3pp/app/python3-modules/setuptools/65.5.0/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/setuptools/65.5.0/Makefile (revision 45)
+++ build-system-1.11.x/3pp/app/python3-modules/setuptools/65.5.0/Makefile (nonexistent)
@@ -1,56 +0,0 @@
-
-COMPONENT_TARGETS = $(HARDWARE_BUILD)
-
-include ../../../../../../build-system/constants.mk
-
-SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/setuptools
-
-REQUIRES = build-system/3pp/app/python3/3.10.8
-
-# ======= __END_OF_REQUIRES__ =======
-
-version = 65.5.0
-tar_gz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python-modules/setuptools/setuptools-$(version).tar.gz
-SRC_ARCHIVE = $(tar_gz_archive)
-SRC_DIR = $(TARGET_BUILD_DIR)/setuptools-$(version)
-src_done = $(TARGET_BUILD_DIR)/.source-done
-
-PATCHES = PATCHES
-
-build_target = $(TARGET_BUILD_DIR)/.built
-install_target = $(TARGET_BUILD_DIR)/.installed
-
-BUILD_TARGETS = $(build_target)
-BUILD_TARGETS += $(install_target)
-
-
-include ../../../../../../build-system/core.mk
-
-#
-# NOTE:
-# ====
-# Command `mkdir -p build/scripts-3.10` and install option --root=/ are needed to avoid
-# Python errors related to build procedure and deprecated easy_install utility.
-#
-
-$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
- $(UNPACK_SRC_ARCHIVE)
- $(APPLY_PATCHES)
- @touch $@
-
-$(build_target): $(src_done)
- @( cd $(SRC_DIR) ; \
- rm -f setuptools/*.exe ; \
- mkdir -p build/scripts-3.10 ; \
- sed -i 's,^tag_build.*,tag_build =,' setup.cfg ; \
- sed -i 's,^tag_date.*,tag_date = 0,' setup.cfg ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py egg_info ; \
- )
- @touch $@
-
-$(install_target): $(build_target)
- @echo -e "\n======= Installing setuptools-$(version) =======\n"
- @( cd $(SRC_DIR) ; \
- $(BUILDSYSTEM)/usr/bin/python3 setup.py install --root=/ ; \
- )
- @touch $@
Index: build-system-1.11.x/3pp/app/python3-modules/setuptools/65.5.0
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/setuptools/65.5.0 (revision 45)
+++ build-system-1.11.x/3pp/app/python3-modules/setuptools/65.5.0 (nonexistent)
Property changes on: build-system-1.11.x/3pp/app/python3-modules/setuptools/65.5.0
___________________________________________________________________
Deleted: svn:ignore
## -1,51 +0,0 ##
-
-# local config & object files
-build-config.mk
-sbin
-usr
-var
-
-# configure targets
-autom4te.cache
-.config
-config.log
-config.status
-configure
-
-# cpan configure targets
-.installed
-CPAN-Config.pm
-CPAN-install
-
-# Target build dirs
-.build-machine
-
-# Timestamps
-.makefile
-
-# src & hw requires
-.src_requires
-.src_requires_depend
-
-# Tarballs
-*.gz
-*.bz2
-*.lz
-*.xz
-*.tgz
-*.txz
-
-# Signatures
-*.asc
-*.sig
-*.sign
-*.sha1sum
-
-# Patches
-*.patch
-
-# Object Files
-*.[ao]
-
-# backup copies
-*~
Index: build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0/Makefile
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0/Makefile (nonexistent)
+++ build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0/Makefile (revision 46)
@@ -0,0 +1,56 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/setuptools
+
+REQUIRES = build-system/3pp/app/python3/3.12.6
+
+# ======= __END_OF_REQUIRES__ =======
+
+version = 75.1.0
+tar_gz_archive = $(BUILDSYSTEM)/3pp/sources/packages/python-modules/setuptools/setuptools-$(version).tar.gz
+SRC_ARCHIVE = $(tar_gz_archive)
+SRC_DIR = $(TARGET_BUILD_DIR)/setuptools-$(version)
+src_done = $(TARGET_BUILD_DIR)/.source-done
+
+PATCHES = PATCHES
+
+build_target = $(TARGET_BUILD_DIR)/.built
+install_target = $(TARGET_BUILD_DIR)/.installed
+
+BUILD_TARGETS = $(build_target)
+BUILD_TARGETS += $(install_target)
+
+
+include ../../../../../../build-system/core.mk
+
+#
+# NOTE:
+# ====
+# Command `mkdir -p build/scripts-3.12` and install option --root=/ are needed to avoid
+# Python errors related to build procedure and deprecated easy_install utility.
+#
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+ $(UNPACK_SRC_ARCHIVE)
+ $(APPLY_PATCHES)
+ @touch $@
+
+$(build_target): $(src_done)
+ @( cd $(SRC_DIR) ; \
+ rm -f setuptools/*.exe ; \
+ mkdir -p build/scripts-3.12 ; \
+ sed -i 's,^tag_build.*,tag_build =,' setup.cfg ; \
+ sed -i 's,^tag_date.*,tag_date = 0,' setup.cfg ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py egg_info ; \
+ )
+ @touch $@
+
+$(install_target): $(build_target)
+ @echo -e "\n======= Installing setuptools-$(version) =======\n"
+ @( cd $(SRC_DIR) ; \
+ $(BUILDSYSTEM)/usr/bin/python3 setup.py install --root=/ ; \
+ )
+ @touch $@
Index: build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0/PATCHES
===================================================================
Index: build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0
===================================================================
--- build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0 (nonexistent)
+++ build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0 (revision 46)
Property changes on: build-system-1.11.x/3pp/app/python3-modules/setuptools/75.1.0
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: build-system-1.11.x/3pp/sources/packages/python-modules/m2crypto/Makefile
===================================================================
--- build-system-1.11.x/3pp/sources/packages/python-modules/m2crypto/Makefile (revision 45)
+++ build-system-1.11.x/3pp/sources/packages/python-modules/m2crypto/Makefile (revision 46)
@@ -8,7 +8,7 @@
url = $(DOWNLOAD_SERVER)/sources/packages/d/python-modules/m2crypto
-versions = 0.38.0
+versions = 0.42.0
pkgname = m2crypto
suffix = tar.gz
Index: build-system-1.11.x/3pp/sources/packages/python-modules/pip/Makefile
===================================================================
--- build-system-1.11.x/3pp/sources/packages/python-modules/pip/Makefile (revision 45)
+++ build-system-1.11.x/3pp/sources/packages/python-modules/pip/Makefile (revision 46)
@@ -9,7 +9,7 @@
versions = 20.3
-versions += 22.2.2
+versions += 24.2
pkgname = pip
suffix = tar.gz
Index: build-system-1.11.x/3pp/sources/packages/python-modules/setuptools/Makefile
===================================================================
--- build-system-1.11.x/3pp/sources/packages/python-modules/setuptools/Makefile (revision 45)
+++ build-system-1.11.x/3pp/sources/packages/python-modules/setuptools/Makefile (revision 46)
@@ -9,7 +9,7 @@
versions = 44.0.0
-versions += 65.5.0
+versions += 75.1.0
pkgname = setuptools
suffix = tar.gz
Index: build-system-1.11.x/3pp/sources/packages/python3/Makefile
===================================================================
--- build-system-1.11.x/3pp/sources/packages/python3/Makefile (revision 45)
+++ build-system-1.11.x/3pp/sources/packages/python3/Makefile (revision 46)
@@ -8,7 +8,7 @@
url = $(DOWNLOAD_SERVER)/sources/packages/d/python3
-versions = 3.10.8
+versions = 3.12.6
pkgname = Python
suffix = tar.xz
Index: build-system-1.11.x/Makefile
===================================================================
--- build-system-1.11.x/Makefile (revision 45)
+++ build-system-1.11.x/Makefile (revision 46)
@@ -9,7 +9,7 @@
REQUIRES += build-system/3pp/app/populatefs/1.1
REQUIRES += build-system/3pp/app/jsmin/0.0.1
REQUIRES += build-system/3pp/app/fakeroot/1.31
-REQUIRES += build-system/3pp/app/python3-modules/pip/22.2.2
+REQUIRES += build-system/3pp/app/python3-modules/pip/24.2
REQUIRES += build-system/3pp/app/perl/5.40.0
REQUIRES += build-system/3pp/app/po4a/0.73
REQUIRES += build-system/3pp/app/ruby/3.3.5