forked from OpenKinect/libfreenect
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Hector Martin <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
For a list of libfreenect authors, please see the Git history of the project, | ||
such as with 'git log'. This file will contain a list of authors on release | ||
snapshots of libfreenect. | ||
|
||
THIS FILE IS NOT VALID FOR NON-GIT DISTRIBUTIONS. If you wish to redistribute | ||
libfreenect source code outside of the Git infrastructure, you MUST either use | ||
a release version or generate a complete CONTRIB file valid for the source Git | ||
revision tree that you use for your distribution. Redistributions of libfreenect | ||
source code without a valid CONTRIB file and without Git metadata are not | ||
compliant with the license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
echo "The following people have contributed to libfreenect:" > CONTRIB | ||
echo >> CONTRIB | ||
|
||
# note: some exclusions to clean up botched git author tags that got fixed in | ||
# later commits, hopefully we'll be more careful about this in the future | ||
git log --format='%aN <%aE>' | sort | uniq | grep -E -v \ | ||
'brandyn@router|sl203|mwise@bvo|richmattes|kai.*none' | sort >> CONTRIB |