sys-apps/toybox: drop 0.8.8, 0.8.9, 0.8.10

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-03-14 06:35:53 +00:00
parent 8059b0ddf0
commit fa4c419d13
5 changed files with 0 additions and 199 deletions

View File

@@ -1,4 +1 @@
DIST toybox-0.8.10.tar.gz 3534989 BLAKE2B c726cff2e916148b49c17953f25d6d886db77e0fa6ce435373b04bea025edc3f3ba512053d58d5bd3940aca78a9f3eab5d4cb36aaf45569a2ada697553c8602c SHA512 b2c36bc4e41741893a4fe039dd653f552ab987b948f78c1e5d04abb13ffbb8f898af636967739067877afef9ac0af10c259f674acdc4a80084a846fb02742461
DIST toybox-0.8.12.tar.gz 3600320 BLAKE2B c63cee7663d1f7a7858ca7e0525ef4dea7d701f4d0210582af9e545ccf8595eddb52ccb3885623fe4dea4d368dabbcb2e4430aeb76cbff516f56559dbb0add44 SHA512 b6984d475b253ecf2b2fdcb3107fab690f794442dd7e3cd8b9b598381e19eaaa0ab2c2d96f4f97b27b668c5c45e61d3bab5647015fa66314d8e565337f54d775
DIST toybox-0.8.8.tar.gz 3492750 BLAKE2B d53864e07392a511e4e861fcf5b0fdc8b43e5d82f13fb9eba62b850053aa547e0e057245062c34d4205019bba6223dff1a514b1bb0dde54734bcd3b1df82b122 SHA512 3ffe4de6b17770ad9c43f98f2c69a110f94e5a85da909f8f770bbc9abaff42a524237b4ffaaa8b9800c8d31f0a8b6d3521f03bfdd0d1260fa421ef2525a34290
DIST toybox-0.8.9.tar.gz 3517516 BLAKE2B 1c57fe43785c1925762de6d8c3af012d3726b18338b0543ce3c775fefdcf1121327c1486d28786e42aafa5b5e7208475d942a02099715b0cb751e79788326622 SHA512 73a3ec2a0d69b1566e1663e94b2bc7764b9f93e53978725f036f066837ab2769033e8bf17d5550e565656781cacf27d93960dd611ffed5425fa006d1d3104351

View File

@@ -1,18 +0,0 @@
https://github.com/landley/toybox/commit/c5e7495fe46d4b2b2c225f222efc6b9070de2c3a
From c5e7495fe46d4b2b2c225f222efc6b9070de2c3a Mon Sep 17 00:00:00 2001
From: Rob Landley <rob@landley.net>
Date: Fri, 13 Jan 2023 11:50:58 -0600
Subject: [PATCH] Ensure make wrapper sees success return code in verbose mode
(V=1)
--- a/scripts/make.sh
+++ b/scripts/make.sh
@@ -303,4 +303,5 @@ fi
# multiplexer binary via truncate-and-write through a symlink.
do_loudly chmod 555 "$OUTNAME" || exit 1
-[ -z "$V" ] && echo >&2
+# Ensure make wrapper sees success return code
+[ -z "$V" ] && echo >&2 || true

View File

@@ -1,58 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit multiprocessing savedconfig toolchain-funcs
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/landley/toybox.git"
else
SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
DESCRIPTION="Common linux commands in a multicall binary"
HOMEPAGE="https://landley.net/code/toybox/"
LICENSE="0BSD"
SLOT="0"
DEPEND="virtual/libcrypt:="
RDEPEND="${DEPEND}"
src_prepare() {
default
restore_config .config
}
src_configure() {
tc-export CC STRIP
export HOSTCC="$(tc-getBUILD_CC)"
# Respect CFLAGS
export OPTIMIZE="${CFLAGS}"
if [[ -f .config ]]; then
yes "" | emake -j1 oldconfig > /dev/null
return 0
else
einfo "Could not locate user configfile, so we will save a default one"
emake -j1 defconfig > /dev/null
fi
}
src_compile() {
unset CROSS_COMPILE
export CPUS=$(makeopts_jobs)
emake V=1 NOSTRIP=1
}
src_test() {
emake V=1 tests
}
src_install() {
save_config .config
dobin toybox
}

View File

@@ -1,58 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit multiprocessing savedconfig toolchain-funcs
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/landley/toybox.git"
else
SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
DESCRIPTION="Common linux commands in a multicall binary"
HOMEPAGE="https://landley.net/code/toybox/"
LICENSE="0BSD"
SLOT="0"
DEPEND="virtual/libcrypt:="
RDEPEND="${DEPEND}"
src_prepare() {
default
restore_config .config
}
src_configure() {
tc-export CC STRIP
export HOSTCC="$(tc-getBUILD_CC)"
# Respect CFLAGS
export OPTIMIZE="${CFLAGS}"
if [[ -f .config ]]; then
yes "" | emake -j1 oldconfig > /dev/null
return 0
else
einfo "Could not locate user configfile, so we will save a default one"
emake -j1 defconfig > /dev/null
fi
}
src_compile() {
unset CROSS_COMPILE
export CPUS=$(makeopts_jobs)
emake V=1
}
src_test() {
emake tests
}
src_install() {
save_config .config
newbin toybox toybox
}

View File

@@ -1,62 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit multiprocessing savedconfig toolchain-funcs
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/landley/toybox.git"
else
SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
DESCRIPTION="Common linux commands in a multicall binary"
HOMEPAGE="https://landley.net/code/toybox/"
LICENSE="0BSD"
SLOT="0"
DEPEND="virtual/libcrypt:="
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-verbose-build-fix.patch
)
src_prepare() {
default
restore_config .config
}
src_configure() {
tc-export CC STRIP
export HOSTCC="$(tc-getBUILD_CC)"
# Respect CFLAGS
export OPTIMIZE="${CFLAGS}"
if [[ -f .config ]]; then
yes "" | emake -j1 oldconfig > /dev/null
return 0
else
einfo "Could not locate user configfile, so we will save a default one"
emake -j1 defconfig > /dev/null
fi
}
src_compile() {
unset CROSS_COMPILE
export CPUS=$(makeopts_jobs)
emake V=1 NOSTRIP=1
}
src_test() {
emake V=1 tests
}
src_install() {
save_config .config
dobin toybox
}