Patch Detail
Show a patch.
GET /api/1.1/patches/828/?format=api
{ "id": 828, "url": "https://patchwork.libcamera.org/api/1.1/patches/828/?format=api", "web_url": "https://patchwork.libcamera.org/patch/828/", "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": "<20190401110315.4148-3-kieran.bingham@ideasonboard.com>", "date": "2019-04-01T11:03:13", "name": "[libcamera-devel,v2,2/4] meson: options: Document the options", "commit_ref": null, "pull_url": null, "state": "superseded", "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/828/mbox/", "series": [ { "id": 226, "url": "https://patchwork.libcamera.org/api/1.1/series/226/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=226", "date": "2019-04-01T11:03:11", "name": "Cleanup and non-GNU C library support", "version": 2, "mbox": "https://patchwork.libcamera.org/series/226/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/828/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/828/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 38BCF600F9\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon, 1 Apr 2019 13:03:32 +0200 (CEST)", "from Q.imgcgcw.net (unknown [147.50.13.10])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 54D082F9;\n\tMon, 1 Apr 2019 13:03:29 +0200 (CEST)" ], "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1554116611;\n\tbh=G3fHUw1Zr3apqpHgbTVqWIe4eK1/uZmT++e/FKAwLRA=;\n\th=From:To:Cc:Subject:Date:In-Reply-To:References:From;\n\tb=E9opK6nHaInUi7dLqq5qCL3Vf+Vo0OaRdSNpVyhw96m65+2Y9AIWPTRUjgUSVLviz\n\t8T8hESZD62EvmBpF0kLBPhfz6hID9wbViUl3wcrjDjz5unJtP4ptR9VNBcCumMKKO0\n\tqxnONyqnxNngrdU9LA7LrJdSO6bK6+yPOc1zA7pk=", "From": "Kieran Bingham <kieran.bingham@ideasonboard.com>", "To": "LibCamera Devel <libcamera-devel@lists.libcamera.org>", "Date": "Mon, 1 Apr 2019 18:03:13 +0700", "Message-Id": "<20190401110315.4148-3-kieran.bingham@ideasonboard.com>", "X-Mailer": "git-send-email 2.19.1", "In-Reply-To": "<20190401110315.4148-1-kieran.bingham@ideasonboard.com>", "References": "<20190401110315.4148-1-kieran.bingham@ideasonboard.com>", "MIME-Version": "1.0", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH v2 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": "Mon, 01 Apr 2019 11:03:32 -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", "v2", "2/4" ] }