Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms:master commit in: /
Date: Tue, 29 Nov 2016 07:33:27
Message-Id: 1477938076.c7d44d3a42c4777d77f61fbd90480f3fbd5f0515.ulm@gentoo
1 commit: c7d44d3a42c4777d77f61fbd90480f3fbd5f0515
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 31 14:56:12 2016 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 18:21:16 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=c7d44d3a
7
8 dependencies.tex: Record slot for := at build time, not install time
9
10 Correct the wording for the 'equals' slot operator to indicate that
11 the slot of the best installed package at the time package is *built*
12 matters. After all, the common use case for := is to indicate that
13 the build binds to a specific package version.
14
15 This is also more in line with dependency classes where we clearly
16 split the dependencies between build and runtime, and indicate that only
17 DEPEND is guaranteed to be available before src_*.
18
19 dependencies.tex | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22 diff --git a/dependencies.tex b/dependencies.tex
23 index 9037ca1..79801c4 100644
24 --- a/dependencies.tex
25 +++ b/dependencies.tex
26 @@ -284,7 +284,7 @@ indicates that the package will not break if the matched package is uninstalled
27 a different matching package in a different slot.
28 \item[=] Indicates that any slot value is acceptable. In addition, for runtime dependencies,
29 indicates that the package will break unless a matching package with slot and sub-slot equal to the
30 -slot and sub-slot of the best installed version at the time the package was installed is available.
31 +slot and sub-slot of the best installed version at the time the package was built is available.
32 \item[slot=] Indicates that only a specific slot value is acceptable, and otherwise behaves
33 identically to the plain equals slot operator.
34 \end{description}