Show a cover letter.

GET /api/covers/2076/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 2076,
    "url": "https://patchwork.libcamera.org/api/covers/2076/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/2076/",
    "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": "<20191003152037.74617-1-jacopo@jmondi.org>",
    "date": "2019-10-03T15:20:32",
    "name": "[libcamera-devel,0/5] test: Add IPA interface test support",
    "submitter": {
        "id": 3,
        "url": "https://patchwork.libcamera.org/api/people/3/?format=api",
        "name": "Jacopo Mondi",
        "email": "jacopo@jmondi.org"
    },
    "mbox": "https://patchwork.libcamera.org/cover/2076/mbox/",
    "series": [
        {
            "id": 515,
            "url": "https://patchwork.libcamera.org/api/series/515/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=515",
            "date": "2019-10-03T15:20:32",
            "name": "test: Add IPA interface test support",
            "version": 1,
            "mbox": "https://patchwork.libcamera.org/series/515/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/covers/2076/comments/",
    "headers": {
        "Return-Path": "<jacopo@jmondi.org>",
        "Received": [
            "from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net\n\t[217.70.183.198])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 5373D60BE9\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu,  3 Oct 2019 17:19:00 +0200 (CEST)",
            "from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101])\n\t(Authenticated sender: jacopo@jmondi.org)\n\tby relay6-d.mail.gandi.net (Postfix) with ESMTPSA id DD96DC0006;\n\tThu,  3 Oct 2019 15:18:59 +0000 (UTC)"
        ],
        "X-Originating-IP": "2.224.242.101",
        "From": "Jacopo Mondi <jacopo@jmondi.org>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Thu,  3 Oct 2019 17:20:32 +0200",
        "Message-Id": "<20191003152037.74617-1-jacopo@jmondi.org>",
        "X-Mailer": "git-send-email 2.23.0",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH 0/5] test: Add IPA interface test support",
        "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": "Thu, 03 Oct 2019 15:19:00 -0000"
    },
    "content": "Hello,\n  this series provides a way to test the IPA interface interactions by using\nthe DummyIPA, here re-named to VimcIPA.\n\nThe series, in the last two patches, implements a communication channel using a\nnamed pipe on the file system, used to exchange data between the IPA module and\nthe test unit.\n\nFor the moment, only test success in invocation of the init() operation. As the\nIPA interface grows more data might be exchanged and more meaningful test\nmessages could be exchanged on the fifo.\n\nThanks\n   j\n\nJacopo Mondi (5):\n  ipa: vimc: Rename ipa_dummy to ipa_vimc\n  test: ipa: Rename the ipa_test to ipa_module_test\n  ipa: ipa_manager: Print the loaded IPA modules path\n  test: ipa: Add test for the IPA Interface\n  ipa: vimc: Add support for test back channel\n\n src/ipa/ipa_dummy.cpp                         |  46 ------\n src/ipa/ipa_vimc.cpp                          | 100 ++++++++++++\n src/ipa/meson.build                           |  10 +-\n src/libcamera/ipa_manager.cpp                 |   7 +-\n test/ipa/ipa_interface_test.cpp               | 147 ++++++++++++++++++\n .../ipa/{ipa_test.cpp => ipa_module_test.cpp} |   4 +-\n test/ipa/meson.build                          |   3 +-\n 7 files changed, 261 insertions(+), 56 deletions(-)\n delete mode 100644 src/ipa/ipa_dummy.cpp\n create mode 100644 src/ipa/ipa_vimc.cpp\n create mode 100644 test/ipa/ipa_interface_test.cpp\n rename test/ipa/{ipa_test.cpp => ipa_module_test.cpp} (92%)\n\n--\n2.23.0"
}