From f6321cddd6e72f4bfe76a09c2cc51eb36b99b568 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sun, 8 Oct 2023 21:54:23 +0100 Subject: [PATCH 1/2] Add spdx headers to CODE_OF_CONDUCT.md I wanted to place the Code of Conduct into a project which strictly follows REUSE guidelines. I produced this list of contributors to the code of conduct from the list of git authors. For each distinct git author e-mail address, I found the earliest year of contribution and the most recent name associated with that address as an author. I chose to leave the duplicated individual as their contributions appear to be affiliated with two different organizations. I created this change by running the following script at commit 3fd3bf6d12de15edfff1b30acd4de61502020a62: ```sh set -eo pipefail f () { set -x; reuse annotate \ --year "$(git log -1 --oneline --reverse --date=format:%Y --format='%ad' --author $1 -- $2)" \ --contributor "$(git log -1 --oneline --format='%aN <%aE>' --author $1)" \ --license CC-BY-4.0 \ "$2"; } g () { git log --format='%aE' -- "$1" | sort -u | while read author; do f "$author" "$1"; done } g CODE_OF_CONDUCT.md ``` --- CODE_OF_CONDUCT.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index fba4e8c56..89d7ab40a 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,3 +1,22 @@ + + # Contributor Covenant Code of Conduct ## Our Pledge From a42094057564308b122074200bbf11842e83bf13 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 9 Oct 2023 08:25:37 +0100 Subject: [PATCH 2/2] Attribute overall copyright to Organization for Ethical Source --- CODE_OF_CONDUCT.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 89d7ab40a..3ed50092a 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,4 +1,5 @@