Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pms:eapi-7 commit in: /
Date: Sat, 24 Feb 2018 12:58:51
Message-Id: 1519476924.57757371ebb99d7b3bc65cb833e17bb3ab671ba1.ulm@gentoo
1 commit: 57757371ebb99d7b3bc65cb833e17bb3ab671ba1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 29 03:13:57 2017 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 24 12:55:24 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=57757371
7
8 EAPI 7 removes DESTTREE and INSDESTTREE.
9
10 Bug: https://bugs.gentoo.org/173630
11
12 eapi-differences.tex | 8 ++++++++
13 ebuild-env-vars.tex | 19 ++++++++++++-------
14 2 files changed, 20 insertions(+), 7 deletions(-)
15
16 diff --git a/eapi-differences.tex b/eapi-differences.tex
17 index f87e448..283891b 100644
18 --- a/eapi-differences.tex
19 +++ b/eapi-differences.tex
20 @@ -155,6 +155,12 @@ Parallel tests & \compactfeatureref{parallel-tests} &
21 \t{ECLASSDIR} & \compactfeatureref{eclassdir} &
22 Yes & Yes & Yes & Yes & No \\
23
24 +\t{DESTTREE} & \compactfeatureref{desttree} &
25 + Yes & Yes & Yes & Yes & No \\
26 +
27 +\t{INSDESTTREE} & \compactfeatureref{insdesttree} &
28 + Yes & Yes & Yes & Yes & No \\
29 +
30 \t{KV} & \compactfeatureref{kv} &
31 Yes & No & No & No & No \\
32
33 @@ -409,6 +415,8 @@ EAPI 7 is EAPI 6 with the following changes:
34 \item Automatic enforcing of \t{REQUIRED_USE}, \featureref{auto-req-use}.
35 \item \t{PORTDIR} is gone, \featureref{portdir}.
36 \item \t{ECLASSDIR} is gone, \featureref{eclassdir}.
37 +\item \t{DESTTREE} is gone, \featureref{desttree}.
38 +\item \t{INSDESTTREE} is gone, \featureref{insdesttree}.
39 \end{compactitem}
40
41 \ChangeWhenAddingAnEAPI{7}
42
43 diff --git a/ebuild-env-vars.tex b/ebuild-env-vars.tex
44 index 0258d1a..2d79f20 100644
45 --- a/ebuild-env-vars.tex
46 +++ b/ebuild-env-vars.tex
47 @@ -176,11 +176,14 @@ variable.
48 \t{DESTTREE} &
49 \t{src_install} &
50 No &
51 - Controls the location where \t{dobin}, \t{dolib}, \t{domo}, and \t{dosbin} install things. \\
52 + \featurelabel{desttree} Controls the location where \t{dobin}, \t{dolib}, \t{domo},
53 + and \t{dosbin} install things. Only for EAPIs listed in table~\ref{tab:removed-env-vars-table}
54 + as supporting \t{DESTTREE}. \\
55 \t{INSDESTTREE} &
56 \t{src_install} &
57 No &
58 - Controls the location where \t{doins} installs things. \\
59 + \featurelabel{insdesttree} Controls the location where \t{doins} installs things. Only for EAPIs
60 + listed in table~\ref{tab:removed-env-vars-table} as supporting \t{INSDESTTREE}. \\
61 \t{USE} &
62 All &
63 Yes &
64 @@ -255,17 +258,19 @@ variable.
65 \ChangeWhenAddingAnEAPI{7}
66 \begin{centertable}{EAPIs supporting various removed env variables}
67 \label{tab:removed-env-vars-table}
68 - \begin{tabular}{lllll}
69 + \begin{tabular}{lllllll}
70 \toprule
71 \multicolumn{1}{c}{\textbf{EAPI}} &
72 \multicolumn{1}{c}{\textbf{\t{AA}?}} &
73 \multicolumn{1}{c}{\textbf{\t{KV}?}} &
74 \multicolumn{1}{c}{\textbf{\t{PORTDIR}?}} &
75 - \multicolumn{1}{c}{\textbf{\t{ECLASSDIR}?}} \\
76 + \multicolumn{1}{c}{\textbf{\t{ECLASSDIR}?}} &
77 + \multicolumn{1}{c}{\textbf{\t{DESTTREE}?}} &
78 + \multicolumn{1}{c}{\textbf{\t{INSDESTTREE}?}} \\
79 \midrule
80 - 0, 1, 2, 3 & Yes & Yes & Yes & Yes \\
81 - 4, 5, 6 & No & No & Yes & Yes \\
82 - 7 & No & No & No & No \\
83 + 0, 1, 2, 3 & Yes & Yes & Yes & Yes & Yes & Yes \\
84 + 4, 5, 6 & No & No & Yes & Yes & Yes & Yes \\
85 + 7 & No & No & No & No & No & No \\
86 \bottomrule
87 \end{tabular}
88 \end{centertable}