Mercurial > gftp.yaz
changeset 400:398fcbad832b
2004-2-15 Brian Masney <masneyb@gftp.org>
* debian/changelog debian/copyright debian/gftp-text.postinst
debian/gftp-text.prerm - updated Debian packaging files from
Aurelien Jarno <aurelien@aurel32.net>
author | masneyb |
---|---|
date | Sun, 15 Feb 2004 18:07:08 +0000 |
parents | e97f1fb92539 |
children | 3bb0cb1b8389 |
files | ChangeLog debian/changelog debian/copyright debian/gftp-text.postinst |
diffstat | 4 files changed, 92 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sun Feb 15 17:53:34 2004 +0000 +++ b/ChangeLog Sun Feb 15 18:07:08 2004 +0000 @@ -1,4 +1,8 @@ 2004-2-15 Brian Masney <masneyb@gftp.org> + * debian/changelog debian/copyright debian/gftp-text.postinst + debian/gftp-text.prerm - updated Debian packaging files from + Aurelien Jarno <aurelien@aurel32.net> + * lib/sshv2.c (sshv2_put_file) - fix for resuming SSHv2 uploads * src/text/gftp-text.c - fixed compiler error when being compiled @@ -2196,7 +2200,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.221 2004/02/15 17:53:33 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.222 2004/02/15 18:07:07 masneyb Exp $ tags * debian/* - updated files from Debian maintainer
--- a/debian/changelog Sun Feb 15 17:53:34 2004 +0000 +++ b/debian/changelog Sun Feb 15 18:07:08 2004 +0000 @@ -1,3 +1,48 @@ +gftp (2.0.16-7) unstable; urgency=low + + * Added a patch to keep the filename's extension in the temporary + filename created when viewing a remote file (closes: bug#232053). + * Patch pulled from CVS: ability to enable/disable IPv6 (closes: bug#232274). + * Added an alternative for the ftp command which point to gftp-text. + + -- Aurelien Jarno <aurel32@debian.org> Sat, 14 Feb 2004 08:35:13 +0100 + +gftp (2.0.16-6) unstable; urgency=low + + * Replace latest patch (anonymous FTP connections) with the one from the + CVS. + + -- Aurelien Jarno <aurel32@debian.org> Tue, 20 Jan 2004 01:16:11 +0100 + +gftp (2.0.16-5) unstable; urgency=low + + * Allow password to be specified for anonymous FTP connections + (closes: bug#226924). + + -- Aurelien Jarno <aurel32@debian.org> Mon, 12 Jan 2004 00:00:54 +0100 + +gftp (2.0.16-4) unstable; urgency=low + + * Doesn't double slashes in HTTP GET requests (closes: bug#224401). + * Updated copyright. + + -- Aurelien Jarno <aurel32@debian.org> Thu, 18 Dec 2003 23:15:02 +0100 + +gftp (2.0.16-3) unstable; urgency=low + + * Don't allow dropping a bookmark onto the root node, or onto a node + which is not a folder. (closes: bug#223996). + + -- Aurelien Jarno <aurel32@debian.org> Mon, 15 Dec 2003 00:59:21 +0100 + +gftp (2.0.16-2) unstable; urgency=low + + * Patch pulled from CVS: default action is overwrite when the destination + file is greater than the source file (closes: bug#173158). + * Added a patch to store password in scrambled form (closes: bug#196784). + + -- Aurelien Jarno <aurel32@debian.org> Wed, 10 Dec 2003 23:25:08 +0100 + gftp (2.0.16-1) unstable; urgency=low * New upstream release.
--- a/debian/copyright Sun Feb 15 17:53:34 2004 +0000 +++ b/debian/copyright Sun Feb 15 18:07:08 2004 +0000 @@ -4,10 +4,23 @@ It was downloaded from http://www.gftp.org/ -Upstream Author: Brian Masney <masneyb@gftp.org> +Authors: Brian Masney <masneyb@gftp.org> + +Copyright 1998-2003 Brian Masney -Copyright: + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. -You are free to distribute this software under the terms of the GNU General -Public License. On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + +On Debian systems, the complete text of the GNU General Public License can +be found in the `/usr/share/common-licenses/GPL' file.
--- a/debian/gftp-text.postinst Sun Feb 15 17:53:34 2004 +0000 +++ b/debian/gftp-text.postinst Sun Feb 15 18:07:08 2004 +0000 @@ -1,6 +1,27 @@ #!/bin/sh +# postinst script for gftp-text + +set -e + +case "$1" in + configure|abort-upgrade) + update-alternatives --install /usr/bin/ftp ftp /usr/bin/gftp-text 100 \ + --slave /usr/share/man/man1/ftp.1.gz ftp.1.gz /usr/share/man/man1/gftp.1.gz -update-alternatives \ - --install /usr/bin/ftp ftp /usr/bin/gftp-text 100 \ - --slave /usr/share/man/man1/ftp.1.gz ftp.1.gz /usr/share/man/man1/gftp.1.gz + ;; + abort-remove|abort-deconfigure) + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 +