]> git.pld-linux.org Git - packages/closure-compiler.git/blame - gen-changes.sh
up to 20121212
[packages/closure-compiler.git] / gen-changes.sh
CommitLineData
86c4cab5
ER
1#!/bin/sh
2p=closure-compiler
3svn=http://$p.googlecode.com/svn/trunk
4
5set -x
6set -e
7x=$-
8
9# create svn diff and svn log based on revision ranges for each release
10svnlogs() {
11 set -$x
12 local date=$1 range=$2
86c4cab5
ER
13 test -e log.$date.txt || {
14 svn log $svn -r$range > svn.tmp && mv svn.tmp log.$date.txt
15 }
dd63bbf9
ER
16 test -e changes.$date.txt || {
17 svn diff $svn -r$range > svn.tmp && mv svn.tmp changes.$date.txt
18 }
86c4cab5
ER
19}
20
86c4cab5 21svnlogs 20110804 1180:1314
abc435dd
ER
22svnlogs 20110811 1314:1346
23svnlogs 20111003 1346:1459
24svnlogs 20111114 1459:1592
25svnlogs 20120123 1592:1741
dd63bbf9 26svnlogs 20120305 1741:1810
28ae79b3 27svnlogs 20120430 1810:1918
9f347ee0
ER
28svnlogs 20120710 1918:2079
29svnlogs 20120917 2079:2180
7435535c 30svnlogs 20121212 2180:2388
This page took 0.069708 seconds and 4 git commands to generate.