mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
- This idea originates from very early in the project and was, at the
time, a very easy way to categorise things.
- Now, it doesn't really make much sense - it is fairly arbitary, often
occuring when there is a change in kernel, but not from builder-hex0
to fiwix, and sysb is in reality completely unnecessary.
- In short, the sys* stuff is a bit of a mess that makes the project
more difficult to understand.
- This puts everything down into one folder and has a manifest file that
is used to generate the build scripts on the fly rather than using
coded scripts.
- This is created in the "seed" stage.
stage0-posix -- (calls) --> seed -- (generates) --> main steps
Alongside this change there are a variety of other smaller fixups to the
general structure of the live-bootstrap rootfs.
- Creating a rootfs has become much simpler and is defined as code in
go.sh. The new structure, for an about-to-be booted system, is
/
-- /steps (direct copy of steps/)
-- /distfiles (direct copy of distfiles/)
-- all files from seed/*
-- all files from seed/stage0-posix/*
- There is no longer such a thing as /usr/include/musl, this didn't
really make any sense, as musl is the final libc used. Rather, to
separate musl and mes, we have /usr/include/mes, which is much easier
to work with.
- This also makes mes easier to blow away later.
- A few things that weren't properly in packages have been changed;
checksum-transcriber, simple-patch, kexec-fiwix have all been given
fully qualified package names.
- Highly breaking change, scripts now exist in their package directory
but NOT WITH THE packagename.sh. Rather, they use pass1.sh, pass2.sh,
etc. This avoids manual definition of passes.
- Ditto with patches; default directory is patches, but then any patch
series specific to a pass are named patches-passX.
102 lines
3.2 KiB
Bash
Executable file
102 lines
3.2 KiB
Bash
Executable file
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# Delete generated files that won't be regenerated
|
|
rm Lib/pydoc_data/topics.py \
|
|
Misc/stable_abi.toml
|
|
|
|
# Regenerate ssl_data for ssl module
|
|
rm Modules/_ssl_data_300.h Modules/_ssl_data.h
|
|
python Tools/ssl/make_ssl_data.py ../openssl-1.1.1l Modules/_ssl_data_111.h
|
|
sed -i 's#$(srcdir)/Modules/_ssl_data.h ##' Makefile.pre.in
|
|
sed -i 's#$(srcdir)/Modules/_ssl_data_300.h ##' Makefile.pre.in
|
|
|
|
# Regenerate encodings
|
|
grep generated -r . -l | grep encodings | xargs rm
|
|
mkdir Tools/unicode/in Tools/unicode/out
|
|
mv ../CP437.TXT Tools/unicode/in/
|
|
pushd Tools/unicode
|
|
python gencodec.py in/ ../../Lib/encodings/
|
|
popd
|
|
|
|
# Regenerate stringprep
|
|
rm Lib/stringprep.py
|
|
mv ../rfc3454.txt .
|
|
python Tools/unicode/mkstringprep.py > Lib/stringprep.py
|
|
|
|
# Regenerate unicode
|
|
rm Modules/unicodedata_db.h Modules/unicodename_db.h Objects/unicodetype_db.h
|
|
mkdir -p Tools/unicode/data
|
|
mv ../*.txt ../*.zip Tools/unicode/data/
|
|
python Tools/unicode/makeunicodedata.py
|
|
|
|
# Regenerate Lib/re/_casefix.py
|
|
rm Lib/re/_casefix.py
|
|
python Tools/scripts/generate_re_casefix.py Lib/re/_casefix.py
|
|
|
|
# Regenerate Programs/test_frozenmain.h
|
|
rm Programs/test_frozenmain.h
|
|
python Programs/freeze_test_frozenmain.py Programs/test_frozenmain.h
|
|
|
|
# Create dummy Python/stdlib_module_names.h
|
|
echo 'static const char* _Py_stdlib_module_names[] = {};' > Python/stdlib_module_names.h
|
|
|
|
# Regenerate autoconf
|
|
autoreconf-2.71 -fi
|
|
}
|
|
|
|
src_configure() {
|
|
mv Setup.local Modules
|
|
MACHDEP=linux ac_sys_system=Linux \
|
|
CPPFLAGS="-U__DATE__ -U__TIME__" \
|
|
PKG_CONFIG_PATH="${LIBDIR}/pkgconfig/" \
|
|
LDFLAGS="-static" \
|
|
./configure \
|
|
--build=i386-unknown-linux-musl \
|
|
--host=i386-unknown-linux-musl \
|
|
--prefix="${PREFIX}" \
|
|
--libdir="${LIBDIR}" \
|
|
--with-system-ffi \
|
|
--disable-shared
|
|
}
|
|
|
|
src_compile() {
|
|
# Regenerations
|
|
# We have to choose the order ourselves because the Makefile is extremely lax about the order
|
|
# First of all, do everything that doesn't use any C
|
|
rm Modules/_blake2/blake2s_impl.c
|
|
make "${MAKEJOBS}" regen-opcode \
|
|
regen-opcode-targets \
|
|
regen-typeslots \
|
|
regen-token \
|
|
regen-ast \
|
|
regen-keyword \
|
|
regen-sre \
|
|
clinic \
|
|
regen-pegen-metaparser \
|
|
regen-pegen \
|
|
regen-global-objects
|
|
|
|
# Do the freeze regen process
|
|
make "${MAKEJOBS}" regen-frozen
|
|
make "${MAKEJOBS}" regen-deepfreeze
|
|
make "${MAKEJOBS}" regen-global-objects
|
|
|
|
make "${MAKEJOBS}" CPPFLAGS="-U__DATE__ -U__TIME__"
|
|
|
|
# Regen Python/stdlib_module_names.h (you must have an existing build first)
|
|
make "${MAKEJOBS}" regen-stdlib-module-names
|
|
|
|
# Now rebuild with proper stdlib_module_names.h
|
|
make "${MAKEJOBS}" CPPFLAGS="-U__DATE__ -U__TIME__"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
ln --symbolic --relative "${DESTDIR}${LIBDIR}/python3.11/lib-dynload" "${DESTDIR}${PREFIX}/lib/python3.11/lib-dynload"
|
|
ln --symbolic --relative "${DESTDIR}${PREFIX}/bin/python3.11" "${DESTDIR}${PREFIX}/bin/python"
|
|
}
|