Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

2021.7-5

Compare
Choose a tag to compare
@dylanaraps dylanaraps released this 11 Jul 11:02
· 877 commits to master since this release
4f730b2

Usage:

  • Extract the archive as root from inside a directory (cd dir; tar xf ../kiss-chroot-XXXX.X.tar.xz).
  • Run ./bin/kiss-chroot to enter the chroot.

Changelog:

  • Swapped to OpenSSL.
  • Updated all packages.

Build flags:

export CFLAGS="-march=x86-64 -mtune=generic -pipe -Os"
export CXXFLAGS="-march=x86-64 -mtune=generic -pipe -Os"
export MAKEFLAGS="-j6"

Packages:

/ # kiss l
baselayout 1 7
binutils 2.36.1 1
bison 3.7.6 1
busybox 1.33.1 3
bzip2 1.0.8 1
curl 7.77.0 1
flex 2.6.4 4
gcc 11.1.0 4
git 2.32.0 1
gzip 1.10 2.6
kiss 5.4.11 1
linux-headers 5.10.47 1
m4 1.4.19 1
make 4.3 1
musl 1.2.2 1
openssl 1.1.1k 1
xz 5.2.5 1
zlib 1.2.11 3

KISS_HOOK:

case $TYPE in
    post-build)
        : "${DEST:?DEST is unset}"

        case $PKG in
            kiss)
                # Skip removal.
            ;;

            *)
                rm -rf \
                    "$DEST/usr/share/gettext" \
                    "$DEST/usr/share/polkit-1" \
                    "$DEST/usr/share/locale" \
                    "$DEST/usr/share/info" \
                    "$DEST/usr/share/man" \
                    "$DEST/usr/share/doc" \
                    "$DEST/usr/lib/charset.alias"
            ;;
        esac
    ;;
esac