[arch-commits] Commit in filezilla/repos (8 files)

Evangelos Foutras foutrelis at archlinux.org
Tue Apr 14 00:04:01 UTC 2015


    Date: Tuesday, April 14, 2015 @ 02:04:01
  Author: foutrelis
Revision: 131322

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  filezilla/repos/community-staging-i686/
  filezilla/repos/community-staging-i686/PKGBUILD
    (from rev 131321, filezilla/trunk/PKGBUILD)
  filezilla/repos/community-staging-i686/filezilla.install
    (from rev 131321, filezilla/trunk/filezilla.install)
  filezilla/repos/community-staging-i686/fix-missing-include-fz-bug-10280.patch
    (from rev 131321, filezilla/trunk/fix-missing-include-fz-bug-10280.patch)
  filezilla/repos/community-staging-x86_64/
  filezilla/repos/community-staging-x86_64/PKGBUILD
    (from rev 131321, filezilla/trunk/PKGBUILD)
  filezilla/repos/community-staging-x86_64/filezilla.install
    (from rev 131321, filezilla/trunk/filezilla.install)
  filezilla/repos/community-staging-x86_64/fix-missing-include-fz-bug-10280.patch
    (from rev 131321, filezilla/trunk/fix-missing-include-fz-bug-10280.patch)

-----------------------------------------------------------------+
 community-staging-i686/PKGBUILD                                 |   40 ++++++++++
 community-staging-i686/filezilla.install                        |   11 ++
 community-staging-i686/fix-missing-include-fz-bug-10280.patch   |   39 +++++++++
 community-staging-x86_64/PKGBUILD                               |   40 ++++++++++
 community-staging-x86_64/filezilla.install                      |   11 ++
 community-staging-x86_64/fix-missing-include-fz-bug-10280.patch |   39 +++++++++
 6 files changed, 180 insertions(+)

Copied: filezilla/repos/community-staging-i686/PKGBUILD (from rev 131321, filezilla/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2015-04-14 00:04:01 UTC (rev 131322)
@@ -0,0 +1,40 @@
+# $Id$
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+# Maintainer: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=filezilla
+pkgver=3.10.2
+pkgrel=2
+pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
+arch=('i686' 'x86_64')
+url="http://filezilla-project.org/"
+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"
+        "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 \
+    --prefix=/usr \
+    --disable-manualupdatecheck \
+    --disable-autoupdatecheck \
+    --disable-static \
+    --with-tinyxml=builtin
+
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}
+md5sums=('b2eb584efd76e61de2cb62fbe11f3a14'
+         'b47472aada7d2499ce8e8237555fee51')

Copied: filezilla/repos/community-staging-i686/filezilla.install (from rev 131321, filezilla/trunk/filezilla.install)
===================================================================
--- community-staging-i686/filezilla.install	                        (rev 0)
+++ community-staging-i686/filezilla.install	2015-04-14 00:04:01 UTC (rev 131322)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: filezilla/repos/community-staging-i686/fix-missing-include-fz-bug-10280.patch (from rev 131321, filezilla/trunk/fix-missing-include-fz-bug-10280.patch)
===================================================================
--- community-staging-i686/fix-missing-include-fz-bug-10280.patch	                        (rev 0)
+++ community-staging-i686/fix-missing-include-fz-bug-10280.patch	2015-04-14 00:04:01 UTC (rev 131322)
@@ -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

Copied: filezilla/repos/community-staging-x86_64/PKGBUILD (from rev 131321, filezilla/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2015-04-14 00:04:01 UTC (rev 131322)
@@ -0,0 +1,40 @@
+# $Id$
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+# Maintainer: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=filezilla
+pkgver=3.10.2
+pkgrel=2
+pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
+arch=('i686' 'x86_64')
+url="http://filezilla-project.org/"
+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"
+        "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 \
+    --prefix=/usr \
+    --disable-manualupdatecheck \
+    --disable-autoupdatecheck \
+    --disable-static \
+    --with-tinyxml=builtin
+
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}
+md5sums=('b2eb584efd76e61de2cb62fbe11f3a14'
+         'b47472aada7d2499ce8e8237555fee51')

Copied: filezilla/repos/community-staging-x86_64/filezilla.install (from rev 131321, filezilla/trunk/filezilla.install)
===================================================================
--- community-staging-x86_64/filezilla.install	                        (rev 0)
+++ community-staging-x86_64/filezilla.install	2015-04-14 00:04:01 UTC (rev 131322)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: filezilla/repos/community-staging-x86_64/fix-missing-include-fz-bug-10280.patch (from rev 131321, filezilla/trunk/fix-missing-include-fz-bug-10280.patch)
===================================================================
--- community-staging-x86_64/fix-missing-include-fz-bug-10280.patch	                        (rev 0)
+++ community-staging-x86_64/fix-missing-include-fz-bug-10280.patch	2015-04-14 00:04:01 UTC (rev 131322)
@@ -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