diff options
author | rbalocca <rbalocca@vyatta.com> | 2008-05-07 14:53:17 -0700 |
---|---|---|
committer | rbalocca <rbalocca@vyatta.com> | 2008-05-07 14:53:17 -0700 |
commit | 6e4fa7d9e4e3d86d3ad992c2ac9cf561c93973f4 (patch) | |
tree | 3d51df842f8c3eb938153c269043f5db812f5865 | |
parent | a3e7619c03307908030fb03b1085f19e8809be43 (diff) | |
download | quagga-6e4fa7d9e4e3d86d3ad992c2ac9cf561c93973f4.tar.bz2 quagga-6e4fa7d9e4e3d86d3ad992c2ac9cf561c93973f4.tar.xz |
Convert to our method of changelog creation
-rw-r--r-- | .gitignore | 1 | ||||
l--------- | ChangeLog | 1 | ||||
-rwxr-xr-x | debian/autogen.sh | 26 |
3 files changed, 1 insertions, 27 deletions
@@ -3,7 +3,6 @@ *.l[ao] .deps .libs -ChangeLog INSTALL Makefile Makefile.in diff --git a/ChangeLog b/ChangeLog new file mode 120000 index 00000000..d526672c --- /dev/null +++ b/ChangeLog @@ -0,0 +1 @@ +debian/changelog
\ No newline at end of file diff --git a/debian/autogen.sh b/debian/autogen.sh index ff125d1d..e8c94af8 100755 --- a/debian/autogen.sh +++ b/debian/autogen.sh @@ -1,32 +1,6 @@ #!/bin/sh -if [ -d .git ] ; then -# generate GNU/Debian format ChangeLog from git log - - rm -f ChangeLog - - if which git2cl >/dev/null ; then - git-log --pretty --numstat --summary | git2cl >> ChangeLog - else - git-log --pretty=short >> ChangeLog - fi - -# append repository reference - - url=` git repo-config --get remote.origin.url` - test "x$url" = "x" && url=`pwd` - - branch=`git-branch --no-color | sed '/^\* /!d; s/^\* //'` - test "x$branch" = "x" && branch=master - - sha=`git log --pretty=oneline --no-color -n 1 | cut -c-8` - test "x$sha" = "x" && sha=00000000 - - echo "$url#$branch-$sha" >> ChangeLog - -fi - rm -rf config rm -f aclocal.m4 config.guess config.statusconfig.sub configure INSTALL |