From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/pms:eapi-8 commit in: / Date: Thu, 13 May 2021 11:42:25 +0000 (UTC) [thread overview] Message-ID: <1593016784.1a510e755d964b4b96a1cbc429b3e5774e8234bc.ulm@gentoo> (raw) commit: 1a510e755d964b4b96a1cbc429b3e5774e8234bc Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Jun 24 16:39:44 2020 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Wed Jun 24 16:39:44 2020 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=1a510e75 pms.cls: Drop the caption package because it interferes with TeX4ht. The "caption" package already caused issues in the past (for example, see commits b35f619 and 467f1b7), and version v3.4h finally broke the list of tables in HTML output. TeX4ht upstream says that the package should be avoided: https://puszcza.gnu.org.ua/bugs/?313#comment8 Positioning the caption above the table is simple enough without using the package. So we only lose the boldface labels which is a very minor issue. As an added bonus, this allows removal of most workarounds that were necessary for TeX4ht. Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> pms.cls | 67 +++++++++++++++++++++++++++-------------------------------------- 1 file changed, 28 insertions(+), 39 deletions(-) diff --git a/pms.cls b/pms.cls index d7047cf..d7dc8e8 100644 --- a/pms.cls +++ b/pms.cls @@ -17,8 +17,6 @@ \PassOptionsToPackage{textwidth=400pt,textheight=700pt, left=20mm,marginparsep=10pt,marginparwidth=40mm, vmarginratio=1:2,includehead}{geometry} -% Position caption of float environments at the top -\PassOptionsToPackage{position=top,labelfont=bf}{caption} % Enable UTF-8 input encoding \PassOptionsToPackage{utf8}{inputenc} \PassOptionsToPackage{quiet}{marginnote} @@ -43,20 +41,14 @@ parskip, % Space between paragraphs instead of indentation underscore, % Allow simple _ instead of \_ chngcntr, % Redefinition of counters - tocbibind % Add bibliography to table of contents + tocbibind, % Add bibliography to table of contents + float, % More control over float environments + hyperref, % Support for hyperlinks + gitinfo2, % Metadata from git + algorithm, % + algorithmic % Set algorithms } -% tex4ht workaround: hyperref needs to be loaded /after/ tex4ht injects itself -\g@addto@macro\@documentclasshook{ - \RequirePackage{ - caption, % Extended float environment formatting - float, % More control over float environments - hyperref, % Support for hyperlinks - gitinfo2, % Metadata from git - algorithm, % - algorithmic % Set algorithms - } -} \ClassInfo{pms}{Capsulation of LaTeX stuff for the Package Manager Specification, loaded baseclass: \ClassToLoad\MessageBreak} @@ -75,15 +67,6 @@ \setboolean{TEX4HT-HACKS}{true} \fi -% tex4ht workaround: these need to happen after loading the float package -\g@addto@macro\@documentclasshook{ - \floatstyle{ruled} - \captionsetup[ruled]{labelsep=default,labelfont=bf} - \newfloat{listing}{tbp}{lol}[chapter] - \floatname{listing}{Listing} -} -\newcommand{\listoflistings}{\listof{listing}{List of Listings}} - % Define own label and reference commands, that display the label in % the page margin. \ifthenelse{\boolean{TEX4HT-HACKS}}{% @@ -117,11 +100,8 @@ \counterwithout{footnote}{chapter} % Some shorthands for the lazy ones. -% tex4ht workaround: this needs to happen after loading hyperref -\g@addto@macro\@documentclasshook{ - \renewcommand{\i}[1]{\textit{#1}} - \renewcommand{\t}[1]{\texttt{#1}} -} +\renewcommand{\i}[1]{\textit{#1}} +\renewcommand{\t}[1]{\texttt{#1}} \newcommand{\e}[1]{\emph{#1}} \newcommand{\note}[1]{\begin{trivlist}\item\textbf{Note:} #1\end{trivlist}} @@ -138,6 +118,17 @@ % Define a new column type P for tables, like p but with ragged-right text \newcolumntype{P}[1]{>{\setlength\rightskip{0pt plus 1fil}}p{#1}} +% Define a float environment for listings +\floatstyle{ruled} +\newfloat{listing}{tbp}{lol}[chapter] +\floatname{listing}{Listing} +\newcommand{\listoflistings}{\listof{listing}{List of Listings}} + +% We always place captions above floats, so redefine vertical spacings +% Don't use the "caption" package because it interferes with TeX4ht +\setlength\belowcaptionskip{\abovecaptionskip} +\setlength\abovecaptionskip{0pt} + % Prevent numbers in list of tables from overrunning into the table captions \renewcommand*{\l@figure}{\@dottedtocline{1}{1.5em}{2.8em}} % was 2.3em \let\l@table\l@figure @@ -148,18 +139,16 @@ \setlength\emergencystretch{1em} % was 0 % Define some PDF meta-data. -% tex4ht workaround: this needs to happen after loading hyperref -\g@addto@macro\@documentclasshook{ - \hypersetup{% - urlcolor=black, - colorlinks=true, - citecolor=black, - linkcolor=black, - pdflang={en}, - pdfcreator={pdfLaTeX and hyperref}, - pdfproducer={pdfLaTeX and hyperref}, - } +\hypersetup{% + urlcolor=black, + colorlinks=true, + citecolor=black, + linkcolor=black, + pdflang={en}, + pdfcreator={pdfLaTeX and hyperref}, + pdfproducer={pdfLaTeX and hyperref}, } + % Reads the last commit date from the Git repository and even succeeds % when none is available \date{%
WARNING: multiple messages have this Message-ID (diff)
From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] proj/pms:master commit in: / Date: Sun, 28 Jun 2020 10:46:47 +0000 (UTC) [thread overview] Message-ID: <1593016784.1a510e755d964b4b96a1cbc429b3e5774e8234bc.ulm@gentoo> (raw) Message-ID: <20200628104647.7TArobvhC7nrO1SHFC2pUbNhXvPsoI96qdk8bTOTdIA@z> (raw) commit: 1a510e755d964b4b96a1cbc429b3e5774e8234bc Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Jun 24 16:39:44 2020 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Wed Jun 24 16:39:44 2020 +0000 URL: https://gitweb.gentoo.org/proj/pms.git/commit/?id=1a510e75 pms.cls: Drop the caption package because it interferes with TeX4ht. The "caption" package already caused issues in the past (for example, see commits b35f619 and 467f1b7), and version v3.4h finally broke the list of tables in HTML output. TeX4ht upstream says that the package should be avoided: https://puszcza.gnu.org.ua/bugs/?313#comment8 Positioning the caption above the table is simple enough without using the package. So we only lose the boldface labels which is a very minor issue. As an added bonus, this allows removal of most workarounds that were necessary for TeX4ht. Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> pms.cls | 67 +++++++++++++++++++++++++++-------------------------------------- 1 file changed, 28 insertions(+), 39 deletions(-) diff --git a/pms.cls b/pms.cls index d7047cf..d7dc8e8 100644 --- a/pms.cls +++ b/pms.cls @@ -17,8 +17,6 @@ \PassOptionsToPackage{textwidth=400pt,textheight=700pt, left=20mm,marginparsep=10pt,marginparwidth=40mm, vmarginratio=1:2,includehead}{geometry} -% Position caption of float environments at the top -\PassOptionsToPackage{position=top,labelfont=bf}{caption} % Enable UTF-8 input encoding \PassOptionsToPackage{utf8}{inputenc} \PassOptionsToPackage{quiet}{marginnote} @@ -43,20 +41,14 @@ parskip, % Space between paragraphs instead of indentation underscore, % Allow simple _ instead of \_ chngcntr, % Redefinition of counters - tocbibind % Add bibliography to table of contents + tocbibind, % Add bibliography to table of contents + float, % More control over float environments + hyperref, % Support for hyperlinks + gitinfo2, % Metadata from git + algorithm, % + algorithmic % Set algorithms } -% tex4ht workaround: hyperref needs to be loaded /after/ tex4ht injects itself -\g@addto@macro\@documentclasshook{ - \RequirePackage{ - caption, % Extended float environment formatting - float, % More control over float environments - hyperref, % Support for hyperlinks - gitinfo2, % Metadata from git - algorithm, % - algorithmic % Set algorithms - } -} \ClassInfo{pms}{Capsulation of LaTeX stuff for the Package Manager Specification, loaded baseclass: \ClassToLoad\MessageBreak} @@ -75,15 +67,6 @@ \setboolean{TEX4HT-HACKS}{true} \fi -% tex4ht workaround: these need to happen after loading the float package -\g@addto@macro\@documentclasshook{ - \floatstyle{ruled} - \captionsetup[ruled]{labelsep=default,labelfont=bf} - \newfloat{listing}{tbp}{lol}[chapter] - \floatname{listing}{Listing} -} -\newcommand{\listoflistings}{\listof{listing}{List of Listings}} - % Define own label and reference commands, that display the label in % the page margin. \ifthenelse{\boolean{TEX4HT-HACKS}}{% @@ -117,11 +100,8 @@ \counterwithout{footnote}{chapter} % Some shorthands for the lazy ones. -% tex4ht workaround: this needs to happen after loading hyperref -\g@addto@macro\@documentclasshook{ - \renewcommand{\i}[1]{\textit{#1}} - \renewcommand{\t}[1]{\texttt{#1}} -} +\renewcommand{\i}[1]{\textit{#1}} +\renewcommand{\t}[1]{\texttt{#1}} \newcommand{\e}[1]{\emph{#1}} \newcommand{\note}[1]{\begin{trivlist}\item\textbf{Note:} #1\end{trivlist}} @@ -138,6 +118,17 @@ % Define a new column type P for tables, like p but with ragged-right text \newcolumntype{P}[1]{>{\setlength\rightskip{0pt plus 1fil}}p{#1}} +% Define a float environment for listings +\floatstyle{ruled} +\newfloat{listing}{tbp}{lol}[chapter] +\floatname{listing}{Listing} +\newcommand{\listoflistings}{\listof{listing}{List of Listings}} + +% We always place captions above floats, so redefine vertical spacings +% Don't use the "caption" package because it interferes with TeX4ht +\setlength\belowcaptionskip{\abovecaptionskip} +\setlength\abovecaptionskip{0pt} + % Prevent numbers in list of tables from overrunning into the table captions \renewcommand*{\l@figure}{\@dottedtocline{1}{1.5em}{2.8em}} % was 2.3em \let\l@table\l@figure @@ -148,18 +139,16 @@ \setlength\emergencystretch{1em} % was 0 % Define some PDF meta-data. -% tex4ht workaround: this needs to happen after loading hyperref -\g@addto@macro\@documentclasshook{ - \hypersetup{% - urlcolor=black, - colorlinks=true, - citecolor=black, - linkcolor=black, - pdflang={en}, - pdfcreator={pdfLaTeX and hyperref}, - pdfproducer={pdfLaTeX and hyperref}, - } +\hypersetup{% + urlcolor=black, + colorlinks=true, + citecolor=black, + linkcolor=black, + pdflang={en}, + pdfcreator={pdfLaTeX and hyperref}, + pdfproducer={pdfLaTeX and hyperref}, } + % Reads the last commit date from the Git repository and even succeeds % when none is available \date{%
next reply other threads:[~2021-05-13 11:42 UTC|newest] Thread overview: 264+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-05-13 11:42 Ulrich Müller [this message] 2020-06-28 10:46 ` [gentoo-commits] proj/pms:master commit in: / Ulrich Müller -- strict thread matches above, loose matches on Subject: below -- 2021-06-13 19:15 [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-05 8:57 Ulrich Müller 2021-06-03 8:55 Ulrich Müller 2021-06-03 8:55 Ulrich Müller 2021-06-03 8:55 Ulrich Müller 2021-06-03 8:21 Ulrich Müller 2021-06-03 8:21 Ulrich Müller 2021-06-03 8:21 Ulrich Müller 2021-06-03 8:21 Ulrich Müller 2021-06-02 19:44 Ulrich Müller 2021-06-02 19:44 Ulrich Müller 2021-06-02 19:44 Ulrich Müller 2021-06-02 19:44 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-27 19:27 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-26 7:13 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 19:39 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 10:35 Ulrich Müller 2021-05-24 8:54 [gentoo-commits] proj/pms:retroactive " Ulrich Müller 2021-05-24 10:35 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 Ulrich Müller 2021-05-22 6:36 [gentoo-commits] proj/pms:retroactive " Ulrich Müller 2021-05-22 6:36 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-19 15:38 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-18 5:44 Ulrich Müller 2021-05-17 21:30 Ulrich Müller 2021-05-17 21:30 Ulrich Müller 2021-05-17 21:30 Ulrich Müller 2021-05-17 21:30 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 21:23 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 19:37 Ulrich Müller 2021-05-17 16:56 Ulrich Müller 2021-05-17 16:17 Ulrich Müller 2021-05-17 16:17 Ulrich Müller 2021-05-17 16:17 Ulrich Müller 2021-05-17 16:17 Ulrich Müller 2021-05-17 16:17 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-17 16:16 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-16 19:13 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-13 11:42 Ulrich Müller 2021-05-01 10:28 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2021-05-01 10:28 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2021-04-25 20:39 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2021-01-19 20:01 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-09-21 19:25 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-09-21 19:25 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-09-21 19:25 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-09-21 19:25 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-08-06 16:12 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-07-07 7:55 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-06-29 17:35 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-06-28 10:46 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller 2020-06-15 17:38 [gentoo-commits] proj/pms:master " Ulrich Müller 2021-05-13 11:42 ` [gentoo-commits] proj/pms:eapi-8 " Ulrich Müller
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=1593016784.1a510e755d964b4b96a1cbc429b3e5774e8234bc.ulm@gentoo \ --to=ulm@gentoo.org \ --cc=gentoo-commits@lists.gentoo.org \ --cc=gentoo-dev@lists.gentoo.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox