annotate netinstall/version.pl @ 3013:ae52b2073aa3

[xemacs-hg @ 2005-10-23 16:56:43 by adrian] xemacs-21.5-clean: Sync packages mirrors list with website -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2005-10-23 Adrian Aichner <adrian@xemacs.org> * package-get.el (package-get-download-sites): Sync packages mirrors list with website, based on Ville's work. * package-get.el (package-get-pre-release-download-sites): Sync with `package-get-download-sites'.
author adrian
date Sun, 23 Oct 2005 16:56:45 +0000
parents 3078fd1074e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
1 while (<STDIN>) {
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
2 if (/^\$Revision:\s*([0-9\.]*)/) {
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
3 print "char *version = \"$1\";\n";
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
4 print "static char *id = \"\\n%%% setup-version $1\\n\";\n";
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
5 }
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
6 }