Patch Detail
Show a patch.
GET /api/patches/3053/?format=api
{ "id": 3053, "url": "https://patchwork.libcamera.org/api/patches/3053/?format=api", "web_url": "https://patchwork.libcamera.org/patch/3053/", "project": { "id": 1, "url": "https://patchwork.libcamera.org/api/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": "<20200308000433.2917-3-laurent.pinchart@ideasonboard.com>", "date": "2020-03-08T00:04:29", "name": "[libcamera-devel,v4,2/6] include: libcamera: meson: Add control headers to the libcamera_api array", "commit_ref": "4ed68766435703f41a11caf7066d0396bd92aa1e", "pull_url": null, "state": "accepted", "archived": false, "hash": "a17af206e7cc6d2beb43455a457111d4562cbeda", "submitter": { "id": 2, "url": "https://patchwork.libcamera.org/api/people/2/?format=api", "name": "Laurent Pinchart", "email": "laurent.pinchart@ideasonboard.com" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/3053/mbox/", "series": [ { "id": 714, "url": "https://patchwork.libcamera.org/api/series/714/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=714", "date": "2020-03-08T00:04:27", "name": "Fix race condition and other build issues", "version": 4, "mbox": "https://patchwork.libcamera.org/series/714/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/3053/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/3053/checks/", "tags": {}, "headers": { "Return-Path": "<laurent.pinchart@ideasonboard.com>", "Received": [ "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[213.167.242.64])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 482B660424\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSun, 8 Mar 2020 01:04:43 +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 CC60F5F;\n\tSun, 8 Mar 2020 01:04:42 +0100 (CET)" ], "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1583625883;\n\tbh=jZ/kP3uIB2vXSgpE39CJ4oFTiU3Uf96zgAJkmWdQR3g=;\n\th=From:To:Cc:Subject:Date:In-Reply-To:References:From;\n\tb=rg5j1lrlWa60b623H3j+DJyW04ha7urQ/eJFw8stPHQAt57xfniRP84N4dnaW1nE0\n\tP7BnLJbT2tWqgaw3bTlhG8xJ1gjtR6GL0unHxZSAwJwRd8Y1zvYMPZSUdKFToIVzRq\n\t7ip+YVByZ6AXwownt2bMrOkASQWSdOGD9liRgudw=", "From": "Laurent Pinchart <laurent.pinchart@ideasonboard.com>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Sun, 8 Mar 2020 02:04:29 +0200", "Message-Id": "<20200308000433.2917-3-laurent.pinchart@ideasonboard.com>", "X-Mailer": "git-send-email 2.24.1", "In-Reply-To": "<20200308000433.2917-1-laurent.pinchart@ideasonboard.com>", "References": "<20200308000433.2917-1-laurent.pinchart@ideasonboard.com>", "MIME-Version": "1.0", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH v4 2/6] include: libcamera: meson: Add\n\tcontrol headers to the libcamera_api 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": "Sun, 08 Mar 2020 00:04:44 -0000" }, "content": "From: Kieran Bingham <kieran.bingham@ideasonboard.com>\n\nThe libcamera_api array is meant to contain all the headers from the\nlibcamera public API, for the purpose of generating documentation and\ncreating the libcamera_dep dependency. The generated control headers are\npart of the libcamera public API, and used to be included in the\nlibcamera_api array until commit f870591a9bf5 (\"libcamera: properties:\nAdd location property\") inadvertently removed them. Add them back.\n\nFixes: f870591a9bf5 (\"libcamera: properties: Add location property\")\nSigned-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>\n[Split the change out and reworded the commit message]\nSigned-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n---\n include/libcamera/meson.build | 2 ++\n 1 file changed, 2 insertions(+)", "diff": "diff --git a/include/libcamera/meson.build b/include/libcamera/meson.build\nindex f47c583cbbc0..88edf620f69e 100644\n--- a/include/libcamera/meson.build\n+++ b/include/libcamera/meson.build\n@@ -44,6 +44,8 @@ foreach header : control_source_files\n install_dir : join_paths('include', include_dir))\n endforeach\n \n+libcamera_api += control_headers\n+\n gen_header = files('gen-header.sh')\n \n libcamera_h = custom_target('gen-header',\n", "prefixes": [ "libcamera-devel", "v4", "2/6" ] }