1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

ftp/filezilla: update to 3.14.0

PR:		202761
Submitted by:	matthew@reztek.cz (maintainer)
This commit is contained in:
Ruslan Makhmatkhanov 2015-09-26 11:56:16 +00:00
parent eaf7f32d4b
commit ce1853bf02
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=397962
5 changed files with 3 additions and 68 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= filezilla
PORTVERSION= 3.13.0
PORTVERSION= 3.14.0
CATEGORIES= ftp
MASTER_SITES= SF/${PORTNAME}/FileZilla_Client/${PORTVERSION}
DISTNAME= FileZilla_${PORTVERSION}_src

View File

@ -1,2 +1,2 @@
SHA256 (FileZilla_3.13.0_src.tar.bz2) = e6c21b41b1318d0d75273aca94cfda3039c9847bdb5adc4b9d480ecdcdfa4fc7
SIZE (FileZilla_3.13.0_src.tar.bz2) = 4542742
SHA256 (FileZilla_3.14.0_src.tar.bz2) = 92385ab4f30bc7e5e457d6a3310645cc6c4bd0e83a78e12c33f2778b73d579fd
SIZE (FileZilla_3.14.0_src.tar.bz2) = 4415005

View File

@ -1,11 +0,0 @@
--- src/interface/Makefile.am.orig 2015-07-31 03:30:02 UTC
+++ src/interface/Makefile.am
@@ -155,7 +155,7 @@ noinst_HEADERS = aboutdialog.h \
filter_conditions_dialog.h \
filteredit.h \
file_utils.h \
- fzputtygen_interface.cpp \
+ fzputtygen_interface.h \
import.h \
inputdialog.h \
ipcmutex.h \

View File

@ -1,11 +0,0 @@
--- src/interface/Makefile.in.orig 2015-08-18 16:03:24 UTC
+++ src/interface/Makefile.in
@@ -630,7 +630,7 @@ noinst_HEADERS = aboutdialog.h \
filter_conditions_dialog.h \
filteredit.h \
file_utils.h \
- fzputtygen_interface.cpp \
+ fzputtygen_interface.h \
import.h \
inputdialog.h \
ipcmutex.h \

View File

@ -1,43 +0,0 @@
--- src/interface/fzputtygen_interface.h.orig 2015-08-18 16:02:52 UTC
+++ src/interface/fzputtygen_interface.h
@@ -0,0 +1,40 @@
+#ifndef FILEZILLA_FZPUTTYGEN_INTERFACE_HEADER
+#define FILEZILLA_FZPUTTYGEN_INTERFACE_HEADER
+
+#include <wx/process.h>
+
+class CFZPuttyGenInterface
+{
+public:
+ CFZPuttyGenInterface(wxWindow* parent);
+ virtual ~CFZPuttyGenInterface();
+ bool LoadKeyFile(wxString& keyFile, bool silent, wxString& comment, wxString& data);
+
+ void EndProcess();
+ void DeleteProcess();
+ bool IsProcessCreated();
+ bool IsProcessStarted();
+
+protected:
+ // return -1 on error
+ int NeedsConversion(wxString keyFile, bool silent);
+
+ // return -1 on error
+ int IsKeyFileEncrypted(wxString keyFile, bool silent);
+
+ wxProcess* m_pProcess{};
+ bool m_initialized{};
+ wxWindow* m_parent;
+
+ enum ReplyCode {
+ success,
+ error,
+ failure
+ };
+
+ bool LoadProcess(bool silent);
+ bool Send(const wxString& cmd);
+ ReplyCode GetReply(wxString& reply);
+};
+
+#endif /* FILEZILLA_FZPUTTYGEN_INTERFACE_HEADER */