Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/toybox/
Date: Mon, 19 Apr 2021 22:56:05
Message-Id: 1618872950.cec2af58b85b7b64860c87d295f3f36333290842.sam@gentoo
1 commit: cec2af58b85b7b64860c87d295f3f36333290842
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 19 22:48:06 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 19 22:55:50 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cec2af58
7
8 sys-apps/toybox: drop 0.8.0, 0.8.1, 0.8.3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-apps/toybox/Manifest | 3 --
13 sys-apps/toybox/toybox-0.8.0.ebuild | 56 -------------------------------------
14 sys-apps/toybox/toybox-0.8.1.ebuild | 56 -------------------------------------
15 sys-apps/toybox/toybox-0.8.3.ebuild | 56 -------------------------------------
16 4 files changed, 171 deletions(-)
17
18 diff --git a/sys-apps/toybox/Manifest b/sys-apps/toybox/Manifest
19 index 94ad70b1f9e..80755ef0224 100644
20 --- a/sys-apps/toybox/Manifest
21 +++ b/sys-apps/toybox/Manifest
22 @@ -1,4 +1 @@
23 -DIST toybox-0.8.0.tar.gz 975002 BLAKE2B e137c3616d2affaf8b6f234cab49190b98540fe8f954244172f9ca80c749069f85ff8addd94e1018d3680f1a307df54671ee9b01726c5279f340f8fee3669609 SHA512 aeb15a02782cc0b3b46a892e2d82834e5172a7da04e2498eaefec58221305dd24a86aada5ce05978bd4694895ffeb94ae980fd767f4ee00c499b3dd518fd3e20
24 -DIST toybox-0.8.1.tar.gz 1015363 BLAKE2B a765a133910b7c8d903a1fa95338b8dee1267c3b7430267d47c4157d966256d16c615500acc38428296b9612649fafdaa111a149df7415ac580c01cfdd361025 SHA512 22f91046c75f986e44927ec89feab6c6afa1f614e5b0eae73e43f6ccd5c4328991ad283858fb1a5cb4d697806f38b8ab81782c160860a2c34ecbef3885636d5e
25 -DIST toybox-0.8.3.tar.gz 1098057 BLAKE2B d962c4fd1c79229ace5a0836b6170e3ce8a5435df660b5306f5dd0aab32f4509b5c3cf5cc87eea597d336c7cdd51ca4895cadd420febeb9ef9270e85909f8dec SHA512 e2c5a22547cbd85bfee84c4aed3016895e4e0eba9b6f3dfc6cdfa0a0d59dfd74203a35389dcd0b2c557dd04eebbb051f9a458762af3abb32b473bd8924ed7b74
26 DIST toybox-0.8.4.tar.gz 1133770 BLAKE2B adc695c2ddd592b9de7137db623621410afaa4cdf2dfde647f24f25d38de99ad38907b5e5aa2ded0d6b2eceafc71763a25e04abc33e8f057934fceed6df22e69 SHA512 507604f96ee89094ca7b4b218985659a8de41578d1a4f267c7282baf11306419e94bb4bfcb06835dff3e46f974a0bb49f89e4c427c69c590738a4a37b62969b8
27
28 diff --git a/sys-apps/toybox/toybox-0.8.0.ebuild b/sys-apps/toybox/toybox-0.8.0.ebuild
29 deleted file mode 100644
30 index bf8ce8e2d4f..00000000000
31 --- a/sys-apps/toybox/toybox-0.8.0.ebuild
32 +++ /dev/null
33 @@ -1,56 +0,0 @@
34 -# Copyright 1999-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI="7"
38 -
39 -inherit multiprocessing savedconfig toolchain-funcs
40 -
41 -if [[ ${PV} == 9999 ]]; then
42 - inherit git-r3
43 - EGIT_REPO_URI="https://github.com/landley/toybox.git"
44 -else
45 - SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz"
46 - KEYWORDS="~amd64 ~x86"
47 -fi
48 -
49 -# makefile is stupid
50 -RESTRICT="test"
51 -
52 -DESCRIPTION="Common linux commands in a multicall binary"
53 -HOMEPAGE="https://landley.net/code/toybox/"
54 -
55 -LICENSE="0BSD"
56 -SLOT="0"
57 -IUSE=""
58 -
59 -src_prepare() {
60 - default
61 - restore_config .config
62 -}
63 -
64 -src_configure() {
65 - if [ -f .config ]; then
66 - yes "" | emake -j1 oldconfig > /dev/null
67 - return 0
68 - else
69 - einfo "Could not locate user configfile, so we will save a default one"
70 - emake -j1 defconfig > /dev/null
71 - fi
72 -}
73 -
74 -src_compile() {
75 - tc-export CC STRIP
76 - export HOSTCC=$(tc-getBUILD_CC)
77 - unset CROSS_COMPILE
78 - export CPUS=$(makeopts_jobs)
79 - emake V=1
80 -}
81 -
82 -src_test() {
83 - emake test
84 -}
85 -
86 -src_install() {
87 - save_config .config
88 - newbin generated/unstripped/toybox toybox
89 -}
90
91 diff --git a/sys-apps/toybox/toybox-0.8.1.ebuild b/sys-apps/toybox/toybox-0.8.1.ebuild
92 deleted file mode 100644
93 index 6c04f2330f3..00000000000
94 --- a/sys-apps/toybox/toybox-0.8.1.ebuild
95 +++ /dev/null
96 @@ -1,56 +0,0 @@
97 -# Copyright 1999-2021 Gentoo Authors
98 -# Distributed under the terms of the GNU General Public License v2
99 -
100 -EAPI="7"
101 -
102 -inherit multiprocessing savedconfig toolchain-funcs
103 -
104 -if [[ ${PV} == 9999 ]]; then
105 - inherit git-r3
106 - EGIT_REPO_URI="https://github.com/landley/toybox.git"
107 -else
108 - SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz"
109 - KEYWORDS="~amd64 ~x86"
110 -fi
111 -
112 -# makefile is stupid
113 -RESTRICT="test"
114 -
115 -DESCRIPTION="Common linux commands in a multicall binary"
116 -HOMEPAGE="https://landley.net/code/toybox/"
117 -
118 -LICENSE="0BSD"
119 -SLOT="0"
120 -IUSE=""
121 -
122 -src_prepare() {
123 - default
124 - restore_config .config
125 -}
126 -
127 -src_configure() {
128 - tc-export CC STRIP
129 - export HOSTCC="$(tc-getBUILD_CC)"
130 - if [ -f .config ]; then
131 - yes "" | emake -j1 oldconfig > /dev/null
132 - return 0
133 - else
134 - einfo "Could not locate user configfile, so we will save a default one"
135 - emake -j1 defconfig > /dev/null
136 - fi
137 -}
138 -
139 -src_compile() {
140 - unset CROSS_COMPILE
141 - export CPUS=$(makeopts_jobs)
142 - emake V=1
143 -}
144 -
145 -src_test() {
146 - emake test
147 -}
148 -
149 -src_install() {
150 - save_config .config
151 - newbin generated/unstripped/toybox toybox
152 -}
153
154 diff --git a/sys-apps/toybox/toybox-0.8.3.ebuild b/sys-apps/toybox/toybox-0.8.3.ebuild
155 deleted file mode 100644
156 index 6c04f2330f3..00000000000
157 --- a/sys-apps/toybox/toybox-0.8.3.ebuild
158 +++ /dev/null
159 @@ -1,56 +0,0 @@
160 -# Copyright 1999-2021 Gentoo Authors
161 -# Distributed under the terms of the GNU General Public License v2
162 -
163 -EAPI="7"
164 -
165 -inherit multiprocessing savedconfig toolchain-funcs
166 -
167 -if [[ ${PV} == 9999 ]]; then
168 - inherit git-r3
169 - EGIT_REPO_URI="https://github.com/landley/toybox.git"
170 -else
171 - SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz"
172 - KEYWORDS="~amd64 ~x86"
173 -fi
174 -
175 -# makefile is stupid
176 -RESTRICT="test"
177 -
178 -DESCRIPTION="Common linux commands in a multicall binary"
179 -HOMEPAGE="https://landley.net/code/toybox/"
180 -
181 -LICENSE="0BSD"
182 -SLOT="0"
183 -IUSE=""
184 -
185 -src_prepare() {
186 - default
187 - restore_config .config
188 -}
189 -
190 -src_configure() {
191 - tc-export CC STRIP
192 - export HOSTCC="$(tc-getBUILD_CC)"
193 - if [ -f .config ]; then
194 - yes "" | emake -j1 oldconfig > /dev/null
195 - return 0
196 - else
197 - einfo "Could not locate user configfile, so we will save a default one"
198 - emake -j1 defconfig > /dev/null
199 - fi
200 -}
201 -
202 -src_compile() {
203 - unset CROSS_COMPILE
204 - export CPUS=$(makeopts_jobs)
205 - emake V=1
206 -}
207 -
208 -src_test() {
209 - emake test
210 -}
211 -
212 -src_install() {
213 - save_config .config
214 - newbin generated/unstripped/toybox toybox
215 -}