From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-844895-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D967C1384B4 for <garchives@archives.gentoo.org>; Sun, 8 Nov 2015 19:37:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7060221C022; Sun, 8 Nov 2015 19:37:03 +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 D324E21C018 for <gentoo-commits@lists.gentoo.org>; Sun, 8 Nov 2015 19:36:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2474034058A for <gentoo-commits@lists.gentoo.org>; Sun, 8 Nov 2015 19:36:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41F7822D3 for <gentoo-commits@lists.gentoo.org>; Sun, 8 Nov 2015 19:36:53 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1447010960.a4eab188ea5086a581ad80b34c47601f6553f4ca.ulm@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: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: a4eab188ea5086a581ad80b34c47601f6553f4ca X-VCS-Branch: eapi-6 Date: Sun, 8 Nov 2015 19:36:53 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d794fd8c-1247-496f-bf61-d540df5b2947 X-Archives-Hash: 3883995aeb497107f3066a797d424885 commit: a4eab188ea5086a581ad80b34c47601f6553f4ca 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: Sun Nov 8 19:29:20 2015 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=a4eab188 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 14947a1..0756581 100644 --- a/eapi-differences.tex +++ b/eapi-differences.tex @@ -224,6 +224,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 \\ @@ -344,6 +347,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 d6701a7..6b4ecb9 100644 --- a/pkg-mgr-commands.tex +++ b/pkg-mgr-commands.tex @@ -888,16 +888,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}{ll} + \begin{tabular}{lll} \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}