Show a patch.

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

{
    "id": 2525,
    "url": "https://patchwork.libcamera.org/api/1.1/patches/2525/?format=api",
    "web_url": "https://patchwork.libcamera.org/patch/2525/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/1.1/projects/1/?format=api",
        "name": "libcamera",
        "link_name": "libcamera",
        "list_id": "libcamera_core",
        "list_email": "libcamera-devel@lists.libcamera.org",
        "web_url": "",
        "scm_url": "",
        "webscm_url": ""
    },
    "msgid": "<20200107223040.12294-1-laurent.pinchart@ideasonboard.com>",
    "date": "2020-01-07T22:30:40",
    "name": "[libcamera-devel] v4l2: camera_proxy: Include <array>",
    "commit_ref": "eccbb175516670f13c6a4f8f9e4ed8bc1228938c",
    "pull_url": null,
    "state": "accepted",
    "archived": false,
    "hash": "7d5114d6496e572a84b939d6d8873e68c7e8f8a7",
    "submitter": {
        "id": 2,
        "url": "https://patchwork.libcamera.org/api/1.1/people/2/?format=api",
        "name": "Laurent Pinchart",
        "email": "laurent.pinchart@ideasonboard.com"
    },
    "delegate": null,
    "mbox": "https://patchwork.libcamera.org/patch/2525/mbox/",
    "series": [
        {
            "id": 607,
            "url": "https://patchwork.libcamera.org/api/1.1/series/607/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=607",
            "date": "2020-01-07T22:30:40",
            "name": "[libcamera-devel] v4l2: camera_proxy: Include <array>",
            "version": 1,
            "mbox": "https://patchwork.libcamera.org/series/607/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/patches/2525/comments/",
    "check": "pending",
    "checks": "https://patchwork.libcamera.org/api/patches/2525/checks/",
    "tags": {},
    "headers": {
        "Return-Path": "<laurent.pinchart@ideasonboard.com>",
        "Received": [
            "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 4751160652\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue,  7 Jan 2020 23:30:55 +0100 (CET)",
            "from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi\n\t[81.175.216.236])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id BAB2F52F\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue,  7 Jan 2020 23:30:54 +0100 (CET)"
        ],
        "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1578436254;\n\tbh=STR08brHF7qAa2JtHTnvVlxztUey4kfexbLq3HXHgxA=;\n\th=From:To:Subject:Date:From;\n\tb=gOLJtF7AhLba+/+fWfXQZ1l6eMIwbtEECbXO15GlClgHtfaVpr/Zs3McC5ohOnVil\n\t8XqYUSSOg8SB6An8VXyugYeUrt1RvKc1DMEN3hyIYCz950q+6dudmkzwPv7SXqL5lJ\n\t65j7UPeSMvOJkrv8hsi2pxt/Jo5MfCQkzKnRa3m0=",
        "From": "Laurent Pinchart <laurent.pinchart@ideasonboard.com>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Wed,  8 Jan 2020 00:30:40 +0200",
        "Message-Id": "<20200107223040.12294-1-laurent.pinchart@ideasonboard.com>",
        "X-Mailer": "git-send-email 2.24.1",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH] v4l2: camera_proxy: Include <array>",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.29",
        "Precedence": "list",
        "List-Id": "<libcamera-devel.lists.libcamera.org>",
        "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>",
        "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>",
        "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>",
        "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>",
        "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>",
        "X-List-Received-Date": "Tue, 07 Jan 2020 22:30:55 -0000"
    },
    "content": "Commit 29c5508075c1 (\"v4l2: camera_proxy: Create format info array\")\nintroduced usage of the std::array template class, but didn't include\nthe corresponding header. This may cause a compilation breakage in the\nfuture if the indirect include of <array> disappears due to unrelated\nchanges. Fix it.\n\nFixed: 29c5508075c1 (\"v4l2: camera_proxy: Create format info array\")\nSigned-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n---\n src/v4l2/v4l2_camera_proxy.cpp | 1 +\n 1 file changed, 1 insertion(+)",
    "diff": "diff --git a/src/v4l2/v4l2_camera_proxy.cpp b/src/v4l2/v4l2_camera_proxy.cpp\nindex bdd4a6c3475d..8d1b40da7367 100644\n--- a/src/v4l2/v4l2_camera_proxy.cpp\n+++ b/src/v4l2/v4l2_camera_proxy.cpp\n@@ -8,6 +8,7 @@\n #include \"v4l2_camera_proxy.h\"\n \n #include <algorithm>\n+#include <array>\n #include <errno.h>\n #include <linux/drm_fourcc.h>\n #include <linux/videodev2.h>\n",
    "prefixes": [
        "libcamera-devel"
    ]
}