Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add spdx headers to CODE_OF_CONDUCT.md #1331

Open
wants to merge 2 commits into
base: release
Choose a base branch
from

Commits on Oct 8, 2023

  1. 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
    3fd3bf6:
    ```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
    ```
    jepler committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    f6321cd View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. Configuration menu
    Copy the full SHA
    a420940 View commit details
    Browse the repository at this point in the history