[gnus git] branch master updated: =5= No Gnus v0.12 is begun ; No Gnus v0.11 is released ; Fix some errors. ; Check in the new git-based makepub. ; Don't ignore makepub any more.
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 2f98643e46bf480b4d0506d191d879adf56a237a (commit)
via a94a4433cb6d6234ec09412ec9dd39236b0fb092 (commit)
via 4bc04db8ab265897888955269bb5c7934624be79 (commit)
via 09d2e34e3c89fbd38d41e8fad63fe49658bcb358 (commit)
via 6366c7315899e704ca34d84ebb9fe6947dea9ec2 (commit)
from 7f2d286fd3882217b7fba9aee7d1c5618f3bc89e (commit)
- Log -----------------------------------------------------------------
commit 2f98643e46bf480b4d0506d191d879adf56a237a
Author: Lars Ingebrigtsen <[email protected]>
Date: Sun Feb 20 19:25:59 2011 -0800
No Gnus v0.12 is begun
diff --git a/lisp/gnus.el b/lisp/gnus.el
index 7a069e0..4bd855d 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -293,7 +293,7 @@ is restarted, and sometimes reloaded."
:link '(custom-manual "(gnus)Exiting Gnus")
:group 'gnus)
-(defconst gnus-version-number "0.11"
+(defconst gnus-version-number "0.12"
"Version number for this version of Gnus.")
(defconst gnus-version (format "No Gnus v%s" gnus-version-number)
diff --git a/texi/gnus.texi b/texi/gnus.texi
index 4756f1b..66dd586 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
@@ -47,7 +47,7 @@ developing GNU and promoting software freedom.''
\begin{document}
% Adjust ../Makefile.in if you change the following line:
-\newcommand{\gnusversionname}{No Gnus v0.11}
+\newcommand{\gnusversionname}{No Gnus v0.12}
\newcommand{\gnuschaptername}{}
\newcommand{\gnussectionname}{}
@@ -358,7 +358,7 @@ spool or your mbox file. All at the same time, if you want to push your
luck.
@c Adjust ../Makefile.in if you change the following line:
-This manual corresponds to No Gnus v0.11.
+This manual corresponds to No Gnus v0.12
@ifnottex
@insertcopying
@@ -392,7 +392,7 @@ people should be empowered to do what they want by using (or abusing)
the program.
@c Adjust ../Makefile.in if you change the following line:
-This manual corresponds to No Gnus v0.11.
+This manual corresponds to No Gnus v0.12
@heading Other related manuals
@itemize
@@ -28906,7 +28906,7 @@ Gnus will work.
@item
Try doing an @kbd{M-x gnus-version}. If you get something that looks
like @c
-@samp{No Gnus v0.10} @c Adjust ../Makefile.in if you change this line!
+@samp{No Gnus v0.12} @c Adjust ../Makefile.in if you change this line!
@c
you have the right files loaded. Otherwise you have some old @file{.el}
files lying around. Delete these.
diff --git a/texi/message.texi b/texi/message.texi
index 53b4c53..2457225 100644
--- a/texi/message.texi
+++ b/texi/message.texi
@@ -77,7 +77,7 @@ Message mode buffers.
@c Adjust ../Makefile.in if you change the following lines:
Message is distributed with Gnus. The Gnus distribution
@c
-corresponding to this manual is No Gnus v0.11.
+corresponding to this manual is No Gnus v0.12
@node Interface
commit a94a4433cb6d6234ec09412ec9dd39236b0fb092
Author: Lars Ingebrigtsen <[email protected]>
Date: Sun Feb 20 19:25:59 2011 -0800
No Gnus v0.11 is released
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dc5b50a..2797ff3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-02-21 Lars Magne Ingebrigtsen <[email protected]>
+
+ * gnus.el: No Gnus v0.11 is released.
+
2011-02-21 Lars Ingebrigtsen <[email protected]>
* gnus-sum.el (gnus-summary-next-article): Add a kludge to reselect the
commit 4bc04db8ab265897888955269bb5c7934624be79
Author: Lars Ingebrigtsen <[email protected]>
Date: Sun Feb 20 19:19:01 2011 -0800
Fix some errors.
diff --git a/makepub b/makepub
index d0aa4be..7e9228e 100755
--- a/makepub
+++ b/makepub
@@ -24,15 +24,18 @@ echo -e "$date Lars Magne Ingebrigtsen <[email protected]>\n\n\t* gnus.el:
cat lisp/ChangeLog >> /tmp/changelog
mv /tmp/changelog lisp/ChangeLog
-git commit -m "$name v$version is released"
+git commit -a -m "$name v$version is released"
# Then update the sources to the next version.
-sed "s/$name v0\.[0-9]*/$name v$version/" texi/gnus.texi > g.texi.tmp
+sed "s/$name v[.0-9]*/$name v$next_version/" texi/gnus.texi > g.texi.tmp
mv g.texi.tmp texi/gnus.texi
-sed "s/$name v0\.[0-9]*/$name v$version/" texi/message.texi > m.texi.tmp
+sed "s/$name v[.0-9]*/$name v$next_version/" texi/message.texi > m.texi.tmp
mv m.texi.tmp texi/message.texi
+sed "s/defconst gnus-version-number \"$version\"/defconst gnus-version-number \"$next_version\"/" lisp/gnus.el > g.el.tmp
+mv g.el.tmp lisp/gnus.el
tversion=`echo $next_version | sed 's/[.]/-/g'`
git tag -a "$initial$tversion" -m "$name v$next_version is begun"
+git commit -a -m "$name v$next_version is begun"
commit 09d2e34e3c89fbd38d41e8fad63fe49658bcb358
Author: Lars Ingebrigtsen <[email protected]>
Date: Sun Feb 20 19:13:03 2011 -0800
Check in the new git-based makepub.
diff --git a/makepub b/makepub
new file mode 100755
index 0000000..d0aa4be
--- /dev/null
+++ b/makepub
@@ -0,0 +1,38 @@
+#!/bin/bash
+name="No Gnus"
+
+if [ `whoami` != "larsi" ]; then
+ echo "This script is for larsi only"
+ exit
+fi
+
+# First do a release commit on the current version.
+
+version=`grep "defconst gnus-version-number" lisp/gnus.el | \
+ sed 's/[^.0-9]//g'`
+
+initial=`echo "$name" | sed 's/^\([A-Z]\).*/\1/g' | tr A-Z a-z`
+
+prefix=`echo $version | sed 's/^\(.*[.]\)\([0-9][0-9]*\)/\1/'`
+next_version=`echo $version | sed 's/^\(.*[.]\)\([0-9][0-9]*\)/\2/'`
+next_version=`expr $next_version + 1`
+next_version="$prefix$next_version"
+
+date=`TZ=Z date "+%Y-%m-%d"`
+echo -e "$date Lars Magne Ingebrigtsen <[email protected]>\n\n\t* gnus.el: $name v$version is released.\n"\
+ > /tmp/changelog
+cat lisp/ChangeLog >> /tmp/changelog
+mv /tmp/changelog lisp/ChangeLog
+
+git commit -m "$name v$version is released"
+
+# Then update the sources to the next version.
+
+sed "s/$name v0\.[0-9]*/$name v$version/" texi/gnus.texi > g.texi.tmp
+mv g.texi.tmp texi/gnus.texi
+sed "s/$name v0\.[0-9]*/$name v$version/" texi/message.texi > m.texi.tmp
+mv m.texi.tmp texi/message.texi
+
+tversion=`echo $next_version | sed 's/[.]/-/g'`
+
+git tag -a "$initial$tversion" -m "$name v$next_version is begun"
commit 6366c7315899e704ca34d84ebb9fe6947dea9ec2
Author: Lars Ingebrigtsen <[email protected]>
Date: Sun Feb 20 19:12:41 2011 -0800
Don't ignore makepub any more.
diff --git a/.gitignore b/.gitignore
index c41a7d1..ca21195 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,7 +5,6 @@
/config.status
/diff-lisp.el
/diffit
-/makepub
/cvs-access
/cup-page
/admin
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
.gitignore | 1 -
lisp/ChangeLog | 4 ++++
lisp/gnus.el | 2 +-
makepub | 41 +++++++++++++++++++++++++++++++++++++++++
texi/gnus.texi | 8 ++++----
texi/message.texi | 2 +-
6 files changed, 51 insertions(+), 7 deletions(-)
create mode 100755 makepub
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project