Skip to content

Commit bdd9219

Browse files
committed
Add CONTRIB file and mkcontrib.sh
Signed-off-by: Hector Martin <[email protected]>
1 parent 6c3cf93 commit bdd9219

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

CONTRIB

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
For a list of libfreenect authors, please see the Git history of the project,
2+
such as with 'git log'. This file will contain a list of authors on release
3+
snapshots of libfreenect.
4+
5+
THIS FILE IS NOT VALID FOR NON-GIT DISTRIBUTIONS. If you wish to redistribute
6+
libfreenect source code outside of the Git infrastructure, you MUST either use
7+
a release version or generate a complete CONTRIB file valid for the source Git
8+
revision tree that you use for your distribution. Redistributions of libfreenect
9+
source code without a valid CONTRIB file and without Git metadata are not
10+
compliant with the license.

mkcontrib.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
3+
echo "The following people have contributed to libfreenect:" > CONTRIB
4+
echo >> CONTRIB
5+
6+
# note: some exclusions to clean up botched git author tags that got fixed in
7+
# later commits, hopefully we'll be more careful about this in the future
8+
git log --format='%aN <%aE>' | sort | uniq | grep -E -v \
9+
'brandyn@router|sl203|mwise@bvo|richmattes|kai.*none' | sort >> CONTRIB

0 commit comments

Comments
 (0)