Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/genkernel/files/
Date: Sun, 28 Jun 2020 20:51:30
Message-Id: 1593377473.a1cb9ba899de24a057c7e9f0c5614becd02835c3.bman@gentoo
1 commit: a1cb9ba899de24a057c7e9f0c5614becd02835c3
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Jun 28 17:10:30 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 28 20:51:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1cb9ba8
7
8 sys-kernel/genkernel: remove unused patch
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/16478
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 ...ernel-4.0.7-fix-unquoted-SANDBOX_ON-check.patch | 26 ----------------------
16 1 file changed, 26 deletions(-)
17
18 diff --git a/sys-kernel/genkernel/files/genkernel-4.0.7-fix-unquoted-SANDBOX_ON-check.patch b/sys-kernel/genkernel/files/genkernel-4.0.7-fix-unquoted-SANDBOX_ON-check.patch
19 deleted file mode 100644
20 index be7bcf169ce..00000000000
21 --- a/sys-kernel/genkernel/files/genkernel-4.0.7-fix-unquoted-SANDBOX_ON-check.patch
22 +++ /dev/null
23 @@ -1,26 +0,0 @@
24 -commit 2948a542da6964a4f61a71fd5253c97f803eac34
25 -Author: Thomas Deutschmann <whissi@g.o>
26 -AuthorDate: Sun Apr 12 01:12:38 2020 +0200
27 -Commit: Thomas Deutschmann <whissi@g.o>
28 -CommitDate: Sun Apr 12 01:12:38 2020 +0200
29 -
30 - gen_determineargs.sh: determine_real_args(): Quote $SANDBOX_ON
31 -
32 - $SANDBOX_ON can be unset causing 'unary operator expected' error.
33 -
34 - Fixes c0e013c ("gen_determineargs.sh: determine_real_args(): Error out early when already running within a sandbox")
35 - Signed-off-by: Thomas Deutschmann <whissi@g.o>
36 -
37 -diff --git a/gen_determineargs.sh b/gen_determineargs.sh
38 -index 95ec4021..b1c038d3 100755
39 ---- a/gen_determineargs.sh
40 -+++ b/gen_determineargs.sh
41 -@@ -1012,7 +1012,7 @@ determine_real_args() {
42 - SANDBOX_COMMAND=
43 - if isTrue "${SANDBOX}"
44 - then
45 -- if [ ${SANDBOX_ON} -eq 1 ]
46 -+ if [[ "${SANDBOX_ON}" == "1" ]]
47 - then
48 - gen_die "SANDBOX_ON=1 detected -- You cannot use --sandbox when already running within a sandbox!"
49 - fi