commit: fa4c419d130e4f7f43415d75d2a8bccb9e7618a3 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Mar 14 06:35:53 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Mar 14 06:35:53 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa4c419d
sys-apps/toybox: drop 0.8.8, 0.8.9, 0.8.10 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/toybox/Manifest | 3 -- .../files/toybox-0.8.9-verbose-build-fix.patch | 18 ------- sys-apps/toybox/toybox-0.8.10.ebuild | 58 -------------------- sys-apps/toybox/toybox-0.8.8.ebuild | 58 -------------------- sys-apps/toybox/toybox-0.8.9.ebuild | 62 ---------------------- 5 files changed, 199 deletions(-) diff --git a/sys-apps/toybox/Manifest b/sys-apps/toybox/Manifest index ddad71d76b82..c3497a7e46a7 100644 --- a/sys-apps/toybox/Manifest +++ b/sys-apps/toybox/Manifest @@ -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 diff --git a/sys-apps/toybox/files/toybox-0.8.9-verbose-build-fix.patch b/sys-apps/toybox/files/toybox-0.8.9-verbose-build-fix.patch deleted file mode 100644 index d629ffddfe28..000000000000 --- a/sys-apps/toybox/files/toybox-0.8.9-verbose-build-fix.patch +++ /dev/null @@ -1,18 +0,0 @@ -https://github.com/landley/toybox/commit/c5e7495fe46d4b2b2c225f222efc6b9070de2c3a - -From c5e7495fe46d4b2b2c225f222efc6b9070de2c3a Mon Sep 17 00:00:00 2001 -From: Rob Landley <[email protected]> -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 - diff --git a/sys-apps/toybox/toybox-0.8.10.ebuild b/sys-apps/toybox/toybox-0.8.10.ebuild deleted file mode 100644 index 35f861185918..000000000000 --- a/sys-apps/toybox/toybox-0.8.10.ebuild +++ /dev/null @@ -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 -} diff --git a/sys-apps/toybox/toybox-0.8.8.ebuild b/sys-apps/toybox/toybox-0.8.8.ebuild deleted file mode 100644 index 917c870334f9..000000000000 --- a/sys-apps/toybox/toybox-0.8.8.ebuild +++ /dev/null @@ -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 -} diff --git a/sys-apps/toybox/toybox-0.8.9.ebuild b/sys-apps/toybox/toybox-0.8.9.ebuild deleted file mode 100644 index 2d47626cc148..000000000000 --- a/sys-apps/toybox/toybox-0.8.9.ebuild +++ /dev/null @@ -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 -}
