From patchwork Fri Nov 10 14:23:07 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19201 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 93580C3284 for ; Fri, 10 Nov 2023 14:23:10 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 3AFC2629BF; Fri, 10 Nov 2023 15:23:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1699626190; bh=7cmqCVtlt/d3yq7VfeJnBCbIu23stRByHIGJE1jNK6g=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=TwYOZdUiRqWequgjudEiP0ErVJCIKojanLPWsK0Jn9vARCZspx347/38fAuHkq0yp +ELYfIHJjVRRRnrj7+IF+NVne5VjcOgsPos5lrzF7J5q+97i1iBT5ABGMQwMcvwINK nkkmnUcp4DuGja2dgOZuKYBSN50TEuF8C8bypKf77cSW9VzUVk15SASQ945mwEqcT+ yo0T82zQ0u9mQUa4RZiBmCNUlXqbVNCBqF0rxkmfNeC51kIjFbs0Z1THK6/x2gDYHo YoeAZlOZ6irg7wBkTnhgb1p9FF0ycBTdYrWdT+lyEOVe1WWH4dsH6YqSMvfk3OBnOC BJNOCFauwnkUw== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 70AE8629AB for ; Fri, 10 Nov 2023 15:23:07 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="M430RCjo"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 61F9D49E; Fri, 10 Nov 2023 15:22:44 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1699626164; bh=7cmqCVtlt/d3yq7VfeJnBCbIu23stRByHIGJE1jNK6g=; h=From:To:Subject:Date:In-Reply-To:References:From; b=M430RCjo6CgVkJNLFmoLTK6ImKuvay4aK7xA2kA7d6wsDwv6V3cJhbBcGlQqNegqG zoNruUEXeBnECUKdQK0Er8E/6csklOcfTO5RJp4N9K1sf6uv3uRlBzn2bMHneAjE8j e2lQEcvsd80058yCS1MPu6BprqGE9g0LSvuq4q8M= To: libcamera-devel@lists.libcamera.org Date: Fri, 10 Nov 2023 16:23:07 +0200 Message-ID: <20231110142311.3818-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> References: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 1/5] Documentation: Add code of conduct X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Communities have standards regarding behaviours they consider acceptable or not acceptable, and expect community members to follow those standards. libcamera is no different, even if it has never clearly expressed those standards in a formal code of conduct document. Like software licenses, codes of conduct can be written in a myriad of ways. And like software licenses, using a widely adopted code of conduct instead of writing our own can help bringing clarity. One such standard code of conduct is the Contributor Covenant, stewarded by the Organization for Ethical Source. The Contributor Covenant has been adopted by the freedesktop.org organization, which hosts a large number of projects historically related to graphics, and more recently to multimedia in general. freedesktop.org offers services such as git hosting with CI, which libcamera could benefit from. There is therefore a clear incentive to choose the same code of conduct as freedesktop.org, and no known drawback. As a first step towards this, and to keep the libcamera code of conduct history clear in git, copy the original Contributor Covenant v1.4 from https://github.com/EthicalSource/contributor_covenant/. "v1.4" is ambiguous as the document initially published as v1.4 has received small (but sometimes significant) modifications over time. The version imported here is the most recent, and comes from commit 3fd3bf6d12de ("Merge pull request #1321 from story645/patch-2") which is the tip of the release branch ([1]). [1] https://github.com/EthicalSource/contributor_covenant/blob/3fd3bf6d12de15edfff1b30acd4de61502020a62/content/version/1/4/code-of-conduct.md Signed-off-by: Laurent Pinchart Acked-by: Kieran Bingham --- Documentation/code_of_conduct.md | 78 ++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 Documentation/code_of_conduct.md diff --git a/Documentation/code_of_conduct.md b/Documentation/code_of_conduct.md new file mode 100644 index 000000000000..fcf453902224 --- /dev/null +++ b/Documentation/code_of_conduct.md @@ -0,0 +1,78 @@ + +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to make participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies within all project spaces, and it also applies when +an individual is representing the project or its community in public spaces. +Examples of representing a project or community include using an official +project e-mail address, posting via an official social media account, or acting +as an appointed representative at an online or offline event. Representation of +a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at [INSERT EMAIL ADDRESS]. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq + From patchwork Fri Nov 10 14:23:08 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19202 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id D4C05C3284 for ; Fri, 10 Nov 2023 14:23:12 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 84764629C0; Fri, 10 Nov 2023 15:23:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1699626192; bh=5zG/J7oBApgWdbqTpdQNK9R3triYfy1GFEzgEMFPotU=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=V73mGu1h2XX3tMj5QaHMvrUnfvylLco4L+N+hYTZgXIcbWcI3bAWKiEvZs/YochiD ubiq5d6PupDLwCr0LKmDkqgZJwr9GHMxb9TDmVk+B7FiFrih0FBWgoOvDYEhxhj/Vm Z2/KFz0hMQDXHx8LQ4l5w0+x/yP6edTJy+eUvCFkw2g6x6vhbor3OICx8Idmcxx/CY tWUynfEBeSQC+L4U9iHSMg57Lni4Wgo3L0oUV/fm98S2sK35T1bpqIU4YatcENg0ku VXtLdXb0LBB4z4nLRY0AyFg3jJcRZLfm7z3qzKkCeeaDD0SDskdVHKvA+czQdPwcmF poJZcYZqXnDOQ== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D7BB2629AB for ; Fri, 10 Nov 2023 15:23:08 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="sq92/K0u"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id C99FE49E; Fri, 10 Nov 2023 15:22:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1699626166; bh=5zG/J7oBApgWdbqTpdQNK9R3triYfy1GFEzgEMFPotU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=sq92/K0u4kEEW0dkZt2YttXbTJMmRLFU83gNXN3VSEQ/abRU6NN3WRAEy0nLuPxIN FaU/KW/rvU8Ai5uub6Z/ubuKDJblJmKjfy0hcUuDCLtioWDmiKPkQl72NfVakde9SG 8S00IkyuozSpEknCo1n/BuMhEd1ORrDjM+7sc3Qo= To: libcamera-devel@lists.libcamera.org Date: Fri, 10 Nov 2023 16:23:08 +0200 Message-ID: <20231110142311.3818-3-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> References: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 2/5] Documentation: code-of-conduct: Convert to reStructuredText X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" All documentation in libcamera is in reStructuredText format. Convert the code of conduct from Markdown. No change in the contents is intended. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- ...code_of_conduct.md => code-of-conduct.rst} | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) rename Documentation/{code_of_conduct.md => code-of-conduct.rst} (89%) diff --git a/Documentation/code_of_conduct.md b/Documentation/code-of-conduct.rst similarity index 89% rename from Documentation/code_of_conduct.md rename to Documentation/code-of-conduct.rst index fcf453902224..b7aa9b3879e3 100644 --- a/Documentation/code_of_conduct.md +++ b/Documentation/code-of-conduct.rst @@ -1,7 +1,9 @@ -# Contributor Covenant Code of Conduct +Contributor Covenant Code of Conduct +==================================== -## Our Pledge +Our Pledge +---------- In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and @@ -10,7 +12,8 @@ size, disability, ethnicity, sex characteristics, gender identity and expression level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. -## Our Standards +Our Standards +------------- Examples of behavior that contributes to creating a positive environment include: @@ -32,7 +35,8 @@ Examples of unacceptable behavior by participants include: * Other conduct which could reasonably be considered inappropriate in a professional setting -## Our Responsibilities +Our Responsibilities +-------------------- Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in @@ -44,7 +48,8 @@ that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. -## Scope +Scope +----- This Code of Conduct applies within all project spaces, and it also applies when an individual is representing the project or its community in public spaces. @@ -53,7 +58,8 @@ project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. -## Enforcement +Enforcement +----------- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [INSERT EMAIL ADDRESS]. All @@ -66,12 +72,13 @@ Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. -## Attribution +Attribution +----------- -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +This Code of Conduct is adapted from the `Contributor Covenant`_, version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html -[homepage]: https://www.contributor-covenant.org +.. _Contributor Covenant: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see https://www.contributor-covenant.org/faq From patchwork Fri Nov 10 14:23:09 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19203 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id B6304C3285 for ; Fri, 10 Nov 2023 14:23:13 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 16E39629C2; Fri, 10 Nov 2023 15:23:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1699626193; bh=wk1Kk4juWETMGAxB/gZSdWSZSLvSvbS5wt/7cSS4ZcI=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=nwKK9e8EdgoY/cA8FuF65+FRuJXZRcAPTRONKKLHqHMM3cMyUFq6CC7lmOtjocstZ pH0KztJic0gbV+zaJa0ATfuWp1JwqCxTex0xVsZDlrjj+/blz4j/75rtAWVD2FT7DF nnjji9VLGwoR+LYEU63Lw209lCzKpblocFAQjtJILXSXFWMhrMbgzhJrzmAl+kCNYE NSa5y5YffPV83LkYp9RM8kpbBHn5WYypYcjW63HsDsPsMcK/MhvEbcGWDxYy5ra3nO j9106Xklf5Xpt2Z03S0sRiI0t8imm52m68+FlmIP9iimxFjEsUKPbUQBkdJwXuRbPR S00MiNwG0kQUw== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 83285629C3 for ; Fri, 10 Nov 2023 15:23:10 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="JS8ayxoB"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1DFD149E; Fri, 10 Nov 2023 15:22:47 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1699626167; bh=wk1Kk4juWETMGAxB/gZSdWSZSLvSvbS5wt/7cSS4ZcI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=JS8ayxoBTp0OE7M9KMyXVzq6NRmcofPQAUhfHutM4CE3J75WbDWeVPVdrZmZK3eOs iJGvMJfVyaWh7n4uCq+TE8QWRrLNwQg3a9DjQIXf/HogCBueih9jvQJR1N0QrJOzYA cWxGEsmPF5eKw7cYS+62fK5/+3Unf0T0Xt37aZrI= To: libcamera-devel@lists.libcamera.org Date: Fri, 10 Nov 2023 16:23:09 +0200 Message-ID: <20231110142311.3818-4-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> References: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 3/5] Documentation: code-of-conduct: Add license information X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The Contributor Covenant is covered by the CC-BY-4.0 license. Indicate this in the file. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- Documentation/code-of-conduct.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/code-of-conduct.rst b/Documentation/code-of-conduct.rst index b7aa9b3879e3..856f7e7115c5 100644 --- a/Documentation/code-of-conduct.rst +++ b/Documentation/code-of-conduct.rst @@ -1,3 +1,4 @@ +.. SPDX-License-Identifier: CC-BY-4.0 Contributor Covenant Code of Conduct ==================================== From patchwork Fri Nov 10 14:23:10 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19204 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 4835BC3284 for ; Fri, 10 Nov 2023 14:23:16 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D075F629C3; Fri, 10 Nov 2023 15:23:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1699626195; bh=Mt3Km8BOv6NN6FYJFnHXx5kQT5qua5hoc+HqzS2tLkA=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=FTpZm7a/J8Frje9uwfBkbP1sR7NJinXzf+Phu7rm6lEEhSyT06q7e14+Iv2MGFGM7 NzsMiTxDou9Z9Zcf+iBP4Pssawr55MIVNu4xj13INI/PTg0FIXdn3cqOCHyLSJ50KI EV3s0j3MN2LMwX7WYDILEy1v86+7RbJ1KBocut30P3rv6HE3HsD1QGB1yN8iDIDAfm Bo6bnN2J2KSyodsm5mMEt2SgVj9wRorbFJLU3AihBfiJNoTGUWUNM+/5pGz6Q7d3dp W7cFShvWVrdTE3mU5eio/6C7ul5yAWcaupNIQk23mvFamdaVBfPIgK753l/lquVc46 yDL2tWgZlEwNg== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4DDC4629BB for ; Fri, 10 Nov 2023 15:23:12 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="E2IRnUHe"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 3882949E; Fri, 10 Nov 2023 15:22:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1699626169; bh=Mt3Km8BOv6NN6FYJFnHXx5kQT5qua5hoc+HqzS2tLkA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=E2IRnUHeowkWyU1Ln+EaQEo15SYBaDbwSwuBu2FrfilD+jZKLvUhat55YLj5ZRLea pZVrRU5M9CBVux081G/CmbKBNiUxE5e821q10g6euE4HDW63/zSuIk6JnJl28aiTk7 FgtKWG4W+DX5LP1xw+La8fZvtQVKJe39xuh5M7P0= To: libcamera-devel@lists.libcamera.org Date: Fri, 10 Nov 2023 16:23:10 +0200 Message-ID: <20231110142311.3818-5-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> References: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 4/5] Documentation: code-of-conduct: Add contact information X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Replace the boilerplate "[INSERT EMAIL ADDRESS]" contact information with conduct@libcamera.org, and indicate that the people behind that e-mail address can also be contacted directly if needed. The direct contact information aims at offering more confidence to reporters than an anonymous mail alias in case they wish to report an issue with one of the core project members. Signed-off-by: Laurent Pinchart Acked-by: Kieran Bingham Reviewed-by: Kieran Bingham --- Documentation/code-of-conduct.rst | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Documentation/code-of-conduct.rst b/Documentation/code-of-conduct.rst index 856f7e7115c5..cdf7dd2c88fb 100644 --- a/Documentation/code-of-conduct.rst +++ b/Documentation/code-of-conduct.rst @@ -63,11 +63,17 @@ Enforcement ----------- Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at [INSERT EMAIL ADDRESS]. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. +reported by contacting the project team at conduct@libcamera.org, or directly to +any member of the code of conduct team: + +* Kieran Bingham +* Laurent Pinchart + +All complaints will be reviewed and investigated and will result in a response +that is deemed necessary and appropriate to the circumstances. The project team +is obligated to maintain confidentiality with regard to the reporter of an +incident. Further details of specific enforcement policies may be posted +separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other From patchwork Fri Nov 10 14:23:11 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19205 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id BDA8AC3285 for ; Fri, 10 Nov 2023 14:23:16 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 785F1629C0; Fri, 10 Nov 2023 15:23:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1699626196; bh=FrWlATs7l40n+7dvF2JYxhizkvQpsUSzy3HqfMgzr6Y=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=x7Red5DPHm2nuPATh0TvnKHCg+slG9sStrgcd3aJtG5UJRM/sgtCBssjizpdErMkJ +imRajFU7+o2VOOsMOH5ZMnw+e3MLYRUC1bKqJ3hm5Tzf2+v9PQLZACFFLKmyxO//a f6W1jza2NRyvp1bP51n8wRNVwUdO6qmrm92IJGTlCMUhfa3d7+pg49R4jcqjfIj7yk ffVQjldKJISk3MNK8hBg1LnmY8wwQV7P90UvSs22v1Po3/av9lTlQIQusmcZZva9TO W2cs9L5MoONXHCmjP0WIsswR3IzvHemLdfKOpLb41U5R4OgprpmGW25gO6ItoVYMeg P+yud4v/DsmwA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id BAA35629C3 for ; Fri, 10 Nov 2023 15:23:13 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="QQA8PyRB"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9F2E8836; Fri, 10 Nov 2023 15:22:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1699626170; bh=FrWlATs7l40n+7dvF2JYxhizkvQpsUSzy3HqfMgzr6Y=; h=From:To:Subject:Date:In-Reply-To:References:From; b=QQA8PyRBxADn//aWQpCALA5nALNhAp0myo0Xk+2qkcFQhH9oABppQK5mc//m8mPwL us7odhfxqBkkPJIu3jLLs1vEoln1uAWPqAgiO8dr0lANlEjTZI8ZsNdxeJ9b5Rd4l0 9W8h1VERD5j6yNixqbfIjzbZ9YwdZWkWTvO+jZK0= To: libcamera-devel@lists.libcamera.org Date: Fri, 10 Nov 2023 16:23:11 +0200 Message-ID: <20231110142311.3818-6-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> References: <20231110142311.3818-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v1 5/5] Documentation: contributing: Integrate the code of conduct X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Now that libcamera has an official code of conduct, mention it in the 'contributing' document with a clear indication that all community members are expected to follow the code of conduct. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- Documentation/code-of-conduct.rst | 2 ++ Documentation/contributing.rst | 5 +++++ Documentation/meson.build | 1 + 3 files changed, 8 insertions(+) diff --git a/Documentation/code-of-conduct.rst b/Documentation/code-of-conduct.rst index cdf7dd2c88fb..38b7d7ad679f 100644 --- a/Documentation/code-of-conduct.rst +++ b/Documentation/code-of-conduct.rst @@ -1,5 +1,7 @@ .. SPDX-License-Identifier: CC-BY-4.0 +.. _code-of-conduct: + Contributor Covenant Code of Conduct ==================================== diff --git a/Documentation/contributing.rst b/Documentation/contributing.rst index 2f0b4921f7e6..32d7d0ef319a 100644 --- a/Documentation/contributing.rst +++ b/Documentation/contributing.rst @@ -8,6 +8,10 @@ Whether you would like to help with coding, documentation, testing, proposing new features, or just discussing the project with the community, you can join our official public communication channels, or simply check out the code. +The project adheres to a :ref:`code of conduct ` that +maintainers, contributors and in general community members are expected to +follow in all online and offline communication. + Mailing List ------------ @@ -134,4 +138,5 @@ By making a contribution to this project, I certify that: .. toctree:: :hidden: + Code of Conduct Coding Style diff --git a/Documentation/meson.build b/Documentation/meson.build index 7c1502592baa..3eb2897e6b2b 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -64,6 +64,7 @@ endif if sphinx.found() docs_sources = [ 'camera-sensor-model.rst', + 'code-of-conduct.rst', 'coding-style.rst', 'conf.py', 'contributing.rst',