------------------------------------------------------------ revno: 199 committer: Ted Gould <[email protected]> branch nick: trunk timestamp: Tue 2010-09-21 16:10:56 -0500 message: Building ChangeLog and AUTHORS from makefile modified: AUTHORS ChangeLog Makefile.am
-- lp:indicator-messages https://code.launchpad.net/~indicator-applet-developers/indicator-messages/trunk Your team ayatana-commits is subscribed to branch lp:indicator-messages. To unsubscribe from this branch go to https://code.launchpad.net/~indicator-applet-developers/indicator-messages/trunk/+edit-subscription
=== modified file 'AUTHORS' --- AUTHORS 2009-02-11 22:05:18 +0000 +++ AUTHORS 2010-09-21 21:10:56 +0000 @@ -1,1 +1,2 @@ -Ted Gould <[email protected]> +# Generated by Makefile + === modified file 'ChangeLog' --- ChangeLog 2008-12-05 03:13:41 +0000 +++ ChangeLog 2010-09-21 21:10:56 +0000 @@ -0,0 +1,2 @@ +# Generated by Makefile + === modified file 'Makefile.am' --- Makefile.am 2009-09-15 21:06:55 +0000 +++ Makefile.am 2010-09-21 21:10:56 +0000 @@ -6,3 +6,28 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-localinstall +dist-hook: + @if test -d "$(top_srcdir)/.bzr"; \ + then \ + echo Creating ChangeLog && \ + ( cd "$(top_srcdir)" && \ + echo '# Generated by Makefile. Do not edit.'; echo; \ + $(top_srcdir)/missing --run bzr log --gnu-changelog ) > ChangeLog.tmp \ + && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ + || (rm -f ChangeLog.tmp; \ + echo Failed to generate ChangeLog >&2 ); \ + else \ + echo Failed to generate ChangeLog: not a branch >&2; \ + fi + @if test -d "$(top_srcdir)/.bzr"; \ + then \ + echo Creating AUTHORS && \ + ( cd "$(top_srcdir)" && \ + echo '# Generated by Makefile. Do not edit.'; echo; \ + $(top_srcdir)/missing --run bzr log --long --levels=0 | grep -e "^\s*author:" -e "^\s*committer:" | cut -d ":" -f 2 | cut -d "<" -f 1 | sort -u) > AUTHORS.tmp \ + && mv -f AUTHORS.tmp $(top_distdir)/AUTHORS \ + || (rm -f AUTHORS.tmp; \ + echo Failed to generate AUTHORS >&2 ); \ + else \ + echo Failed to generate AUTHORS: not a branch >&2; \ + fi
_______________________________________________ Mailing list: https://launchpad.net/~ayatana-commits Post to : [email protected] Unsubscribe : https://launchpad.net/~ayatana-commits More help : https://help.launchpad.net/ListHelp

