diff options
author | Ivan Kovmir <i@kovmir.eu> | 2023-12-08 00:38:00 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-12-08 02:06:03 +0700 |
commit | 78f2ca8508f1768bc1550b3af82001af31530f01 (patch) | |
tree | 2796229d7355ea73404786fc2eaa205a344e7803 /system | |
parent | 257583e07baeb0e20962252e2b671fa56e43bf06 (diff) |
system/catatonit: Added (container init).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/catatonit/README | 6 | ||||
-rw-r--r-- | system/catatonit/catatonit.SlackBuild | 91 | ||||
-rw-r--r-- | system/catatonit/catatonit.info | 10 | ||||
-rw-r--r-- | system/catatonit/slack-desc | 19 |
4 files changed, 126 insertions, 0 deletions
diff --git a/system/catatonit/README b/system/catatonit/README new file mode 100644 index 0000000000000..38e8108046e38 --- /dev/null +++ b/system/catatonit/README @@ -0,0 +1,6 @@ +A container init that is so simple it's effectively brain-dead. + +A container init that is so simple it's effectively brain-dead. This is +a rewrite of initrs in C, because we found that it is not possible to +statically compile Rust binaries without using musl. That was, in turn, +a reimplementation of other container inits like tini and dumb-init. diff --git a/system/catatonit/catatonit.SlackBuild b/system/catatonit/catatonit.SlackBuild new file mode 100644 index 0000000000000..c0ed4cc30e101 --- /dev/null +++ b/system/catatonit/catatonit.SlackBuild @@ -0,0 +1,91 @@ +#!/bin/bash + +# Slackware build script for swege + +# Copyright 2022 Ivan Kovmir <ikovmir@uninstance.cc> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd "$(dirname "$0")" ; CWD=$(pwd) + +PRGNAM=catatonit +VERSION=${VERSION:-0.2.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$(uname -m)" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$(uname -m) ;; + esac +fi + +if [ -n "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP="${TMP:-/tmp/SBo}" +SRC="$TMP/$PRGNAM-$VERSION" +PKG="$TMP/package-$PRGNAM" +OUTPUT="${OUTPUT:-/tmp}" + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +else + SLKCFLAGS="-O2" +fi + +set -e + +rm -rf "$PKG" +mkdir -p "$TMP" "$PKG" "$OUTPUT" +cd "$TMP" +rm -rf "$PRGNAM-$VERSION" +tar xvf "$CWD/$PRGNAM-$VERSION.tar.gz" +cd "$PRGNAM-$VERSION" +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +./autogen.sh +./configure --prefix='/usr' +CFLAGS="$SLKCFLAGS" \ + make +DESTDIR="$PKG" \ + make install-strip + +mkdir -p "$PKG/install" +mkdir -p "$PKG/usr/doc/$PRGNAM-$VERSION" +mkdir -p "$PKG/usr/share/$PRGNAM-$VERSION" +cp "$CWD/$PRGNAM.SlackBuild" "$PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild" +cp "$CWD/README" "$PKG/usr/doc/$PRGNAM-$VERSION/README" +cp "$CWD/slack-desc" "$PKG/install/slack-desc" + +# Copy useful things directly from the repository folder. +cp "$SRC/README.md" "$PKG/usr/share/$PRGNAM-$VERSION/repository-README.md" +cp "$SRC/COPYING" "$PKG/usr/share/$PRGNAM-$VERSION/LICENSE" + +cd "$PKG" +/sbin/makepkg -l y -c n "$OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" diff --git a/system/catatonit/catatonit.info b/system/catatonit/catatonit.info new file mode 100644 index 0000000000000..c8c64a3e500ee --- /dev/null +++ b/system/catatonit/catatonit.info @@ -0,0 +1,10 @@ +PRGNAM="catatonit" +VERSION="0.2.0" +HOMEPAGE="https://github.com/openSUSE/catatonit" +DOWNLOAD="https://github.com/openSUSE/catatonit/archive/v0.2.0/catatonit-v0.2.0.tar.gz" +MD5SUM="54724a67659bc9919354b27e46411222" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Ivan Kovmir" +EMAIL="i@kovmir.eu" diff --git a/system/catatonit/slack-desc b/system/catatonit/slack-desc new file mode 100644 index 0000000000000..15239c25f7674 --- /dev/null +++ b/system/catatonit/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +catatonit: catatonit (Container init) +catatonit: +catatonit: A container init that is so simple it's effectively brain-dead. +catatonit: +catatonit: +catatonit: +catatonit: +catatonit: +catatonit: +catatonit: https://github.com/openSUSE/catatonit +catatonit: |