Mercurial > gftp.yaz
changeset 575:e0e167f428ec
2004-9-29 Brian Masney <masneyb@gftp.org>
* docs/website/index.html.in - added CVS Id tag to the bottom of the
page
* docs/website/update-gftp-cvs.sh - added script to autobuild a tarball
from the latest CVS code
author | masneyb |
---|---|
date | Wed, 29 Sep 2004 23:15:13 +0000 |
parents | 81b957b00691 |
children | ecdeadd9b68b |
files | ChangeLog docs/website/index.html.in docs/website/update-gftp-cvs.sh |
diffstat | 3 files changed, 28 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Wed Sep 29 22:59:06 2004 +0000 +++ b/ChangeLog Wed Sep 29 23:15:13 2004 +0000 @@ -1,4 +1,10 @@ 2004-9-29 Brian Masney <masneyb@gftp.org> + * docs/website/index.html.in - added CVS Id tag to the bottom of the + page + + * docs/website/update-gftp-cvs.sh - added script to autobuild a tarball + from the latest CVS code + * lib/sshv2.c (sshv2_set_config_options) set the request->need_password to be the value of the option ssh_need_userpass @@ -2902,7 +2908,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.336 2004/09/29 22:59:06 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.337 2004/09/29 23:15:13 masneyb Exp $ tags * debian/* - updated files from Debian maintainer
--- a/docs/website/index.html.in Wed Sep 29 22:59:06 2004 +0000 +++ b/docs/website/index.html.in Wed Sep 29 23:15:13 2004 +0000 @@ -72,6 +72,7 @@ <P> Brian Masney <A HREF="mailto:masneyb@gftp.org">masneyb@gftp.org</A><BR> -Morgantown, WV USA +Morgantown, WV USA<BR> +$Id: index.html.in,v 1.9 2004/09/29 23:15:13 masneyb Exp $ </P> </FONT></BODY></HTML>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/website/update-gftp-cvs.sh Wed Sep 29 23:15:13 2004 +0000 @@ -0,0 +1,19 @@ +#!/bin/sh +# $Id$ + +GFTP_DIR=~/gftp +LATEST_TAR=gftp-test.tar +DEST_DIR=/home/gftp/public_html + +cd $GFTP_DIR +$GFTP_DIR/cvsclean +rm $GFTP_DIR/po/*.{po,gmo} $GFTP_DIR/po/ChangeLog $GFTP_DIR/ChangeLog $GFTP_DIR/configure.in $GFTP_DIR/Makefile.am +cvs -z3 up +VERSION=`cat $GFTP_DIR/configure.in | grep ^AM_INIT_AUTOMAKE | awk -F, '{print $2}' | sed s/\)//` +touch $GFTP_DIR/NEWS $GFTP_DIR/AUTHORS +$GFTP_DIR/autogen.sh +make dist +mv $GFTP_DIR/gftp-$VERSION.tar.gz $GFTP_DIR/$LATEST_TAR.gz +gunzip $GFTP_DIR/$LATEST_TAR.gz +bzip2 $GFTP_DIR/$LATEST_TAR +mv $LATEST_TAR.bz2 $DEST_DIR