1 |
wakaba |
1.1 |
#!/bin/sh |
2 |
|
|
find -name ChangeLog | xargs cvs diff | grep "^\+" | sed -e "s/^\+//; s/^\+\+ .\//++ charclass\//" > .cvslog.tmp |
3 |
|
|
cvs commit -F .cvslog.tmp $1 $2 $3 $4 $5 $6 $7 $8 $9 |
4 |
wakaba |
1.2 |
## TODO: Don't use -I here |
5 |
|
|
perl \ |
6 |
|
|
-I../manakai-core/lib/ \ |
7 |
|
|
-I/home/httpd/html/www/markup/html/whatpm/ \ |
8 |
|
|
mkcommitfeed.pl --file-name charclass-commit.en.atom.u8 \ |
9 |
wakaba |
1.3 |
--feed-url http://suika.fam.cx/www/charclass/charclass-commit \ |
10 |
wakaba |
1.2 |
--feed-title "CharClass ChangeLog diffs" \ |
11 |
|
|
--feed-lang en \ |
12 |
|
|
--feed-related-url "http://suika.fam.cx/www/charclass/readme" \ |
13 |
|
|
--feed-license-url "http://suika.fam.cx/www/charclass/readme#license" \ |
14 |
|
|
--feed-rights "This feed is free software; you can redistribute it and/or modify it under the same terms as Perl itself." \ |
15 |
|
|
< .cvslog.tmp |
16 |
|
|
cvs commit -m "" charclass-commit.en.atom.u8 |
17 |
wakaba |
1.1 |
rm .cvslog.tmp |
18 |
|
|
|
19 |
wakaba |
1.3 |
## $Date: 2008/11/24 04:25:10 $ |
20 |
wakaba |
1.1 |
## License: Public Domain |