aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-09-21 14:54:24 -0500
committerTed Gould <ted@gould.cx>2010-09-21 14:54:24 -0500
commit08276c9c88ef23c5b22ad49330fbdbe13d9ee6e5 (patch)
treef6a286f042b0de4d3fc0942a805e6cbda01c5947
parentd79e2326db9b80d2f32574b3cf7a1fd94d4e3e72 (diff)
downloadayatana-indicator-datetime-08276c9c88ef23c5b22ad49330fbdbe13d9ee6e5.tar.gz
ayatana-indicator-datetime-08276c9c88ef23c5b22ad49330fbdbe13d9ee6e5.tar.bz2
ayatana-indicator-datetime-08276c9c88ef23c5b22ad49330fbdbe13d9ee6e5.zip
Setting up generating the AUTHORS and ChangeLog at dist
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog2
-rw-r--r--Makefile.am12
3 files changed, 16 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index b6c2e7d..a741f25 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1 +1,2 @@
-Ted Gould <ted@canonical.com>
+# Generated by Makefile
+
diff --git a/ChangeLog b/ChangeLog
index e69de29..a741f25 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -0,0 +1,2 @@
+# Generated by Makefile
+
diff --git a/Makefile.am b/Makefile.am
index 4b2bca4..a692889 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,3 +22,15 @@ dist-hook:
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