Radix cross Linux Build System

Cross-platform build system is designed to build distributions of different operating systems for a set of target devices

74 Commits   2 Branches   2 Tags
Index: automake/1.16.5/Makefile
===================================================================
--- automake/1.16.5/Makefile	(nonexistent)
+++ automake/1.16.5/Makefile	(revision 5)
@@ -0,0 +1,43 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/automake
+
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 1.16.5
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/automake/automake-$(version).tar.xz
+src_dir         = automake-$(version)
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+SRC_DIR         = $(TARGET_BUILD_DIR)/automake-$(version)
+SRC_ARCHIVE     = $(tar_xz_archive)
+
+PATCHES = PATCHES
+
+install_target  = $(TARGET_BUILD_DIR)/.installed
+
+BUILD_TARGETS   = $(install_target)
+
+
+include ../../../../../build-system/core.mk
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(install_target): $(src_done)
+	@echo -e "\n======= Installing Automake scripts =======\n"
+	@mkdir -p $(BUILDSYSTEM)/usr/share/automake-$(version)
+	@cd $(SRC_DIR)/lib ; \
+	  cp -a config.guess config.sub \
+	  $(BUILDSYSTEM)/usr/share/automake-$(version)
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "CONFIG_GUESS       := $(BUILDSYSTEM)/usr/share/automake-$(version)/config.guess" >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "CONFIG_SUB         := $(BUILDSYSTEM)/usr/share/automake-$(version)/config.sub"   >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: automake/1.16.5/PATCHES
===================================================================
Index: automake/1.16.5
===================================================================
--- automake/1.16.5	(nonexistent)
+++ automake/1.16.5	(revision 5)

Property changes on: automake/1.16.5
___________________________________________________________________
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: automake
===================================================================
--- automake	(nonexistent)
+++ automake	(revision 5)

Property changes on: automake
___________________________________________________________________
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: dialog/1.3-20210621/Makefile
===================================================================
--- dialog/1.3-20210621/Makefile	(nonexistent)
+++ dialog/1.3-20210621/Makefile	(revision 5)
@@ -0,0 +1,68 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/dialog
+
+
+# ======= __END_OF_REQUIRES__ =======
+
+
+tar_gz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/dialog/dialog-1.3-20210621.tgz
+src_dir         = dialog-1.3-20210621
+build_dir       = $(TARGET_BUILD_DIR)/built
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+SRC_DIR         = $(TARGET_BUILD_DIR)/dialog-1.3-20210621
+SRC_ARCHIVE     = $(tar_gz_archive)
+
+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
+
+
+environment     =
+extra_configure_switches += --mandir=$(BUILDSYSTEM)/usr/share/man
+extra_configure_switches += --with-shared
+extra_configure_switches += --with-libtool
+extra_configure_switches += --with-ncursesw
+extra_configure_switches += --enable-widec
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@mkdir -p $(build_dir)
+	@cd $(build_dir) && $(environment) ../$(src_dir)/configure \
+	  --prefix=$(BUILDSYSTEM)/usr \
+	  --exec-prefix=$(BUILDSYSTEM)/usr \
+	  --build=$(BUILD) \
+	  --host=$(BUILD)  \
+	  $(extra_configure_switches)
+	@$(environment) $(MAKE) -C $(build_dir) all
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing DIALOG binary =======\n"
+	@$(environment) $(MAKE) -j1 -C $(build_dir) install
+	@sed -i '/^#include <dlg_config.h>/,+1d' $(BUILDSYSTEM)/usr/include/dialog.h
+	@rm -f $(BUILDSYSTEM)/usr/include/dlg_config.h
+	@chmod 755 $(BUILDSYSTEM)/usr/lib/libdialog.{la,so*}
+	@mkdir -p $(BUILDSYSTEM)/usr/share/aclocal
+	@cat $(SRC_DIR)/dialog.m4 > $(BUILDSYSTEM)/usr/share/aclocal/dialog.m4
+	@chmod 644 $(BUILDSYSTEM)/usr/share/aclocal/dialog.m4
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "DIALOG             := $(BUILDSYSTEM)/usr/bin/dialog"        >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "DIALOG_CONFIG      := $(BUILDSYSTEM)/usr/bin/dialog-config" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: dialog/1.3-20210621/PATCHES
===================================================================
--- dialog/1.3-20210621/PATCHES	(nonexistent)
+++ dialog/1.3-20210621/PATCHES	(revision 5)
@@ -0,0 +1,2 @@
+
+../../../sources/packages/dialog/patches/dialog-1.3-20210621.patch -p0
Index: dialog/1.3-20210621
===================================================================
--- dialog/1.3-20210621	(nonexistent)
+++ dialog/1.3-20210621	(revision 5)

Property changes on: dialog/1.3-20210621
___________________________________________________________________
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: dialog
===================================================================
--- dialog	(nonexistent)
+++ dialog	(revision 5)

Property changes on: dialog
___________________________________________________________________
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: fakeroot/1.26/Makefile
===================================================================
--- fakeroot/1.26/Makefile	(nonexistent)
+++ fakeroot/1.26/Makefile	(revision 5)
@@ -0,0 +1,67 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/fakeroot
+
+REQUIRES = build-system/3pp/app/po4a/0.68
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 1.26
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/fakeroot/fakeroot-$(version).tar.xz
+SRC_ARCHIVE     = $(tar_xz_archive)
+SRC_DIR         = $(TARGET_BUILD_DIR)/fakeroot-$(version)
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+src_dir_name    = fakeroot-$(version)
+build_dir       = $(TARGET_BUILD_DIR)/built
+
+PATCHES = PATCHES
+
+build_target    = $(TARGET_BUILD_DIR)/.built
+install_target  = $(TARGET_BUILD_DIR)/.installed
+
+script          = $(CURDIR)/scripts/fakeroot
+
+environment     = CPPFLAGS=-I$(BUILDSYSTEM)/usr/include
+environment    += LDFLAGS=-Wl,-rpath=$(BUILDSYSTEM)/usr/lib
+
+extra_configure_switches  = --libdir=/usr/lib
+extra_configure_switches += --program-suffix=-sysv
+extra_configure_switches += --mandir=/usr/share/man
+extra_configure_switches += --disable-static
+extra_configure_switches += --with-ipc=sysv
+
+
+BUILD_TARGETS = $(install_target)
+
+include ../../../../../build-system/core.mk
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@( cd $(SRC_DIR) ; ./bootstrap )
+	@( cd $(SRC_DIR)/doc ; \
+	   $(BUILDSYSTEM)/usr/bin/po4a -k 0 --rm-backups --variable 'srcdir=../doc/' po4a/po4a.cfg ; \
+	 )
+	@touch $@
+
+$(build_target): $(src_done)
+	@mkdir -p $(build_dir)
+	@cd $(build_dir) && $(environment) ../$(src_dir_name)/configure \
+	  --prefix=/usr \
+	  $(extra_configure_switches)
+	@$(environment) $(MAKE) -C $(build_dir)
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing FAKEROOT binary =======\n"
+	@cd $(build_dir) && $(MAKE) install DESTDIR=$(BUILDSYSTEM)
+	@echo -e "\n======= Installing FAKEROOT wrapper =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  cp -a $(script) $(BUILDSYSTEM)/sbin/fakeroot && \
+	  chmod a+x $(BUILDSYSTEM)/sbin/fakeroot       && \
+	  echo "PSEUDO             := $(BUILDSYSTEM)/sbin/fakeroot" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: fakeroot/1.26/PATCHES
===================================================================
Index: fakeroot/1.26/scripts/fakeroot
===================================================================
--- fakeroot/1.26/scripts/fakeroot	(nonexistent)
+++ fakeroot/1.26/scripts/fakeroot	(revision 5)
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+program=$0
+fakeroot_prefix=$(cd $(dirname $program)/.. ; pwd -P)/usr
+
+shell=$1 ; shift ; option=$1 ; shift
+
+#
+# remove extra spaces
+#
+args=`echo "${@}" | sed 's/ \{1,\}/ /g'`
+
+${fakeroot_prefix}/bin/fakeroot-sysv --lib ${fakeroot_prefix}/lib/libfakeroot-0.so \
+                                     --faked ${fakeroot_prefix}/bin/faked-sysv -- $shell $option "$args"
+
+
Index: fakeroot/1.26/scripts
===================================================================
--- fakeroot/1.26/scripts	(nonexistent)
+++ fakeroot/1.26/scripts	(revision 5)

Property changes on: fakeroot/1.26/scripts
___________________________________________________________________
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: fakeroot/1.26
===================================================================
--- fakeroot/1.26	(nonexistent)
+++ fakeroot/1.26	(revision 5)

Property changes on: fakeroot/1.26
___________________________________________________________________
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: fakeroot
===================================================================
--- fakeroot	(nonexistent)
+++ fakeroot	(revision 5)

Property changes on: fakeroot
___________________________________________________________________
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: genext2fs/1.4.1/Makefile
===================================================================
--- genext2fs/1.4.1/Makefile	(nonexistent)
+++ genext2fs/1.4.1/Makefile	(revision 5)
@@ -0,0 +1,63 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/genext2fs
+
+
+# ======= __END_OF_REQUIRES__ =======
+
+
+version         = 1.4.1
+tar_gz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/genext2fs/genext2fs-$(version).tar.gz
+src_dir         = genext2fs-$(version)
+build_dir       = $(TARGET_BUILD_DIR)/built
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+SRC_DIR         = $(TARGET_BUILD_DIR)/genext2fs-$(version)
+SRC_ARCHIVE     = $(tar_gz_archive)
+
+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
+
+
+#
+# Workaround for MAJOR_IN_SYSMACROS definition in the config.h
+# (because of AC_HEADER_MAJOR function doesn't work correctly):
+#
+environment     = ac_cv_header_sys_types_h_makedev=no
+environment    += ac_cv_header_sys_mkdev_h=no
+
+extra_configure_switches = --libdir=/usr/lib$(BUILD_MULTILIB_SUFFIX)
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@mkdir -p $(build_dir)
+	@( cd $(SRC_DIR) ; \
+	   autoreconf -i ; rm -rf autom4te.cache ; rm -f *~ ; \
+	 )
+	@cd $(build_dir) && $(environment) ../$(src_dir)/configure \
+	  --prefix=/usr \
+	  $(extra_configure_switches)
+	@$(environment) $(MAKE) -C $(build_dir) all
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing genext2fs binary =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  cp -a $(build_dir)/genext2fs $(BUILDSYSTEM)/sbin && \
+	  echo "GENEXT2FS          := $(BUILDSYSTEM)/sbin/genext2fs" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: genext2fs/1.4.1/PATCHES
===================================================================
--- genext2fs/1.4.1/PATCHES	(nonexistent)
+++ genext2fs/1.4.1/PATCHES	(revision 5)
@@ -0,0 +1,3 @@
+
+../../../sources/packages/genext2fs/patches/genext2fs-1.4.1-blocksize.patch -p0
+../../../sources/packages/genext2fs/patches/genext2fs-1.4.1-configure.patch -p0
Index: genext2fs/1.4.1
===================================================================
--- genext2fs/1.4.1	(nonexistent)
+++ genext2fs/1.4.1	(revision 5)

Property changes on: genext2fs/1.4.1
___________________________________________________________________
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: genext2fs
===================================================================
--- genext2fs	(nonexistent)
+++ genext2fs	(revision 5)

Property changes on: genext2fs
___________________________________________________________________
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: jsmin/0.0.1/Makefile
===================================================================
--- jsmin/0.0.1/Makefile	(nonexistent)
+++ jsmin/0.0.1/Makefile	(revision 5)
@@ -0,0 +1,53 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/jsmin
+
+
+# ======= __END_OF_REQUIRES__ =======
+
+
+tar_gz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/jsmin/jsmin-0.0.1.tar.gz
+src_dir         = jsmin-0.0.1
+build_dir       = $(TARGET_BUILD_DIR)/built
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+SRC_DIR         = $(TARGET_BUILD_DIR)/jsmin-0.0.1
+SRC_ARCHIVE     = $(tar_gz_archive)
+
+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
+
+
+environment     =
+
+extra_configure_switches  = --program-prefix=''
+extra_configure_switches += --program-suffix=''
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	@touch $@
+
+$(build_target): $(src_done)
+	@mkdir -p $(build_dir)
+	@cd $(build_dir) && $(environment) ../$(src_dir)/configure \
+	  --prefix=/usr \
+	  $(extra_configure_switches)
+	@$(environment) $(MAKE) -C $(build_dir) all
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing JSMIN binary =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  cp -a $(build_dir)/src/jsmin     $(BUILDSYSTEM)/sbin && \
+	  echo "JSMIN              := $(BUILDSYSTEM)/sbin/jsmin" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: jsmin/0.0.1
===================================================================
--- jsmin/0.0.1	(nonexistent)
+++ jsmin/0.0.1	(revision 5)

Property changes on: jsmin/0.0.1
___________________________________________________________________
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: jsmin
===================================================================
--- jsmin	(nonexistent)
+++ jsmin	(revision 5)

Property changes on: jsmin
___________________________________________________________________
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: perl/5.36.0/Makefile
===================================================================
--- perl/5.36.0/Makefile	(nonexistent)
+++ perl/5.36.0/Makefile	(revision 5)
@@ -0,0 +1,119 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/perl
+
+REQUIRES = build-system/cpan
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 5.36.0
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/perl/perl-$(version).tar.xz
+SRC_ARCHIVE     = $(tar_xz_archive)
+SRC_DIR         = $(TARGET_BUILD_DIR)/perl-$(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
+
+
+ARCH     = $(shell uname -m)
+ARCHNAME = $(ARCH)-linux
+
+OPTIMIZE = -O2
+
+ifeq ($(ARCH),x86_64)
+  ARCH_OPTS  = -Dcccdlflags='-fPIC' -Duselargefiles -Duse64bitall
+  OPTIMIZE  += -fPIC
+endif
+
+OPTIMIZE += -Wno-cast-function-type -Wno-nonnull -Wno-clobbered
+OPTIMIZE += -Wno-multistatement-macros -Wimplicit-fallthrough=0
+
+#
+# If after all this time you still don't trust threads, comment out the variable below:
+#
+USE_THREADS = -Dusethreads -Duseithreads
+
+
+extra_configure_switches  = -Darchname=$(ARCHNAME)
+
+extra_configure_switches += -Dprefix=$(BUILDSYSTEM)/usr
+extra_configure_switches += -Dbin='$(BUILDSYSTEM)/usr/bin'
+extra_configure_switches += -Dscriptdir='$(BUILDSYSTEM)/usr/bin'
+
+extra_configure_switches += -Darchlib='$(BUILDSYSTEM)/usr/lib/perl5'
+extra_configure_switches += -Dprivlib='$(BUILDSYSTEM)/usr/share/perl5'
+
+extra_configure_switches += -Dsiteprefix=$(BUILDSYSTEM)/usr
+extra_configure_switches += -Dsitebin='$(BUILDSYSTEM)/usr/bin'
+extra_configure_switches += -Dsitescript='$(BUILDSYSTEM)/usr/bin'
+extra_configure_switches += -Dsitearch='$(BUILDSYSTEM)/usr/lib/perl5/site_perl'
+extra_configure_switches += -Dsitelib='$(BUILDSYSTEM)/usr/share/perl5/site_perl'
+
+extra_configure_switches += -Dvendorprefix=$(BUILDSYSTEM)/usr
+extra_configure_switches += -Dvendorbin='$(BUILDSYSTEM)/usr/bin'
+extra_configure_switches += -Dvendorscript='$(BUILDSYSTEM)/usr/bin'
+extra_configure_switches += -Dvendorarch='$(BUILDSYSTEM)/usr/lib/perl5/vendor_perl'
+extra_configure_switches += -Dvendorlib='$(BUILDSYSTEM)/usr/share/perl5/vendor_perl'
+
+extra_configure_switches += -Dinstallprefix=$(BUILDSYSTEM)/usr
+extra_configure_switches += -Dlibpth='$(BUILDSYSTEM)/usr/lib'
+extra_configure_switches += -Dloclibpth='$(BUILDSYSTEM)/usr/lib'
+extra_configure_switches += -Dlocincpth='$(BUILDSYSTEM)/usr/include'
+
+extra_configure_switches += -Doptimize='$(OPTIMIZE)'
+extra_configure_switches += $(USE_THREADS)
+extra_configure_switches += $(ARCH_OPTS)
+extra_configure_switches += -Duseshrplib
+extra_configure_switches += -Ubincompat5005
+extra_configure_switches += -Uversiononly
+
+extra_configure_switches += -Dpager='/usr/bin/less -isr'
+
+extra_configure_switches += -Dhtml1dir='$(BUILDSYSTEM)/usr/share/doc/perl-$(version)/html'
+extra_configure_switches += -Dhtml3dir='$(BUILDSYSTEM)/usr/share/doc/perl-$(version)/html'
+extra_configure_switches += -Dman1dir='$(BUILDSYSTEM)/usr/share/man/man1'
+extra_configure_switches += -Dman3dir='$(BUILDSYSTEM)/usr/share/man/man3'
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@cd $(SRC_DIR) && echo 'installstyle="lib/perl5"' >> hints/linux.sh
+	@touch $@
+
+$(build_target): $(src_done)
+	@cd $(SRC_DIR) && ./Configure -des $(extra_configure_switches)
+	@cd $(SRC_DIR) && $(MAKE)
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing Perl 5 binary =======\n"
+	@cd $(SRC_DIR) && $(MAKE) -j1 install
+	@echo -e "\n======= Install Perl modules =======\n"
+	@( cd $(BUILDSYSTEM)/usr/bin ; \
+	   ./cpan-install Module::Build              2>/dev/null ; \
+	   ./cpan-install IPC::System::Simple        2>/dev/null ; \
+	   ./cpan-install File::Slurp                2>/dev/null ; \
+	   ./cpan-install File::Which                2>/dev/null ; \
+	   ./cpan-install List::MoreUtils            2>/dev/null ; \
+	   ./cpan-install Data::Dumper               2>/dev/null ; \
+	   ./cpan-install Devel::CheckLib            2>/dev/null ; \
+	   ./cpan-install DBI                        2>/dev/null ; \
+	   ./cpan-install URI                        2>/dev/null ; \
+	 )
+	@echo -e "\n======= Setup PERL build-system variable =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "PERL               := $(BUILDSYSTEM)/usr/bin/perl" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: perl/5.36.0/PATCHES
===================================================================
--- perl/5.36.0/PATCHES	(nonexistent)
+++ perl/5.36.0/PATCHES	(revision 5)
@@ -0,0 +1,2 @@
+
+../../../sources/packages/perl/patches/perl-5.36.0-multilib.patch -p0
Index: perl/5.36.0
===================================================================
--- perl/5.36.0	(nonexistent)
+++ perl/5.36.0	(revision 5)

Property changes on: perl/5.36.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: perl
===================================================================
--- perl	(nonexistent)
+++ perl	(revision 5)

Property changes on: perl
___________________________________________________________________
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: perl-SGMLS/1.1/Makefile
===================================================================
--- perl-SGMLS/1.1/Makefile	(nonexistent)
+++ perl-SGMLS/1.1/Makefile	(revision 5)
@@ -0,0 +1,61 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/perl-SGMLS
+
+REQUIRES = build-system/3pp/app/perl/5.36.0
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 1.1
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/perl-SGMLS/perl-SGMLS-$(version).tar.xz
+SRC_ARCHIVE     = $(tar_xz_archive)
+SRC_DIR         = $(TARGET_BUILD_DIR)/perl-SGMLS-$(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
+
+
+build_environment  = PERL_MM_USE_DEFAULT=1
+build_environment += PERL_AUTOINSTALL=--skipdeps
+build_environment += PERL_MM_OPT="INSTALLDIRS=vendor"
+build_environment += PERL_MB_OPT="--installdirs vendor"
+build_environment += MODULEBUILDRC=/dev/null
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@cd $(SRC_DIR) && $(build_environment) $(BUILDSYSTEM)/usr/bin/perl Makefile.PL
+	@cd $(SRC_DIR) && $(MAKE)
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Install Required modules =======\n"
+	@( cd $(BUILDSYSTEM)/usr/bin ; \
+	   ./cpan-install Locale::gettext             2>/dev/null ; \
+	   ./cpan-install Text::WrapI18N              2>/dev/null ; \
+	   ./cpan-install Term::ReadKey               2>/dev/null ; \
+	   ./cpan-install SGML::Parser::OpenSP::Tools 2>/dev/null ; \
+	   ./cpan-install Docbook::Table              2>/dev/null ; \
+	   ./cpan-install Pod::DocBook                2>/dev/null ; \
+	   ./cpan-install Unicode::GCString           2>/dev/null ; \
+	   ./cpan-install YAML::Tiny                  2>/dev/null ; \
+	 )
+	@echo -e "\n======= Installing Perl SGMLS binaries =======\n"
+	@cd $(SRC_DIR) && $(MAKE) -j1 install
+	@touch $@
Index: perl-SGMLS/1.1/PATCHES
===================================================================
Index: perl-SGMLS/1.1
===================================================================
--- perl-SGMLS/1.1	(nonexistent)
+++ perl-SGMLS/1.1	(revision 5)

Property changes on: perl-SGMLS/1.1
___________________________________________________________________
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: perl-SGMLS
===================================================================
--- perl-SGMLS	(nonexistent)
+++ perl-SGMLS	(revision 5)

Property changes on: perl-SGMLS
___________________________________________________________________
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: pkgtools/0.2.1/Makefile
===================================================================
--- pkgtools/0.2.1/Makefile	(nonexistent)
+++ pkgtools/0.2.1/Makefile	(revision 5)
@@ -0,0 +1,76 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/pkgtools
+
+REQUIRES = build-system/3pp/app/dialog/1.3-20210621
+
+# ======= __END_OF_REQUIRES__ =======
+
+
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/pkgtools/pkgtools-0.2.1.tar.xz
+src_dir         = pkgtools-0.2.1
+build_dir       = $(TARGET_BUILD_DIR)/built
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+SRC_DIR         = $(TARGET_BUILD_DIR)/pkgtools-0.2.1
+SRC_ARCHIVE     = $(tar_xz_archive)
+
+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
+
+
+environment     = CPPFLAGS=-I$(BUILDSYSTEM)/usr/include
+environment    += LDFLAGS=-Wl,-rpath=$(BUILDSYSTEM)/usr/lib
+
+extra_configure_switches += --with-dialog=$(BUILDSYSTEM)/usr
+extra_configure_switches += --with-dialog-test=yes
+extra_configure_switches += --with-gpg2=yes
+extra_configure_switches += --with-distro-name=$(DISTRO_NAME)
+extra_configure_switches += --with-distro-version=$(DISTRO_VERSION)
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@cd $(SRC_DIR) && ./bootstrap
+	@mkdir -p $(build_dir)
+	@cd $(build_dir) && $(environment) ../$(src_dir)/configure \
+	  --prefix=$(BUILDSYSTEM)/usr \
+	  --sbindir=$(BUILDSYSTEM)/sbin \
+	  --build=$(BUILD) \
+	  --host=$(BUILD)  \
+	  $(extra_configure_switches)
+	@$(environment) $(MAKE) -C $(build_dir) all
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing PKGTOOLS binaries =======\n"
+	@$(environment) $(MAKE) -j1 -C $(build_dir) install
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "CHECK_DB_INTEGRITY := $(BUILDSYSTEM)/sbin/check-db-integrity" >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "CHECK_PACKAGE      := $(BUILDSYSTEM)/sbin/check-package"      >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "CHECK_REQUIRES     := $(BUILDSYSTEM)/sbin/check-requires"     >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "CHANGE_REFS        := $(BUILDSYSTEM)/sbin/chrefs"             >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "INSTALL_PACKAGE    := $(BUILDSYSTEM)/sbin/install-package"    >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "INSTALL_PKGLIST    := $(BUILDSYSTEM)/sbin/install-pkglist"    >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "MAKE_PACKAGE       := $(BUILDSYSTEM)/sbin/make-package"       >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "MAKE_PKGLIST       := $(BUILDSYSTEM)/sbin/make-pkglist"       >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "PKGINFO            := $(BUILDSYSTEM)/sbin/pkginfo"            >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "PKGLOG             := $(BUILDSYSTEM)/sbin/pkglog"             >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "REMOVE_PACKAGE     := $(BUILDSYSTEM)/sbin/remove-package"     >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "UPDATE_PACKAGE     := $(BUILDSYSTEM)/sbin/update-package"     >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: pkgtools/0.2.1/PATCHES
===================================================================
Index: pkgtools/0.2.1
===================================================================
--- pkgtools/0.2.1	(nonexistent)
+++ pkgtools/0.2.1	(revision 5)

Property changes on: pkgtools/0.2.1
___________________________________________________________________
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: pkgtools
===================================================================
--- pkgtools	(nonexistent)
+++ pkgtools	(revision 5)

Property changes on: pkgtools
___________________________________________________________________
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: po4a/0.68/Makefile
===================================================================
--- po4a/0.68/Makefile	(nonexistent)
+++ po4a/0.68/Makefile	(revision 5)
@@ -0,0 +1,54 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/po4a
+
+REQUIRES = build-system/3pp/app/perl-SGMLS/1.1
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 0.68
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/po4a/po4a-$(version).tar.xz
+SRC_ARCHIVE     = $(tar_xz_archive)
+SRC_DIR         = $(TARGET_BUILD_DIR)/po4a-$(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/perl Build.PL prefix=/usr installdirs=vendor destdir=$(BUILDSYSTEM) ; \
+	   ./Build ; \
+	 )
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing Perl SGMLS binaries =======\n"
+	@( cd $(SRC_DIR) ; \
+	   ./Build install \
+	            --install_path bindoc=/usr/share/man/man1 \
+	            --install_path libdoc=/usr/share/man/man3 ; \
+	 )
+	@find $(BUILDSYSTEM)/usr/lib/perl5 \
+	      -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true
+	@echo -e "\n======= Setup PO4A build-system variable =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "PO4A               := $(BUILDSYSTEM)/usr/bin/po4a" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: po4a/0.68/PATCHES
===================================================================
Index: po4a/0.68
===================================================================
--- po4a/0.68	(nonexistent)
+++ po4a/0.68	(revision 5)

Property changes on: po4a/0.68
___________________________________________________________________
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: po4a
===================================================================
--- po4a	(nonexistent)
+++ po4a	(revision 5)

Property changes on: po4a
___________________________________________________________________
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: populatefs/1.1/Makefile
===================================================================
--- populatefs/1.1/Makefile	(nonexistent)
+++ populatefs/1.1/Makefile	(revision 5)
@@ -0,0 +1,56 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/populatefs
+
+
+# ======= __END_OF_REQUIRES__ =======
+
+
+version         = 1.1
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/populatefs/populatefs-$(version).tar.xz
+src_dir         = populatefs-$(version)
+build_dir       = $(TARGET_BUILD_DIR)/built
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+SRC_DIR         = $(TARGET_BUILD_DIR)/populatefs-$(version)
+SRC_ARCHIVE     = $(tar_xz_archive)
+
+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
+
+
+environment     = prefix=/usr
+environment    += bindir=/sbin
+environment    += libdir=/usr/lib$(BUILD_MULTILIB_SUFFIX)
+environment    += includedir=/usr/include
+environment    += LDFLAGS=-L/usr/lib$(BUILD_MULTILIB_SUFFIX)
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@( cd $(SRC_DIR) ; \
+	   $(MAKE) $(environment) ; \
+	 )
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing POPULATEFS binary =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  cp -a $(SRC_DIR)/src/populatefs $(BUILDSYSTEM)/sbin && \
+	  echo "POPULATEFS         := $(BUILDSYSTEM)/sbin/populatefs" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: populatefs/1.1/PATCHES
===================================================================
--- populatefs/1.1/PATCHES	(nonexistent)
+++ populatefs/1.1/PATCHES	(revision 5)
@@ -0,0 +1,3 @@
+
+../../../sources/packages/populatefs/patches/populatefs-1.1-sys-macros.patch -p0
+../../../sources/packages/populatefs/patches/populatefs-1.1-version.patch    -p0
Index: populatefs/1.1
===================================================================
--- populatefs/1.1	(nonexistent)
+++ populatefs/1.1	(revision 5)

Property changes on: populatefs/1.1
___________________________________________________________________
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: populatefs
===================================================================
--- populatefs	(nonexistent)
+++ populatefs	(revision 5)

Property changes on: populatefs
___________________________________________________________________
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: python2/2.7.18/Makefile
===================================================================
--- python2/2.7.18/Makefile	(nonexistent)
+++ python2/2.7.18/Makefile	(revision 5)
@@ -0,0 +1,110 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/python2
+
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 2.7.18
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/python2/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 += --enable-ipv6
+extra_configure_switches += --enable-shared
+
+python_environment  = RFS=$(BUILDSYSTEM)
+python_environment += PYTHONHOME=$(BUILDSYSTEM)/usr/lib/python2.7
+python_environment += LDFLAGS='$(LDFLAGS)'
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@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)
+	@cd $(SRC_DIR) && $(python_environment) $(MAKE) Parser/pgen
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing Python 2.7 binary =======\n"
+	@cd $(SRC_DIR) && $(MAKE) -j1 $(python_environment) install
+	@cp -a $(SRC_DIR)/Parser/pgen $(BUILDSYSTEM)/usr/bin/
+	@( cd $(BUILDSYSTEM)/usr/bin ; \
+	   mv 2to3  2to3-2.7 ; ln -sf 2to3-2.7 2to3   ; \
+	   mv idle  idle2.7  ; ln -sf idle2.7  idle2  ; ln -sf idle2  idle ; \
+	   mv pydoc pydoc2.7 ; ln -sf pydoc2.7 pydoc2 ; ln -sf pydoc2 pydoc; \
+	   mv pgen  pgen2.7  ; ln -sf pgen2.7  pgen2  ; ln -sf pgen2  pgen ; \
+	 )
+	@( cd $(BUILDSYSTEM)/usr/include/python2.7 ; \
+	   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,^\/\* #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,'                          \
+	         -e 's,^#define VA_LIST_IS_ARRAY 1,\/\* #undef VA_LIST_IS_ARRAY \*\/,'             \
+	     > pyconfig-32.h ; \
+	 )
+	@echo -e "\n======= Setup PYTHON2 build-system variable =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "PYTHON2            := $(BUILDSYSTEM)/usr/bin/python2" >> $(BUILDSYSTEM)/sbin/.config ; \
+	  echo "PGEN2              := $(BUILDSYSTEM)/usr/bin/pgen2"   >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: python2/2.7.18/PATCHES
===================================================================
Index: python2/2.7.18
===================================================================
--- python2/2.7.18	(nonexistent)
+++ python2/2.7.18	(revision 5)

Property changes on: python2/2.7.18
___________________________________________________________________
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: python2
===================================================================
--- python2	(nonexistent)
+++ python2	(revision 5)

Property changes on: python2
___________________________________________________________________
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: python2-modules/pip/20.3/Makefile
===================================================================
--- python2-modules/pip/20.3/Makefile	(nonexistent)
+++ python2-modules/pip/20.3/Makefile	(revision 5)
@@ -0,0 +1,56 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/pip
+
+REQUIRES = build-system/3pp/app/python2-modules/setuptools/44.0.0
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 20.3
+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/python2 setup.py build ; \
+	 )
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing setuptools-$(version) =======\n"
+	@( cd $(SRC_DIR) ; \
+	   $(BUILDSYSTEM)/usr/bin/python2 setup.py install ; \
+	 )
+	@( cd $(BUILDSYSTEM)/usr/bin ; \
+	   rm -f pip ; ln -sf pip2 pip ; \
+	 )
+	@echo -e "\n======= Install Python2 M2Crypto package =======\n"
+	@( cd $(BUILDSYSTEM)/usr/bin ; \
+	   ./pip2.7 install M2Crypto ; \
+	 )
+	@echo -e "\n======= Setup PIP2 build-system variable =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "PIP2               := $(BUILDSYSTEM)/usr/bin/pip2"    >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: python2-modules/pip/20.3/PATCHES
===================================================================
Index: python2-modules/pip/20.3
===================================================================
--- python2-modules/pip/20.3	(nonexistent)
+++ python2-modules/pip/20.3	(revision 5)

Property changes on: python2-modules/pip/20.3
___________________________________________________________________
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: python2-modules/pip
===================================================================
--- python2-modules/pip	(nonexistent)
+++ python2-modules/pip	(revision 5)

Property changes on: python2-modules/pip
___________________________________________________________________
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: python2-modules/setuptools/44.0.0/Makefile
===================================================================
--- python2-modules/setuptools/44.0.0/Makefile	(nonexistent)
+++ python2-modules/setuptools/44.0.0/Makefile	(revision 5)
@@ -0,0 +1,47 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/python-modules/setuptools
+
+REQUIRES = build-system/3pp/app/python2/2.7.18
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 44.0.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
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@( cd $(SRC_DIR) ; \
+	   $(BUILDSYSTEM)/usr/bin/python2 bootstrap.py   ; \
+	   $(BUILDSYSTEM)/usr/bin/python2 setup.py build ; \
+	 )
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing setuptools-$(version) =======\n"
+	@( cd $(SRC_DIR) ; \
+	   $(BUILDSYSTEM)/usr/bin/python2 setup.py install ; \
+	 )
+	@touch $@
Index: python2-modules/setuptools/44.0.0/PATCHES
===================================================================
--- python2-modules/setuptools/44.0.0/PATCHES	(nonexistent)
+++ python2-modules/setuptools/44.0.0/PATCHES	(revision 5)
@@ -0,0 +1,2 @@
+
+#../../../../sources/packages/python-modules/setuptools/patches/setuptools-46.4.0-warn.patch -p0
Index: python2-modules/setuptools/44.0.0
===================================================================
--- python2-modules/setuptools/44.0.0	(nonexistent)
+++ python2-modules/setuptools/44.0.0	(revision 5)

Property changes on: python2-modules/setuptools/44.0.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: python2-modules/setuptools
===================================================================
--- python2-modules/setuptools	(nonexistent)
+++ python2-modules/setuptools	(revision 5)

Property changes on: python2-modules/setuptools
___________________________________________________________________
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: python2-modules
===================================================================
--- python2-modules	(nonexistent)
+++ python2-modules	(revision 5)

Property changes on: python2-modules
___________________________________________________________________
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: python3/3.10.8/Makefile
===================================================================
--- python3/3.10.8/Makefile	(nonexistent)
+++ python3/3.10.8/Makefile	(revision 5)
@@ -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.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: python3/3.10.8/PATCHES
===================================================================
Index: python3/3.10.8
===================================================================
--- python3/3.10.8	(nonexistent)
+++ python3/3.10.8	(revision 5)

Property changes on: python3/3.10.8
___________________________________________________________________
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: python3
===================================================================
--- python3	(nonexistent)
+++ python3	(revision 5)

Property changes on: python3
___________________________________________________________________
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: python3-modules/m2crypto/0.38.0/Makefile
===================================================================
--- python3-modules/m2crypto/0.38.0/Makefile	(nonexistent)
+++ python3-modules/m2crypto/0.38.0/Makefile	(revision 5)
@@ -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/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: python3-modules/m2crypto/0.38.0/PATCHES
===================================================================
Index: python3-modules/m2crypto/0.38.0
===================================================================
--- python3-modules/m2crypto/0.38.0	(nonexistent)
+++ python3-modules/m2crypto/0.38.0	(revision 5)

Property changes on: python3-modules/m2crypto/0.38.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: python3-modules/m2crypto
===================================================================
--- python3-modules/m2crypto	(nonexistent)
+++ python3-modules/m2crypto	(revision 5)

Property changes on: python3-modules/m2crypto
___________________________________________________________________
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: python3-modules/pip/22.2.2/Makefile
===================================================================
--- python3-modules/pip/22.2.2/Makefile	(nonexistent)
+++ python3-modules/pip/22.2.2/Makefile	(revision 5)
@@ -0,0 +1,59 @@
+
+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 ; \
+	 )
+	@echo -e "\n======= Setup PIP3 build-system variable =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "PIP3               := $(BUILDSYSTEM)/usr/bin/pip3"    >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: python3-modules/pip/22.2.2/PATCHES
===================================================================
Index: python3-modules/pip/22.2.2
===================================================================
--- python3-modules/pip/22.2.2	(nonexistent)
+++ python3-modules/pip/22.2.2	(revision 5)

Property changes on: python3-modules/pip/22.2.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: python3-modules/pip
===================================================================
--- python3-modules/pip	(nonexistent)
+++ python3-modules/pip	(revision 5)

Property changes on: python3-modules/pip
___________________________________________________________________
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: python3-modules/setuptools/65.5.0/Makefile
===================================================================
--- python3-modules/setuptools/65.5.0/Makefile	(nonexistent)
+++ python3-modules/setuptools/65.5.0/Makefile	(revision 5)
@@ -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.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: python3-modules/setuptools/65.5.0/PATCHES
===================================================================
Index: python3-modules/setuptools/65.5.0
===================================================================
--- python3-modules/setuptools/65.5.0	(nonexistent)
+++ python3-modules/setuptools/65.5.0	(revision 5)

Property changes on: python3-modules/setuptools/65.5.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: python3-modules/setuptools
===================================================================
--- python3-modules/setuptools	(nonexistent)
+++ python3-modules/setuptools	(revision 5)

Property changes on: python3-modules/setuptools
___________________________________________________________________
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: python3-modules
===================================================================
--- python3-modules	(nonexistent)
+++ python3-modules	(revision 5)

Property changes on: python3-modules
___________________________________________________________________
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: ruby/3.2.0/Makefile
===================================================================
--- ruby/3.2.0/Makefile	(nonexistent)
+++ ruby/3.2.0/Makefile	(revision 5)
@@ -0,0 +1,61 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/ruby
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 3.2.0
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/ruby/ruby-$(version).tar.xz
+SRC_ARCHIVE     = $(tar_xz_archive)
+SRC_DIR         = $(TARGET_BUILD_DIR)/ruby-$(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 += --datadir=$(BUILDSYSTEM)/usr/share
+extra_configure_switches += --with-ruby-version=$(version)
+extra_configure_switches += --enable-shared
+extra_configure_switches += --enable-pthread
+extra_configure_switches += --disable-install-capi
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(build_target): $(src_done)
+	@cd $(SRC_DIR) && ./configure \
+	  --prefix=$(BUILDSYSTEM)/usr \
+	  --build=$(BUILD) \
+	  --host=$(BUILD)  \
+	  $(extra_configure_switches)
+	@cd $(SRC_DIR) && $(MAKE)
+	@touch $@
+
+$(install_target): $(build_target)
+	@echo -e "\n======= Installing Ruby $(version) binary =======\n"
+	@cd $(SRC_DIR) && $(MAKE) -j1 install
+	@echo -e "\n======= Setup RUBY build-system variable =======\n"
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "RUBY               := $(BUILDSYSTEM)/usr/bin/ruby" >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: ruby/3.2.0/PATCHES
===================================================================
Index: ruby/3.2.0
===================================================================
--- ruby/3.2.0	(nonexistent)
+++ ruby/3.2.0	(revision 5)

Property changes on: ruby/3.2.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: ruby
===================================================================
--- ruby	(nonexistent)
+++ ruby	(revision 5)

Property changes on: ruby
___________________________________________________________________
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: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
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
+*~