From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1520F138CBB for ; Tue, 3 Mar 2015 08:47:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98980E080A; Tue, 3 Mar 2015 08:47:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 405B5E080A for ; Tue, 3 Mar 2015 08:47:13 +0000 (UTC) Received: from manakin.gentoo.org (static-108-28-123-98.washdc.fios.verizon.net [108.28.123.98]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3E7434095A for ; Tue, 3 Mar 2015 08:47:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by manakin.gentoo.org (Postfix) with ESMTP id 9769D60970 for ; Tue, 3 Mar 2015 06:18:42 +0000 (UTC) From: "git@oystercatcher mirror+tproxy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "git@oystercatcher mirror+tproxy" Message-ID: <1424333849.ba1a596285698b9cab6d5ff8c2f49be1fb167c38.git@gentoo> Subject: [gentoo-commits] proj/pms:eapi-6 commit in: / X-VCS-Repository: proj/pms X-VCS-Files: eapi-differences.tex pkg-mgr-commands.tex X-VCS-Directories: / X-VCS-Committer: git X-VCS-Committer-Name: git@oystercatcher mirror+tproxy X-VCS-Revision: ba1a596285698b9cab6d5ff8c2f49be1fb167c38 X-VCS-Branch: eapi-6 Date: Tue, 3 Mar 2015 06:18:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: be111d1e-170f-4bbb-ab3b-d15792a817e3 X-Archives-Hash: 0ae80dfd5156dfd98597f7c82d486ccf commit: ba1a596285698b9cab6d5ff8c2f49be1fb167c38 Author: Ulrich Müller gentoo org> AuthorDate: Mon Feb 16 16:11:30 2015 +0000 Commit: git@oystercatcher mirror+tproxy oystercatcher gentoo org> CommitDate: Thu Feb 19 08:17:29 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/pms.git;a=commit;h=ba1a5962 EAPI 6: unpack matches filename extensions case-insensitively. See 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 f909461..08fd629 100644 --- a/eapi-differences.tex +++ b/eapi-differences.tex @@ -216,6 +216,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 \\ @@ -333,6 +336,7 @@ EAPI 6 is EAPI 5 with the following changes: \item \t{econf} adds \t{-{}-docdir} and \t{-{}-htmldir}, \featureref{econf-options}. \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 531a027..eb4a75d 100644 --- a/pkg-mgr-commands.tex +++ b/pkg-mgr-commands.tex @@ -795,16 +795,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}