├── .github └── workflows │ ├── bwrap.apparmor │ ├── bwrap.yml │ └── lint.yml ├── .gitignore ├── .gitmodules ├── DEVEL.md ├── LICENSES ├── Artistic-1.0.txt ├── BSD-2-Clause.txt ├── BSD-3-Clause-flex.txt ├── BSD-3-Clause.txt ├── BSD-4-Clause.txt ├── CC-BY-NC-SA-3.0.txt ├── CC-BY-SA-4.0.txt ├── CC0-1.0.txt ├── GPL-2.0-only.txt ├── GPL-2.0-or-later.txt ├── GPL-3.0-or-later.txt ├── LGPL-2.0-or-later.txt ├── MIT.txt ├── PSF-2.0.txt ├── Python-2.0.1.txt ├── bzip2-1.0.6.txt └── curl.txt ├── README.rst ├── REUSE.toml ├── download-distfiles.sh ├── lib ├── generator.py ├── simple_mirror.py ├── target.py └── utils.py ├── mirror.sh ├── parts.rst ├── rootfs.py ├── seed ├── after.kaem ├── configurator.amd64.checksums ├── configurator.c ├── configurator.riscv64.checksums ├── configurator.x86.checksums ├── preseeded.kaem ├── script-generator.amd64.checksums ├── script-generator.c ├── script-generator.riscv64.checksums ├── script-generator.x86.checksums └── seed.kaem ├── source_manifest.py ├── steps ├── SHA256SUMS.pkgs ├── autoconf-2.52 │ ├── pass1.sh │ └── sources ├── autoconf-2.53 │ ├── pass1.sh │ ├── patches │ │ └── autoconf_252.patch │ └── sources ├── autoconf-2.54 │ ├── pass1.sh │ └── sources ├── autoconf-2.55 │ ├── pass1.sh │ └── sources ├── autoconf-2.57 │ ├── pass1.sh │ └── sources ├── autoconf-2.59 │ ├── pass1.sh │ └── sources ├── autoconf-2.61 │ ├── pass1.sh │ └── sources ├── autoconf-2.64 │ ├── pass1.sh │ └── sources ├── autoconf-2.69 │ ├── pass1.sh │ └── sources ├── autoconf-2.71 │ ├── pass1.sh │ └── sources ├── autoconf-archive-2021.02.19 │ ├── pass1.sh │ └── sources ├── autogen-5.18.16 │ ├── pass1.sh │ └── sources ├── automake-1.10.3 │ ├── pass1.sh │ ├── patches │ │ └── aclocal_glob.patch │ └── sources ├── automake-1.11.2 │ ├── pass1.sh │ ├── patches │ │ └── aclocal_glob.patch │ └── sources ├── automake-1.15.1 │ ├── pass1.sh │ ├── patches │ │ ├── aclocal_glob.patch │ │ ├── bootstrap.patch │ │ └── shellcheck-bypass.patch │ └── sources ├── automake-1.16.3 │ ├── pass1.sh │ └── sources ├── automake-1.6.3 │ ├── pass1.sh │ ├── pass2.sh │ └── sources ├── automake-1.7.8 │ ├── pass1.sh │ └── sources ├── automake-1.7 │ ├── pass1.sh │ └── sources ├── automake-1.8.5 │ ├── pass1.sh │ └── sources ├── automake-1.9.6 │ ├── pass1.sh │ └── sources ├── bash-2.05b │ ├── bash-2.05b.checksums │ ├── mk │ │ ├── builtins.mk │ │ ├── common.mk │ │ └── main.mk │ ├── pass1.kaem │ ├── patches │ │ ├── dev-tty.patch │ │ ├── extern.patch │ │ ├── locale.patch │ │ ├── mes-libc.patch │ │ ├── missing-defines.patch │ │ ├── size.patch │ │ └── tinycc.patch │ └── sources ├── bash-5.2.15 │ ├── pass1.sh │ └── sources ├── bc-1.08.1 │ ├── pass1.sh │ └── sources ├── binutils-2.30 │ ├── pass1.sh │ ├── patches │ │ ├── libiberty-add-missing-config-directory-reference.patch │ │ ├── new-gettext.patch │ │ └── opcodes-ensure-i386-init-dependencies-are-satisfied.patch │ └── sources ├── binutils-2.41 │ ├── pass1.sh │ ├── pass2.sh │ ├── patches │ │ ├── new-gettext.patch │ │ ├── no-maint-functions-texi.patch │ │ └── no-maint-opcodes.patch │ └── sources ├── bison-2.3 │ ├── import-gnulib.sh │ ├── pass1.sh │ ├── patches │ │ ├── autover-mismatch.patch │ │ ├── fopen-safer.patch │ │ ├── gnulib-fix.patch │ │ └── our-bison.patch │ └── sources ├── bison-3.4.1 │ ├── files │ │ ├── config.h │ │ ├── configmake.h │ │ ├── parse-gram.c │ │ ├── parse-gram.h │ │ └── parse-gram.y │ ├── mk │ │ ├── lib.mk │ │ ├── main.mk │ │ └── src.mk │ ├── pass1.sh │ ├── pass2.sh │ ├── pass3.sh │ ├── patches │ │ ├── fseterr.patch │ │ └── missing-includes.patch │ └── sources ├── bison-3.4.2 │ ├── import-gnulib.sh │ ├── pass1.sh │ ├── patches │ │ ├── gnulib-makefile.patch │ │ ├── our-bison.patch │ │ └── po-files.patch │ └── sources ├── bzip2-1.0.8 │ ├── bzip2-1.0.8.checksums │ ├── pass1.kaem │ ├── pass2.sh │ ├── patches │ │ ├── coreutils.patch │ │ └── mes-libc.patch │ └── sources ├── ca-certificates-3.99 │ ├── pass1.sh │ └── sources ├── checksum-transcriber-1.0 │ ├── checksum-transcriber-1.0.amd64.checksums │ ├── checksum-transcriber-1.0.riscv64.checksums │ ├── checksum-transcriber-1.0.x86.checksums │ ├── pass1.kaem │ └── src │ │ └── checksum-transcriber.c ├── configurator ├── coreutils-5.0 │ ├── coreutils-5.0.checksums │ ├── mk │ │ ├── main.mk │ │ └── pass2.mk │ ├── pass1.kaem │ ├── pass2.sh │ ├── patches-pass2 │ │ ├── touch-dereference.patch │ │ └── touch-getdate.patch │ ├── patches │ │ ├── expr-strcmp.patch │ │ ├── ls-strcmp.patch │ │ ├── mbstate.patch │ │ ├── modechange.patch │ │ ├── sort-locale.patch │ │ ├── tac-uint64.patch │ │ ├── touch-dereference.patch │ │ ├── touch-getdate.patch │ │ └── uniq-fopen.patch │ └── sources ├── coreutils-6.10 │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── coreutils-9.4 │ ├── import-gnulib.sh │ ├── pass1.sh │ ├── patches │ │ ├── force_to_use_nanosleep.patch │ │ └── remove_gettext.patch │ └── sources ├── curl-8.12.1 │ ├── files │ │ └── sinus.pl │ ├── pass1.sh │ ├── pass2.sh │ ├── patches │ │ └── timeless-mk-ca-bundle.patch │ └── sources ├── dhcpcd-10.0.1 │ ├── pass1.sh │ ├── patches │ │ └── remove-ctassert.patch │ └── sources ├── diffutils-2.7 │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── diffutils-3.10 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── dist-3.5 │ ├── files │ │ ├── config.sh.in │ │ └── revision.h │ ├── pass1.sh │ ├── patches │ │ └── env.patch │ └── sources ├── e2fsprogs-1.45.7 │ ├── pass1.sh │ ├── patches │ │ ├── gawk-fix.patch │ │ └── remove-intl.patch │ └── sources ├── ed-1.4 │ ├── pass1.sh │ └── sources ├── env ├── file-5.44 │ ├── pass1.sh │ └── sources ├── findutils-4.2.33 │ ├── import-gnulib.sh │ ├── pass1.sh │ ├── patches │ │ └── force-getcwd-fallback.patch │ └── sources ├── fiwix-1.5.0-lb1 │ ├── files │ │ ├── custom_config.h │ │ ├── custom_kernel.h │ │ ├── custom_limits.h │ │ └── custom_system.h │ ├── fiwix-1.5.0-lb1.checksums │ ├── pass1.kaem │ └── sources ├── flex-2.5.11 │ ├── files │ │ └── scan.lex.l │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ ├── patches │ │ ├── scan_l.patch │ │ └── yyin.patch │ └── sources ├── flex-2.5.33 │ ├── pass1.sh │ ├── patches │ │ └── disable-unavailables.patch │ └── sources ├── flex-2.6.4 │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── gawk-3.0.4 │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── gawk-5.3.0 │ ├── pass1.sh │ └── sources ├── gc-8.0.4 │ ├── pass1.sh │ └── sources ├── gcc-10.5.0 │ ├── files │ │ ├── decDPD.h.preamble │ │ └── decDPD_generate.c │ ├── pass1.sh │ ├── patches │ │ ├── fix-autoreconf.patch │ │ ├── includes.patch │ │ ├── libgcc-xfmode.patch │ │ ├── new-gettext.patch │ │ └── no-isolate-erroneous-paths-dereference.patch │ └── sources ├── gcc-15.2.0 │ ├── files │ │ ├── decDPD.h.preamble │ │ └── decDPD_generate.c │ ├── pass1.sh │ └── sources ├── gcc-4.0.4 │ ├── pass1.sh │ ├── pass2.sh │ └── sources ├── gcc-4.7.4 │ ├── files │ │ ├── decDPD.h.preamble │ │ └── decDPD_generate.c │ ├── pass1.sh │ ├── patches │ │ ├── 0001-libitm-fixes-for-musl-support.patch │ │ ├── 0002-fixincludes-update-for-musl-support.patch │ │ ├── 0003-unwind-fix-for-musl.patch │ │ ├── 0004-libstdc-gthr-workaround-for-musl.patch │ │ ├── 0005-musl-libc-config.patch │ │ ├── 0006-add-musl-support-to-gcc.patch │ │ ├── 0007-x86-musl-support.patch │ │ ├── 0008-config-linux.h-add-INCLUDE_DEFAULTS_MUSL_LOCAL.patch │ │ ├── gcc-10-fself-test.patch │ │ ├── gcc-10-libgcc-builtin-macros.patch │ │ ├── gcc-10-mlong-double.patch │ │ └── remove_gperf_dependency.patch │ └── sources ├── gettext-0.21 │ ├── pass1.sh │ └── sources ├── gmp-6.2.1 │ ├── pass1.sh │ └── sources ├── gperf-3.1 │ ├── pass1.sh │ └── sources ├── grep-2.4 │ ├── mk │ │ └── main.mk │ └── sources ├── grep-3.7 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── grub-2.06 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── guile-3.0.9 │ ├── import-gnulib-3.0.7.sh │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── gzip-1.13 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── gzip-1.2.4 │ ├── files │ │ └── stat_override.c │ ├── gzip-1.2.4.checksums │ ├── mk │ │ └── main.mk │ ├── pass1.kaem │ ├── patches │ │ ├── makecrc-write-to-file.patch │ │ └── removecrc.patch │ └── sources ├── heirloom-devtools-070527 │ ├── pass1.sh │ └── sources ├── help2man-1.36.4 │ ├── pass1.sh │ ├── patches │ │ └── date.patch │ └── sources ├── helpers.sh ├── improve │ ├── after.sh │ ├── clean_artifacts.sh │ ├── clean_sources.sh │ ├── cleanup_filesystem.sh │ ├── finalize_fhs.sh │ ├── finalize_job_count.sh │ ├── get_network.sh │ ├── make_bootable.sh │ ├── merged_usr.sh │ ├── musl_target.sh │ ├── null_time.sh │ ├── open_console.sh │ ├── populate_device_nodes.sh │ ├── reconfigure.sh │ ├── setup_repo.sh │ ├── swap.sh │ ├── update_checksums.sh │ └── update_env.sh ├── jump │ ├── break.sh │ ├── fiwix.sh │ ├── linux.sh │ └── move_disk.sh ├── kbd-1.15 │ ├── pass1.sh │ ├── patches │ │ ├── fcntl.patch │ │ └── resizecons.patch │ └── sources ├── kexec-fiwix-1.0 │ ├── kexec-fiwix-1.0.checksums │ ├── pass1.kaem │ └── src │ │ ├── kexec-fiwix.c │ │ └── multiboot1.h ├── kexec-linux-1.0.0 │ ├── files │ │ └── kexec-linux.c │ ├── mk │ │ └── main.mk │ └── pass1.sh ├── kexec-tools-2.0.22 │ ├── pass1.sh │ ├── patches │ │ └── bad-gcc-arg.patch │ └── sources ├── libarchive-3.5.2 │ ├── pass1.sh │ └── sources ├── libatomic_ops-7.6.10 │ ├── pass1.sh │ └── sources ├── libbsd-0.11.8 │ ├── pass1.sh │ └── sources ├── libffi-3.3 │ ├── pass1.sh │ └── sources ├── libmd-1.1.0 │ ├── pass1.sh │ └── sources ├── libtool-2.2.4 │ ├── pass1.sh │ ├── patches │ │ ├── archive-objs-order.patch │ │ └── hostname.patch │ └── sources ├── libtool-2.4.7 │ ├── bootstrap-helper.sh │ ├── import-gnulib.sh │ ├── pass1.sh │ ├── patches │ │ └── hostname.patch │ └── sources ├── libunistring-0.9.10 │ ├── pass1.sh │ └── sources ├── linux-4.14.341-openela │ ├── files │ │ └── config │ ├── pass1.sh │ ├── patches │ │ ├── 4.14.341-openela.patch │ │ ├── ddfd117714014cebe7b5d008fdec8eaec620cba1.patch │ │ ├── deblob.patch │ │ ├── disable-broken-check.patch │ │ ├── drm_edid.patch │ │ ├── i2c-hid-dmi-quirks.patch │ │ ├── i915_sw_fence.patch │ │ ├── initramfs_list.patch │ │ ├── linking.patch │ │ ├── regen.patch │ │ ├── remove-alternative-asm.patch │ │ ├── remove-kconfig.patch │ │ └── wno-array-bounds.patch │ └── sources ├── linux-headers-4.14.341-openela │ ├── pass1.sh │ ├── patches │ │ ├── 4.14.341-openela.patch │ │ └── winsize.patch │ └── sources ├── lwext4-1.0.0-lb1 │ ├── config │ │ └── ext4_config.h │ ├── files │ │ └── make_fiwix_initrd.c │ ├── lwext4-1.0.0-lb1.checksums │ ├── pass1.kaem │ └── sources ├── m4-1.4.19 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── m4-1.4.7 │ ├── mk │ │ └── main.mk │ └── sources ├── make-3.82 │ ├── make-3.82.checksums │ ├── pass1.kaem │ ├── pass2.sh │ └── sources ├── make-4.2.1 │ ├── pass1.sh │ └── sources ├── manifest ├── mes-0.27.1 │ ├── files │ │ └── config.h │ ├── mes-0.27.1.amd64.checksums │ ├── mes-0.27.1.riscv64.checksums │ ├── mes-0.27.1.x86.checksums │ ├── pass1.kaem │ ├── simple-patches │ │ ├── wait4.after │ │ └── wait4.before │ └── sources ├── mpc-1.2.1 │ ├── pass1.sh │ └── sources ├── mpfr-4.1.0 │ ├── files │ │ └── mparam.h │ ├── pass1.sh │ ├── patches │ │ └── strtofr-gen-fix.patch │ └── sources ├── musl-1.1.24 │ ├── files │ │ └── disable_ctype_headers.patch │ ├── pass1.sh │ ├── pass2.sh │ ├── pass3.sh │ ├── pass4.sh │ ├── patches-pass4 │ │ ├── avoid_set_thread_area.patch │ │ ├── avoid_sys_clone.patch │ │ ├── madvise_preserve_errno.patch │ │ ├── set_thread_area.patch │ │ └── va_list.patch │ ├── patches │ │ ├── avoid_set_thread_area.patch │ │ ├── avoid_sys_clone.patch │ │ ├── fenv.patch │ │ ├── madvise_preserve_errno.patch │ │ ├── makefile.patch │ │ ├── set_thread_area.patch │ │ ├── sigsetjmp.patch │ │ └── va_list.patch │ └── sources ├── musl-1.2.5 │ ├── files │ │ ├── ld-musl-i386.path │ │ └── ld-musl-i386.path.license │ ├── pass1.sh │ ├── pass2.sh │ ├── pass3.sh │ ├── patches-pass2 │ │ └── .keep │ ├── patches-pass3 │ ├── patches │ │ ├── avoid_set_thread_area.patch │ │ └── avoid_sys_clone.patch │ └── sources ├── opendoas-6.8.2 │ ├── files │ │ ├── doas.conf │ │ └── doas.conf.license │ ├── pass1.sh │ └── sources ├── openssl-3.0.13 │ ├── pass1.sh │ └── sources ├── oyacc-6.6 │ ├── mk │ │ └── main.mk │ ├── oyacc-6.6.checksums │ ├── pass1.kaem │ ├── patches │ │ ├── meslibc.patch │ │ └── tcc.patch │ └── sources ├── patch-2.5.9 │ ├── mk │ │ └── main.mk │ ├── pass1.kaem │ ├── patch-2.5.9.checksums │ └── sources ├── patch-2.7.6 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── perl-5.000 │ ├── files │ │ ├── config.h │ │ ├── keywords.sh │ │ ├── opcode.awk │ │ └── opcode.sh │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── perl-5.003 │ ├── files │ │ └── config.h │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── perl-5.10.1 │ └── sources ├── perl-5.12.5 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── a2p-c-bison.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.15.7 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── 5.14_mk_PL_charclass.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── a2p-c-bison.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.16.3 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── 0001-Revert-l1_char_class_tab.h-Add-field-for-quotemeta.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── a2p-c-bison.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.17.2 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── 0001-Revert-regen-mk_invlists.pl-Fail-if-inversion-list-n.patch │ │ ├── 0001-Unicode-UCD-prop_invlist-Allow-to-return-internal-pr.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── a2p-c-bison.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.17.4 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── 0001-Revert-regen-regcharclass.pl-Generate-macros-for-X-p.patch │ │ ├── 0002-Revert-regexec.c-Use-new-macros-instead-of-swashes.patch │ │ ├── 0003-Revert-Use-macro-not-swash-for-utf8-quotemeta.patch │ │ ├── 0004-Rename-property-involved-in-X-matching-for-clarity.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── a2p-c-bison.patch │ │ ├── duplicate-invlists-defn.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.18.4 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── 0001-Unicode-UCD-Allow-internal-properties-in-invmap.patch │ │ ├── 0002-Unicode-UCD-Add-prop_values-function.patch │ │ ├── 0003-Refactor-ExtUtils-Embed-to-work-with-miniperl.patch │ │ ├── 0004-Tweak-ExtUtils-Embed-s-generated-C-code-to-be-closer.patch │ │ ├── 0005-Move-an-inversion-list-generation-to-mktables.patch │ │ ├── 0006-Partial-backport-Work-properly-under-UTF-8-LC_CTYPE-.patch │ │ ├── Encode-reproducible-includes.patch │ │ ├── Generate-Errno-and-Pod-Functions-with-deterministic-.patch │ │ ├── PPPort-pm-reproducible.patch │ │ ├── ParseXS-reproducible.patch │ │ ├── Revert-regen-mk_PL_charclass-pl.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── Unicode-UCD-search_invlist.patch │ │ ├── a2p-c-bison.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.22.4 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── Allow-strictly-named-map-tables.patch │ │ ├── Make-mktables-work-on-5.22.patch │ │ ├── PPPort-pm-reproducible.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── regcharclass-remove-experimental.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.24.4 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── PPPort-pm-reproducible.patch │ │ ├── Revert-regen-regcharclass.pl-avoid-autoderef-feature.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ ├── Unicode-UCD.pm-Add-undocumented-internal-feature.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.30.3 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── PPPort-pm-reproducible.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.36.3 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── Devel-PPPort-remove-sprintf.patch │ │ ├── PPPort-pm-reproducible.patch │ │ ├── Revert-mktables-Use-builtin-refaddr.patch │ │ ├── remove-machine-generated.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.42.0 │ ├── files │ │ ├── Compress-Raw-Zlib_config.in │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── Devel-PPPort-remove-sprintf.patch │ │ ├── PPPort-pm-reproducible.patch │ │ ├── fix-debugging-re.patch │ │ ├── mk_invlists-remove-any.patch │ │ ├── remove-machine-generated.patch │ │ └── reproducible-mktables.patch │ └── sources ├── perl-5.6.2 │ ├── files │ │ ├── config.h │ │ └── config.sh │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── perl-5.8.9 │ ├── files │ │ └── config.over │ ├── pass1.sh │ ├── patches │ │ ├── 0001-Revert-Patch-Configure-doesn-t-pick-up-Hash-Util-Fie.patch │ │ ├── Sort-files-returned-from-all_files_in_dir-for-consis.patch │ │ └── a2p-c-bison.patch │ └── sources ├── perl-Devel-Tokenizer-C-0.11 │ ├── pass1.sh │ ├── pass10.sh │ ├── pass11.sh │ ├── pass12.sh │ ├── pass13.sh │ ├── pass2.sh │ ├── pass3.sh │ ├── pass4.sh │ ├── pass5.sh │ ├── pass6.sh │ ├── pass7.sh │ ├── pass8.sh │ ├── pass9.sh │ └── sources ├── perl5.004-05 │ ├── files │ │ └── config.h │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── perl5.005-03 │ ├── files │ │ └── config.h │ ├── mk │ │ └── main.mk │ ├── pass1.sh │ └── sources ├── pkg-config-0.29.2 │ ├── pass1.sh │ └── sources ├── python-2.0.1 │ ├── files │ │ ├── disable-unicode.patch │ │ ├── keyword.c │ │ └── token.c │ ├── pass1.sh │ ├── pass2.sh │ ├── patches │ │ ├── destdir.patch │ │ ├── posixmodule.patch │ │ ├── pyc.patch │ │ └── undefs.patch │ └── sources ├── python-2.3.7 │ ├── files │ │ └── disable-unicode.patch │ ├── pass1.sh │ ├── pass2.sh │ ├── patches │ │ ├── posixmodule.patch │ │ └── pyc.patch │ └── sources ├── python-2.5.6 │ ├── files │ │ └── graminit-regen.patch │ ├── pass1.sh │ ├── patches │ │ ├── keyword.patch │ │ ├── pgen-timestamp.patch │ │ ├── posixmodule.patch │ │ ├── pyc.patch │ │ ├── sorted.patch │ │ └── sre_constants.patch │ └── sources ├── python-3.1.5 │ ├── files │ │ ├── graminit-regen.patch │ │ └── py2.patch │ ├── pass1.sh │ ├── pass2.sh │ ├── patches │ │ ├── install-perms.patch │ │ ├── openssl.patch │ │ └── posixmodule.patch │ └── sources ├── python-3.11.1 │ ├── files │ │ └── Setup.local │ ├── pass1.sh │ ├── patches │ │ ├── empty-date.patch │ │ └── multiarch.patch │ └── sources ├── python-3.3.7 │ ├── pass1.sh │ ├── patches │ │ ├── install-perms.patch │ │ └── symbol.patch │ └── sources ├── python-3.4.10 │ ├── pass1.sh │ ├── patches │ │ ├── install-perms.patch │ │ └── symbol.patch │ └── sources ├── python-3.8.16 │ ├── pass1.sh │ ├── patches │ │ ├── empty-date.patch │ │ ├── maxgroups.patch │ │ └── refractor.patch │ └── sources ├── sed-4.0.9 │ ├── mk │ │ └── main.mk │ ├── pass1.kaem │ ├── pass2.sh │ ├── sed-4.0.9.checksums │ └── sources ├── sed-4.8 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── shadow-4.14.3 │ ├── pass1.sh │ └── sources ├── simple-patch-1.0 │ ├── pass1.kaem │ ├── simple-patch-1.0.amd64.checksums │ ├── simple-patch-1.0.riscv64.checksums │ ├── simple-patch-1.0.x86.checksums │ └── src │ │ └── simple-patch.c ├── tar-1.12 │ ├── files │ │ ├── getdate_stub.c │ │ └── stat_override.c │ ├── mk │ │ └── main.mk │ ├── pass1.kaem │ ├── sources │ └── tar-1.12.checksums ├── tar-1.34 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── tcc-0.9.26 │ ├── pass1.kaem │ ├── simple-patches │ │ ├── addback-fileopen.after │ │ ├── addback-fileopen.before │ │ ├── remove-fileopen.after │ │ └── remove-fileopen.before │ ├── sources │ ├── tcc-0.9.26.riscv64.checksums │ └── tcc-0.9.26.x86.checksums ├── tcc-0.9.27 │ ├── pass1.kaem │ ├── pass2.sh │ ├── pass3.sh │ ├── pass4.sh │ ├── pass5.sh │ ├── patches │ │ ├── dont-skip-weak-symbols-ar.patch │ │ ├── ignore-static-inside-array.patch │ │ └── static-link.patch │ ├── simple-patches │ │ ├── addback-fileopen.after │ │ ├── addback-fileopen.before │ │ ├── check-reloc-null.after │ │ ├── check-reloc-null.before │ │ ├── fiwix-paddr.after │ │ ├── fiwix-paddr.before │ │ ├── remove-fileopen.after │ │ └── remove-fileopen.before │ ├── sources │ └── tcc-0.9.27.checksums ├── texinfo-6.7 │ ├── import-gnulib.sh │ ├── pass1.sh │ └── sources ├── util-linux-2.19.1 │ ├── pass1.sh │ ├── patches │ │ ├── broken-programs.patch │ │ ├── disable-tests.patch │ │ ├── headers-bsd.patch │ │ ├── headers-gpl2.patch │ │ ├── headers.patch │ │ └── pkg-config.patch │ └── sources ├── which-2.21 │ ├── pass1.sh │ └── sources ├── xz-5.6.4 │ ├── pass1.sh │ └── sources └── zlib-1.2.13 │ ├── pass1.sh │ └── sources └── substitutes.license /.github/workflows/bwrap.apparmor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/.github/workflows/bwrap.apparmor -------------------------------------------------------------------------------- /.github/workflows/bwrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/.github/workflows/bwrap.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/.gitmodules -------------------------------------------------------------------------------- /DEVEL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/DEVEL.md -------------------------------------------------------------------------------- /LICENSES/Artistic-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/Artistic-1.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/BSD-2-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause-flex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/BSD-3-Clause-flex.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSD-4-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/BSD-4-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-NC-SA-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/CC-BY-NC-SA-3.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/LGPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/PSF-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/PSF-2.0.txt -------------------------------------------------------------------------------- /LICENSES/Python-2.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/Python-2.0.1.txt -------------------------------------------------------------------------------- /LICENSES/bzip2-1.0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/bzip2-1.0.6.txt -------------------------------------------------------------------------------- /LICENSES/curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/LICENSES/curl.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/README.rst -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/REUSE.toml -------------------------------------------------------------------------------- /download-distfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/download-distfiles.sh -------------------------------------------------------------------------------- /lib/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/lib/generator.py -------------------------------------------------------------------------------- /lib/simple_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/lib/simple_mirror.py -------------------------------------------------------------------------------- /lib/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/lib/target.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/lib/utils.py -------------------------------------------------------------------------------- /mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/mirror.sh -------------------------------------------------------------------------------- /parts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/parts.rst -------------------------------------------------------------------------------- /rootfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/rootfs.py -------------------------------------------------------------------------------- /seed/after.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/after.kaem -------------------------------------------------------------------------------- /seed/configurator.amd64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/configurator.amd64.checksums -------------------------------------------------------------------------------- /seed/configurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/configurator.c -------------------------------------------------------------------------------- /seed/configurator.riscv64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/configurator.riscv64.checksums -------------------------------------------------------------------------------- /seed/configurator.x86.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/configurator.x86.checksums -------------------------------------------------------------------------------- /seed/preseeded.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/preseeded.kaem -------------------------------------------------------------------------------- /seed/script-generator.amd64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/script-generator.amd64.checksums -------------------------------------------------------------------------------- /seed/script-generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/script-generator.c -------------------------------------------------------------------------------- /seed/script-generator.riscv64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/script-generator.riscv64.checksums -------------------------------------------------------------------------------- /seed/script-generator.x86.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/script-generator.x86.checksums -------------------------------------------------------------------------------- /seed/seed.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/seed/seed.kaem -------------------------------------------------------------------------------- /source_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/source_manifest.py -------------------------------------------------------------------------------- /steps/SHA256SUMS.pkgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/SHA256SUMS.pkgs -------------------------------------------------------------------------------- /steps/autoconf-2.52/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.52/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.52/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.52/sources -------------------------------------------------------------------------------- /steps/autoconf-2.53/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.53/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.53/patches/autoconf_252.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.53/patches/autoconf_252.patch -------------------------------------------------------------------------------- /steps/autoconf-2.53/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.53/sources -------------------------------------------------------------------------------- /steps/autoconf-2.54/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.54/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.54/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.54/sources -------------------------------------------------------------------------------- /steps/autoconf-2.55/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.55/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.55/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.55/sources -------------------------------------------------------------------------------- /steps/autoconf-2.57/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.57/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.57/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.57/sources -------------------------------------------------------------------------------- /steps/autoconf-2.59/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.59/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.59/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.59/sources -------------------------------------------------------------------------------- /steps/autoconf-2.61/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.61/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.61/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.61/sources -------------------------------------------------------------------------------- /steps/autoconf-2.64/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.64/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.64/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.64/sources -------------------------------------------------------------------------------- /steps/autoconf-2.69/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.69/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.69/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.69/sources -------------------------------------------------------------------------------- /steps/autoconf-2.71/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.71/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-2.71/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-2.71/sources -------------------------------------------------------------------------------- /steps/autoconf-archive-2021.02.19/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-archive-2021.02.19/pass1.sh -------------------------------------------------------------------------------- /steps/autoconf-archive-2021.02.19/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autoconf-archive-2021.02.19/sources -------------------------------------------------------------------------------- /steps/autogen-5.18.16/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autogen-5.18.16/pass1.sh -------------------------------------------------------------------------------- /steps/autogen-5.18.16/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/autogen-5.18.16/sources -------------------------------------------------------------------------------- /steps/automake-1.10.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.10.3/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.10.3/patches/aclocal_glob.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.10.3/patches/aclocal_glob.patch -------------------------------------------------------------------------------- /steps/automake-1.10.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.10.3/sources -------------------------------------------------------------------------------- /steps/automake-1.11.2/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.11.2/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.11.2/patches/aclocal_glob.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.11.2/patches/aclocal_glob.patch -------------------------------------------------------------------------------- /steps/automake-1.11.2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.11.2/sources -------------------------------------------------------------------------------- /steps/automake-1.15.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.15.1/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.15.1/patches/aclocal_glob.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.15.1/patches/aclocal_glob.patch -------------------------------------------------------------------------------- /steps/automake-1.15.1/patches/bootstrap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.15.1/patches/bootstrap.patch -------------------------------------------------------------------------------- /steps/automake-1.15.1/patches/shellcheck-bypass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.15.1/patches/shellcheck-bypass.patch -------------------------------------------------------------------------------- /steps/automake-1.15.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.15.1/sources -------------------------------------------------------------------------------- /steps/automake-1.16.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.16.3/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.16.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.16.3/sources -------------------------------------------------------------------------------- /steps/automake-1.6.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.6.3/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.6.3/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.6.3/pass2.sh -------------------------------------------------------------------------------- /steps/automake-1.6.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.6.3/sources -------------------------------------------------------------------------------- /steps/automake-1.7.8/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.7.8/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.7.8/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.7.8/sources -------------------------------------------------------------------------------- /steps/automake-1.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.7/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.7/sources -------------------------------------------------------------------------------- /steps/automake-1.8.5/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.8.5/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.8.5/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.8.5/sources -------------------------------------------------------------------------------- /steps/automake-1.9.6/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.9.6/pass1.sh -------------------------------------------------------------------------------- /steps/automake-1.9.6/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/automake-1.9.6/sources -------------------------------------------------------------------------------- /steps/bash-2.05b/bash-2.05b.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/bash-2.05b.checksums -------------------------------------------------------------------------------- /steps/bash-2.05b/mk/builtins.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/mk/builtins.mk -------------------------------------------------------------------------------- /steps/bash-2.05b/mk/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/mk/common.mk -------------------------------------------------------------------------------- /steps/bash-2.05b/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/mk/main.mk -------------------------------------------------------------------------------- /steps/bash-2.05b/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/pass1.kaem -------------------------------------------------------------------------------- /steps/bash-2.05b/patches/dev-tty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/patches/dev-tty.patch -------------------------------------------------------------------------------- /steps/bash-2.05b/patches/extern.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/patches/extern.patch -------------------------------------------------------------------------------- /steps/bash-2.05b/patches/locale.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/patches/locale.patch -------------------------------------------------------------------------------- /steps/bash-2.05b/patches/mes-libc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/patches/mes-libc.patch -------------------------------------------------------------------------------- /steps/bash-2.05b/patches/missing-defines.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/patches/missing-defines.patch -------------------------------------------------------------------------------- /steps/bash-2.05b/patches/size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/patches/size.patch -------------------------------------------------------------------------------- /steps/bash-2.05b/patches/tinycc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/patches/tinycc.patch -------------------------------------------------------------------------------- /steps/bash-2.05b/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-2.05b/sources -------------------------------------------------------------------------------- /steps/bash-5.2.15/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-5.2.15/pass1.sh -------------------------------------------------------------------------------- /steps/bash-5.2.15/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bash-5.2.15/sources -------------------------------------------------------------------------------- /steps/bc-1.08.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bc-1.08.1/pass1.sh -------------------------------------------------------------------------------- /steps/bc-1.08.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bc-1.08.1/sources -------------------------------------------------------------------------------- /steps/binutils-2.30/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.30/pass1.sh -------------------------------------------------------------------------------- /steps/binutils-2.30/patches/libiberty-add-missing-config-directory-reference.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.30/patches/libiberty-add-missing-config-directory-reference.patch -------------------------------------------------------------------------------- /steps/binutils-2.30/patches/new-gettext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.30/patches/new-gettext.patch -------------------------------------------------------------------------------- /steps/binutils-2.30/patches/opcodes-ensure-i386-init-dependencies-are-satisfied.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.30/patches/opcodes-ensure-i386-init-dependencies-are-satisfied.patch -------------------------------------------------------------------------------- /steps/binutils-2.30/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.30/sources -------------------------------------------------------------------------------- /steps/binutils-2.41/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.41/pass1.sh -------------------------------------------------------------------------------- /steps/binutils-2.41/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.41/pass2.sh -------------------------------------------------------------------------------- /steps/binutils-2.41/patches/new-gettext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.41/patches/new-gettext.patch -------------------------------------------------------------------------------- /steps/binutils-2.41/patches/no-maint-functions-texi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.41/patches/no-maint-functions-texi.patch -------------------------------------------------------------------------------- /steps/binutils-2.41/patches/no-maint-opcodes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.41/patches/no-maint-opcodes.patch -------------------------------------------------------------------------------- /steps/binutils-2.41/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/binutils-2.41/sources -------------------------------------------------------------------------------- /steps/bison-2.3/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-2.3/import-gnulib.sh -------------------------------------------------------------------------------- /steps/bison-2.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-2.3/pass1.sh -------------------------------------------------------------------------------- /steps/bison-2.3/patches/autover-mismatch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-2.3/patches/autover-mismatch.patch -------------------------------------------------------------------------------- /steps/bison-2.3/patches/fopen-safer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-2.3/patches/fopen-safer.patch -------------------------------------------------------------------------------- /steps/bison-2.3/patches/gnulib-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-2.3/patches/gnulib-fix.patch -------------------------------------------------------------------------------- /steps/bison-2.3/patches/our-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-2.3/patches/our-bison.patch -------------------------------------------------------------------------------- /steps/bison-2.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-2.3/sources -------------------------------------------------------------------------------- /steps/bison-3.4.1/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/files/config.h -------------------------------------------------------------------------------- /steps/bison-3.4.1/files/configmake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/files/configmake.h -------------------------------------------------------------------------------- /steps/bison-3.4.1/files/parse-gram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/files/parse-gram.c -------------------------------------------------------------------------------- /steps/bison-3.4.1/files/parse-gram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/files/parse-gram.h -------------------------------------------------------------------------------- /steps/bison-3.4.1/files/parse-gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/files/parse-gram.y -------------------------------------------------------------------------------- /steps/bison-3.4.1/mk/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/mk/lib.mk -------------------------------------------------------------------------------- /steps/bison-3.4.1/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/mk/main.mk -------------------------------------------------------------------------------- /steps/bison-3.4.1/mk/src.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/mk/src.mk -------------------------------------------------------------------------------- /steps/bison-3.4.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/pass1.sh -------------------------------------------------------------------------------- /steps/bison-3.4.1/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/pass2.sh -------------------------------------------------------------------------------- /steps/bison-3.4.1/pass3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/pass3.sh -------------------------------------------------------------------------------- /steps/bison-3.4.1/patches/fseterr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/patches/fseterr.patch -------------------------------------------------------------------------------- /steps/bison-3.4.1/patches/missing-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/patches/missing-includes.patch -------------------------------------------------------------------------------- /steps/bison-3.4.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.1/sources -------------------------------------------------------------------------------- /steps/bison-3.4.2/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.2/import-gnulib.sh -------------------------------------------------------------------------------- /steps/bison-3.4.2/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.2/pass1.sh -------------------------------------------------------------------------------- /steps/bison-3.4.2/patches/gnulib-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.2/patches/gnulib-makefile.patch -------------------------------------------------------------------------------- /steps/bison-3.4.2/patches/our-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.2/patches/our-bison.patch -------------------------------------------------------------------------------- /steps/bison-3.4.2/patches/po-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.2/patches/po-files.patch -------------------------------------------------------------------------------- /steps/bison-3.4.2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bison-3.4.2/sources -------------------------------------------------------------------------------- /steps/bzip2-1.0.8/bzip2-1.0.8.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bzip2-1.0.8/bzip2-1.0.8.checksums -------------------------------------------------------------------------------- /steps/bzip2-1.0.8/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bzip2-1.0.8/pass1.kaem -------------------------------------------------------------------------------- /steps/bzip2-1.0.8/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bzip2-1.0.8/pass2.sh -------------------------------------------------------------------------------- /steps/bzip2-1.0.8/patches/coreutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bzip2-1.0.8/patches/coreutils.patch -------------------------------------------------------------------------------- /steps/bzip2-1.0.8/patches/mes-libc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bzip2-1.0.8/patches/mes-libc.patch -------------------------------------------------------------------------------- /steps/bzip2-1.0.8/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/bzip2-1.0.8/sources -------------------------------------------------------------------------------- /steps/ca-certificates-3.99/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/ca-certificates-3.99/pass1.sh -------------------------------------------------------------------------------- /steps/ca-certificates-3.99/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/ca-certificates-3.99/sources -------------------------------------------------------------------------------- /steps/checksum-transcriber-1.0/checksum-transcriber-1.0.amd64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/checksum-transcriber-1.0/checksum-transcriber-1.0.amd64.checksums -------------------------------------------------------------------------------- /steps/checksum-transcriber-1.0/checksum-transcriber-1.0.riscv64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/checksum-transcriber-1.0/checksum-transcriber-1.0.riscv64.checksums -------------------------------------------------------------------------------- /steps/checksum-transcriber-1.0/checksum-transcriber-1.0.x86.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/checksum-transcriber-1.0/checksum-transcriber-1.0.x86.checksums -------------------------------------------------------------------------------- /steps/checksum-transcriber-1.0/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/checksum-transcriber-1.0/pass1.kaem -------------------------------------------------------------------------------- /steps/checksum-transcriber-1.0/src/checksum-transcriber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/checksum-transcriber-1.0/src/checksum-transcriber.c -------------------------------------------------------------------------------- /steps/configurator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/configurator -------------------------------------------------------------------------------- /steps/coreutils-5.0/coreutils-5.0.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/coreutils-5.0.checksums -------------------------------------------------------------------------------- /steps/coreutils-5.0/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/mk/main.mk -------------------------------------------------------------------------------- /steps/coreutils-5.0/mk/pass2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/mk/pass2.mk -------------------------------------------------------------------------------- /steps/coreutils-5.0/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/pass1.kaem -------------------------------------------------------------------------------- /steps/coreutils-5.0/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/pass2.sh -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches-pass2/touch-dereference.patch: -------------------------------------------------------------------------------- 1 | ../patches/touch-dereference.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches-pass2/touch-getdate.patch: -------------------------------------------------------------------------------- 1 | ../patches/touch-getdate.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/expr-strcmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/expr-strcmp.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/ls-strcmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/ls-strcmp.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/mbstate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/mbstate.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/modechange.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/modechange.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/sort-locale.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/sort-locale.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/tac-uint64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/tac-uint64.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/touch-dereference.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/touch-dereference.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/touch-getdate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/touch-getdate.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/patches/uniq-fopen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/patches/uniq-fopen.patch -------------------------------------------------------------------------------- /steps/coreutils-5.0/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-5.0/sources -------------------------------------------------------------------------------- /steps/coreutils-6.10/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-6.10/mk/main.mk -------------------------------------------------------------------------------- /steps/coreutils-6.10/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-6.10/pass1.sh -------------------------------------------------------------------------------- /steps/coreutils-6.10/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-6.10/sources -------------------------------------------------------------------------------- /steps/coreutils-9.4/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-9.4/import-gnulib.sh -------------------------------------------------------------------------------- /steps/coreutils-9.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-9.4/pass1.sh -------------------------------------------------------------------------------- /steps/coreutils-9.4/patches/force_to_use_nanosleep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-9.4/patches/force_to_use_nanosleep.patch -------------------------------------------------------------------------------- /steps/coreutils-9.4/patches/remove_gettext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-9.4/patches/remove_gettext.patch -------------------------------------------------------------------------------- /steps/coreutils-9.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/coreutils-9.4/sources -------------------------------------------------------------------------------- /steps/curl-8.12.1/files/sinus.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/curl-8.12.1/files/sinus.pl -------------------------------------------------------------------------------- /steps/curl-8.12.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/curl-8.12.1/pass1.sh -------------------------------------------------------------------------------- /steps/curl-8.12.1/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/curl-8.12.1/pass2.sh -------------------------------------------------------------------------------- /steps/curl-8.12.1/patches/timeless-mk-ca-bundle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/curl-8.12.1/patches/timeless-mk-ca-bundle.patch -------------------------------------------------------------------------------- /steps/curl-8.12.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/curl-8.12.1/sources -------------------------------------------------------------------------------- /steps/dhcpcd-10.0.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dhcpcd-10.0.1/pass1.sh -------------------------------------------------------------------------------- /steps/dhcpcd-10.0.1/patches/remove-ctassert.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dhcpcd-10.0.1/patches/remove-ctassert.patch -------------------------------------------------------------------------------- /steps/dhcpcd-10.0.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dhcpcd-10.0.1/sources -------------------------------------------------------------------------------- /steps/diffutils-2.7/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/diffutils-2.7/mk/main.mk -------------------------------------------------------------------------------- /steps/diffutils-2.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/diffutils-2.7/pass1.sh -------------------------------------------------------------------------------- /steps/diffutils-2.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/diffutils-2.7/sources -------------------------------------------------------------------------------- /steps/diffutils-3.10/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/diffutils-3.10/import-gnulib.sh -------------------------------------------------------------------------------- /steps/diffutils-3.10/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/diffutils-3.10/pass1.sh -------------------------------------------------------------------------------- /steps/diffutils-3.10/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/diffutils-3.10/sources -------------------------------------------------------------------------------- /steps/dist-3.5/files/config.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dist-3.5/files/config.sh.in -------------------------------------------------------------------------------- /steps/dist-3.5/files/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dist-3.5/files/revision.h -------------------------------------------------------------------------------- /steps/dist-3.5/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dist-3.5/pass1.sh -------------------------------------------------------------------------------- /steps/dist-3.5/patches/env.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dist-3.5/patches/env.patch -------------------------------------------------------------------------------- /steps/dist-3.5/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/dist-3.5/sources -------------------------------------------------------------------------------- /steps/e2fsprogs-1.45.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/e2fsprogs-1.45.7/pass1.sh -------------------------------------------------------------------------------- /steps/e2fsprogs-1.45.7/patches/gawk-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/e2fsprogs-1.45.7/patches/gawk-fix.patch -------------------------------------------------------------------------------- /steps/e2fsprogs-1.45.7/patches/remove-intl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/e2fsprogs-1.45.7/patches/remove-intl.patch -------------------------------------------------------------------------------- /steps/e2fsprogs-1.45.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/e2fsprogs-1.45.7/sources -------------------------------------------------------------------------------- /steps/ed-1.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/ed-1.4/pass1.sh -------------------------------------------------------------------------------- /steps/ed-1.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/ed-1.4/sources -------------------------------------------------------------------------------- /steps/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/env -------------------------------------------------------------------------------- /steps/file-5.44/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/file-5.44/pass1.sh -------------------------------------------------------------------------------- /steps/file-5.44/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/file-5.44/sources -------------------------------------------------------------------------------- /steps/findutils-4.2.33/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/findutils-4.2.33/import-gnulib.sh -------------------------------------------------------------------------------- /steps/findutils-4.2.33/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/findutils-4.2.33/pass1.sh -------------------------------------------------------------------------------- /steps/findutils-4.2.33/patches/force-getcwd-fallback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/findutils-4.2.33/patches/force-getcwd-fallback.patch -------------------------------------------------------------------------------- /steps/findutils-4.2.33/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/findutils-4.2.33/sources -------------------------------------------------------------------------------- /steps/fiwix-1.5.0-lb1/files/custom_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/fiwix-1.5.0-lb1/files/custom_config.h -------------------------------------------------------------------------------- /steps/fiwix-1.5.0-lb1/files/custom_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/fiwix-1.5.0-lb1/files/custom_kernel.h -------------------------------------------------------------------------------- /steps/fiwix-1.5.0-lb1/files/custom_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/fiwix-1.5.0-lb1/files/custom_limits.h -------------------------------------------------------------------------------- /steps/fiwix-1.5.0-lb1/files/custom_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/fiwix-1.5.0-lb1/files/custom_system.h -------------------------------------------------------------------------------- /steps/fiwix-1.5.0-lb1/fiwix-1.5.0-lb1.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/fiwix-1.5.0-lb1/fiwix-1.5.0-lb1.checksums -------------------------------------------------------------------------------- /steps/fiwix-1.5.0-lb1/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/fiwix-1.5.0-lb1/pass1.kaem -------------------------------------------------------------------------------- /steps/fiwix-1.5.0-lb1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/fiwix-1.5.0-lb1/sources -------------------------------------------------------------------------------- /steps/flex-2.5.11/files/scan.lex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.11/files/scan.lex.l -------------------------------------------------------------------------------- /steps/flex-2.5.11/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.11/mk/main.mk -------------------------------------------------------------------------------- /steps/flex-2.5.11/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.11/pass1.sh -------------------------------------------------------------------------------- /steps/flex-2.5.11/patches/scan_l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.11/patches/scan_l.patch -------------------------------------------------------------------------------- /steps/flex-2.5.11/patches/yyin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.11/patches/yyin.patch -------------------------------------------------------------------------------- /steps/flex-2.5.11/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.11/sources -------------------------------------------------------------------------------- /steps/flex-2.5.33/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.33/pass1.sh -------------------------------------------------------------------------------- /steps/flex-2.5.33/patches/disable-unavailables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.33/patches/disable-unavailables.patch -------------------------------------------------------------------------------- /steps/flex-2.5.33/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.5.33/sources -------------------------------------------------------------------------------- /steps/flex-2.6.4/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.6.4/mk/main.mk -------------------------------------------------------------------------------- /steps/flex-2.6.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.6.4/pass1.sh -------------------------------------------------------------------------------- /steps/flex-2.6.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/flex-2.6.4/sources -------------------------------------------------------------------------------- /steps/gawk-3.0.4/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gawk-3.0.4/mk/main.mk -------------------------------------------------------------------------------- /steps/gawk-3.0.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gawk-3.0.4/pass1.sh -------------------------------------------------------------------------------- /steps/gawk-3.0.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gawk-3.0.4/sources -------------------------------------------------------------------------------- /steps/gawk-5.3.0/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gawk-5.3.0/pass1.sh -------------------------------------------------------------------------------- /steps/gawk-5.3.0/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gawk-5.3.0/sources -------------------------------------------------------------------------------- /steps/gc-8.0.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gc-8.0.4/pass1.sh -------------------------------------------------------------------------------- /steps/gc-8.0.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gc-8.0.4/sources -------------------------------------------------------------------------------- /steps/gcc-10.5.0/files/decDPD.h.preamble: -------------------------------------------------------------------------------- 1 | ../../gcc-4.7.4/files/decDPD.h.preamble -------------------------------------------------------------------------------- /steps/gcc-10.5.0/files/decDPD_generate.c: -------------------------------------------------------------------------------- 1 | ../../gcc-4.7.4/files/decDPD_generate.c -------------------------------------------------------------------------------- /steps/gcc-10.5.0/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-10.5.0/pass1.sh -------------------------------------------------------------------------------- /steps/gcc-10.5.0/patches/fix-autoreconf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-10.5.0/patches/fix-autoreconf.patch -------------------------------------------------------------------------------- /steps/gcc-10.5.0/patches/includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-10.5.0/patches/includes.patch -------------------------------------------------------------------------------- /steps/gcc-10.5.0/patches/libgcc-xfmode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-10.5.0/patches/libgcc-xfmode.patch -------------------------------------------------------------------------------- /steps/gcc-10.5.0/patches/new-gettext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-10.5.0/patches/new-gettext.patch -------------------------------------------------------------------------------- /steps/gcc-10.5.0/patches/no-isolate-erroneous-paths-dereference.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-10.5.0/patches/no-isolate-erroneous-paths-dereference.patch -------------------------------------------------------------------------------- /steps/gcc-10.5.0/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-10.5.0/sources -------------------------------------------------------------------------------- /steps/gcc-15.2.0/files/decDPD.h.preamble: -------------------------------------------------------------------------------- 1 | ../../gcc-10.5.0/files/decDPD.h.preamble -------------------------------------------------------------------------------- /steps/gcc-15.2.0/files/decDPD_generate.c: -------------------------------------------------------------------------------- 1 | ../../gcc-10.5.0/files/decDPD_generate.c -------------------------------------------------------------------------------- /steps/gcc-15.2.0/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-15.2.0/pass1.sh -------------------------------------------------------------------------------- /steps/gcc-15.2.0/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-15.2.0/sources -------------------------------------------------------------------------------- /steps/gcc-4.0.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.0.4/pass1.sh -------------------------------------------------------------------------------- /steps/gcc-4.0.4/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.0.4/pass2.sh -------------------------------------------------------------------------------- /steps/gcc-4.0.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.0.4/sources -------------------------------------------------------------------------------- /steps/gcc-4.7.4/files/decDPD.h.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/files/decDPD.h.preamble -------------------------------------------------------------------------------- /steps/gcc-4.7.4/files/decDPD_generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/files/decDPD_generate.c -------------------------------------------------------------------------------- /steps/gcc-4.7.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/pass1.sh -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0001-libitm-fixes-for-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0001-libitm-fixes-for-musl-support.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0002-fixincludes-update-for-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0002-fixincludes-update-for-musl-support.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0003-unwind-fix-for-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0003-unwind-fix-for-musl.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0004-libstdc-gthr-workaround-for-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0004-libstdc-gthr-workaround-for-musl.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0005-musl-libc-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0005-musl-libc-config.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0006-add-musl-support-to-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0006-add-musl-support-to-gcc.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0007-x86-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0007-x86-musl-support.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/0008-config-linux.h-add-INCLUDE_DEFAULTS_MUSL_LOCAL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/0008-config-linux.h-add-INCLUDE_DEFAULTS_MUSL_LOCAL.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/gcc-10-fself-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/gcc-10-fself-test.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/gcc-10-libgcc-builtin-macros.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/gcc-10-libgcc-builtin-macros.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/gcc-10-mlong-double.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/gcc-10-mlong-double.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/patches/remove_gperf_dependency.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/patches/remove_gperf_dependency.patch -------------------------------------------------------------------------------- /steps/gcc-4.7.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gcc-4.7.4/sources -------------------------------------------------------------------------------- /steps/gettext-0.21/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gettext-0.21/pass1.sh -------------------------------------------------------------------------------- /steps/gettext-0.21/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gettext-0.21/sources -------------------------------------------------------------------------------- /steps/gmp-6.2.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gmp-6.2.1/pass1.sh -------------------------------------------------------------------------------- /steps/gmp-6.2.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gmp-6.2.1/sources -------------------------------------------------------------------------------- /steps/gperf-3.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gperf-3.1/pass1.sh -------------------------------------------------------------------------------- /steps/gperf-3.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gperf-3.1/sources -------------------------------------------------------------------------------- /steps/grep-2.4/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grep-2.4/mk/main.mk -------------------------------------------------------------------------------- /steps/grep-2.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grep-2.4/sources -------------------------------------------------------------------------------- /steps/grep-3.7/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grep-3.7/import-gnulib.sh -------------------------------------------------------------------------------- /steps/grep-3.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grep-3.7/pass1.sh -------------------------------------------------------------------------------- /steps/grep-3.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grep-3.7/sources -------------------------------------------------------------------------------- /steps/grub-2.06/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grub-2.06/import-gnulib.sh -------------------------------------------------------------------------------- /steps/grub-2.06/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grub-2.06/pass1.sh -------------------------------------------------------------------------------- /steps/grub-2.06/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/grub-2.06/sources -------------------------------------------------------------------------------- /steps/guile-3.0.9/import-gnulib-3.0.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/guile-3.0.9/import-gnulib-3.0.7.sh -------------------------------------------------------------------------------- /steps/guile-3.0.9/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/guile-3.0.9/import-gnulib.sh -------------------------------------------------------------------------------- /steps/guile-3.0.9/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/guile-3.0.9/pass1.sh -------------------------------------------------------------------------------- /steps/guile-3.0.9/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/guile-3.0.9/sources -------------------------------------------------------------------------------- /steps/gzip-1.13/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.13/import-gnulib.sh -------------------------------------------------------------------------------- /steps/gzip-1.13/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.13/pass1.sh -------------------------------------------------------------------------------- /steps/gzip-1.13/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.13/sources -------------------------------------------------------------------------------- /steps/gzip-1.2.4/files/stat_override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.2.4/files/stat_override.c -------------------------------------------------------------------------------- /steps/gzip-1.2.4/gzip-1.2.4.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.2.4/gzip-1.2.4.checksums -------------------------------------------------------------------------------- /steps/gzip-1.2.4/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.2.4/mk/main.mk -------------------------------------------------------------------------------- /steps/gzip-1.2.4/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.2.4/pass1.kaem -------------------------------------------------------------------------------- /steps/gzip-1.2.4/patches/makecrc-write-to-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.2.4/patches/makecrc-write-to-file.patch -------------------------------------------------------------------------------- /steps/gzip-1.2.4/patches/removecrc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.2.4/patches/removecrc.patch -------------------------------------------------------------------------------- /steps/gzip-1.2.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/gzip-1.2.4/sources -------------------------------------------------------------------------------- /steps/heirloom-devtools-070527/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/heirloom-devtools-070527/pass1.sh -------------------------------------------------------------------------------- /steps/heirloom-devtools-070527/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/heirloom-devtools-070527/sources -------------------------------------------------------------------------------- /steps/help2man-1.36.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/help2man-1.36.4/pass1.sh -------------------------------------------------------------------------------- /steps/help2man-1.36.4/patches/date.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/help2man-1.36.4/patches/date.patch -------------------------------------------------------------------------------- /steps/help2man-1.36.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/help2man-1.36.4/sources -------------------------------------------------------------------------------- /steps/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/helpers.sh -------------------------------------------------------------------------------- /steps/improve/after.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/after.sh -------------------------------------------------------------------------------- /steps/improve/clean_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/clean_artifacts.sh -------------------------------------------------------------------------------- /steps/improve/clean_sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/clean_sources.sh -------------------------------------------------------------------------------- /steps/improve/cleanup_filesystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/cleanup_filesystem.sh -------------------------------------------------------------------------------- /steps/improve/finalize_fhs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/finalize_fhs.sh -------------------------------------------------------------------------------- /steps/improve/finalize_job_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/finalize_job_count.sh -------------------------------------------------------------------------------- /steps/improve/get_network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/get_network.sh -------------------------------------------------------------------------------- /steps/improve/make_bootable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/make_bootable.sh -------------------------------------------------------------------------------- /steps/improve/merged_usr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/merged_usr.sh -------------------------------------------------------------------------------- /steps/improve/musl_target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/musl_target.sh -------------------------------------------------------------------------------- /steps/improve/null_time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/null_time.sh -------------------------------------------------------------------------------- /steps/improve/open_console.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/open_console.sh -------------------------------------------------------------------------------- /steps/improve/populate_device_nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/populate_device_nodes.sh -------------------------------------------------------------------------------- /steps/improve/reconfigure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/reconfigure.sh -------------------------------------------------------------------------------- /steps/improve/setup_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/setup_repo.sh -------------------------------------------------------------------------------- /steps/improve/swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/swap.sh -------------------------------------------------------------------------------- /steps/improve/update_checksums.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/update_checksums.sh -------------------------------------------------------------------------------- /steps/improve/update_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/improve/update_env.sh -------------------------------------------------------------------------------- /steps/jump/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/jump/break.sh -------------------------------------------------------------------------------- /steps/jump/fiwix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/jump/fiwix.sh -------------------------------------------------------------------------------- /steps/jump/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/jump/linux.sh -------------------------------------------------------------------------------- /steps/jump/move_disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/jump/move_disk.sh -------------------------------------------------------------------------------- /steps/kbd-1.15/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kbd-1.15/pass1.sh -------------------------------------------------------------------------------- /steps/kbd-1.15/patches/fcntl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kbd-1.15/patches/fcntl.patch -------------------------------------------------------------------------------- /steps/kbd-1.15/patches/resizecons.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kbd-1.15/patches/resizecons.patch -------------------------------------------------------------------------------- /steps/kbd-1.15/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kbd-1.15/sources -------------------------------------------------------------------------------- /steps/kexec-fiwix-1.0/kexec-fiwix-1.0.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-fiwix-1.0/kexec-fiwix-1.0.checksums -------------------------------------------------------------------------------- /steps/kexec-fiwix-1.0/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-fiwix-1.0/pass1.kaem -------------------------------------------------------------------------------- /steps/kexec-fiwix-1.0/src/kexec-fiwix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-fiwix-1.0/src/kexec-fiwix.c -------------------------------------------------------------------------------- /steps/kexec-fiwix-1.0/src/multiboot1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-fiwix-1.0/src/multiboot1.h -------------------------------------------------------------------------------- /steps/kexec-linux-1.0.0/files/kexec-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-linux-1.0.0/files/kexec-linux.c -------------------------------------------------------------------------------- /steps/kexec-linux-1.0.0/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-linux-1.0.0/mk/main.mk -------------------------------------------------------------------------------- /steps/kexec-linux-1.0.0/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-linux-1.0.0/pass1.sh -------------------------------------------------------------------------------- /steps/kexec-tools-2.0.22/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-tools-2.0.22/pass1.sh -------------------------------------------------------------------------------- /steps/kexec-tools-2.0.22/patches/bad-gcc-arg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-tools-2.0.22/patches/bad-gcc-arg.patch -------------------------------------------------------------------------------- /steps/kexec-tools-2.0.22/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/kexec-tools-2.0.22/sources -------------------------------------------------------------------------------- /steps/libarchive-3.5.2/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libarchive-3.5.2/pass1.sh -------------------------------------------------------------------------------- /steps/libarchive-3.5.2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libarchive-3.5.2/sources -------------------------------------------------------------------------------- /steps/libatomic_ops-7.6.10/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libatomic_ops-7.6.10/pass1.sh -------------------------------------------------------------------------------- /steps/libatomic_ops-7.6.10/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libatomic_ops-7.6.10/sources -------------------------------------------------------------------------------- /steps/libbsd-0.11.8/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libbsd-0.11.8/pass1.sh -------------------------------------------------------------------------------- /steps/libbsd-0.11.8/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libbsd-0.11.8/sources -------------------------------------------------------------------------------- /steps/libffi-3.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libffi-3.3/pass1.sh -------------------------------------------------------------------------------- /steps/libffi-3.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libffi-3.3/sources -------------------------------------------------------------------------------- /steps/libmd-1.1.0/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libmd-1.1.0/pass1.sh -------------------------------------------------------------------------------- /steps/libmd-1.1.0/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libmd-1.1.0/sources -------------------------------------------------------------------------------- /steps/libtool-2.2.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.2.4/pass1.sh -------------------------------------------------------------------------------- /steps/libtool-2.2.4/patches/archive-objs-order.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.2.4/patches/archive-objs-order.patch -------------------------------------------------------------------------------- /steps/libtool-2.2.4/patches/hostname.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.2.4/patches/hostname.patch -------------------------------------------------------------------------------- /steps/libtool-2.2.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.2.4/sources -------------------------------------------------------------------------------- /steps/libtool-2.4.7/bootstrap-helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.4.7/bootstrap-helper.sh -------------------------------------------------------------------------------- /steps/libtool-2.4.7/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.4.7/import-gnulib.sh -------------------------------------------------------------------------------- /steps/libtool-2.4.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.4.7/pass1.sh -------------------------------------------------------------------------------- /steps/libtool-2.4.7/patches/hostname.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.4.7/patches/hostname.patch -------------------------------------------------------------------------------- /steps/libtool-2.4.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libtool-2.4.7/sources -------------------------------------------------------------------------------- /steps/libunistring-0.9.10/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libunistring-0.9.10/pass1.sh -------------------------------------------------------------------------------- /steps/libunistring-0.9.10/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/libunistring-0.9.10/sources -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/files/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/files/config -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/pass1.sh -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/4.14.341-openela.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/4.14.341-openela.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/ddfd117714014cebe7b5d008fdec8eaec620cba1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/ddfd117714014cebe7b5d008fdec8eaec620cba1.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/deblob.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/deblob.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/disable-broken-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/disable-broken-check.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/drm_edid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/drm_edid.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/i2c-hid-dmi-quirks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/i2c-hid-dmi-quirks.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/i915_sw_fence.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/i915_sw_fence.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/initramfs_list.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/initramfs_list.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/linking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/linking.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/regen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/regen.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/remove-alternative-asm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/remove-alternative-asm.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/remove-kconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/remove-kconfig.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/patches/wno-array-bounds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/patches/wno-array-bounds.patch -------------------------------------------------------------------------------- /steps/linux-4.14.341-openela/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-4.14.341-openela/sources -------------------------------------------------------------------------------- /steps/linux-headers-4.14.341-openela/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-headers-4.14.341-openela/pass1.sh -------------------------------------------------------------------------------- /steps/linux-headers-4.14.341-openela/patches/4.14.341-openela.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-headers-4.14.341-openela/patches/4.14.341-openela.patch -------------------------------------------------------------------------------- /steps/linux-headers-4.14.341-openela/patches/winsize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-headers-4.14.341-openela/patches/winsize.patch -------------------------------------------------------------------------------- /steps/linux-headers-4.14.341-openela/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/linux-headers-4.14.341-openela/sources -------------------------------------------------------------------------------- /steps/lwext4-1.0.0-lb1/config/ext4_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/lwext4-1.0.0-lb1/config/ext4_config.h -------------------------------------------------------------------------------- /steps/lwext4-1.0.0-lb1/files/make_fiwix_initrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/lwext4-1.0.0-lb1/files/make_fiwix_initrd.c -------------------------------------------------------------------------------- /steps/lwext4-1.0.0-lb1/lwext4-1.0.0-lb1.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/lwext4-1.0.0-lb1/lwext4-1.0.0-lb1.checksums -------------------------------------------------------------------------------- /steps/lwext4-1.0.0-lb1/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/lwext4-1.0.0-lb1/pass1.kaem -------------------------------------------------------------------------------- /steps/lwext4-1.0.0-lb1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/lwext4-1.0.0-lb1/sources -------------------------------------------------------------------------------- /steps/m4-1.4.19/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/m4-1.4.19/import-gnulib.sh -------------------------------------------------------------------------------- /steps/m4-1.4.19/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/m4-1.4.19/pass1.sh -------------------------------------------------------------------------------- /steps/m4-1.4.19/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/m4-1.4.19/sources -------------------------------------------------------------------------------- /steps/m4-1.4.7/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/m4-1.4.7/mk/main.mk -------------------------------------------------------------------------------- /steps/m4-1.4.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/m4-1.4.7/sources -------------------------------------------------------------------------------- /steps/make-3.82/make-3.82.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/make-3.82/make-3.82.checksums -------------------------------------------------------------------------------- /steps/make-3.82/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/make-3.82/pass1.kaem -------------------------------------------------------------------------------- /steps/make-3.82/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/make-3.82/pass2.sh -------------------------------------------------------------------------------- /steps/make-3.82/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/make-3.82/sources -------------------------------------------------------------------------------- /steps/make-4.2.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/make-4.2.1/pass1.sh -------------------------------------------------------------------------------- /steps/make-4.2.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/make-4.2.1/sources -------------------------------------------------------------------------------- /steps/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/manifest -------------------------------------------------------------------------------- /steps/mes-0.27.1/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/files/config.h -------------------------------------------------------------------------------- /steps/mes-0.27.1/mes-0.27.1.amd64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/mes-0.27.1.amd64.checksums -------------------------------------------------------------------------------- /steps/mes-0.27.1/mes-0.27.1.riscv64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/mes-0.27.1.riscv64.checksums -------------------------------------------------------------------------------- /steps/mes-0.27.1/mes-0.27.1.x86.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/mes-0.27.1.x86.checksums -------------------------------------------------------------------------------- /steps/mes-0.27.1/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/pass1.kaem -------------------------------------------------------------------------------- /steps/mes-0.27.1/simple-patches/wait4.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/simple-patches/wait4.after -------------------------------------------------------------------------------- /steps/mes-0.27.1/simple-patches/wait4.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/simple-patches/wait4.before -------------------------------------------------------------------------------- /steps/mes-0.27.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mes-0.27.1/sources -------------------------------------------------------------------------------- /steps/mpc-1.2.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mpc-1.2.1/pass1.sh -------------------------------------------------------------------------------- /steps/mpc-1.2.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mpc-1.2.1/sources -------------------------------------------------------------------------------- /steps/mpfr-4.1.0/files/mparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mpfr-4.1.0/files/mparam.h -------------------------------------------------------------------------------- /steps/mpfr-4.1.0/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mpfr-4.1.0/pass1.sh -------------------------------------------------------------------------------- /steps/mpfr-4.1.0/patches/strtofr-gen-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mpfr-4.1.0/patches/strtofr-gen-fix.patch -------------------------------------------------------------------------------- /steps/mpfr-4.1.0/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/mpfr-4.1.0/sources -------------------------------------------------------------------------------- /steps/musl-1.1.24/files/disable_ctype_headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/files/disable_ctype_headers.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/pass1.sh -------------------------------------------------------------------------------- /steps/musl-1.1.24/pass2.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/musl-1.1.24/pass3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/pass3.sh -------------------------------------------------------------------------------- /steps/musl-1.1.24/pass4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/pass4.sh -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches-pass4/avoid_set_thread_area.patch: -------------------------------------------------------------------------------- 1 | ../patches/avoid_set_thread_area.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches-pass4/avoid_sys_clone.patch: -------------------------------------------------------------------------------- 1 | ../patches/avoid_sys_clone.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches-pass4/madvise_preserve_errno.patch: -------------------------------------------------------------------------------- 1 | ../patches/madvise_preserve_errno.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches-pass4/set_thread_area.patch: -------------------------------------------------------------------------------- 1 | ../patches/set_thread_area.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches-pass4/va_list.patch: -------------------------------------------------------------------------------- 1 | ../patches/va_list.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/avoid_set_thread_area.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/avoid_set_thread_area.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/avoid_sys_clone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/avoid_sys_clone.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/fenv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/fenv.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/madvise_preserve_errno.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/madvise_preserve_errno.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/makefile.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/set_thread_area.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/set_thread_area.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/sigsetjmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/sigsetjmp.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/patches/va_list.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/patches/va_list.patch -------------------------------------------------------------------------------- /steps/musl-1.1.24/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.1.24/sources -------------------------------------------------------------------------------- /steps/musl-1.2.5/files/ld-musl-i386.path: -------------------------------------------------------------------------------- 1 | /usr/lib/i686-unknown-linux-musl 2 | -------------------------------------------------------------------------------- /steps/musl-1.2.5/files/ld-musl-i386.path.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.2.5/files/ld-musl-i386.path.license -------------------------------------------------------------------------------- /steps/musl-1.2.5/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.2.5/pass1.sh -------------------------------------------------------------------------------- /steps/musl-1.2.5/pass2.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/musl-1.2.5/pass3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.2.5/pass3.sh -------------------------------------------------------------------------------- /steps/musl-1.2.5/patches-pass2/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /steps/musl-1.2.5/patches-pass3: -------------------------------------------------------------------------------- 1 | patches-pass2 -------------------------------------------------------------------------------- /steps/musl-1.2.5/patches/avoid_set_thread_area.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.2.5/patches/avoid_set_thread_area.patch -------------------------------------------------------------------------------- /steps/musl-1.2.5/patches/avoid_sys_clone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.2.5/patches/avoid_sys_clone.patch -------------------------------------------------------------------------------- /steps/musl-1.2.5/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/musl-1.2.5/sources -------------------------------------------------------------------------------- /steps/opendoas-6.8.2/files/doas.conf: -------------------------------------------------------------------------------- 1 | permit nopass :wheel 2 | -------------------------------------------------------------------------------- /steps/opendoas-6.8.2/files/doas.conf.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/opendoas-6.8.2/files/doas.conf.license -------------------------------------------------------------------------------- /steps/opendoas-6.8.2/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/opendoas-6.8.2/pass1.sh -------------------------------------------------------------------------------- /steps/opendoas-6.8.2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/opendoas-6.8.2/sources -------------------------------------------------------------------------------- /steps/openssl-3.0.13/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/openssl-3.0.13/pass1.sh -------------------------------------------------------------------------------- /steps/openssl-3.0.13/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/openssl-3.0.13/sources -------------------------------------------------------------------------------- /steps/oyacc-6.6/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/oyacc-6.6/mk/main.mk -------------------------------------------------------------------------------- /steps/oyacc-6.6/oyacc-6.6.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/oyacc-6.6/oyacc-6.6.checksums -------------------------------------------------------------------------------- /steps/oyacc-6.6/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/oyacc-6.6/pass1.kaem -------------------------------------------------------------------------------- /steps/oyacc-6.6/patches/meslibc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/oyacc-6.6/patches/meslibc.patch -------------------------------------------------------------------------------- /steps/oyacc-6.6/patches/tcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/oyacc-6.6/patches/tcc.patch -------------------------------------------------------------------------------- /steps/oyacc-6.6/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/oyacc-6.6/sources -------------------------------------------------------------------------------- /steps/patch-2.5.9/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/patch-2.5.9/mk/main.mk -------------------------------------------------------------------------------- /steps/patch-2.5.9/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/patch-2.5.9/pass1.kaem -------------------------------------------------------------------------------- /steps/patch-2.5.9/patch-2.5.9.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/patch-2.5.9/patch-2.5.9.checksums -------------------------------------------------------------------------------- /steps/patch-2.5.9/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/patch-2.5.9/sources -------------------------------------------------------------------------------- /steps/patch-2.7.6/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/patch-2.7.6/import-gnulib.sh -------------------------------------------------------------------------------- /steps/patch-2.7.6/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/patch-2.7.6/pass1.sh -------------------------------------------------------------------------------- /steps/patch-2.7.6/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/patch-2.7.6/sources -------------------------------------------------------------------------------- /steps/perl-5.000/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.000/files/config.h -------------------------------------------------------------------------------- /steps/perl-5.000/files/keywords.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.000/files/keywords.sh -------------------------------------------------------------------------------- /steps/perl-5.000/files/opcode.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.000/files/opcode.awk -------------------------------------------------------------------------------- /steps/perl-5.000/files/opcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.000/files/opcode.sh -------------------------------------------------------------------------------- /steps/perl-5.000/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.000/mk/main.mk -------------------------------------------------------------------------------- /steps/perl-5.000/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.000/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.000/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.000/sources -------------------------------------------------------------------------------- /steps/perl-5.003/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.003/files/config.h -------------------------------------------------------------------------------- /steps/perl-5.003/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.003/mk/main.mk -------------------------------------------------------------------------------- /steps/perl-5.003/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.003/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.003/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.003/sources -------------------------------------------------------------------------------- /steps/perl-5.10.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.10.1/sources -------------------------------------------------------------------------------- /steps/perl-5.12.5/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.12.5/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.12.5/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.12.5/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.12.5/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.12.5/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.12.5/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.12.5/patches/a2p-c-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.12.5/patches/a2p-c-bison.patch -------------------------------------------------------------------------------- /steps/perl-5.12.5/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.12.5/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.12.5/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.12.5/sources -------------------------------------------------------------------------------- /steps/perl-5.15.7/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.15.7/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.15.7/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.15.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.15.7/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.15.7/patches/5.14_mk_PL_charclass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.15.7/patches/5.14_mk_PL_charclass.patch -------------------------------------------------------------------------------- /steps/perl-5.15.7/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.15.7/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.15.7/patches/a2p-c-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.15.7/patches/a2p-c-bison.patch -------------------------------------------------------------------------------- /steps/perl-5.15.7/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.15.7/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.15.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.15.7/sources -------------------------------------------------------------------------------- /steps/perl-5.16.3/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.16.3/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.16.3/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.16.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.16.3/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.16.3/patches/0001-Revert-l1_char_class_tab.h-Add-field-for-quotemeta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.16.3/patches/0001-Revert-l1_char_class_tab.h-Add-field-for-quotemeta.patch -------------------------------------------------------------------------------- /steps/perl-5.16.3/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.16.3/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.16.3/patches/a2p-c-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.16.3/patches/a2p-c-bison.patch -------------------------------------------------------------------------------- /steps/perl-5.16.3/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.16.3/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.16.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.16.3/sources -------------------------------------------------------------------------------- /steps/perl-5.17.2/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.17.2/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.17.2/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.17.2/patches/0001-Revert-regen-mk_invlists.pl-Fail-if-inversion-list-n.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/patches/0001-Revert-regen-mk_invlists.pl-Fail-if-inversion-list-n.patch -------------------------------------------------------------------------------- /steps/perl-5.17.2/patches/0001-Unicode-UCD-prop_invlist-Allow-to-return-internal-pr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/patches/0001-Unicode-UCD-prop_invlist-Allow-to-return-internal-pr.patch -------------------------------------------------------------------------------- /steps/perl-5.17.2/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.17.2/patches/a2p-c-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/patches/a2p-c-bison.patch -------------------------------------------------------------------------------- /steps/perl-5.17.2/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.17.2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.2/sources -------------------------------------------------------------------------------- /steps/perl-5.17.4/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.17.4/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.17.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/0001-Revert-regen-regcharclass.pl-Generate-macros-for-X-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/0001-Revert-regen-regcharclass.pl-Generate-macros-for-X-p.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/0002-Revert-regexec.c-Use-new-macros-instead-of-swashes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/0002-Revert-regexec.c-Use-new-macros-instead-of-swashes.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/0003-Revert-Use-macro-not-swash-for-utf8-quotemeta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/0003-Revert-Use-macro-not-swash-for-utf8-quotemeta.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/0004-Rename-property-involved-in-X-matching-for-clarity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/0004-Rename-property-involved-in-X-matching-for-clarity.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/a2p-c-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/a2p-c-bison.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/duplicate-invlists-defn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/duplicate-invlists-defn.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.17.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.17.4/sources -------------------------------------------------------------------------------- /steps/perl-5.18.4/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.18.4/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.18.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/0001-Unicode-UCD-Allow-internal-properties-in-invmap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/0001-Unicode-UCD-Allow-internal-properties-in-invmap.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/0002-Unicode-UCD-Add-prop_values-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/0002-Unicode-UCD-Add-prop_values-function.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/0003-Refactor-ExtUtils-Embed-to-work-with-miniperl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/0003-Refactor-ExtUtils-Embed-to-work-with-miniperl.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/0004-Tweak-ExtUtils-Embed-s-generated-C-code-to-be-closer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/0004-Tweak-ExtUtils-Embed-s-generated-C-code-to-be-closer.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/0005-Move-an-inversion-list-generation-to-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/0005-Move-an-inversion-list-generation-to-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/0006-Partial-backport-Work-properly-under-UTF-8-LC_CTYPE-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/0006-Partial-backport-Work-properly-under-UTF-8-LC_CTYPE-.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/Encode-reproducible-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/Encode-reproducible-includes.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/Generate-Errno-and-Pod-Functions-with-deterministic-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/Generate-Errno-and-Pod-Functions-with-deterministic-.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/PPPort-pm-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/PPPort-pm-reproducible.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/ParseXS-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/ParseXS-reproducible.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/Revert-regen-mk_PL_charclass-pl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/Revert-regen-mk_PL_charclass-pl.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/Unicode-UCD-search_invlist.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/Unicode-UCD-search_invlist.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/a2p-c-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/a2p-c-bison.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.18.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.18.4/sources -------------------------------------------------------------------------------- /steps/perl-5.22.4/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.22.4/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.22.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.22.4/patches/Allow-strictly-named-map-tables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/patches/Allow-strictly-named-map-tables.patch -------------------------------------------------------------------------------- /steps/perl-5.22.4/patches/Make-mktables-work-on-5.22.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/patches/Make-mktables-work-on-5.22.patch -------------------------------------------------------------------------------- /steps/perl-5.22.4/patches/PPPort-pm-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/patches/PPPort-pm-reproducible.patch -------------------------------------------------------------------------------- /steps/perl-5.22.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.22.4/patches/regcharclass-remove-experimental.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/patches/regcharclass-remove-experimental.patch -------------------------------------------------------------------------------- /steps/perl-5.22.4/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.22.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.22.4/sources -------------------------------------------------------------------------------- /steps/perl-5.24.4/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.24.4/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.24.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.24.4/patches/PPPort-pm-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/patches/PPPort-pm-reproducible.patch -------------------------------------------------------------------------------- /steps/perl-5.24.4/patches/Revert-regen-regcharclass.pl-avoid-autoderef-feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/patches/Revert-regen-regcharclass.pl-avoid-autoderef-feature.patch -------------------------------------------------------------------------------- /steps/perl-5.24.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.24.4/patches/Unicode-UCD.pm-Add-undocumented-internal-feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/patches/Unicode-UCD.pm-Add-undocumented-internal-feature.patch -------------------------------------------------------------------------------- /steps/perl-5.24.4/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.24.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.24.4/sources -------------------------------------------------------------------------------- /steps/perl-5.30.3/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.30.3/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.30.3/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.30.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.30.3/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.30.3/patches/PPPort-pm-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.30.3/patches/PPPort-pm-reproducible.patch -------------------------------------------------------------------------------- /steps/perl-5.30.3/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.30.3/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.30.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.30.3/sources -------------------------------------------------------------------------------- /steps/perl-5.36.3/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.36.3/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.36.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.36.3/patches/Devel-PPPort-remove-sprintf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/patches/Devel-PPPort-remove-sprintf.patch -------------------------------------------------------------------------------- /steps/perl-5.36.3/patches/PPPort-pm-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/patches/PPPort-pm-reproducible.patch -------------------------------------------------------------------------------- /steps/perl-5.36.3/patches/Revert-mktables-Use-builtin-refaddr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/patches/Revert-mktables-Use-builtin-refaddr.patch -------------------------------------------------------------------------------- /steps/perl-5.36.3/patches/remove-machine-generated.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/patches/remove-machine-generated.patch -------------------------------------------------------------------------------- /steps/perl-5.36.3/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.36.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.36.3/sources -------------------------------------------------------------------------------- /steps/perl-5.42.0/files/Compress-Raw-Zlib_config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/files/Compress-Raw-Zlib_config.in -------------------------------------------------------------------------------- /steps/perl-5.42.0/files/config.over: -------------------------------------------------------------------------------- 1 | ../../perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.42.0/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.42.0/patches/Devel-PPPort-remove-sprintf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/patches/Devel-PPPort-remove-sprintf.patch -------------------------------------------------------------------------------- /steps/perl-5.42.0/patches/PPPort-pm-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/patches/PPPort-pm-reproducible.patch -------------------------------------------------------------------------------- /steps/perl-5.42.0/patches/fix-debugging-re.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/patches/fix-debugging-re.patch -------------------------------------------------------------------------------- /steps/perl-5.42.0/patches/mk_invlists-remove-any.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/patches/mk_invlists-remove-any.patch -------------------------------------------------------------------------------- /steps/perl-5.42.0/patches/remove-machine-generated.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/patches/remove-machine-generated.patch -------------------------------------------------------------------------------- /steps/perl-5.42.0/patches/reproducible-mktables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/patches/reproducible-mktables.patch -------------------------------------------------------------------------------- /steps/perl-5.42.0/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.42.0/sources -------------------------------------------------------------------------------- /steps/perl-5.6.2/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.6.2/files/config.h -------------------------------------------------------------------------------- /steps/perl-5.6.2/files/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.6.2/files/config.sh -------------------------------------------------------------------------------- /steps/perl-5.6.2/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.6.2/mk/main.mk -------------------------------------------------------------------------------- /steps/perl-5.6.2/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.6.2/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.6.2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.6.2/sources -------------------------------------------------------------------------------- /steps/perl-5.8.9/files/config.over: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.8.9/files/config.over -------------------------------------------------------------------------------- /steps/perl-5.8.9/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.8.9/pass1.sh -------------------------------------------------------------------------------- /steps/perl-5.8.9/patches/0001-Revert-Patch-Configure-doesn-t-pick-up-Hash-Util-Fie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.8.9/patches/0001-Revert-Patch-Configure-doesn-t-pick-up-Hash-Util-Fie.patch -------------------------------------------------------------------------------- /steps/perl-5.8.9/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.8.9/patches/Sort-files-returned-from-all_files_in_dir-for-consis.patch -------------------------------------------------------------------------------- /steps/perl-5.8.9/patches/a2p-c-bison.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.8.9/patches/a2p-c-bison.patch -------------------------------------------------------------------------------- /steps/perl-5.8.9/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-5.8.9/sources -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-Devel-Tokenizer-C-0.11/pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass10.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass11.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass12.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass13.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass2.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass3.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass4.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass5.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass6.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass7.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass8.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/pass9.sh: -------------------------------------------------------------------------------- 1 | pass1.sh -------------------------------------------------------------------------------- /steps/perl-Devel-Tokenizer-C-0.11/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl-Devel-Tokenizer-C-0.11/sources -------------------------------------------------------------------------------- /steps/perl5.004-05/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.004-05/files/config.h -------------------------------------------------------------------------------- /steps/perl5.004-05/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.004-05/mk/main.mk -------------------------------------------------------------------------------- /steps/perl5.004-05/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.004-05/pass1.sh -------------------------------------------------------------------------------- /steps/perl5.004-05/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.004-05/sources -------------------------------------------------------------------------------- /steps/perl5.005-03/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.005-03/files/config.h -------------------------------------------------------------------------------- /steps/perl5.005-03/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.005-03/mk/main.mk -------------------------------------------------------------------------------- /steps/perl5.005-03/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.005-03/pass1.sh -------------------------------------------------------------------------------- /steps/perl5.005-03/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/perl5.005-03/sources -------------------------------------------------------------------------------- /steps/pkg-config-0.29.2/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/pkg-config-0.29.2/pass1.sh -------------------------------------------------------------------------------- /steps/pkg-config-0.29.2/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/pkg-config-0.29.2/sources -------------------------------------------------------------------------------- /steps/python-2.0.1/files/disable-unicode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/files/disable-unicode.patch -------------------------------------------------------------------------------- /steps/python-2.0.1/files/keyword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/files/keyword.c -------------------------------------------------------------------------------- /steps/python-2.0.1/files/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/files/token.c -------------------------------------------------------------------------------- /steps/python-2.0.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/pass1.sh -------------------------------------------------------------------------------- /steps/python-2.0.1/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/pass2.sh -------------------------------------------------------------------------------- /steps/python-2.0.1/patches/destdir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/patches/destdir.patch -------------------------------------------------------------------------------- /steps/python-2.0.1/patches/posixmodule.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/patches/posixmodule.patch -------------------------------------------------------------------------------- /steps/python-2.0.1/patches/pyc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/patches/pyc.patch -------------------------------------------------------------------------------- /steps/python-2.0.1/patches/undefs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/patches/undefs.patch -------------------------------------------------------------------------------- /steps/python-2.0.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.0.1/sources -------------------------------------------------------------------------------- /steps/python-2.3.7/files/disable-unicode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.3.7/files/disable-unicode.patch -------------------------------------------------------------------------------- /steps/python-2.3.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.3.7/pass1.sh -------------------------------------------------------------------------------- /steps/python-2.3.7/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.3.7/pass2.sh -------------------------------------------------------------------------------- /steps/python-2.3.7/patches/posixmodule.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.3.7/patches/posixmodule.patch -------------------------------------------------------------------------------- /steps/python-2.3.7/patches/pyc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.3.7/patches/pyc.patch -------------------------------------------------------------------------------- /steps/python-2.3.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.3.7/sources -------------------------------------------------------------------------------- /steps/python-2.5.6/files/graminit-regen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/files/graminit-regen.patch -------------------------------------------------------------------------------- /steps/python-2.5.6/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/pass1.sh -------------------------------------------------------------------------------- /steps/python-2.5.6/patches/keyword.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/patches/keyword.patch -------------------------------------------------------------------------------- /steps/python-2.5.6/patches/pgen-timestamp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/patches/pgen-timestamp.patch -------------------------------------------------------------------------------- /steps/python-2.5.6/patches/posixmodule.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/patches/posixmodule.patch -------------------------------------------------------------------------------- /steps/python-2.5.6/patches/pyc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/patches/pyc.patch -------------------------------------------------------------------------------- /steps/python-2.5.6/patches/sorted.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/patches/sorted.patch -------------------------------------------------------------------------------- /steps/python-2.5.6/patches/sre_constants.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/patches/sre_constants.patch -------------------------------------------------------------------------------- /steps/python-2.5.6/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-2.5.6/sources -------------------------------------------------------------------------------- /steps/python-3.1.5/files/graminit-regen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/files/graminit-regen.patch -------------------------------------------------------------------------------- /steps/python-3.1.5/files/py2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/files/py2.patch -------------------------------------------------------------------------------- /steps/python-3.1.5/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/pass1.sh -------------------------------------------------------------------------------- /steps/python-3.1.5/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/pass2.sh -------------------------------------------------------------------------------- /steps/python-3.1.5/patches/install-perms.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/patches/install-perms.patch -------------------------------------------------------------------------------- /steps/python-3.1.5/patches/openssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/patches/openssl.patch -------------------------------------------------------------------------------- /steps/python-3.1.5/patches/posixmodule.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/patches/posixmodule.patch -------------------------------------------------------------------------------- /steps/python-3.1.5/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.1.5/sources -------------------------------------------------------------------------------- /steps/python-3.11.1/files/Setup.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.11.1/files/Setup.local -------------------------------------------------------------------------------- /steps/python-3.11.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.11.1/pass1.sh -------------------------------------------------------------------------------- /steps/python-3.11.1/patches/empty-date.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.11.1/patches/empty-date.patch -------------------------------------------------------------------------------- /steps/python-3.11.1/patches/multiarch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.11.1/patches/multiarch.patch -------------------------------------------------------------------------------- /steps/python-3.11.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.11.1/sources -------------------------------------------------------------------------------- /steps/python-3.3.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.3.7/pass1.sh -------------------------------------------------------------------------------- /steps/python-3.3.7/patches/install-perms.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.3.7/patches/install-perms.patch -------------------------------------------------------------------------------- /steps/python-3.3.7/patches/symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.3.7/patches/symbol.patch -------------------------------------------------------------------------------- /steps/python-3.3.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.3.7/sources -------------------------------------------------------------------------------- /steps/python-3.4.10/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.4.10/pass1.sh -------------------------------------------------------------------------------- /steps/python-3.4.10/patches/install-perms.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.4.10/patches/install-perms.patch -------------------------------------------------------------------------------- /steps/python-3.4.10/patches/symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.4.10/patches/symbol.patch -------------------------------------------------------------------------------- /steps/python-3.4.10/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.4.10/sources -------------------------------------------------------------------------------- /steps/python-3.8.16/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.8.16/pass1.sh -------------------------------------------------------------------------------- /steps/python-3.8.16/patches/empty-date.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.8.16/patches/empty-date.patch -------------------------------------------------------------------------------- /steps/python-3.8.16/patches/maxgroups.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.8.16/patches/maxgroups.patch -------------------------------------------------------------------------------- /steps/python-3.8.16/patches/refractor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.8.16/patches/refractor.patch -------------------------------------------------------------------------------- /steps/python-3.8.16/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/python-3.8.16/sources -------------------------------------------------------------------------------- /steps/sed-4.0.9/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.0.9/mk/main.mk -------------------------------------------------------------------------------- /steps/sed-4.0.9/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.0.9/pass1.kaem -------------------------------------------------------------------------------- /steps/sed-4.0.9/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.0.9/pass2.sh -------------------------------------------------------------------------------- /steps/sed-4.0.9/sed-4.0.9.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.0.9/sed-4.0.9.checksums -------------------------------------------------------------------------------- /steps/sed-4.0.9/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.0.9/sources -------------------------------------------------------------------------------- /steps/sed-4.8/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.8/import-gnulib.sh -------------------------------------------------------------------------------- /steps/sed-4.8/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.8/pass1.sh -------------------------------------------------------------------------------- /steps/sed-4.8/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/sed-4.8/sources -------------------------------------------------------------------------------- /steps/shadow-4.14.3/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/shadow-4.14.3/pass1.sh -------------------------------------------------------------------------------- /steps/shadow-4.14.3/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/shadow-4.14.3/sources -------------------------------------------------------------------------------- /steps/simple-patch-1.0/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/simple-patch-1.0/pass1.kaem -------------------------------------------------------------------------------- /steps/simple-patch-1.0/simple-patch-1.0.amd64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/simple-patch-1.0/simple-patch-1.0.amd64.checksums -------------------------------------------------------------------------------- /steps/simple-patch-1.0/simple-patch-1.0.riscv64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/simple-patch-1.0/simple-patch-1.0.riscv64.checksums -------------------------------------------------------------------------------- /steps/simple-patch-1.0/simple-patch-1.0.x86.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/simple-patch-1.0/simple-patch-1.0.x86.checksums -------------------------------------------------------------------------------- /steps/simple-patch-1.0/src/simple-patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/simple-patch-1.0/src/simple-patch.c -------------------------------------------------------------------------------- /steps/tar-1.12/files/getdate_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.12/files/getdate_stub.c -------------------------------------------------------------------------------- /steps/tar-1.12/files/stat_override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.12/files/stat_override.c -------------------------------------------------------------------------------- /steps/tar-1.12/mk/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.12/mk/main.mk -------------------------------------------------------------------------------- /steps/tar-1.12/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.12/pass1.kaem -------------------------------------------------------------------------------- /steps/tar-1.12/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.12/sources -------------------------------------------------------------------------------- /steps/tar-1.12/tar-1.12.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.12/tar-1.12.checksums -------------------------------------------------------------------------------- /steps/tar-1.34/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.34/import-gnulib.sh -------------------------------------------------------------------------------- /steps/tar-1.34/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.34/pass1.sh -------------------------------------------------------------------------------- /steps/tar-1.34/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tar-1.34/sources -------------------------------------------------------------------------------- /steps/tcc-0.9.26/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.26/pass1.kaem -------------------------------------------------------------------------------- /steps/tcc-0.9.26/simple-patches/addback-fileopen.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.26/simple-patches/addback-fileopen.after -------------------------------------------------------------------------------- /steps/tcc-0.9.26/simple-patches/addback-fileopen.before: -------------------------------------------------------------------------------- 1 | // write header 2 | -------------------------------------------------------------------------------- /steps/tcc-0.9.26/simple-patches/remove-fileopen.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.26/simple-patches/remove-fileopen.after -------------------------------------------------------------------------------- /steps/tcc-0.9.26/simple-patches/remove-fileopen.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.26/simple-patches/remove-fileopen.before -------------------------------------------------------------------------------- /steps/tcc-0.9.26/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.26/sources -------------------------------------------------------------------------------- /steps/tcc-0.9.26/tcc-0.9.26.riscv64.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.26/tcc-0.9.26.riscv64.checksums -------------------------------------------------------------------------------- /steps/tcc-0.9.26/tcc-0.9.26.x86.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.26/tcc-0.9.26.x86.checksums -------------------------------------------------------------------------------- /steps/tcc-0.9.27/pass1.kaem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/pass1.kaem -------------------------------------------------------------------------------- /steps/tcc-0.9.27/pass2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/pass2.sh -------------------------------------------------------------------------------- /steps/tcc-0.9.27/pass3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/pass3.sh -------------------------------------------------------------------------------- /steps/tcc-0.9.27/pass4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/pass4.sh -------------------------------------------------------------------------------- /steps/tcc-0.9.27/pass5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/pass5.sh -------------------------------------------------------------------------------- /steps/tcc-0.9.27/patches/dont-skip-weak-symbols-ar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/patches/dont-skip-weak-symbols-ar.patch -------------------------------------------------------------------------------- /steps/tcc-0.9.27/patches/ignore-static-inside-array.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/patches/ignore-static-inside-array.patch -------------------------------------------------------------------------------- /steps/tcc-0.9.27/patches/static-link.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/patches/static-link.patch -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/addback-fileopen.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/simple-patches/addback-fileopen.after -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/addback-fileopen.before: -------------------------------------------------------------------------------- 1 | // write header 2 | -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/check-reloc-null.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/simple-patches/check-reloc-null.after -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/check-reloc-null.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/simple-patches/check-reloc-null.before -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/fiwix-paddr.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/simple-patches/fiwix-paddr.after -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/fiwix-paddr.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/simple-patches/fiwix-paddr.before -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/remove-fileopen.after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/simple-patches/remove-fileopen.after -------------------------------------------------------------------------------- /steps/tcc-0.9.27/simple-patches/remove-fileopen.before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/simple-patches/remove-fileopen.before -------------------------------------------------------------------------------- /steps/tcc-0.9.27/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/sources -------------------------------------------------------------------------------- /steps/tcc-0.9.27/tcc-0.9.27.checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/tcc-0.9.27/tcc-0.9.27.checksums -------------------------------------------------------------------------------- /steps/texinfo-6.7/import-gnulib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/texinfo-6.7/import-gnulib.sh -------------------------------------------------------------------------------- /steps/texinfo-6.7/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/texinfo-6.7/pass1.sh -------------------------------------------------------------------------------- /steps/texinfo-6.7/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/texinfo-6.7/sources -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/pass1.sh -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/patches/broken-programs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/patches/broken-programs.patch -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/patches/disable-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/patches/disable-tests.patch -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/patches/headers-bsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/patches/headers-bsd.patch -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/patches/headers-gpl2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/patches/headers-gpl2.patch -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/patches/headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/patches/headers.patch -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/patches/pkg-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/patches/pkg-config.patch -------------------------------------------------------------------------------- /steps/util-linux-2.19.1/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/util-linux-2.19.1/sources -------------------------------------------------------------------------------- /steps/which-2.21/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/which-2.21/pass1.sh -------------------------------------------------------------------------------- /steps/which-2.21/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/which-2.21/sources -------------------------------------------------------------------------------- /steps/xz-5.6.4/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/xz-5.6.4/pass1.sh -------------------------------------------------------------------------------- /steps/xz-5.6.4/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/xz-5.6.4/sources -------------------------------------------------------------------------------- /steps/zlib-1.2.13/pass1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/zlib-1.2.13/pass1.sh -------------------------------------------------------------------------------- /steps/zlib-1.2.13/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/steps/zlib-1.2.13/sources -------------------------------------------------------------------------------- /substitutes.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fosslinux/live-bootstrap/HEAD/substitutes.license --------------------------------------------------------------------------------