Patch Detail
Show a patch.
GET /api/1.1/patches/883/?format=api
{ "id": 883, "url": "https://patchwork.libcamera.org/api/1.1/patches/883/?format=api", "web_url": "https://patchwork.libcamera.org/patch/883/", "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": "<20190403041058.20921-3-kieran.bingham@ideasonboard.com>", "date": "2019-04-03T04:10:56", "name": "[libcamera-devel,v3,2/4] meson: options: Document the options", "commit_ref": "abda899fa920ee891e3c6f1b8da79bd77eb28784", "pull_url": null, "state": "accepted", "archived": false, "hash": "8fecd910274376e85402e42a6b11b439329beff9", "submitter": { "id": 4, "url": "https://patchwork.libcamera.org/api/1.1/people/4/?format=api", "name": "Kieran Bingham", "email": "kieran.bingham@ideasonboard.com" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/883/mbox/", "series": [ { "id": 234, "url": "https://patchwork.libcamera.org/api/1.1/series/234/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=234", "date": "2019-04-03T04:10:54", "name": "Cleanup and non-GNU C library support", "version": 3, "mbox": "https://patchwork.libcamera.org/series/234/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/883/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/883/checks/", "tags": {}, "headers": { "Return-Path": "<kieran.bingham@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 CAD4D610B3\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed, 3 Apr 2019 06:11:12 +0200 (CEST)", "from Q.imgcgcw.net (unknown [147.50.13.10])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 08F5A2F9;\n\tWed, 3 Apr 2019 06:11:10 +0200 (CEST)" ], "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1554264672;\n\tbh=G3fHUw1Zr3apqpHgbTVqWIe4eK1/uZmT++e/FKAwLRA=;\n\th=From:To:Cc:Subject:Date:In-Reply-To:References:From;\n\tb=MF8k0vZwyPmuKCM+nXA2VL5mn79/QsCJezOf/BwDJdI0SNjo5Bn3nKTh0nOmkJ+ID\n\tMkRLdqvEAdeR2DEOvkRTeKLmUJzlt0a6UrCGZ4apKGNEA+dMvxVF0q8iToIeORdNEp\n\tWHNy+/mnPO22mM1CJAaJr2O/R20CadDyPS9CHsRw=", "From": "Kieran Bingham <kieran.bingham@ideasonboard.com>", "To": "LibCamera Devel <libcamera-devel@lists.libcamera.org>", "Date": "Wed, 3 Apr 2019 11:10:56 +0700", "Message-Id": "<20190403041058.20921-3-kieran.bingham@ideasonboard.com>", "X-Mailer": "git-send-email 2.19.1", "In-Reply-To": "<20190403041058.20921-1-kieran.bingham@ideasonboard.com>", "References": "<20190403041058.20921-1-kieran.bingham@ideasonboard.com>", "MIME-Version": "1.0", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH v3 2/4] meson: options: Document the\n\toptions", "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": "Wed, 03 Apr 2019 04:11:13 -0000" }, "content": "Re-order the project options and add documentation which will be\npresented by 'meson configure'.\n\nThis produces the following extra information:\n\nProject options:\n Option Current Value Possible Values Description\n ------ ------------- --------------- -----------\n documentation true [true, false] Generate the project documentation\n tests true [true, false] Compile and include the tests\n\nReviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\nSigned-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>\n---\n meson_options.txt | 9 +++++++--\n 1 file changed, 7 insertions(+), 2 deletions(-)", "diff": "diff --git a/meson_options.txt b/meson_options.txt\nindex c5df661a2286..97efc85b4412 100644\n--- a/meson_options.txt\n+++ b/meson_options.txt\n@@ -1,2 +1,7 @@\n-option('tests', type : 'boolean')\n-option('documentation', type : 'boolean')\n+option('documentation',\n+ type : 'boolean',\n+ description : 'Generate the project documentation')\n+\n+option('tests',\n+ type : 'boolean',\n+ description: 'Compile and include the tests')\n", "prefixes": [ "libcamera-devel", "v3", "2/4" ] }