User: ben
Date: 05/09/25 17:04:50
Modified: xemacsweb/Download ChangeLog make-aux-readme
Log:
update make-aux-readme
make-aux-readme: Make the script actually copy the file to gwyn.
Revision Changes Path
1.163 +4 -0 XEmacs/xemacsweb/Download/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/Download/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -p -r1.162 -r1.163
--- ChangeLog 2005/09/25 14:48:16 1.162
+++ ChangeLog 2005/09/25 15:04:49 1.163
@@ -1,5 +1,9 @@
2005-09-25 Ben Wing <ben(a)xemacs.org>
+ * make-aux-readme: Make the script actually copy the file to gwyn.
+
+2005-09-25 Ben Wing <ben(a)xemacs.org>
+
* optLibs.content: Bring more-or-less up-to-date.
2005-06-13 Adrian Aichner <adrian(a)xemacs.org>
1.2 +11 -2 XEmacs/xemacsweb/Download/make-aux-readme
Index: make-aux-readme
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacsweb/Download/make-aux-readme,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- make-aux-readme 2005/01/24 02:42:27 1.1
+++ make-aux-readme 2005/09/25 15:04:49 1.2
@@ -1,9 +1,18 @@
#!/bin/sh
-echo "This page generated from xemacsweb/Download/optLibs.html using
+tmpfile=/tmp/$$.readme
+echo "Generating 00README.txt ..."
+(echo "This page generated from xemacsweb/Download/optLibs.html using
\`make-aux-readme' (lynx --dump --nolist).
Optional Libraries"
-lynx --dump --nolist optLibs.html | sed '1,/^Optional/d'
+lynx --dump --nolist optLibs.html | sed '1,/^Optional/d' ) > $tmpfile
+echo "Copying to gwyn ..."
+# This assumes that you have ssh access to
gwyn.tux.org and have
+# set up an alias called `gwyn' in your ~/.ssh/config file giving the
+# full hostname and proper user name.
+scp $tmpfile gwyn:/ftp/xemacs/aux/00README.txt
+rm $tmpfile
+echo "Done."