List patch comments

GET /api/patches/74581/comments/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Link: 
<https://patches.dpdk.org/api/patches/74581/comments/?format=api&page=1>; rel="first",
<https://patches.dpdk.org/api/patches/74581/comments/?format=api&page=1>; rel="last"
Vary: Accept
[ { "id": 116421, "web_url": "https://patches.dpdk.org/comment/116421/", "msgid": "<20200721154224.GH735@bricha3-MOBL.ger.corp.intel.com>", "list_archive_url": "https://inbox.dpdk.org/dev/20200721154224.GH735@bricha3-MOBL.ger.corp.intel.com", "date": "2020-07-21T15:42:24", "subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n\tsystem", "submitter": { "id": 20, "url": "https://patches.dpdk.org/api/people/20/?format=api", "name": "Bruce Richardson", "email": "bruce.richardson@intel.com" }, "content": "On Tue, Jul 21, 2020 at 04:39:50PM +0100, Bruce Richardson wrote:\n> When building the DPDK guide documents, the DPDK version information was\n> pulled using \"make showversion\", which meant there was a dependency on\n> the DPDK make-based build system. Change this to just read the data from\n> the VERSION file in the root directory.\n> \n> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>\n> ---\n> NOTE: When make build system is completed removed, we can change the\n> relative path to the VERSION file i.e. \"../../\", to instead pull the\n> path from \"MESON_SOURCE_ROOT\" in the environment, which should be more\n> robust.\n> ---\n> doc/guides/conf.py | 7 ++-----\n> 1 file changed, 2 insertions(+), 5 deletions(-)\n> \n> diff --git a/doc/guides/conf.py b/doc/guides/conf.py\n> index 700e05e17..ff8ddc7e7 100644\n> --- a/doc/guides/conf.py\n> +++ b/doc/guides/conf.py\n> @@ -2,7 +2,6 @@\n> # Copyright(c) 2010-2015 Intel Corporation\n> \n> from __future__ import print_function\n> -import subprocess\n> from docutils import nodes\n> from distutils.version import LooseVersion\n> from sphinx import __version__ as sphinx_version\n> @@ -38,10 +37,8 @@\n> html_show_copyright = False\n> highlight_language = 'none'\n> \n> -# If MAKEFLAGS is exported by the user, garbage text might end up in version\n> -version = subprocess.check_output(['make', '-sRrC', '../../', 'showversion'],\n> - env=dict(environ, MAKEFLAGS=\"\"))\n> -version = version.decode('utf-8').rstrip()\n> +with open('../../VERSION') as verfile:\n> + version = verfile.readline().rstrip()\n> release = version\n> \n> master_doc = 'index'\n> -- \n\nAs a side-effect, this patch also allows doc building on FreeBSD, since it\nno longer uses \"make\" command, which should be \"gmake\" on BSD.\n\n/Bruce", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@inbox.dpdk.org", "Delivered-To": "patchwork@inbox.dpdk.org", "Received": [ "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id EE2B0A0526;\n\tTue, 21 Jul 2020 17:42:30 +0200 (CEST)", "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 81D971BFEB;\n\tTue, 21 Jul 2020 17:42:30 +0200 (CEST)", "from mga05.intel.com (mga05.intel.com [192.55.52.43])\n by dpdk.org (Postfix) with ESMTP id 52A851BFE9\n for <dev@dpdk.org>; Tue, 21 Jul 2020 17:42:29 +0200 (CEST)", "from fmsmga005.fm.intel.com ([10.253.24.32])\n by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 21 Jul 2020 08:42:28 -0700", "from bricha3-mobl.ger.corp.intel.com ([10.252.9.114])\n by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA;\n 21 Jul 2020 08:42:27 -0700" ], "IronPort-SDR": [ "\n 5gG+o9OIlRd/bKYdwaVRZEss4Dq2ZrCs8hkzMoL+NLdOW3RpW0FdAEueVewp30x4hy/Ft2m6/a\n U+eZiICrptSA==", "\n SRHTHzn7L0R90e7bH2XOI8aeWPJQy8tHECoDkHO0nE6J9hYEf9cGWPM/099lzfW7OMcWLOHSml\n pnBncmu/poUw==" ], "X-IronPort-AV": [ "E=McAfee;i=\"6000,8403,9689\"; a=\"235014180\"", "E=Sophos;i=\"5.75,379,1589266800\"; d=\"scan'208\";a=\"235014180\"", "E=Sophos;i=\"5.75,379,1589266800\"; d=\"scan'208\";a=\"488127366\"" ], "X-Amp-Result": "SKIPPED(no attachment in message)", "X-Amp-File-Uploaded": "False", "Date": "Tue, 21 Jul 2020 16:42:24 +0100", "From": "Bruce Richardson <bruce.richardson@intel.com>", "To": "John McNamara <john.mcnamara@intel.com>,\n Marko Kovacevic <marko.kovacevic@intel.com>", "Cc": "dev@dpdk.org", "Message-ID": "<20200721154224.GH735@bricha3-MOBL.ger.corp.intel.com>", "References": "<20200721153950.748927-1-bruce.richardson@intel.com>", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=us-ascii", "Content-Disposition": "inline", "In-Reply-To": "<20200721153950.748927-1-bruce.richardson@intel.com>", "Subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n\tsystem", "X-BeenThere": "dev@dpdk.org", "X-Mailman-Version": "2.1.15", "Precedence": "list", "List-Id": "DPDK patches and discussions <dev.dpdk.org>", "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <mailto:dev-request@dpdk.org?subject=unsubscribe>", "List-Archive": "<http://mails.dpdk.org/archives/dev/>", "List-Post": "<mailto:dev@dpdk.org>", "List-Help": "<mailto:dev-request@dpdk.org?subject=help>", "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n <mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null }, { "id": 116504, "web_url": "https://patches.dpdk.org/comment/116504/", "msgid": "<1786897.AIzr81cTuv@thomas>", "list_archive_url": "https://inbox.dpdk.org/dev/1786897.AIzr81cTuv@thomas", "date": "2020-07-22T12:45:54", "subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n\tsystem", "submitter": { "id": 685, "url": "https://patches.dpdk.org/api/people/685/?format=api", "name": "Thomas Monjalon", "email": "thomas@monjalon.net" }, "content": "21/07/2020 17:39, Bruce Richardson:\n> When building the DPDK guide documents, the DPDK version information was\n> pulled using \"make showversion\", which meant there was a dependency on\n> the DPDK make-based build system. Change this to just read the data from\n> the VERSION file in the root directory.\n> \n> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>\n> ---\n> NOTE: When make build system is completed removed, we can change the\n> relative path to the VERSION file i.e. \"../../\", to instead pull the\n> path from \"MESON_SOURCE_ROOT\" in the environment, which should be more\n> robust.\n\nYes it would be a bit better.\nIf we merge this patch in 20.08, we'll forget about this improvement :)\nI suggest waiting 20.11 to merge the definitive improvement.", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@inbox.dpdk.org", "Delivered-To": "patchwork@inbox.dpdk.org", "Received": [ "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 9ACB7A0526;\n\tWed, 22 Jul 2020 14:46:00 +0200 (CEST)", "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id CA8B21BFD1;\n\tWed, 22 Jul 2020 14:45:59 +0200 (CEST)", "from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com\n [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 09B2D1BFBB\n for <dev@dpdk.org>; Wed, 22 Jul 2020 14:45:58 +0200 (CEST)", "from compute7.internal (compute7.nyi.internal [10.202.2.47])\n by mailout.nyi.internal (Postfix) with ESMTP id 829B75C0181;\n Wed, 22 Jul 2020 08:45:57 -0400 (EDT)", "from mailfrontend1 ([10.202.2.162])\n by compute7.internal (MEProxy); Wed, 22 Jul 2020 08:45:57 -0400", "from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])\n by mail.messagingengine.com (Postfix) with ESMTPA id 70E053280060;\n Wed, 22 Jul 2020 08:45:56 -0400 (EDT)" ], "DKIM-Signature": [ "v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=\n from:to:cc:subject:date:message-id:in-reply-to:references\n :mime-version:content-transfer-encoding:content-type; s=fm1; bh=\n sW53UX668h13BSgsCWE4rDnQu7ClDNtOuoJgehz3jIs=; b=eLF4lp86X0K2I/Uk\n Ek7YNq7UJJKxU/6ljcoGCX/9mmpSqvxMaogHIhiOqm9LkKYV7mWND4rLsLP1t2WL\n hMXzND4rYdrhltLGsrWX6cmjxZe72tyhwnS08zEV2RZ9Snihe8+QwXjKXKzZUUKb\n kAgWMfmRv6inHoF5Yl95s0x4dR1celWn4WUwXHcUccOXglI0eoDyZUjgKP3zG9VK\n clCltRR0NB+zTrUXXn5sCyQ0aVIlsIYEkbZoJ4oJCDaPLOVYbaF7CKVMDI4shpER\n /LR0iTaxKq3lVv4NtUIsN61jGtZaayL5RtRRiKiwLKiB7ictIGXYjw2sWiZUJr84\n 9yDDOA==", "v=1; a=rsa-sha256; c=relaxed/relaxed; d=\n messagingengine.com; h=cc:content-transfer-encoding:content-type\n :date:from:in-reply-to:message-id:mime-version:references\n :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender\n :x-sasl-enc; s=fm3; bh=sW53UX668h13BSgsCWE4rDnQu7ClDNtOuoJgehz3j\n Is=; b=au/yEy6xcSAcjAt+OCjglN/G0mw0TS7vrUzu/7QdJN6sOA59kEX3zH0td\n LlgtqHkxovimA39YBM4mwmZWSi+H+w5CUlYDIOVTFfKs3MhgCQBEeZFonJtCN/Xs\n i0ECdD8H0pgIhOhKqeEIP/MeduIMBnm/+5qU9c6u6VpEx1zIRCwTNUyFuDgBQW+g\n yyAfsw5c5i2gLeU8Y3ZSpIYW842FSeDbxoGStB+54YQj7oo8X4vLnz8VhbVA8Ewi\n BL2lDpwNJWEsWwnxtADah62dhN1nUV9cFomeiw5bHGLq30K7tjzxzr9D8Vkiln7D\n x6guAgoGFdh3Yn1F7wL54zrAjdagw==" ], "X-ME-Sender": "<xms:BDUYX5U3bvGOY_qpWQFAjcjPVG4DK_NG-fJlCgx1DJ4WZmnsKCIj0g>", "X-ME-Proxy-Cause": "\n gggruggvucftvghtrhhoucdtuddrgeduiedrgeelgdehjecutefuodetggdotefrodftvf\n curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu\n uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc\n fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs\n ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucggtf\n frrghtthgvrhhnpedugefgvdefudfftdefgeelgffhueekgfffhfeujedtteeutdejueei\n iedvffegheenucfkphepjeejrddufeegrddvtdefrddukeegnecuvehluhhsthgvrhfuih\n iivgeptdenucfrrghrrghmpehmrghilhhfrhhomhepthhhohhmrghssehmohhnjhgrlhho\n nhdrnhgvth", "X-ME-Proxy": "<xmx:BDUYX5mkL40Is6lnSSAj0iciUtEj8b5O80C5AbBLuEc5qunTkrzO2w>\n <xmx:BDUYX1bjlk1DL7meyu05EHrLbiW-tnf0ibn8yKHUFUXlP2rIQH3jYQ>\n <xmx:BDUYX8V7qQUpDmngzHeCqnnzFesfGIDG4VG42ya1IlFoHU-OvNKFpg>\n <xmx:BTUYXyvVYCVJDV-O87VzpGV4qWSvqj3jifzRNC7lpzYmwjdK4ykEJw>", "From": "Thomas Monjalon <thomas@monjalon.net>", "To": "Bruce Richardson <bruce.richardson@intel.com>", "Cc": "John McNamara <john.mcnamara@intel.com>,\n Marko Kovacevic <marko.kovacevic@intel.com>, dev@dpdk.org", "Date": "Wed, 22 Jul 2020 14:45:54 +0200", "Message-ID": "<1786897.AIzr81cTuv@thomas>", "In-Reply-To": "<20200721153950.748927-1-bruce.richardson@intel.com>", "References": "<20200721153950.748927-1-bruce.richardson@intel.com>", "MIME-Version": "1.0", "Content-Transfer-Encoding": "7Bit", "Content-Type": "text/plain; charset=\"us-ascii\"", "Subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n\tsystem", "X-BeenThere": "dev@dpdk.org", "X-Mailman-Version": "2.1.15", "Precedence": "list", "List-Id": "DPDK patches and discussions <dev.dpdk.org>", "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <mailto:dev-request@dpdk.org?subject=unsubscribe>", "List-Archive": "<http://mails.dpdk.org/archives/dev/>", "List-Post": "<mailto:dev@dpdk.org>", "List-Help": "<mailto:dev-request@dpdk.org?subject=help>", "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n <mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null }, { "id": 116506, "web_url": "https://patches.dpdk.org/comment/116506/", "msgid": "<20200722125949.GA1031@bricha3-MOBL.ger.corp.intel.com>", "list_archive_url": "https://inbox.dpdk.org/dev/20200722125949.GA1031@bricha3-MOBL.ger.corp.intel.com", "date": "2020-07-22T12:59:49", "subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n system", "submitter": { "id": 20, "url": "https://patches.dpdk.org/api/people/20/?format=api", "name": "Bruce Richardson", "email": "bruce.richardson@intel.com" }, "content": "On Wed, Jul 22, 2020 at 02:45:54PM +0200, Thomas Monjalon wrote:\n> 21/07/2020 17:39, Bruce Richardson:\n> > When building the DPDK guide documents, the DPDK version information was\n> > pulled using \"make showversion\", which meant there was a dependency on\n> > the DPDK make-based build system. Change this to just read the data from\n> > the VERSION file in the root directory.\n> > \n> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>\n> > ---\n> > NOTE: When make build system is completed removed, we can change the\n> > relative path to the VERSION file i.e. \"../../\", to instead pull the\n> > path from \"MESON_SOURCE_ROOT\" in the environment, which should be more\n> > robust.\n> \n> Yes it would be a bit better.\n> If we merge this patch in 20.08, we'll forget about this improvement :)\n> I suggest waiting 20.11 to merge the definitive improvement.\n> \nI'd prefer now, but I can be patient, I suppose. :-)", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@inbox.dpdk.org", "Delivered-To": "patchwork@inbox.dpdk.org", "Received": [ "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 36A06A0526;\n\tWed, 22 Jul 2020 14:59:57 +0200 (CEST)", "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id A15B91BFD4;\n\tWed, 22 Jul 2020 14:59:56 +0200 (CEST)", "from mga04.intel.com (mga04.intel.com [192.55.52.120])\n by dpdk.org (Postfix) with ESMTP id A684E1BFD1\n for <dev@dpdk.org>; Wed, 22 Jul 2020 14:59:55 +0200 (CEST)", "from orsmga005.jf.intel.com ([10.7.209.41])\n by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 22 Jul 2020 05:59:53 -0700", "from jmcman1x-mobl2.ger.corp.intel.com (HELO\n bricha3-MOBL.ger.corp.intel.com) ([10.213.194.32])\n by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA;\n 22 Jul 2020 05:59:52 -0700" ], "IronPort-SDR": [ "\n sOCegQ8+B2nsFLSOPnqKYvVghm7Ra7Bf9Vut/MX7iCEIh2Fpb4b+B8IlHFVy3+Le+yrL+bhMkf\n nC3WaQoc/09w==", "\n Jg0dXpOQKyrUSFgTU/xuscPlcw4XouUaZFDtYUtC6wsYATK0ROA0dZRYKftxiVg65gnUnVOh94\n UFSDy90zn+VA==" ], "X-IronPort-AV": [ "E=McAfee;i=\"6000,8403,9689\"; a=\"147817675\"", "E=Sophos;i=\"5.75,381,1589266800\"; d=\"scan'208\";a=\"147817675\"", "E=Sophos;i=\"5.75,381,1589266800\"; d=\"scan'208\";a=\"462445466\"" ], "X-Amp-Result": "SKIPPED(no attachment in message)", "X-Amp-File-Uploaded": "False", "Date": "Wed, 22 Jul 2020 13:59:49 +0100", "From": "Bruce Richardson <bruce.richardson@intel.com>", "To": "Thomas Monjalon <thomas@monjalon.net>", "Cc": "John McNamara <john.mcnamara@intel.com>,\n Marko Kovacevic <marko.kovacevic@intel.com>, dev@dpdk.org", "Message-ID": "<20200722125949.GA1031@bricha3-MOBL.ger.corp.intel.com>", "References": "<20200721153950.748927-1-bruce.richardson@intel.com>\n <1786897.AIzr81cTuv@thomas>", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=us-ascii", "Content-Disposition": "inline", "In-Reply-To": "<1786897.AIzr81cTuv@thomas>", "Subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n system", "X-BeenThere": "dev@dpdk.org", "X-Mailman-Version": "2.1.15", "Precedence": "list", "List-Id": "DPDK patches and discussions <dev.dpdk.org>", "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <mailto:dev-request@dpdk.org?subject=unsubscribe>", "List-Archive": "<http://mails.dpdk.org/archives/dev/>", "List-Post": "<mailto:dev@dpdk.org>", "List-Help": "<mailto:dev-request@dpdk.org?subject=help>", "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n <mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null }, { "id": 117670, "web_url": "https://patches.dpdk.org/comment/117670/", "msgid": "<20200820155420.GB824@bricha3-MOBL.ger.corp.intel.com>", "list_archive_url": "https://inbox.dpdk.org/dev/20200820155420.GB824@bricha3-MOBL.ger.corp.intel.com", "date": "2020-08-20T15:54:20", "subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n system", "submitter": { "id": 20, "url": "https://patches.dpdk.org/api/people/20/?format=api", "name": "Bruce Richardson", "email": "bruce.richardson@intel.com" }, "content": "On Wed, Jul 22, 2020 at 01:59:49PM +0100, Bruce Richardson wrote:\n> On Wed, Jul 22, 2020 at 02:45:54PM +0200, Thomas Monjalon wrote:\n> > 21/07/2020 17:39, Bruce Richardson:\n> > > When building the DPDK guide documents, the DPDK version information was\n> > > pulled using \"make showversion\", which meant there was a dependency on\n> > > the DPDK make-based build system. Change this to just read the data from\n> > > the VERSION file in the root directory.\n> > > \n> > > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>\n> > > ---\n> > > NOTE: When make build system is completed removed, we can change the\n> > > relative path to the VERSION file i.e. \"../../\", to instead pull the\n> > > path from \"MESON_SOURCE_ROOT\" in the environment, which should be more\n> > > robust.\n> > \n> > Yes it would be a bit better.\n> > If we merge this patch in 20.08, we'll forget about this improvement :)\n> > I suggest waiting 20.11 to merge the definitive improvement.\n> > \n> I'd prefer now, but I can be patient, I suppose. :-)\n\nUpdated and improved version of this patch is now part of the \"make\nremoval\" patch series. Marking this standalone patch as superceded.\n\n/Bruce", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@inbox.dpdk.org", "Delivered-To": "patchwork@inbox.dpdk.org", "Received": [ "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id D5EB5A04AF;\n\tThu, 20 Aug 2020 17:54:26 +0200 (CEST)", "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id A75571C027;\n\tThu, 20 Aug 2020 17:54:26 +0200 (CEST)", "from mga07.intel.com (mga07.intel.com [134.134.136.100])\n by dpdk.org (Postfix) with ESMTP id 2D4671BEC4\n for <dev@dpdk.org>; Thu, 20 Aug 2020 17:54:25 +0200 (CEST)", "from orsmga005.jf.intel.com ([10.7.209.41])\n by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 20 Aug 2020 08:54:24 -0700", "from bricha3-mobl.ger.corp.intel.com ([10.252.0.88])\n by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA;\n 20 Aug 2020 08:54:23 -0700" ], "IronPort-SDR": [ "\n LD/x/DRTx7EnirQea7k+v3JJgAvmIsP3OSOIAcWHfelS1HWHvVltucgKW/S/jWjtWniHw8bfwR\n 0IE42oFzXk9w==", "\n teKng4GeCELvmz7ZVjUCgxHwcYliA3UuDhdp9Oa5M+mG9wcGIgyOhs+jk56P4SQlPPeBFlXxZv\n aQ6nwEepnUDw==" ], "X-IronPort-AV": [ "E=McAfee;i=\"6000,8403,9718\"; a=\"219635851\"", "E=Sophos;i=\"5.76,333,1592895600\"; d=\"scan'208\";a=\"219635851\"", "E=Sophos;i=\"5.76,333,1592895600\"; d=\"scan'208\";a=\"472701640\"" ], "X-Amp-Result": "SKIPPED(no attachment in message)", "X-Amp-File-Uploaded": "False", "Date": "Thu, 20 Aug 2020 16:54:20 +0100", "From": "Bruce Richardson <bruce.richardson@intel.com>", "To": "Thomas Monjalon <thomas@monjalon.net>", "Cc": "John McNamara <john.mcnamara@intel.com>,\n Marko Kovacevic <marko.kovacevic@intel.com>, dev@dpdk.org", "Message-ID": "<20200820155420.GB824@bricha3-MOBL.ger.corp.intel.com>", "References": "<20200721153950.748927-1-bruce.richardson@intel.com>\n <1786897.AIzr81cTuv@thomas>\n <20200722125949.GA1031@bricha3-MOBL.ger.corp.intel.com>", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=us-ascii", "Content-Disposition": "inline", "In-Reply-To": "<20200722125949.GA1031@bricha3-MOBL.ger.corp.intel.com>", "Subject": "Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build\n system", "X-BeenThere": "dev@dpdk.org", "X-Mailman-Version": "2.1.15", "Precedence": "list", "List-Id": "DPDK patches and discussions <dev.dpdk.org>", "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <mailto:dev-request@dpdk.org?subject=unsubscribe>", "List-Archive": "<http://mails.dpdk.org/archives/dev/>", "List-Post": "<mailto:dev@dpdk.org>", "List-Help": "<mailto:dev-request@dpdk.org?subject=help>", "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n <mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null } ]