Show a patch.

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

{
    "id": 1121,
    "url": "https://patchwork.libcamera.org/api/1.1/patches/1121/?format=api",
    "web_url": "https://patchwork.libcamera.org/patch/1121/",
    "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": "<20190428105753.14794-1-niklas.soderlund@ragnatech.se>",
    "date": "2019-04-28T10:57:53",
    "name": "[libcamera-devel] libcamera: Bump minimum meson version to 0.50",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": false,
    "hash": "25bc214be9bc531a3c386984acd96b76daa5877d",
    "submitter": {
        "id": 5,
        "url": "https://patchwork.libcamera.org/api/1.1/people/5/?format=api",
        "name": "Niklas Söderlund",
        "email": "niklas.soderlund@ragnatech.se"
    },
    "delegate": null,
    "mbox": "https://patchwork.libcamera.org/patch/1121/mbox/",
    "series": [
        {
            "id": 278,
            "url": "https://patchwork.libcamera.org/api/1.1/series/278/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=278",
            "date": "2019-04-28T10:57:53",
            "name": "[libcamera-devel] libcamera: Bump minimum meson version to 0.50",
            "version": 1,
            "mbox": "https://patchwork.libcamera.org/series/278/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/patches/1121/comments/",
    "check": "pending",
    "checks": "https://patchwork.libcamera.org/api/patches/1121/checks/",
    "tags": {},
    "headers": {
        "Return-Path": "<niklas.soderlund@ragnatech.se>",
        "Received": [
            "from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net\n\t[195.74.38.227])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id EDB37600EC\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSun, 28 Apr 2019 12:58:00 +0200 (CEST)",
            "from wyvern.station (unknown [37.182.44.227])\n\tby bin-vsp-out-01.atm.binero.net (Halon) with ESMTPA\n\tid 7782d049-69a4-11e9-8fa2-005056917a89;\n\tSun, 28 Apr 2019 12:57:54 +0200 (CEST)"
        ],
        "X-Halon-ID": "7782d049-69a4-11e9-8fa2-005056917a89",
        "Authorized-sender": "niklas@soderlund.pp.se",
        "From": "=?utf-8?q?Niklas_S=C3=B6derlund?= <niklas.soderlund@ragnatech.se>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Sun, 28 Apr 2019 12:57:53 +0200",
        "Message-Id": "<20190428105753.14794-1-niklas.soderlund@ragnatech.se>",
        "X-Mailer": "git-send-email 2.21.0",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH] libcamera: Bump minimum meson version to\n\t0.50",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.23",
        "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": "Sun, 28 Apr 2019 10:58:05 -0000"
    },
    "content": "Building the documentation reports warnings,\n\nWARNING: Project targetting '>= 0.40' but tried to use feature introduced in '0.50.0': install arg in configure_file\nWARNING: Project specifies a minimum meson_version '>= 0.40' but uses features which were added in newer versions:\n * 0.50.0: {'install arg in configure_file'}\n\nDue to the usage of the construction configure_file { install: ... } in\nDocumentation/meason.build which is introduced in meson 0.50. Fix this\nby increasing the minimum version of meson supported to 0.50.\n\nFixes: 53c4d4c34fc49b95 (\"Documentation: Generate source code documentation using Doxygen\")\nSigned-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>\n---\n meson.build | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)",
    "diff": "diff --git a/meson.build b/meson.build\nindex d272ff33b1009fb6..abe58d040e5d1da3 100644\n--- a/meson.build\n+++ b/meson.build\n@@ -1,5 +1,5 @@\n project('libcamera', 'c', 'cpp',\n-  meson_version: '>= 0.40',\n+  meson_version: '>= 0.50',\n   version : '0.1',\n   default_options: [\n     'werror=true',\n",
    "prefixes": [
        "libcamera-devel"
    ]
}