emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101822: Include version number in do


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101822: Include version number in doc `make dist' tarfiles.
Date: Wed, 06 Oct 2010 19:23:28 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101822
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2010-10-06 19:23:28 -0700
message:
  Include version number in doc `make dist' tarfiles.
  
  * doc/lispref/Makefile.in (version): New, set by configure.
  (clean): Delete dist tar file.
  (dist): Use version in tar name.
  
  * doc/lispintro/Makefile.in (version): New, set by configure.
  (clean): Delete dist tar file.
  (dist): Use version in tar name.
  
  * doc/emacs/Makefile.in (version): New, set by configure.
  (clean): Delete dist tar file.
  (dist): Use version in tar name.
modified:
  doc/emacs/ChangeLog
  doc/emacs/Makefile.in
  doc/lispintro/ChangeLog
  doc/lispintro/Makefile.in
  doc/lispref/ChangeLog
  doc/lispref/Makefile.in
  doc/misc/ChangeLog
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2010-10-06 04:20:46 +0000
+++ b/doc/emacs/ChangeLog       2010-10-07 02:23:28 +0000
@@ -1,3 +1,9 @@
+2010-10-07  Glenn Morris  <address@hidden>
+
+       * Makefile.in (version): New, set by configure.
+       (clean): Delete dist tar file.
+       (dist): Use version in tar name.
+
 2010-10-06  Glenn Morris  <address@hidden>
 
        * Makefile.in (EMACS_XTRA): Add the main source file.
@@ -7367,12 +7373,11 @@
 
 ;; Local Variables:
 ;; coding: utf-8
-;; fill-column: 79
-;; add-log-time-zone-rule: t
 ;; End:
 
-    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
-      2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010  Free Software 
Foundation, Inc.
+  Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
+    2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+    Free Software Foundation, Inc.
 
   This file is part of GNU Emacs.
 
@@ -7388,5 +7393,3 @@
 
   You should have received a copy of the GNU General Public License
   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; arch-tag: f1d62776-3ed5-4811-9d96-267252577dbd

=== modified file 'doc/emacs/Makefile.in'
--- a/doc/emacs/Makefile.in     2010-10-06 04:20:46 +0000
+++ b/doc/emacs/Makefile.in     2010-10-07 02:23:28 +0000
@@ -28,6 +28,9 @@
 # Tell make where to find source files; this is needed for the makefiles.
 address@hidden@
 
+# Only for make dist.
address@hidden@
+
 ## Where the output files go.
 ## Note that the setfilename command in the .texi files assumes this.
 infodir=../../info
@@ -148,6 +151,7 @@
 ## Products not in the release tarfiles.
 clean: mostlyclean
        rm -f emacs.dvi emacs-xtra.dvi emacs.pdf emacs-xtra.pdf
+       rm -f emacs-manual-${version}.tar*
 
 distclean: clean
 
@@ -161,15 +165,16 @@
 ## The [c] is a dumb way to prevent configure expanding it.
 ## The emacs: rule becomes circular when we change infodir to ".".
 dist:
-       rm -rf emacs
-       mkdir emacs
+       rm -rf emacs-manual-${version}
+       mkdir emacs-manual-${version}
        cp ${srcdir}/*.texi ${texinfodir}/texinfo.tex \
-         ${srcdir}/ChangeLog* emacs/
+         ${srcdir}/ChangeLog* emacs-manual-${version}/
        sed -e 's/@sr[c]dir@/./' -e 's/\(texinfodir *=\).*/\1 ./' \
          -e 's/\(infodir *=\).*/\1 ./' -e '/^emacs *:/d' \
          -e 's/^\(clean:.*\)/\1 infoclean/' \
-         ${srcdir}/Makefile.in > emacs/Makefile
-       tar -cf emacs-texi.tar emacs
-       rm -rf emacs
+         -e "s/@ver[s]ion@/${version}/" \
+         ${srcdir}/Makefile.in > emacs-manual-${version}/Makefile
+       tar -cf emacs-manual-${version}.tar emacs-manual-${version}
+       rm -rf emacs-manual-${version}
 
 ### Makefile ends here

=== modified file 'doc/lispintro/ChangeLog'
--- a/doc/lispintro/ChangeLog   2010-10-06 02:26:38 +0000
+++ b/doc/lispintro/ChangeLog   2010-10-07 02:23:28 +0000
@@ -1,3 +1,9 @@
+2010-10-07  Glenn Morris  <address@hidden>
+
+       * Makefile.in (version): New, set by configure.
+       (clean): Delete dist tar file.
+       (dist): Use version in tar name.
+
 2010-10-06  Glenn Morris  <address@hidden>
 
        * Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
@@ -406,11 +412,10 @@
 
 ;; Local Variables:
 ;; coding: utf-8
-;; add-log-time-zone-rule: t
 ;; End:
 
-    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007,
-       2008, 2009, 2010  Free Software Foundation, Inc.
+  Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
+    2010  Free Software Foundation, Inc.
 
   This file is part of GNU Emacs.
 
@@ -426,5 +431,3 @@
 
   You should have received a copy of the GNU General Public License
   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; arch-tag: ee4f8e1f-e14c-4d2e-86de-4dd697e6f1c3

=== modified file 'doc/lispintro/Makefile.in'
--- a/doc/lispintro/Makefile.in 2010-10-06 04:20:46 +0000
+++ b/doc/lispintro/Makefile.in 2010-10-07 02:23:28 +0000
@@ -23,6 +23,7 @@
 
 srcdir = @srcdir@
 VPATH = @srcdir@
address@hidden@
 
 infodir = ../../info
 # Directory with the (customized) texinfo.tex file.
@@ -70,6 +71,7 @@
 clean: mostlyclean
        rm -f emacs-lisp-intro.dvi emacs-lisp-intro.pdf
        rm -rf emacs-lisp-intro.html/
+       rm -f emacs-lispintro-${version}.tar*
 
 distclean: clean
 
@@ -79,15 +81,16 @@
 maintainer-clean: distclean infoclean
 
 dist:
-       rm -rf lispintro
-       mkdir lispintro
+       rm -rf emacs-lispintro-${version}
+       mkdir emacs-lispintro-${version}
        cp ${srcdir}/*.texi ${srcdir}/*.eps ${srcdir}/*.pdf \
          ${texinfodir}/texinfo.tex \
-         ${srcdir}/ChangeLog* ${srcdir}/README lispintro/
+         ${srcdir}/ChangeLog* ${srcdir}/README emacs-lispintro-${version}/
        sed -e 's/@sr[c]dir@/./' -e 's/\(texinfodir *=\).*/\1 ./' \
          -e 's/\(infodir *=\).*/\1 ./' -e 's/^\(clean:.*\)/\1 infoclean/' \
-         ${srcdir}/Makefile.in > lispintro/Makefile
-       tar -cf emacs-lisp-intro-texi.tar lispintro
-       rm -rf lispintro
+         -e "s/@ver[s]ion@/${version}/" \
+         ${srcdir}/Makefile.in > emacs-lispintro-${version}/Makefile
+       tar -cf emacs-lispintro-${version}.tar emacs-lispintro-${version}
+       rm -rf emacs-lispintro-${version}
 
 ### Makefile ends here

=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2010-10-06 04:20:46 +0000
+++ b/doc/lispref/ChangeLog     2010-10-07 02:23:28 +0000
@@ -1,3 +1,9 @@
+2010-10-07  Glenn Morris  <address@hidden>
+
+       * Makefile.in (version): New, set by configure.
+       (clean): Delete dist tar file.
+       (dist): Use version in tar name.
+
 2010-10-06  Glenn Morris  <address@hidden>
 
        * Makefile.in: Rearrange to more closely resemble doc/emacs/Makefile.
@@ -8684,11 +8690,10 @@
 
 ;; Local Variables:
 ;; coding: utf-8
-;; add-log-time-zone-rule: t
 ;; End:
 
-    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-      2007, 2008, 2009, 2010  Free Software Foundation, Inc.
+  Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+    2007, 2008, 2009, 2010  Free Software Foundation, Inc.
 
   This file is part of GNU Emacs.
 
@@ -8704,5 +8709,3 @@
 
   You should have received a copy of the GNU General Public License
   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;;; arch-tag: 985ae0ce-df29-475b-b3f8-4bbcbf6f7fda

=== modified file 'doc/lispref/Makefile.in'
--- a/doc/lispref/Makefile.in   2010-10-06 04:20:46 +0000
+++ b/doc/lispref/Makefile.in   2010-10-07 02:23:28 +0000
@@ -27,6 +27,8 @@
 # Tell make where to find source files; this is needed for the makefiles.
 address@hidden@
 
address@hidden@
+
 infodir = ../../info
 # Directory with the (customized) texinfo.tex file.
 texinfodir = $(srcdir)/../misc
@@ -118,6 +120,7 @@
 
 clean: mostlyclean
        rm -f elisp.dvi elisp.pdf vol[12].pdf
+       rm -f emacs-lispref-${version}.tar*
 
 distclean: clean
 
@@ -128,14 +131,15 @@
 
 ## Note this excludes the two-volume stuff.
 dist:
-       rm -rf lispref
-       mkdir lispref
+       rm -rf emacs-lispref-${version}
+       mkdir emacs-lispref-${version}
        cp ${srcdir}/*.texi ${texinfodir}/texinfo.tex \
-         ${srcdir}/ChangeLog* ${srcdir}/README lispref/
+         ${srcdir}/ChangeLog* ${srcdir}/README emacs-lispref-${version}/
        sed -e 's/@sr[c]dir@/./' -e 's/\(texinfodir *=\).*/\1 ./' \
          -e 's/\(infodir *=\).*/\1 ./' -e 's/^\(clean:.*\)/\1 infoclean/' \
-         ${srcdir}/Makefile.in > lispref/Makefile
-       tar -cf elisp-texi.tar lispref
-       rm -rf lispref
+         -e "s/@ver[s]ion@/${version}/" \
+         ${srcdir}/Makefile.in > emacs-lispref-${version}/Makefile
+       tar -cf emacs-lispref-${version}.tar emacs-lispref-${version}
+       rm -rf emacs-lispref-${version}
 
 ### Makefile ends here

=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2010-10-06 14:02:39 +0000
+++ b/doc/misc/ChangeLog        2010-10-07 02:23:28 +0000
@@ -7058,12 +7058,11 @@
 
 ;; Local Variables:
 ;; coding: utf-8
-;; fill-column: 79
-;; add-log-time-zone-rule: t
 ;; End:
 
-    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
-      2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010  Free Software 
Foundation, Inc.
+  Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
+    2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+    Free Software Foundation, Inc.
 
   This file is part of GNU Emacs.
 
@@ -7079,5 +7078,3 @@
 
   You should have received a copy of the GNU General Public License
   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
-
-;; arch-tag: 08b2903e-900c-4c72-a4a9-e76416a80803


reply via email to

[Prev in Thread] Current Thread [Next in Thread]