commit: a709f6f074833015469f77d2a3c9a93dfccbc57b
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 16 16:11:30 2015 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Oct 23 17:25:38 2015 +0000
URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=a709f6f0
EAPI 6: unpack matches filename extensions case-insensitively.
Bug: 476730
eapi-differences.tex | 4 ++++
pkg-mgr-commands.tex | 12 ++++++++----
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/eapi-differences.tex b/eapi-differences.tex
index b8a260a..c5d2435 100644
--- a/eapi-differences.tex
+++ b/eapi-differences.tex
@@ -228,6 +228,9 @@ Controllable compression & \compactfeatureref{docompress} &
\t{unpack} support for \t{txz} & \compactfeatureref{unpack-extensions} &
No & No & No & No & Yes \\
+\t{unpack} case-insensitive & \compactfeatureref{unpack-ignore-case} &
+ No & No & No & No & Yes \\
+
\t{default} function & \compactfeatureref{default-func} &
* & Yes & Yes & Yes & Yes \\
@@ -349,6 +352,7 @@ EAPI 6 is EAPI 5 with the following changes:
\item \t{in\_iuse} support, \featureref{in-iuse}.
\item \t{unpack} supports absolute and relative paths,
\featureref{unpack-absolute}.
\item \t{unpack} supports \t{.txz}, \featureref{unpack-extensions}.
+\item \t{unpack} matches filename extensions case-insensitively,
\featureref{unpack-ignore-case}.
\end{compactitem}
\ChangeWhenAddingAnEAPI{6}
diff --git a/pkg-mgr-commands.tex b/pkg-mgr-commands.tex
index bd1268e..8d316da 100644
--- a/pkg-mgr-commands.tex
+++ b/pkg-mgr-commands.tex
@@ -885,16 +885,20 @@ has returned.
It is up to the ebuild to ensure that the relevant external utilities are
available, whether by
being in the system set or via dependencies.
+ \featurelabel{unpack-ignore-case} \t{unpack} matches filename extensions
in a case-insensitive
+ manner, for EAPIs listed such in table~\ref{tab:unpack-behaviour}.
+
\ChangeWhenAddingAnEAPI{6}
\begin{centertable}{\t{unpack} behaviour for EAPIs}
\label{tab:unpack-behaviour}
- \begin{tabular}{ l l }
+ \begin{tabular}{ l l l }
\toprule
\multicolumn{1}{c}{\textbf{EAPI}} &
- \multicolumn{1}{c}{\textbf{Supports absolute and relative paths?}} \\
+ \multicolumn{1}{c}{\textbf{Supports absolute and relative paths?}} &
+ \multicolumn{1}{c}{\textbf{Case-insensitive matching?}} \\
\midrule
- 0, 1, 2, 3, 4, 5 & No \\
- 6 & Yes \\
+ 0, 1, 2, 3, 4, 5 & No & No \\
+ 6 & Yes & Yes \\
\bottomrule
\end{tabular}
\end{centertable}