Skip to content

Commit e074c5c

Browse files
committed
Add CONTRIBUTORS.txt
1 parent deae8ea commit e074c5c

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

CONTRIBUTORS.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
For the purpose of tracking copyright, this is the list of individuals and
2+
organizations who have contributed source code to Soto.
3+
4+
For employees of an organization/company where the copyright of work done
5+
by employees of that company is held by the company itself, only the company
6+
needs to be listed here.
7+
8+
## COPYRIGHT HOLDERS
9+
10+
### Contributors
11+
12+
- Adam Fowler <[email protected]>
13+
- Michael Housh <[email protected]>
14+
- Michal Šrůtek <[email protected]>
15+
- Sean Patrick O'Brien <[email protected]>
16+
- Sven A. Schmidt <[email protected]>
17+
18+
**Updating this list**
19+
20+
Please do not edit this file manually. It is generated using `./scripts/generate_contributors_list.sh`. If a name is misspelled or appearing multiple times: add an entry in `./.mailmap`

scripts/generate_contributors_list.sh

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/bin/bash
2+
##===----------------------------------------------------------------------===##
3+
##
4+
## This source file is part of the SwiftNIO open source project
5+
##
6+
## Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors
7+
## Licensed under Apache License v2.0
8+
##
9+
## See LICENSE.txt for license information
10+
## See CONTRIBUTORS.txt for the list of SwiftNIO project authors
11+
##
12+
## SPDX-License-Identifier: Apache-2.0
13+
##
14+
##===----------------------------------------------------------------------===##
15+
16+
set -eu
17+
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
18+
contributors=$( cd "$here"/.. && git shortlog -es | cut -f2 | sed 's/^/- /' )
19+
20+
cat > "$here/../CONTRIBUTORS.txt" <<- EOF
21+
For the purpose of tracking copyright, this is the list of individuals and
22+
organizations who have contributed source code to Soto.
23+
24+
For employees of an organization/company where the copyright of work done
25+
by employees of that company is held by the company itself, only the company
26+
needs to be listed here.
27+
28+
## COPYRIGHT HOLDERS
29+
30+
### Contributors
31+
32+
$contributors
33+
34+
**Updating this list**
35+
36+
Please do not edit this file manually. It is generated using \`./scripts/generate_contributors_list.sh\`. If a name is misspelled or appearing multiple times: add an entry in \`./.mailmap\`
37+
EOF

0 commit comments

Comments
 (0)