This commit is contained in:
bferturk
2016-09-06 18:00:54 +03:00
parent be52d67877
commit 800c3cf79b
8 changed files with 693 additions and 2 deletions
+41
View File
@@ -0,0 +1,41 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
autotools.autoreconf("-vfi")
autotools.configure("\
--with-dbus-service-dir=/usr/share/dbus-1/services \
--disable-hal \
--disable-silent-rules \
--disable-static \
--enable-afc \
--enable-archive \
--enable-bash-completion \
--enable-bluray \
--enable-gphoto2 \
--enable-gtk=3 \
--enable-keyring \
--enable-samba \
--enable-udev \
--enable-udisks2 \
")
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.copy("daemon/trashlib/COPYING", "COPYING.GPL3")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS", "README")
@@ -0,0 +1,49 @@
diff -up gvfs-1.3.2/Makefile.am.archive-integration gvfs-1.3.2/Makefile.am
--- gvfs-1.3.2/Makefile.am.archive-integration 2009-06-25 19:55:39.000000000 -0400
+++ gvfs-1.3.2/Makefile.am 2009-07-13 22:51:52.480693853 -0400
@@ -1,5 +1,19 @@
NULL =
+@INTLTOOL_DESKTOP_RULE@
+
+desktop_in_files = mount-archive.desktop.in
+
+mount-archive.desktop.in: mount-archive.desktop.in.in
+ sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
+
+desktopdir = $(datadir)/applications
+if HAVE_ARCHIVE
+desktop_DATA = mount-archive.desktop
+else
+desktop_DATA =
+endif
+
SUBDIRS = \
common \
metadata \
@@ -19,6 +33,8 @@ EXTRA_DIST = \
gvfs.doap \
README.commits \
MAINTAINERS \
+ mount-archive.desktop.in.in \
+ $(desktop_in_files) \
m4 \
$(NULL)
diff -up /dev/null gvfs-1.3.2/mount-archive.desktop.in.in
--- /dev/null 2009-07-13 16:21:55.049012465 -0400
+++ gvfs-1.3.2/mount-archive.desktop.in.in 2009-07-13 22:39:14.844931097 -0400
@@ -0,0 +1,13 @@
+[Desktop Entry]
+_Name=Archive Mounter
+Exec=@libexecdir@/gvfsd-archive file=%u
+X-Gnome-Vfs-System=gio
+MimeType=application/x-cd-image;application/x-bzip-compressed-tar;application/x-compressed-tar;application/x-tar;application/x-cpio;application/x-zip;application/zip;application/x-lzma-compressed-tar;application/x-xz-compressed-tar;
+Terminal=false
+StartupNotify=false
+Type=Application
+NoDisplay=true
+X-GNOME-Bugzilla-Bugzilla=GNOME
+X-GNOME-Bugzilla-Product=gvfs
+X-GNOME-Bugzilla-Component=archive-backend
+X-GNOME-Bugzilla-Version=@VERSION@
+277
View File
@@ -0,0 +1,277 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gvfs</Name>
<Homepage>http://www.gnome.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<License>GPLv3</License>
<IsA>library</IsA>
<Summary>New generation gnome-virtual-file-system</Summary>
<Description>GVFS is a userspace virtual filesystem designed to work with the I/O abstractions, especially HAL. It supports fuse for directly access for GVFS mounts. It installs several modules and backends that are automatically used by applications.</Description>
<Archive sha1sum="8ee4f62aabbe5cc5c2e368d35b737bb7af888093" type="tarxz">mirrors://gnome/gvfs/1.20/gvfs-1.20.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>gtk3-devel</Dependency>
<Dependency>fuse-devel</Dependency>
<Dependency>avahi-devel</Dependency>
<Dependency>gconf-devel</Dependency>
<Dependency>libmtp-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>automake</Dependency>
<Dependency>autoconf</Dependency>
<Dependency>itstool</Dependency>
<Dependency>autogen</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>util-macros</Dependency>
<Dependency>unifdef</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>m4</Dependency>
<Dependency>gcr-devel</Dependency>
<Dependency>udisks2-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>eudev-devel</Dependency>
<Dependency>libplist-devel</Dependency>
<Dependency>libproxy-devel</Dependency>
<Dependency>libbluray-devel</Dependency>
<Dependency>libsecret-devel</Dependency>
<Dependency>bluez-libs-devel</Dependency>
<Dependency>libarchive-devel</Dependency>
<Dependency>libgphoto2-devel</Dependency>
<Dependency>avahi-glib-devel</Dependency>
<Dependency>libcdio-paranoia-devel</Dependency>
<Dependency>libgnome-keyring-devel</Dependency>
<Dependency versionFrom="4.0.7">samba-devel</Dependency>
<Dependency versionFrom="0.90">libcdio-devel</Dependency>
<Dependency versionFrom="1.1.5">libimobiledevice-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">gvfs-archive-integration.patch</Patch>
</Patches>
</Source>
<Package>
<Name>gvfs-afc</Name>
<Summary>AFC(Apple File Control) backend for GVFS</Summary>
<RuntimeDependencies>
<Dependency>libplist</Dependency>
<Dependency release="current">gvfs</Dependency>
<Dependency versionFrom="1.1.5">libimobiledevice</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfs-afc-volume-monitor</Path>
<Path fileType="executable">/usr/libexec/gvfsd-afc</Path>
<Path fileType="data">/usr/share/gvfs/mounts/afc.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/afc.monitor</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.AfcVolumeMonitor.service</Path>
</Files>
</Package>
<Package>
<Name>gvfs-afp</Name>
<Summary>Apple Filing Protocol (AFP) backend for gvfs.</Summary>
<RuntimeDependencies>
<Dependency>libsecret</Dependency>
<Dependency>libgcrypt</Dependency>
<Dependency release="current">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/gvfs/gvfsd-afp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-afp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-afp-browse</Path>
<Path fileType="data">/usr/share/gvfs/mounts/afp-browse.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/afp.mount</Path>
</Files>
</Package>
<Package>
<Name>gvfs-archive</Name>
<Summary>Compression backend for GVFS</Summary>
<RuntimeDependencies>
<Dependency>libarchive</Dependency>
<Dependency release="current">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-archive</Path>
<Path fileType="data">/usr/share/gvfs/mounts/archive.mount</Path>
<Path fileType="data">/usr/share/applications/mount-archive.desktop</Path>
</Files>
</Package>
<Package>
<Name>gvfs-gphoto2</Name>
<Summary>Digital camera backend for GVFS</Summary>
<RuntimeDependencies>
<Dependency>libgphoto2</Dependency>
<Dependency release="current">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfs-gphoto2-volume-monitor</Path>
<Path fileType="executable">/usr/libexec/gvfsd-gphoto2</Path>
<Path fileType="data">/usr/share/gvfs/mounts/gphoto2.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/gphoto2.monitor</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.GPhoto2VolumeMonitor.service</Path>
</Files>
</Package>
<Package>
<Name>gvfs-fuse</Name>
<Summary>FUSE backend for GVFS</Summary>
<RuntimeDependencies>
<Dependency>fuse</Dependency>
<Dependency release="current">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-fuse</Path>
</Files>
</Package>
<Package>
<Name>gvfs-smb</Name>
<Summary>Samba backend for GVFS</Summary>
<RuntimeDependencies>
<Dependency release="current">gvfs</Dependency>
<Dependency versionFrom="4.0.7">samba</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-smb</Path>
<Path fileType="executable">/usr/libexec/gvfsd-smb-browse</Path>
<Path fileType="data">/usr/share/gvfs/mounts/smb.mount</Path>
<Path fileType="data">/usr/share/GConf/gsettings/gvfs-smb.convert</Path>
<Path fileType="data">/usr/share/gvfs/mounts/smb-browse.mount</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml</Path>
</Files>
</Package>
<Package>
<Name>gvfs-mtp</Name>
<Summary>MTP backend for gvfs.</Summary>
<RuntimeDependencies>
<Dependency>libmtp</Dependency>
<Dependency release="current">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-mtp</Path>
<Path fileType="executable">/usr/libexec/gvfs-mtp-volume-monitor</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-mtp</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.MTPVolumeMonitor.service</Path>
<Path fileType="data">/usr/share/gvfs/mounts/mtp.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/mtp.monitor</Path>
</Files>
</Package>
<!--Package>
<Name>gvfs-obexftp</Name>
<Summary>FTP backend for GVFS</Summary>
<RuntimeDependencies>
<Dependency>bluez</Dependency>
<Dependency>bluez-libs</Dependency>
<Dependency release="current">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-obexftp</Path>
<Path fileType="data">/usr/share/gvfs/mounts/obexftp.mount</Path>
</Files>
</Package-->
<Package>
<Name>gvfs</Name>
<Summary>gvfs package contains all GVFS backends and translations files</Summary>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>udisks2</Dependency>
<Dependency>libbluray</Dependency>
<Dependency>libsecret</Dependency>
<Dependency>avahi-libs</Dependency>
<Dependency>avahi-glib</Dependency>
<Dependency>eudev</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libgudev</Dependency>
<Dependency>libcdio-paranoia</Dependency>
<Dependency versionFrom="0.90">libcdio</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec/gvfsd-ftp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-metadata</Path>
<Path fileType="executable">/usr/libexec/gvfsd-computer</Path>
<Path fileType="executable">/usr/libexec/gvfsd</Path>
<Path fileType="executable">/usr/libexec/gvfsd-recent</Path>
<Path fileType="executable">/usr/libexec/gvfsd-sftp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-burn</Path>
<Path fileType="executable">/usr/libexec/gvfs-udisks2-volume-monitor</Path>
<Path fileType="executable">/usr/libexec/gvfsd-http</Path>
<Path fileType="executable">/usr/libexec/gvfsd-dav</Path>
<Path fileType="executable">/usr/libexec/gvfsd-network</Path>
<Path fileType="executable">/usr/libexec/gvfsd-cdda</Path>
<Path fileType="executable">/usr/libexec/gvfsd-dnssd</Path>
<Path fileType="executable">/usr/libexec/gvfsd-trash</Path>
<Path fileType="executable">/usr/libexec/gvfsd-localtest</Path>
<Path fileType="library">/usr/lib/gio/modules/libgioremote-volume-monitor.so</Path>
<Path fileType="library">/usr/lib/gio/modules/libgvfsdbus.so</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-archive</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-burn</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-cdda</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-computer</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-dav</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-dnssd</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-ftp</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-fuse</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-http</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-localtest</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-metadata</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-network</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-recent</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-sftp</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-trash</Path>
<Path fileType="library">/usr/lib/gvfs/libgvfsdaemon.so</Path>
<Path fileType="library">/usr/lib/gvfs/libgvfscommon.so</Path>
<Path fileType="library">/usr/lib/libgvfscommon.so</Path>
<Path fileType="library">/usr/lib/libgvfscommon.so.0</Path>
<Path fileType="library">/usr/lib/libgvfscommon.so.0.0.0</Path>
<Path fileType="library">/usr/lib/tmpfiles.d/gvfsd-fuse-tmpfiles.conf</Path>
<Path fileType="data">/usr/share/GConf/gsettings/gvfs-dns-sd.convert</Path>
<Path fileType="data">/usr/share/bash-completion/completions/gvfs</Path>
<Path fileType="data">/usr/share/dbus-1/services/gvfs-daemon.service</Path>
<Path fileType="data">/usr/share/dbus-1/services/gvfs-metadata.service</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.UDisks2VolumeMonitor.service</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.gnome.system.dns_sd.gschema.xml</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.gnome.system.gvfs.enums.xml</Path>
<Path fileType="data">/usr/share/gvfs/mounts/burn.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/cdda.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/computer.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/dav+sd.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/dav.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/dns-sd.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/ftp.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/http.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/localtest.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/network.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/recent.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/sftp.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/trash.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/udisks2.monitor</Path>
<Path fileType="localedata">/usr/share/locale/</Path>
<Path fileType="man">/usr/share/man/</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-02-03</Date>
<Version>1.20.2</Version>
<Comment>First Release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gvfs</Name>
<Summary xml:lang="tr">Yeni nesil GNOME sanal dosya sistemi</Summary>
<Description xml:lang="tr">GVFS I/O soyutlamaları, özellikle HAL, için geliştirilmiş, sistem tabanlı bir sanal dosya sistemidir. Doğrudan fuse ile birlikle kendi bağlamlarına erişmesini destekler. GVFS, birçok modül ve sitem servisini uygulamaların otomatik kullanması için yükler.</Description>
</Source>
<Package>
<Name>gvfs-common</Name>
<Summary xml:lang="tr">GVFS servisi için ortak dosyalar ve uygulamalar</Summary>
</Package>
<Package>
<Name>gvfs-fuse</Name>
<Summary xml:lang="tr">GVFS FUSE arkaucu</Summary>
</Package>
<Package>
<Name>gvfs-smb</Name>
<Summary xml:lang="tr">GVFS Samba arkaucu</Summary>
</Package>
<Package>
<Name>gvfs-archive</Name>
<Summary xml:lang="tr">GVFS sıkıştırma arkaucu</Summary>
</Package>
<Package>
<Name>gvfs-obexftp</Name>
<Summary xml:lang="tr">GVFS FTP arkaucu</Summary>
</Package>
<Package>
<Name>gvfs-gphoto2</Name>
<Summary xml:lang="tr">GVFS dijital kamera arkaucu</Summary>
</Package>
<Package>
<Name>gvfs-afc</Name>
<Summary xml:lang="tr">GVFS AFC (Apple Dosya Kontrolü) arkaucu</Summary>
</Package>
<Package>
<Name>gvfs</Name>
<Summary xml:lang="tr">gvfs paketi tüm GVFS arkauçlarını ve çeviri dosyalarını içerir</Summary>
</Package>
<Package>
<Name>gvfs-afp</Name>
<Summary xml:lang="en">Apple Filing Protocol (AFP) backend for gvfs.</Summary>
</Package>
<Package>
<Name>gvfs-goa</Name>
<Summary xml:lang="en">gvfs-goa - GNOME Online Accounts support for gvfs</Summary>
</Package>
<Package>
<Name>gvfs-mtp</Name>
<Summary xml:lang="en">MTP backend for gvfs.</Summary>
</Package>
</PISI>
+261
View File
@@ -34505,6 +34505,267 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>gvfs</Name>
<Homepage>http://www.gnome.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<License>GPLv3</License>
<IsA>library</IsA>
<PartOf>desktop.gnome.base</PartOf>
<Summary xml:lang="en">New generation gnome-virtual-file-system</Summary>
<Summary xml:lang="tr">Yeni nesil GNOME sanal dosya sistemi</Summary>
<Description xml:lang="en">GVFS is a userspace virtual filesystem designed to work with the I/O abstractions, especially HAL. It supports fuse for directly access for GVFS mounts. It installs several modules and backends that are automatically used by applications.</Description>
<Description xml:lang="tr">GVFS I/O soyutlamaları, özellikle HAL, için geliştirilmiş, sistem tabanlı bir sanal dosya sistemidir. Doğrudan fuse ile birlikle kendi bağlamlarına erişmesini destekler. GVFS, birçok modül ve sitem servisini uygulamaların otomatik kullanması için yükler.</Description>
<Archive type="tarxz" sha1sum="8ee4f62aabbe5cc5c2e368d35b737bb7af888093">mirrors://gnome/gvfs/1.20/gvfs-1.20.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>gtk3-devel</Dependency>
<Dependency>fuse-devel</Dependency>
<Dependency>avahi-devel</Dependency>
<Dependency>gconf-devel</Dependency>
<Dependency>libmtp-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>automake</Dependency>
<Dependency>autoconf</Dependency>
<Dependency>itstool</Dependency>
<Dependency>autogen</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>util-macros</Dependency>
<Dependency>unifdef</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>m4</Dependency>
<Dependency>gcr-devel</Dependency>
<Dependency>udisks2-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>eudev-devel</Dependency>
<Dependency>libplist-devel</Dependency>
<Dependency>libproxy-devel</Dependency>
<Dependency>libbluray-devel</Dependency>
<Dependency>libsecret-devel</Dependency>
<Dependency>bluez-libs-devel</Dependency>
<Dependency>libarchive-devel</Dependency>
<Dependency>libgphoto2-devel</Dependency>
<Dependency>avahi-glib-devel</Dependency>
<Dependency>libcdio-paranoia-devel</Dependency>
<Dependency>libgnome-keyring-devel</Dependency>
<Dependency versionFrom="4.0.7">samba-devel</Dependency>
<Dependency versionFrom="0.90">libcdio-devel</Dependency>
<Dependency versionFrom="1.1.5">libimobiledevice-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">gvfs-archive-integration.patch</Patch>
</Patches>
<SourceURI>desktop/gnome/base/gvfs/pspec.xml</SourceURI>
</Source>
<Package>
<Name>gvfs-afc</Name>
<Summary xml:lang="en">AFC(Apple File Control) backend for GVFS</Summary>
<Summary xml:lang="tr">GVFS AFC (Apple Dosya Kontrolü) arkaucu</Summary>
<RuntimeDependencies>
<Dependency>libplist</Dependency>
<Dependency release="1">gvfs</Dependency>
<Dependency versionFrom="1.1.5">libimobiledevice</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfs-afc-volume-monitor</Path>
<Path fileType="executable">/usr/libexec/gvfsd-afc</Path>
<Path fileType="data">/usr/share/gvfs/mounts/afc.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/afc.monitor</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.AfcVolumeMonitor.service</Path>
</Files>
</Package>
<Package>
<Name>gvfs-afp</Name>
<Summary xml:lang="en">Apple Filing Protocol (AFP) backend for gvfs.</Summary>
<RuntimeDependencies>
<Dependency>libsecret</Dependency>
<Dependency>libgcrypt</Dependency>
<Dependency release="1">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/gvfs/gvfsd-afp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-afp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-afp-browse</Path>
<Path fileType="data">/usr/share/gvfs/mounts/afp-browse.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/afp.mount</Path>
</Files>
</Package>
<Package>
<Name>gvfs-archive</Name>
<Summary xml:lang="en">Compression backend for GVFS</Summary>
<Summary xml:lang="tr">GVFS sıkıştırma arkaucu</Summary>
<RuntimeDependencies>
<Dependency>libarchive</Dependency>
<Dependency release="1">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-archive</Path>
<Path fileType="data">/usr/share/gvfs/mounts/archive.mount</Path>
<Path fileType="data">/usr/share/applications/mount-archive.desktop</Path>
</Files>
</Package>
<Package>
<Name>gvfs-gphoto2</Name>
<Summary xml:lang="en">Digital camera backend for GVFS</Summary>
<Summary xml:lang="tr">GVFS dijital kamera arkaucu</Summary>
<RuntimeDependencies>
<Dependency>libgphoto2</Dependency>
<Dependency release="1">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfs-gphoto2-volume-monitor</Path>
<Path fileType="executable">/usr/libexec/gvfsd-gphoto2</Path>
<Path fileType="data">/usr/share/gvfs/mounts/gphoto2.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/gphoto2.monitor</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.GPhoto2VolumeMonitor.service</Path>
</Files>
</Package>
<Package>
<Name>gvfs-fuse</Name>
<Summary xml:lang="en">FUSE backend for GVFS</Summary>
<Summary xml:lang="tr">GVFS FUSE arkaucu</Summary>
<RuntimeDependencies>
<Dependency>fuse</Dependency>
<Dependency release="1">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-fuse</Path>
</Files>
</Package>
<Package>
<Name>gvfs-smb</Name>
<Summary xml:lang="en">Samba backend for GVFS</Summary>
<Summary xml:lang="tr">GVFS Samba arkaucu</Summary>
<RuntimeDependencies>
<Dependency release="1">gvfs</Dependency>
<Dependency versionFrom="4.0.7">samba</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-smb</Path>
<Path fileType="executable">/usr/libexec/gvfsd-smb-browse</Path>
<Path fileType="data">/usr/share/gvfs/mounts/smb.mount</Path>
<Path fileType="data">/usr/share/GConf/gsettings/gvfs-smb.convert</Path>
<Path fileType="data">/usr/share/gvfs/mounts/smb-browse.mount</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml</Path>
</Files>
</Package>
<Package>
<Name>gvfs-mtp</Name>
<Summary xml:lang="en">MTP backend for gvfs.</Summary>
<RuntimeDependencies>
<Dependency>libmtp</Dependency>
<Dependency release="1">gvfs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/libexec/gvfsd-mtp</Path>
<Path fileType="executable">/usr/libexec/gvfs-mtp-volume-monitor</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-mtp</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.MTPVolumeMonitor.service</Path>
<Path fileType="data">/usr/share/gvfs/mounts/mtp.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/mtp.monitor</Path>
</Files>
</Package>
<Package>
<Name>gvfs</Name>
<Summary xml:lang="en">gvfs package contains all GVFS backends and translations files</Summary>
<Summary xml:lang="tr">gvfs paketi tüm GVFS arkauçlarını ve çeviri dosyalarını içerir</Summary>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>udisks2</Dependency>
<Dependency>libbluray</Dependency>
<Dependency>libsecret</Dependency>
<Dependency>avahi-libs</Dependency>
<Dependency>avahi-glib</Dependency>
<Dependency>eudev</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libgudev</Dependency>
<Dependency>libcdio-paranoia</Dependency>
<Dependency versionFrom="0.90">libcdio</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec/gvfsd-ftp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-metadata</Path>
<Path fileType="executable">/usr/libexec/gvfsd-computer</Path>
<Path fileType="executable">/usr/libexec/gvfsd</Path>
<Path fileType="executable">/usr/libexec/gvfsd-recent</Path>
<Path fileType="executable">/usr/libexec/gvfsd-sftp</Path>
<Path fileType="executable">/usr/libexec/gvfsd-burn</Path>
<Path fileType="executable">/usr/libexec/gvfs-udisks2-volume-monitor</Path>
<Path fileType="executable">/usr/libexec/gvfsd-http</Path>
<Path fileType="executable">/usr/libexec/gvfsd-dav</Path>
<Path fileType="executable">/usr/libexec/gvfsd-network</Path>
<Path fileType="executable">/usr/libexec/gvfsd-cdda</Path>
<Path fileType="executable">/usr/libexec/gvfsd-dnssd</Path>
<Path fileType="executable">/usr/libexec/gvfsd-trash</Path>
<Path fileType="executable">/usr/libexec/gvfsd-localtest</Path>
<Path fileType="library">/usr/lib/gio/modules/libgioremote-volume-monitor.so</Path>
<Path fileType="library">/usr/lib/gio/modules/libgvfsdbus.so</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-archive</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-burn</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-cdda</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-computer</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-dav</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-dnssd</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-ftp</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-fuse</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-http</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-localtest</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-metadata</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-network</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-recent</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-sftp</Path>
<Path fileType="library">/usr/lib/gvfs/gvfsd-trash</Path>
<Path fileType="library">/usr/lib/gvfs/libgvfsdaemon.so</Path>
<Path fileType="library">/usr/lib/gvfs/libgvfscommon.so</Path>
<Path fileType="library">/usr/lib/libgvfscommon.so</Path>
<Path fileType="library">/usr/lib/libgvfscommon.so.0</Path>
<Path fileType="library">/usr/lib/libgvfscommon.so.0.0.0</Path>
<Path fileType="library">/usr/lib/tmpfiles.d/gvfsd-fuse-tmpfiles.conf</Path>
<Path fileType="data">/usr/share/GConf/gsettings/gvfs-dns-sd.convert</Path>
<Path fileType="data">/usr/share/bash-completion/completions/gvfs</Path>
<Path fileType="data">/usr/share/dbus-1/services/gvfs-daemon.service</Path>
<Path fileType="data">/usr/share/dbus-1/services/gvfs-metadata.service</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.gtk.Private.UDisks2VolumeMonitor.service</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.gnome.system.dns_sd.gschema.xml</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.gnome.system.gvfs.enums.xml</Path>
<Path fileType="data">/usr/share/gvfs/mounts/burn.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/cdda.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/computer.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/dav+sd.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/dav.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/dns-sd.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/ftp.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/http.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/localtest.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/network.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/recent.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/sftp.mount</Path>
<Path fileType="data">/usr/share/gvfs/mounts/trash.mount</Path>
<Path fileType="data">/usr/share/gvfs/remote-volume-monitors/udisks2.monitor</Path>
<Path fileType="localedata">/usr/share/locale/</Path>
<Path fileType="man">/usr/share/man/</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-02-03</Date>
<Version>1.20.2</Version>
<Comment>First Release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>accountsservice</Name>
+1 -1
View File
@@ -1 +1 @@
e01e84e415726e76ebaea7bab81c975ac7b49fb2
a8effc1e016d758d42de996fe271cb025ca18e50
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
21c1789b894ad7bd4aca5455c37c85b35db26488
0db22b61afe32e2590a0e9e9a466c54d77511ae9