Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/tmpfiles/
Date: Tue, 24 Aug 2021 11:33:37
Message-Id: 1629804801.d702ff0f19553a4ce20317877fb09f7b7b9b845e.grobian@gentoo
1 commit: d702ff0f19553a4ce20317877fb09f7b7b9b845e
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 24 11:33:06 2021 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 24 11:33:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d702ff0f
7
8 virtual/tmpfiles: do not require an impl on Prefix guest
9
10 Prefix guest installs don't boot, the host does, but the Prefix is
11 always there. Apart from systemd far from compiling on non-Linux, it
12 isn't necessary, so skip it.
13
14 Package-Manager: Portage-3.0.20, Repoman-3.0.3
15 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
16
17 virtual/tmpfiles/tmpfiles-0-r1.ebuild | 10 ++++++----
18 1 file changed, 6 insertions(+), 4 deletions(-)
19
20 diff --git a/virtual/tmpfiles/tmpfiles-0-r1.ebuild b/virtual/tmpfiles/tmpfiles-0-r1.ebuild
21 index 03ef3601895..ab126e516e9 100644
22 --- a/virtual/tmpfiles/tmpfiles-0-r1.ebuild
23 +++ b/virtual/tmpfiles/tmpfiles-0-r1.ebuild
24 @@ -8,8 +8,10 @@ SLOT="0"
25 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
26
27 RDEPEND="
28 - || (
29 - sys-apps/systemd-tmpfiles
30 - sys-apps/opentmpfiles
31 - sys-apps/systemd
32 + !prefix-guest? (
33 + || (
34 + sys-apps/systemd-tmpfiles
35 + sys-apps/opentmpfiles
36 + sys-apps/systemd
37 + )
38 )"