------------------------------------------------------------ revno: 371 committer: Ted Gould <[email protected]> branch nick: applet timestamp: Tue 2010-09-21 14:47:29 -0500 message: Making ChangeLog and AUTHORS built at dist time modified: AUTHORS ChangeLog Makefile.am
-- lp:indicator-applet https://code.launchpad.net/~indicator-applet-developers/indicator-applet/applet Your team ayatana-commits is subscribed to branch lp:indicator-applet. To unsubscribe from this branch go to https://code.launchpad.net/~indicator-applet-developers/indicator-applet/applet/+edit-subscription
=== modified file 'AUTHORS' --- AUTHORS 2009-02-11 21:59:42 +0000 +++ AUTHORS 2010-09-21 19:47:29 +0000 @@ -1,1 +1,2 @@ -Ted Gould <[email protected]> +# Generated by Makefile + === modified file 'ChangeLog' --- ChangeLog 2008-10-30 02:30:35 +0000 +++ ChangeLog 2010-09-21 19:47:29 +0000 @@ -0,0 +1,2 @@ +# Generate by Makefile + === modified file 'Makefile.am' --- Makefile.am 2010-04-01 20:32:52 +0000 +++ Makefile.am 2010-09-21 19:47:29 +0000 @@ -13,3 +13,28 @@ EXTRA_DIST = \ COPYING.LGPL +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

