1 new commit in riece:
https://bitbucket.org/xemacs/riece/commits/c5444c452cbe/
Changeset: c5444c452cbe
User: Jerry James
Date: 2014-05-13 21:54:51
Summary: Migrate .cvsignore files to a single .hgignore file.
In addition:
- Restore CVS keyword expansions that were lost during the switch to Mercurial
- Update texinfo sources for texinfo 5.x
See <CAHCOHQmqMvFtLqEt6M+w4vFyq9=e+i1Uy8zaQcUeAjeV3F9uWQ(a)mail.gmail.com> in
xemacs-patches and followups for details.
Affected #: 9 files
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 .cvsignore
--- a/.cvsignore
+++ /dev/null
@@ -1,9 +0,0 @@
-install-sh
-mkinstalldirs
-missing
-Makefile.in
-aclocal.m4
-configure
-config.log
-config.status
-config.cache
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 .hgignore
--- /dev/null
+++ b/.hgignore
@@ -0,0 +1,25 @@
+^#\..*#$
+^\.#
+~$
+\.elc$
+\.info$
+^Makefile\.in$
+^aclocal.m4$
+^config\.cache$
+^config\.log$
+^config\.status$
+^configure$
+^doc/Makefile(\.in)?$
+^doc/texinfo\.tex$
+^install-sh$
+^missing$
+^mkinstalldirs$
+^lisp/_pkg\.el$
+^lisp/Makefile(\.in)$
+^lisp/auto-autoloads\.el$
+^lisp/custom-defines\.el$
+^lisp/custom-load\.el$
+^lisp/lunit-report\.xml$
+^lisp/test/Makefile(\.in)$
+^package-info$
+^pdepends\.mk$
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2014-05-13 Jerry James <james(a)xemacs.org>
+
+ * .cvsignore: Remove.
+ * doc/.cvsignore: Remove.
+ * lisp/.cvsignore: Remove.
+ * lisp/test/.cvsignore: Remove.
+ * .hgignore: New file.
+ * doc/irchat-copyright.el: Restore CVS keyword expansions.
+ * doc/riece-en.texi: Update for texinfo 5.x.
+ * doc/riece-ja.texi: Ditto.
+
2007-03-20 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.23 released.
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 doc/.cvsignore
--- a/doc/.cvsignore
+++ /dev/null
@@ -1,4 +0,0 @@
-Makefile.in
-Makefile
-texinfo.tex
-*.info*
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 doc/irchat-copyright.el
--- a/doc/irchat-copyright.el
+++ b/doc/irchat-copyright.el
@@ -1,9 +1,9 @@
;;; -*- emacs-lisp -*-
;;;
-;;; $Id$
+;;; $Id: irchat-copyright.el,v 1.7 2007-03-19 09:52:59 daiki Exp $
;;;
(defvar irchat-copyright "
- $Id$
+ $Id: irchat-copyright.el,v 1.7 2007-03-19 09:52:59 daiki Exp $
Internet Relay CHAT interface for GNU Emacs
Copyright (C) 1989 Tor Lillqvist
@@ -48,7 +48,10 @@
" "Basically GPL")
;;;
-;;; $Log$
+;;; $Log: irchat-copyright.el,v $
+;;; Revision 1.7 2007-03-19 09:52:59 daiki
+;;; Sync riece with upstream version 3.1.2
+;;;
;;; Revision 1.1 2003/10/22 20:07:07 ueno
;;; (EXTRA_DIST) Add irchat-copyright.el.
;;;
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 doc/riece-en.texi
--- a/doc/riece-en.texi
+++ b/doc/riece-en.texi
@@ -11,7 +11,7 @@
* Riece-en: (riece-en). An IRC client for Emacsen
@end direntry
-@ifinfo
+@ifnottex
This file describes Riece.
Copyright (C) 2003,2004,2005 Daiki Ueno.
@@ -22,7 +22,7 @@
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
Texts. A copy of the license is included in the section entitled "GNU
Free Documentation License".
-@end ifinfo
+@end ifnottex
@tex
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 doc/riece-ja.texi
--- a/doc/riece-ja.texi
+++ b/doc/riece-ja.texi
@@ -11,7 +11,7 @@
* Riece-ja: (riece-ja). An IRC client for Emacsen
@end direntry
-@ifinfo
+@ifnottex
This file describes Riece.
Copyright (C) 2003,2004,2005,2006 Daiki Ueno.
@@ -22,7 +22,7 @@
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
Texts. A copy of the license is included in the section entitled "GNU
Free Documentation License".
-@end ifinfo
+@end ifnottex
@tex
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 lisp/.cvsignore
--- a/lisp/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-Makefile.in
-Makefile
-auto-autoloads.el
-custom-load.el
-lunit-report.xml
diff -r f0fbad2e1eb3e336cdcaf3b7f091c670e4a119e7 -r
c5444c452cbec03c9b4a51a4474a764551b08314 lisp/test/.cvsignore
--- a/lisp/test/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile.in
-Makefile
Repository URL:
https://bitbucket.org/xemacs/riece/
--
This is a commit notification from
bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
XEmacs-Patches mailing list
XEmacs-Patches(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-patches