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 7D55813888F for ; Thu, 15 Oct 2015 06:24:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9335E21C018; Thu, 15 Oct 2015 06:23:52 +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 0181821C01B for ; Thu, 15 Oct 2015 06:23:46 +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 1F144340B03 for ; Thu, 15 Oct 2015 06:23:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FFFE10DB for ; Thu, 15 Oct 2015 06:23:41 +0000 (UTC) From: "Ulrich Müller" 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" Message-ID: <1444857697.2f27aeaf5ced77e04ef926d30e48befa0732e680.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: 2f27aeaf5ced77e04ef926d30e48befa0732e680 X-VCS-Branch: eapi-6 Date: Thu, 15 Oct 2015 06:23:41 +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: 94049a2e-0bf8-401a-9bff-be76fe1822c0 X-Archives-Hash: d45b848942a11169f7a3b10053350d2f commit: 2f27aeaf5ced77e04ef926d30e48befa0732e680 Author: Ulrich Müller gentoo org> AuthorDate: Mon Feb 16 19:06:08 2015 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Oct 14 21:21:37 2015 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=2f27aeaf EAPI 6: unpack supports absolute and relative paths. Bug: 483244 eapi-differences.tex | 4 ++++ pkg-mgr-commands.tex | 26 +++++++++++++++++++++++--- 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/eapi-differences.tex b/eapi-differences.tex index 6002785..27c1ee6 100644 --- a/eapi-differences.tex +++ b/eapi-differences.tex @@ -219,6 +219,9 @@ Controllable compression & \compactfeatureref{docompress} & \t{in\_iuse} & \compactfeatureref{in-iuse} & No & No & No & No & Yes \\ +\t{unpack} absolute paths & \compactfeatureref{unpack-absolute} & + No & No & No & No & Yes \\ + \t{unpack} support for \t{xz}? & \compactfeatureref{unpack-extensions} & No & Yes & Yes & Yes & Yes \\ @@ -341,6 +344,7 @@ EAPI 6 is EAPI 5 with the following changes: \item \t{eapply\_user} support, \featureref{eapply-user}. \item \t{econf} adds \t{-{}-docdir} and \t{-{}-htmldir}, \featureref{econf-options}. \item \t{in\_iuse} support, \featureref{in-iuse}. +\item \t{unpack} supports absolute and relative paths, \featureref{unpack-absolute}. \end{compactitem} \ChangeWhenAddingAnEAPI{6} diff --git a/pkg-mgr-commands.tex b/pkg-mgr-commands.tex index 09e2e42..0bf6df0 100644 --- a/pkg-mgr-commands.tex +++ b/pkg-mgr-commands.tex @@ -833,9 +833,15 @@ has returned. the current working directory itself) have permissions \t{a+r,u+w,go-w} and that all directories under the current working directory additionally have permissions \t{a+x}. - All arguments to \t{unpack} must be either a filename without path, in which case \t{unpack} - looks in \t{DISTDIR} for the file, or start with the string \t{./}, in which case \t{unpack} - uses the argument as a path relative to the working directory. + Arguments to \t{unpack} are interpreted as follows: + \begin{itemize} + \item A filename without path (i.\,e., not containing any slash) is looked up in \t{DISTDIR}. + \item An argument starting with the string \t{./} is a path relative to the working directory. + \item \featurelabel{unpack-absolute} Otherwise, for EAPIs listed in + table~\ref{tab:unpack-behaviour} as supporting absolute and relative paths, the argument is + interpreted as a literal path (absolute, or relative to the working directory); for EAPIs + listed as \e{not} supporting such paths, \t{unpack} shall abort the build process. + \end{itemize} Any unrecognised file format shall be skipped silently. If unpacking a supported file format fails, \t{unpack} shall abort the build process. @@ -871,6 +877,20 @@ has returned. being in the system set or via dependencies. \ChangeWhenAddingAnEAPI{6} + \begin{centertable}{\t{unpack} behaviour for EAPIs} + \label{tab:unpack-behaviour} + \begin{tabular}{ l l } + \toprule + \multicolumn{1}{c}{\textbf{EAPI}} & + \multicolumn{1}{c}{\textbf{Supports absolute and relative paths?}} \\ + \midrule + 0, 1, 2, 3, 4, 5 & No \\ + 6 & Yes \\ + \bottomrule + \end{tabular} + \end{centertable} + + \ChangeWhenAddingAnEAPI{6} \begin{centertable}{\t{unpack} extensions for EAPIs} \label{tab:unpack-extensions-table} \begin{tabular}{ l l }