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 06B0E138010 for ; Fri, 14 Sep 2012 06:16:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7111B21C005; Fri, 14 Sep 2012 06:14:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3230B21C005 for ; Fri, 14 Sep 2012 06:14:50 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 943A333D726 for ; Fri, 14 Sep 2012 06:14:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3D1F5E5446 for ; Fri, 14 Sep 2012 06:14:47 +0000 (UTC) From: "Ulrich Mueller" 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 Mueller" Message-ID: <1347517695.aac8b6b2dced29b498aa61a219111754e8b49a35.ulm@gentoo> Subject: [gentoo-commits] proj/pms:master 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 Mueller X-VCS-Revision: aac8b6b2dced29b498aa61a219111754e8b49a35 X-VCS-Branch: master Date: Fri, 14 Sep 2012 06:14:47 +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: 72a86694-92fc-4bfe-b29e-c0ec1e9c4796 X-Archives-Hash: c28b92cf8c22b7dc1137f976104abac1 commit: aac8b6b2dced29b498aa61a219111754e8b49a35 Author: Ciaran McCreesh googlemail com> AuthorDate: Sun May 6 16:39:22 2012 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Thu Sep 13 06:28:15 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pms.git;a=commit;h=aac8b6b2 EAPI 5 has econf --disable-silent-rules See bug 379497. --- eapi-differences.tex | 4 ++-- pkg-mgr-commands.tex | 20 ++++++++++++-------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/eapi-differences.tex b/eapi-differences.tex index 92d369e..4578b73 100644 --- a/eapi-differences.tex +++ b/eapi-differences.tex @@ -131,7 +131,7 @@ Most utilities die & \compactfeatureref{die-on-failure} & Yes & Yes & Yes & Yes & Banned & Banned \\ \t{econf} arguments & \compactfeatureref{econf-options} & - & & & & disable dependency tracking & disable dependency tracking \\ + & & & & disable dependency tracking & disable dependency tracking, disable silent rules \\ \t{dodoc -r} & \compactfeatureref{dodoc} & No & No & No & No & Yes & Yes \\ @@ -245,7 +245,7 @@ EAPI 4 is EAPI 3 with the following changes: EAPI 5 is EAPI 4 with the following changes: \begin{compactitem} -\item None +\item \t{econf} adds \t{-{}-disable-silent-rules}, \featureref{econf-options}. \end{compactitem} \ChangeWhenAddingAnEAPI{5} diff --git a/pkg-mgr-commands.tex b/pkg-mgr-commands.tex index 98385c4..b26e15f 100644 --- a/pkg-mgr-commands.tex +++ b/pkg-mgr-commands.tex @@ -149,21 +149,25 @@ has returned. \item -{}-disable-dependency-tracking, if the EAPI is listed in table~\ref{tab:econf-options-table} as using it. This option will only be passed if the string \t{disable-dependency-tracking} occurs in the output of \t{configure -{}-help}. + \item -{}-disable-silent-rules, if the EAPI is listed in + table~\ref{tab:econf-options-table} as using it. This option will only be passed if the + string \t{disable-silent-rules} occurs in the output of \t{configure -{}-help}. \end{itemize} \ChangeWhenAddingAnEAPI{5} \begin{centertable}{Extra \t{econf} arguments for EAPIs} \label{tab:econf-options-table} - \begin{tabular}{ l l l } + \begin{tabular}{ l l l l } \toprule \multicolumn{1}{c}{\textbf{EAPI}} & - \multicolumn{1}{c}{\textbf{-{}-disable-dependency-tracking}?} \\ + \multicolumn{1}{c}{\textbf{-{}-disable-dependency-tracking}?} & + \multicolumn{1}{c}{\textbf{-{}-disable-silent-rules}?} \\ \midrule - \t{0} & No \\ - \t{1} & No \\ - \t{2} & No \\ - \t{3} & No \\ - \t{4} & Yes \\ - \t{5} & Yes \\ + \t{0} & No & No \\ + \t{1} & No & No \\ + \t{2} & No & No \\ + \t{3} & No & No \\ + \t{4} & Yes & No \\ + \t{5} & Yes & Yes \\ \bottomrule \end{tabular} \end{centertable}