2013-01-12 09:05:11 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2014-02-05 15:12:53 +01:00
|
|
|
TAG=$1
|
|
|
|
PREV_TAG=$2
|
2013-01-12 09:05:11 +01:00
|
|
|
|
2014-02-05 15:12:53 +01:00
|
|
|
git checkout refs/tags/$TAG
|
|
|
|
git log --pretty=fuller --date=short refs/tags/$PREV_TAG..HEAD > ChangeLog
|
2013-01-12 09:05:11 +01:00
|
|
|
|
2015-09-05 18:23:11 +02:00
|
|
|
git submodule update --init
|
2016-02-25 16:00:52 +01:00
|
|
|
|
|
|
|
autoreconf -i
|
2015-09-05 18:23:11 +02:00
|
|
|
./configure --with-mruby && \
|
2013-01-12 09:05:11 +01:00
|
|
|
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
|
|
|
|
make distclean
|