[arch-commits] Commit in filezilla/trunk (2 files)

Florian Pritz bluewind at archlinux.org
Tue Mar 3 20:23:30 UTC 2015


    Date: Tuesday, March 3, 2015 @ 21:23:30
  Author: bluewind
Revision: 128664

upgpkg: filezilla 3.10.2-1

upstream update

Added:
  filezilla/trunk/fix-missing-include-fz-bug-10280.patch
Modified:
  filezilla/trunk/PKGBUILD

----------------------------------------+
 PKGBUILD                               |   13 +++++++---
 fix-missing-include-fz-bug-10280.patch |   39 +++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2015-03-03 20:23:16 UTC (rev 128663)
+++ PKGBUILD	2015-03-03 20:23:30 UTC (rev 128664)
@@ -3,7 +3,7 @@
 # Maintainer: Daniel J Griffiths <ghost1227 at archlinux.us>
 
 pkgname=filezilla
-pkgver=3.10.1.1
+pkgver=3.10.2
 pkgrel=1
 pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
 arch=('i686' 'x86_64')
@@ -11,8 +11,14 @@
 license=('GPL')
 depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite' 'gnutls')
 install=filezilla.install
-source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2")
+source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2"
+        "fix-missing-include-fz-bug-10280.patch")
 
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -p2 -i "$srcdir/fix-missing-include-fz-bug-10280.patch"
+}
+
 build() {
   cd "${pkgname}-${pkgver}"
   ./configure \
@@ -30,4 +36,5 @@
 
   make DESTDIR="${pkgdir}" install
 }
-md5sums=('5cefd40699388d66d27c0b04bd3e3f40')
+md5sums=('b2eb584efd76e61de2cb62fbe11f3a14'
+         'b47472aada7d2499ce8e8237555fee51')

Added: fix-missing-include-fz-bug-10280.patch
===================================================================
--- fix-missing-include-fz-bug-10280.patch	                        (rev 0)
+++ fix-missing-include-fz-bug-10280.patch	2015-03-03 20:23:30 UTC (rev 128664)
@@ -0,0 +1,39 @@
+--- FileZilla3/trunk/src/interface/Mainfrm.h	2015/03/02 20:28:30	6542
++++ FileZilla3/trunk/src/interface/Mainfrm.h	2015/03/03 15:54:36	6543
+@@ -1,13 +1,18 @@
+ #ifndef __MAINFRM_H__
+ #define __MAINFRM_H__
+ 
++#include "statusbar.h"
++#include "engine_context.h"
++
++#include "wx/timer.h"
++
+ #ifndef __WXMAC__
+ #include <wx/taskbar.h>
+ #endif
+ 
+-#include "statusbar.h"
+-
+-#include "engine_context.h"
++#if FZ_MANUALUPDATECHECK
++#include "updater.h"
++#endif
+ 
+ class CAsyncRequestQueue;
+ class CContextControl;
+@@ -25,13 +30,7 @@
+ class CToolBar;
+ class CWindowStateManager;
+ 
+-
+-#if FZ_MANUALUPDATECHECK
+-#include "updater.h"
+-#endif
+-class CWindowStateManager;
+-
+-class CMainFrame : public wxNavigationEnabled<wxFrame>
++class CMainFrame final : public wxNavigationEnabled<wxFrame>
+ #if FZ_MANUALUPDATECHECK
+ 	, protected CUpdateHandler
+ #endif



More information about the arch-commits mailing list