get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/4502/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 4502,
    "url": "https://patches.dpdk.org/api/patches/4502/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1430318263-3189-2-git-send-email-keith.wiles@intel.com/",
    "project": {
        "id": 1,
        "url": "https://patches.dpdk.org/api/projects/1/?format=api",
        "name": "DPDK",
        "link_name": "dpdk",
        "list_id": "dev.dpdk.org",
        "list_email": "dev@dpdk.org",
        "web_url": "http://core.dpdk.org",
        "scm_url": "git://dpdk.org/dpdk",
        "webscm_url": "http://git.dpdk.org/dpdk",
        "list_archive_url": "https://inbox.dpdk.org/dev",
        "list_archive_url_format": "https://inbox.dpdk.org/dev/{}",
        "commit_url_format": ""
    },
    "msgid": "<1430318263-3189-2-git-send-email-keith.wiles@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1430318263-3189-2-git-send-email-keith.wiles@intel.com",
    "date": "2015-04-29T14:37:43",
    "name": "[dpdk-dev,v2,2/2] Update Docs for new EXTRA_LDLIBS variable",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "bf573ce32e1ac798cc198b126a42b0d34b09dcfa",
    "submitter": {
        "id": 166,
        "url": "https://patches.dpdk.org/api/people/166/?format=api",
        "name": "Wiles, Keith",
        "email": "keith.wiles@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1430318263-3189-2-git-send-email-keith.wiles@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/4502/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/4502/checks/",
    "tags": {},
    "related": [],
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@dpdk.org",
        "Delivered-To": "patchwork@dpdk.org",
        "Received": [
            "from [92.243.14.124] (localhost [IPv6:::1])\n\tby dpdk.org (Postfix) with ESMTP id 9E4E8C880;\n\tWed, 29 Apr 2015 16:37:57 +0200 (CEST)",
            "from mga14.intel.com (mga14.intel.com [192.55.52.115])\n\tby dpdk.org (Postfix) with ESMTP id 9D8C0C870\n\tfor <dev@dpdk.org>; Wed, 29 Apr 2015 16:37:55 +0200 (CEST)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby fmsmga103.fm.intel.com with ESMTP; 29 Apr 2015 07:37:54 -0700",
            "from unknown (HELO rkwiles-desk.ger.corp.intel.com)\n\t([10.255.41.14])\n\tby fmsmga002.fm.intel.com with ESMTP; 29 Apr 2015 07:37:52 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.11,671,1422950400\"; d=\"scan'208\";a=\"717813657\"",
        "From": "Keith Wiles <keith.wiles@intel.com>",
        "To": "dev@dpdk.org",
        "Date": "Wed, 29 Apr 2015 09:37:43 -0500",
        "Message-Id": "<1430318263-3189-2-git-send-email-keith.wiles@intel.com>",
        "X-Mailer": "git-send-email 2.3.0",
        "In-Reply-To": "<1430318263-3189-1-git-send-email-keith.wiles@intel.com>",
        "References": "<1430318263-3189-1-git-send-email-keith.wiles@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v2 2/2] Update Docs for new EXTRA_LDLIBS variable",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "patches and discussions about DPDK <dev.dpdk.org>",
        "List-Unsubscribe": "<http://dpdk.org/ml/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://dpdk.org/ml/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<http://dpdk.org/ml/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "Signed-off-by: Keith Wiles <keith.wiles@intel.com>\n---\n doc/build-sdk-quick.txt                          | 1 +\n doc/guides/prog_guide/dev_kit_build_system.rst   | 2 ++\n doc/guides/prog_guide/dev_kit_root_make_help.rst | 2 +-\n 3 files changed, 4 insertions(+), 1 deletion(-)",
    "diff": "diff --git a/doc/build-sdk-quick.txt b/doc/build-sdk-quick.txt\nindex 041a40e..26d5442 100644\n--- a/doc/build-sdk-quick.txt\n+++ b/doc/build-sdk-quick.txt\n@@ -13,6 +13,7 @@ Build variables\n \tEXTRA_CPPFLAGS   preprocessor options\n \tEXTRA_CFLAGS     compiler options\n \tEXTRA_LDFLAGS    linker options\n+\tEXTRA_LDLIBS     linker libary options\n \tRTE_KERNELDIR    linux headers path\n \tCROSS     toolchain prefix\n \tV         verbose\ndiff --git a/doc/guides/prog_guide/dev_kit_build_system.rst b/doc/guides/prog_guide/dev_kit_build_system.rst\nindex cf5c96f..b8ef167 100644\n--- a/doc/guides/prog_guide/dev_kit_build_system.rst\n+++ b/doc/guides/prog_guide/dev_kit_build_system.rst\n@@ -413,6 +413,8 @@ Variables that Can be Set/Overridden by the User in a Makefile or Command Line\n \n *   EXTRA_LDFLAGS: The content of this variable is appended after LDFLAGS when linking.\n \n+*   EXTRA_LDLIBS: The content of this variable is appended after LDLIBS when linking.\n+\n *   EXTRA_ASFLAGS: The content of this variable is appended after ASFLAGS when assembling.\n \n *   EXTRA_CPPFLAGS: The content of this variable is appended after CPPFLAGS when using a C preprocessor on assembly files.\ndiff --git a/doc/guides/prog_guide/dev_kit_root_make_help.rst b/doc/guides/prog_guide/dev_kit_root_make_help.rst\nindex 4f30192..fdc5fea 100644\n--- a/doc/guides/prog_guide/dev_kit_root_make_help.rst\n+++ b/doc/guides/prog_guide/dev_kit_root_make_help.rst\n@@ -205,7 +205,7 @@ The following variables can be specified on the command line:\n \n     Enable dependency debugging. This provides some useful information about why a target is built or not.\n \n-*   EXTRA_CFLAGS=, EXTRA_LDFLAGS=, EXTRA_ASFLAGS=, EXTRA_CPPFLAGS=\n+*   EXTRA_CFLAGS=, EXTRA_LDFLAGS=, EXTRA_LDLIBS=, EXTRA_ASFLAGS=, EXTRA_CPPFLAGS=\n \n     Append specific compilation, link or asm flags.\n \n",
    "prefixes": [
        "dpdk-dev",
        "v2",
        "2/2"
    ]
}