From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 25158A0471 for ; Fri, 21 Jun 2019 18:49:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1D1AB1B96B; Fri, 21 Jun 2019 18:49:32 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 5FEC75B3A for ; Fri, 21 Jun 2019 18:49:30 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id D151681F1B; Fri, 21 Jun 2019 16:49:29 +0000 (UTC) Received: from rh.redhat.com (ovpn-117-77.ams2.redhat.com [10.36.117.77]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8EFC560BFB; Fri, 21 Jun 2019 16:49:20 +0000 (UTC) From: Kevin Traynor To: Thomas Monjalon Cc: John McNamara , dpdk stable Date: Fri, 21 Jun 2019 17:46:01 +0100 Message-Id: <20190621164626.31219-17-ktraynor@redhat.com> In-Reply-To: <20190621164626.31219-1-ktraynor@redhat.com> References: <20190621164626.31219-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Fri, 21 Jun 2019 16:49:29 +0000 (UTC) Subject: [dpdk-stable] patch 'doc: fix PDF with greek letter' has been queued to LTS release 18.11.3 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, FYI, your patch has been queued to LTS release 18.11.3 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 06/26/19. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable-queue This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable-queue/commit/ab1b62a5e989f143236f4f4249da6d737abfce0d Thanks. Kevin Traynor --- >From ab1b62a5e989f143236f4f4249da6d737abfce0d Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Wed, 22 May 2019 10:44:31 +0200 Subject: [PATCH] doc: fix PDF with greek letter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ upstream commit f98f4fb25c141aa69e3ab6c0f0bedad76546d3d8 ] For an unknown reason, the sign "μ" is not accepted by some environments, probably due to the version of some Latex packages or dependencies. ! Package inputenc Error: Unicode character μ (U+03BC) (inputenc) not set up for use with LaTeX. It is fixed by installing texlive-langgreek. Fixes: d0dff9ba445e ("doc: sample application user guide") Signed-off-by: Thomas Monjalon Acked-by: John McNamara --- doc/guides/conf.py | 1 + doc/guides/contributing/documentation.rst | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/guides/conf.py b/doc/guides/conf.py index 6d5001a07..94b97dc35 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -65,4 +65,5 @@ custom_latex_preamble = r""" \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} +\usepackage{textalpha} \usepackage{helvet} \renewcommand{\familydefault}{\sfdefault} diff --git a/doc/guides/contributing/documentation.rst b/doc/guides/contributing/documentation.rst index 408859e2c..a45b62bad 100644 --- a/doc/guides/contributing/documentation.rst +++ b/doc/guides/contributing/documentation.rst @@ -201,8 +201,8 @@ The main required packages can be installed as follows: # Ubuntu/Debian. - sudo apt-get -y install texlive-latex-extra + sudo apt-get -y install texlive-latex-extra texlive-lang-greek # Red Hat/Fedora, selective install. - sudo dnf -y install texlive-collection-latexextra + sudo dnf -y install texlive-collection-latexextra texlive-greek-fontenc `Latexmk `_ is a perl script -- 2.20.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-06-21 17:22:12.633167362 +0100 +++ 0017-doc-fix-PDF-with-greek-letter.patch 2019-06-21 17:22:11.728519012 +0100 @@ -1 +1 @@ -From f98f4fb25c141aa69e3ab6c0f0bedad76546d3d8 Mon Sep 17 00:00:00 2001 +From ab1b62a5e989f143236f4f4249da6d737abfce0d Mon Sep 17 00:00:00 2001 @@ -8,0 +9,2 @@ +[ upstream commit f98f4fb25c141aa69e3ab6c0f0bedad76546d3d8 ] + @@ -18 +19,0 @@ -Cc: stable@dpdk.org @@ -38 +39 @@ -index 9d381919b..27e4b13be 100644 +index 408859e2c..a45b62bad 100644 @@ -41 +42 @@ -@@ -200,8 +200,8 @@ The main required packages can be installed as follows: +@@ -201,8 +201,8 @@ The main required packages can be installed as follows: