35 | | WAV files: |
36 | | * files in both `abuse-sfx` and `abuse-mac` are exactly the same |
37 | | * some files are only in `abuse-mac`: the whole `sfx/voice/` subdirectory |
38 | | |
39 | | SPE files: |
40 | | * all files in `abuse-lib` are also in `abuse-data` |
41 | | * most new files from `abuse-frabs` are in the `addons` directory |
| 35 | {{{ |
| 36 | #!sh |
| 37 | git log --stat \ |
| 38 | | sed 's/sam <sam@........-[^>]*>/Sam Hocevar <sam@hocevar.net>/' \ |
| 39 | | sed 's/holiday <holiday@........-[^>]*>/Justin Cassidy <justin@boil.afraid.org>/' \ |
| 40 | | tac \ |
| 41 | | awk '/git-svn-id/ { sub(/.*@/, ""); id=$1; next } \ |
| 42 | /^commit/ { print "Commit: " id; id="UNCOMMITTED" } \ |
| 43 | /files changed.*insertions/ { if ($1 > 20) { print $0; print " [...]"; disable=1 } } \ |
| 44 | /^$/ { disable=0 } \ |
| 45 | { if (!disable) print $0 }' \ |
| 46 | | tac \ |
| 47 | | grep -v '\(^ $\|^commit\|git-svn-id\)' >| ChangeLog |
| 48 | }}} |