Skip to content

Commit

Permalink
Add CONTRIB file and mkcontrib.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Hector Martin <hector@marcansoft.com>
  • Loading branch information
marcan committed Dec 12, 2010
1 parent 6c3cf93 commit bdd9219
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CONTRIB
@@ -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.
9 changes: 9 additions & 0 deletions mkcontrib.sh
@@ -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

0 comments on commit bdd9219

Please sign in to comment.