pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Update gftp to 2.0.17.
details: https://anonhg.NetBSD.org/pkgsrc/rev/ab1b8182b5b3
branches: trunk
changeset: 472118:ab1b8182b5b3
user: xtraeme <xtraeme%pkgsrc.org@localhost>
date: Mon Apr 05 02:45:44 2004 +0000
description:
Update gftp to 2.0.17.
Changes from 2.0.16 to 2.0.17:
* Separated out more of the UI independent code in the GTK+ and Text
ports and created a user interface common repository. Cleaned up
some of the existing GTK+ code. The GTK+ port can now be controlled
from a command line interface in the GUI. There is an option you
have to enable in the options dialog for this. (enable manual
commands in GUI)
* Added support for the FTPS protocol. The control connection is the
only one encrypted at the moment.
* When viewing/editing a file, the temporary file that is created is
created with the same extension as the remote file so that syntax
highlighting works
* File transfers can be resumed/skipped/overwritten in the text port
and whenever files are dropped on gftp in the GTK+ port.
* FTP: Added support for MVS directory listings
* FTP: Fix for FXP transfers
* SSH2: fix for resuming uploads
* Added option to show the transfer status in the title bar.
* Added option to disable IPV6 support.
* Fixed the wrong date being displayed when a file was modified last year
* 64 bit cleanups. This also fixed a SSH segfault that was happening
on FreeBSD
* Look for the .gmo translation files in the proper directory
* If a bookmarked site has it's password saved in the config file, then
the passwords are written out in a scrambled format. This isn't
secure, but it'll prevent someone from casually looking over your
shoulder and seeing your password. I still do not recommend saving
your passwords to disk.
* Fix for systems that do not support the %'ld format argument
* The startup directory option is now expanded so that an option like
~/src can be specified
* New language translations and updates (ca cs de ga hr hu nl pt_BR
sr sr@Latn ta th)
* Many other small changes and improvements. See the ChangeLog file in
the distribution for a detailed list of changes.
diffstat:
doc/CHANGES | 4 +++-
doc/TODO | 3 +--
net/gftp-gtk1/Makefile | 3 +--
net/gftp/Makefile | 3 +--
net/gftp/Makefile.common | 6 +++---
net/gftp/PLIST | 5 ++++-
net/gftp/distinfo | 6 +++---
7 files changed, 16 insertions(+), 14 deletions(-)
diffs (119 lines):
diff -r 438b77c63217 -r ab1b8182b5b3 doc/CHANGES
--- a/doc/CHANGES Mon Apr 05 02:31:06 2004 +0000
+++ b/doc/CHANGES Mon Apr 05 02:45:44 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.5442 2004/04/05 02:31:06 xtraeme Exp $
+$NetBSD: CHANGES,v 1.5443 2004/04/05 02:45:44 xtraeme Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -1777,3 +1777,5 @@
Updated gtk2-engines to 2.2.0nb7 [recht 2004-04-04]
Updated TeXmacs to 1.0.3.6 [recht 2004-04-04]
Updated lua to 5.0.2 [xtraeme 2004-04-05]
+ Updated gftp to 2.0.17 [xtraeme 2004-04-05]
+ Updated gftp-gtk1 to 2.0.17 [xtraeme 2004-04-05]
diff -r 438b77c63217 -r ab1b8182b5b3 doc/TODO
--- a/doc/TODO Mon Apr 05 02:31:06 2004 +0000
+++ b/doc/TODO Mon Apr 05 02:45:44 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: TODO,v 1.1573 2004/04/05 02:31:06 xtraeme Exp $
+$NetBSD: TODO,v 1.1574 2004/04/05 02:45:44 xtraeme Exp $
Suggested new packages
======================
@@ -191,7 +191,6 @@
o gdb-6.0
o generator-0.35
o gettext-0.14.1
- o gftp-2.0.17
o ghostscript-8.00 (apfl)
o ghostscript-8.01 (gnu)
o gimageview-0.2.25
diff -r 438b77c63217 -r ab1b8182b5b3 net/gftp-gtk1/Makefile
--- a/net/gftp-gtk1/Makefile Mon Apr 05 02:31:06 2004 +0000
+++ b/net/gftp-gtk1/Makefile Mon Apr 05 02:45:44 2004 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2004/03/26 02:27:47 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2004/04/05 02:45:45 xtraeme Exp $
.include "${.CURDIR}/../gftp/Makefile.common"
PKGNAME= gftp-gtk1-${VERSION}
-PKGREVISION= 1
COMMENT= Multithreaded GTK+ ftp client
DEPENDS+= gnome1-dirs>=1.0:../../misc/gnome1-dirs
diff -r 438b77c63217 -r ab1b8182b5b3 net/gftp/Makefile
--- a/net/gftp/Makefile Mon Apr 05 02:31:06 2004 +0000
+++ b/net/gftp/Makefile Mon Apr 05 02:45:44 2004 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.18 2004/03/26 02:27:47 wiz Exp $
+# $NetBSD: Makefile,v 1.19 2004/04/05 02:45:45 xtraeme Exp $
#
.include "${.CURDIR}/Makefile.common"
-PKGREVISION= 4
COMMENT= Multithreaded GTK2+ ftp client
diff -r 438b77c63217 -r ab1b8182b5b3 net/gftp/Makefile.common
--- a/net/gftp/Makefile.common Mon Apr 05 02:31:06 2004 +0000
+++ b/net/gftp/Makefile.common Mon Apr 05 02:45:44 2004 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile.common,v 1.4 2004/03/08 19:40:41 jmmv Exp $
+# $NetBSD: Makefile.common,v 1.5 2004/04/05 02:45:45 xtraeme Exp $
DISTNAME= gftp-${VERSION}
CATEGORIES= net
-MASTER_SITES= http://gftp.seul.org/ \
+MASTER_SITES= http://gftp.seul.org/ \
ftp://gftp.seul.org/
EXTRACT_SUFX= .tar.bz2
@@ -20,7 +20,7 @@
CONFIGURE_ARGS+= --with-readline
-VERSION= 2.0.16
+VERSION= 2.0.17
.include "../../mk/bsd.prefs.mk"
diff -r 438b77c63217 -r ab1b8182b5b3 net/gftp/PLIST
--- a/net/gftp/PLIST Mon Apr 05 02:31:06 2004 +0000
+++ b/net/gftp/PLIST Mon Apr 05 02:45:44 2004 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2004/01/14 12:52:53 tron Exp $
+@comment $NetBSD: PLIST,v 1.8 2004/04/05 02:45:45 xtraeme Exp $
bin/gftp
bin/gftp-gtk
bin/gftp-text
@@ -46,6 +46,7 @@
${PKGLOCALEDIR}/locale/es/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/fi/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/gftp.mo
+${PKGLOCALEDIR}/locale/ga/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/hr/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/it/LC_MESSAGES/gftp.mo
@@ -65,6 +66,8 @@
${PKGLOCALEDIR}/locale/sr/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/sr@Latn/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gftp.mo
+${PKGLOCALEDIR}/locale/ta/LC_MESSAGES/gftp.mo
+${PKGLOCALEDIR}/locale/th/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/uk/LC_MESSAGES/gftp.mo
${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/gftp.mo
diff -r 438b77c63217 -r ab1b8182b5b3 net/gftp/distinfo
--- a/net/gftp/distinfo Mon Apr 05 02:31:06 2004 +0000
+++ b/net/gftp/distinfo Mon Apr 05 02:45:44 2004 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2003/12/13 11:49:39 xtraeme Exp $
+$NetBSD: distinfo,v 1.6 2004/04/05 02:45:45 xtraeme Exp $
-SHA1 (gftp-2.0.16.tar.bz2) = 9ba5c28c6d5f7dc9f59620ddaf7359a2c01b865c
-Size (gftp-2.0.16.tar.bz2) = 1102827 bytes
+SHA1 (gftp-2.0.17.tar.bz2) = beeb1edfac3aa5b9b7a4a02d0a0a3ed374fc2ce0
+Size (gftp-2.0.17.tar.bz2) = 1228736 bytes
Home |
Main Index |
Thread Index |
Old Index