commit: 786778355746adaa07699b7b76221679db0c6b20 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Dec 24 21:50:30 2019 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Tue May 25 20:03:56 2021 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=78677835
EAPI 8 removes .7z, .rar, .lha unpack support Bug: https://bugs.gentoo.org/690968 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eapi-differences.tex | 10 ++++++++++ pkg-mgr-commands.tex | 21 ++++++++++++++------- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/eapi-differences.tex b/eapi-differences.tex index f0ea62c..7f107e9 100644 --- a/eapi-differences.tex +++ b/eapi-differences.tex @@ -341,6 +341,15 @@ Controllable stripping & \compactfeatureref{dostrip} & \t{unpack} support for \t{txz} & \compactfeatureref{unpack-extensions} & No & No & Yes & Yes & Yes \\ +\t{unpack} support for \t{7z} & \compactfeatureref{unpack-extensions} & + Yes & Yes & Yes & Yes & No \\ + +\t{unpack} support for \t{lha} & \compactfeatureref{unpack-extensions} & + Yes & Yes & Yes & Yes & No \\ + +\t{unpack} support for \t{rar} & \compactfeatureref{unpack-extensions} & + Yes & Yes & Yes & Yes & No \\ + \t{unpack} case-insensitive & \compactfeatureref{unpack-ignore-case} & No & No & Yes & Yes & Yes \\ @@ -533,6 +542,7 @@ EAPI 8 is EAPI 7 with the following changes: \item \t{insopts} no longer affects \t{doconfd}, \t{doenvd} and \t{doheader}, \featureref{insopts}. \item \t{exeopts} no longer affects \t{doinitd}, \featureref{exeopts}. \item \t{usev} supports an optional second argument, \featureref{usev}. +\item \t{unpack} no longer supports \t{.7z}, \t{.rar}, \t{.lha}, \featureref{unpack-extensions}. \end{compactitem} \ChangeWhenAddingAnEAPI{8} diff --git a/pkg-mgr-commands.tex b/pkg-mgr-commands.tex index eac17de..848c8da 100644 --- a/pkg-mgr-commands.tex +++ b/pkg-mgr-commands.tex @@ -1153,10 +1153,13 @@ has returned. \item bzip2-compressed tar files (\t{*.tar.bz2, *.tbz2, *.tar.bz, *.tbz}). Ebuilds must ensure that bzip2 and GNU tar are installed. \item zip files (\t{*.zip, *.ZIP, *.jar}). Ebuilds must ensure that Info-ZIP Unzip is installed. - \item 7zip files (\t{*.7z, *.7Z}). Ebuilds must ensure that P7ZIP is installed. + \item 7zip files (\t{*.7z, *.7Z}). Ebuilds must ensure that P7ZIP is installed. Only for EAPIs + listed in table~\ref{tab:unpack-extensions-table} as supporting \t{.7z}. \item rar files (\t{*.rar, *.RAR}). Ebuilds must ensure that RARLAB's unrar is installed. + Only for EAPIs listed in table~\ref{tab:unpack-extensions-table} as supporting \t{.rar}. \item LHA archives (\t{*.LHA, *.LHa, *.lha, *.lzh}). Ebuilds must ensure that the lha program is - installed. + installed. Only for EAPIs listed in table~\ref{tab:unpack-extensions-table} as supporting + \t{.lha}. \item ar archives (\t{*.a}). Ebuilds must ensure that GNU binutils is installed. \item deb packages (\t{*.deb}). Ebuilds must ensure that the deb2targz program is installed on those platforms where the GNU binutils ar program is not available and the installed ar @@ -1195,16 +1198,20 @@ has returned. \ChangeWhenAddingAnEAPI{8} \begin{centertable}{\t{unpack} extensions for EAPIs} \label{tab:unpack-extensions-table} - \begin{tabular}{llll} + \begin{tabular}{llllllll} \toprule \multicolumn{1}{c}{\textbf{EAPI}} & \multicolumn{1}{c}{\textbf{\t{.xz}?}} & \multicolumn{1}{c}{\textbf{\t{.tar.xz}?}} & - \multicolumn{1}{c}{\textbf{\t{.txz}?}} \\ + \multicolumn{1}{c}{\textbf{\t{.txz}?}} & + \multicolumn{1}{c}{\textbf{\t{.7z}?}} & + \multicolumn{1}{c}{\textbf{\t{.rar}?}} & + \multicolumn{1}{c}{\textbf{\t{.lha}?}} \\ \midrule - 0, 1, 2 & No & No & No \\ - 3, 4, 5 & Yes & Yes & No \\ - 6, 7, 8 & Yes & Yes & Yes \\ + 0, 1, 2 & No & No & No & Yes & Yes & Yes \\ + 3, 4, 5 & Yes & Yes & No & Yes & Yes & Yes \\ + 6, 7 & Yes & Yes & Yes & Yes & Yes & Yes \\ + 8 & Yes & Yes & Yes & No & No & No \\ \bottomrule \end{tabular} \end{centertable}