From c59998e52dec584d17542059c93692cfbd731bbe Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Sun, 23 Aug 2009 02:58:13 +0200 Subject: Autotoolification. --- Makefile.am | 1 + 1 file changed, 1 insertion(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..c1d4ac4 --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = elisp scheme -- cgit v1.2.3 From 065ed08b64474ae86c98aaff7704ded34ce39e0a Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Sun, 23 Aug 2009 03:11:40 +0200 Subject: Automatic ChangeLog generation during make dist. --- .gitignore | 1 + Makefile.am | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/.gitignore b/.gitignore index c1eb482..143a14e 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /scheme/Makefile.in /scheme/guile/Makefile.in /scheme/guile/geiser/Makefile.in +/ChangeLog diff --git a/Makefile.am b/Makefile.am index c1d4ac4..fea9f9d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1 +1,4 @@ -SUBDIRS = elisp scheme +SUBDIRS = . elisp scheme + +dist-hook: + git log --summary --stat > $(top_distdir)/ChangeLog -- cgit v1.2.3 From 54d772a57b4fa5ad3bfe14884a1421d466724895 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Sun, 23 Aug 2009 15:22:07 +0200 Subject: Thanks, many THANKS. --- INSTALL | 4 +++- Makefile.am | 2 ++ THANKS | 21 +++++++++++++++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 THANKS (limited to 'Makefile.am') diff --git a/INSTALL b/INSTALL index 4333c7f..57d9c1f 100644 --- a/INSTALL +++ b/INSTALL @@ -21,7 +21,9 @@ As explained in the README file, Geiser is also directly usable from its source tree, with no configuration whatsoever. Read that README to see how. -As promised, here you have the gory details of the autotools jazz: +As promised, here you have the gory details of the autotools jazz, +which you can freely and safely skip on a first, second and third +reading. Installation Instructions ************************* diff --git a/Makefile.am b/Makefile.am index fea9f9d..90d5015 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,6 @@ SUBDIRS = . elisp scheme +EXTRA_DIST = THANKS + dist-hook: git log --summary --stat > $(top_distdir)/ChangeLog diff --git a/THANKS b/THANKS new file mode 100644 index 0000000..17d1c08 --- /dev/null +++ b/THANKS @@ -0,0 +1,21 @@ + +Andy Wingo, Geiser's first user, has been a continuous source of +encouragement and suggestions, and keeps improving Guile and heeding +my feature requests. + +Eduardo Cavazos' contagious enthusiasm has helped in many ways to keep +Geiser alive, and he's become its best evangelist in R6RS circles. + +Eli Barzilay took the time to play with an early beta and make many +valuable suggestions, besides answering all my 'how do you in PLT' +questions. + +Matthew Flatt, Robby Findler and the rest of the PLT team did not only +answer my inquiries, but provided almost instant fixes to the few +issues i found. + +Thanks also to the PLT and Guile communities, for showing me that +Geiser was not only possible, but a pleasure to hack on. + +Karl Berry happily jeopardized GNU's prestige by reviewing and +accepting Geiser as a GNU official package. -- cgit v1.2.3 From 8e2810f0942745de2534c4dbc8d5d7ec52e79a22 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Sun, 23 Aug 2009 23:19:08 +0200 Subject: Putting ChangeLog to good use. --- .gitignore | 1 - ChangeLog | 6 ++++++ Makefile.am | 2 +- autogen.sh | 4 ---- 4 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 ChangeLog (limited to 'Makefile.am') diff --git a/.gitignore b/.gitignore index 143a14e..c1eb482 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,3 @@ /scheme/Makefile.in /scheme/guile/Makefile.in /scheme/guile/geiser/Makefile.in -/ChangeLog diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..09d790c --- /dev/null +++ b/ChangeLog @@ -0,0 +1,6 @@ +## The contents of this file will be generated during 'make dist' by the +## shell command: + + git log --summary --stat + +# which you can run using 'sh ChangeLog' diff --git a/Makefile.am b/Makefile.am index 90d5015..c86aecb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,4 +3,4 @@ SUBDIRS = . elisp scheme EXTRA_DIST = THANKS dist-hook: - git log --summary --stat > $(top_distdir)/ChangeLog + $(SHELL) $(top_srcdir)/ChangeLog > $(top_distdir)/ChangeLog diff --git a/autogen.sh b/autogen.sh index cd0b02f..f084b65 100755 --- a/autogen.sh +++ b/autogen.sh @@ -2,8 +2,4 @@ [ -f elisp/geiser.el ] || exit 1 -touch ./ChangeLog - autoreconf -Wall - -rm ./ChangeLog -- cgit v1.2.3