Merge pull request #1120 from alihanozturk/master

filezilla add main, index
This commit is contained in:
Ertuğrul Erata
2016-01-26 21:38:22 +02:00
9 changed files with 105428 additions and 105346 deletions
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>network.ftp</Name>
</PISI>
+32
View File
@@ -0,0 +1,32 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
#shelltools.export("WXRC", "/usr/bin/wxrc")
#shelltools.export("LDFLAGS", "%s -lpthread" % get.LDFLAGS())
#pisitools.dosed("data/filezilla.desktop", "Icon=filezilla", "Icon=/usr/share/pixmaps/filezilla.png")
autotools.configure("--disable-static \
--disable-manualupdatecheck \
--disable-autoupdatecheck \
--with-pugixml=builtin \
--prefix=/usr ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# move fzdefaults.xml.example to /usr/share/filezilla
pisitools.domove("/usr/share/filezilla/docs/fzdefaults.xml.example", "/usr/share/filezilla")
pisitools.removeDir("/usr/share/filezilla/docs")
pisitools.dodoc("ChangeLog", "README", "AUTHORS")
@@ -0,0 +1,14 @@
--- data/filezilla.desktop.orig 2009-03-21 21:32:16.000000000 +0200
+++ data/filezilla.desktop 2009-03-22 00:02:49.000000000 +0200
@@ -3,9 +3,11 @@
GenericName=FTP client
GenericName[de]=FTP-Client
GenericName[fr]=Client FTP
+GenericName[tr]=FTP istemcisi
Comment=Download and upload files via FTP, FTPS and SFTP
Comment[de]=Dateien über FTP, FTPS und SFTP übertragen
Comment[fr]=Transférer des fichiers via FTP, FTPS et SFTP
+Comment[tr]=Dosyaları ftp, sftp, ftps ile gönderin ve indirin
Exec=filezilla
Terminal=false
Icon=filezilla
+107
View File
@@ -0,0 +1,107 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>filezilla</Name>
<Homepage>http://filezilla-project.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>filezilla</Icon>
<IsA>app:gui</IsA>
<Summary>Simple FTP Client</Summary>
<Description>Easy-to-use FTP Client which also supports SFTP.</Description>
<Archive sha1sum="c36f0d7089b94241bccfebc7ac5d6b42a7fe0c54" type="tarbz2">mirrors://sourceforge/filezilla/FileZilla_3.14.1_src.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libidn-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>gnutls-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>xdg-utils</Dependency>
<Dependency>wxGTK-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="0">i18n-filezilla.desktop.patch</Patch>
</Patches>
</Source>
<Package>
<Name>filezilla</Name>
<RuntimeDependencies>
<Dependency>wxGTK</Dependency>
<Dependency>dbus</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>gnutls</Dependency>
<Dependency>xdg-utils</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/filezilla</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/appdata/</Path>
</Files>
</Package>
<History>
<Update release="7">
<Date>2016-01-26</Date>
<Version>3.14.1</Version>
<Comment>Version bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2015-09-23</Date>
<Version>3.14.0</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="5">
<Date>2015-01-31</Date>
<Version>3.10.1</Version>
<Comment>Version bump.</Comment>
<Name>Hakan Yıldız</Name>
<Email>hknyldz93@gmail.com</Email>
</Update>
<Update release="4">
<Date>2014-02-15</Date>
<Version>3.8.1</Version>
<Comment>V.Bump</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-02-15</Date>
<Version>3.7.4.1</Version>
<Comment>V.Bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-08-17</Date>
<Version>3.7.3</Version>
<Comment>V.Bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-09</Date>
<Version>3.6.0.2</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>filezilla</Name>
<Summary xml:lang="tr">FTP ve SFTP istemcisi</Summary>
<Description xml:lang="tr">Filezilla; dosyalarınızı ftp, sftp, ftps ile göndermenize ve indirmenize yarar</Description>
</Source>
</PISI>
+105262 -105344
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
ca6bc2b8096de58c2c37f211cf92b33cd3c06de7
160854325e55e02708c60c7d6628807a131d0cfe
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
475ca0d15e745d591a955b9edd10352cba628970
2b2e89c45e4acbdb803d80a007b736833c2f0d72