gvfs ver. bump fuse3

This commit is contained in:
Rmys
2020-06-24 18:18:01 +03:00
parent 48db9851ea
commit 40b8d5fc9d
10 changed files with 299 additions and 28 deletions
+35
View File
@@ -0,0 +1,35 @@
#!/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 shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
mesontools.configure("-Dexamples=false")
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.removeDir("/dev")
pisitools.removeDir("/etc")
# Make compat symlinks into /usr/bin
pisitools.dosym("/usr/bin/fusermount3", "/bin/fusermount3")
pisitools.dosym("/usr/sbin/mount.fuse3", "/sbin/mount.fuse3")
pisitools.dosym("/usr/lib/libfuse3.so", "/lib/libfuse3.so")
pisitools.dosym("/usr/lib/libfuse3.so", "/lib/libfuse3.so.3")
pisitools.dosym("/usr/lib/libfuse3.so", "/lib/libfuse3.so.3.9.2")
# Move pkgconfig file to /usr/lib
#pisitools.domove("/lib/pkgconfig", "/usr/lib/")
pisitools.dodoc("AUTHORS", "ChangeLog*", "README*")
+65
View File
@@ -0,0 +1,65 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>fuse3</Name>
<Homepage>http://fuse.sourceforge.net</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>An interface for filesystems implemented in userspace</Summary>
<Description>fuse is a backend allowing regular users to (un)mount filesystems for their own use.</Description>
<Archive sha1sum="b1ca11c790716ed0271cedcbb99dd945d322facd" type="tarxz">https://github.com/libfuse/libfuse/releases/download/fuse-3.9.2/fuse-3.9.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>eudev-devel</Dependency>
<Dependency>gettext-devel</Dependency>
</BuildDependencies>
<Patches>
</Patches>
</Source>
<Package>
<Name>fuse3</Name>
<RuntimeDependencies>
<Dependency>glibc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/bin</Path>
<Path fileType="executable">/sbin</Path>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/lib</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>fuse3-devel</Name>
<PartOf>system.devel</PartOf>
<Summary>Development files for fuse3</Summary>
<RuntimeDependencies>
<Dependency release="current">fuse3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-06-24</Date>
<Version>3.9.2</Version>
<Comment>First release</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
</History>
</PISI>
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>fuse3</Name>
<Summary xml:lang="tr">Kullanıcı düzeyinde dosya sistemi oluştumaya yarayan kitaplık</Summary>
<Description xml:lang="tr">FUSE, kullanıcıların kendileri için dosya sistemleri oluşturmasına, bağlamasına ve bağı koparmasına imkân veren bir arkauç kitaplıktır.</Description>
<Summary xml:lang="fr">Interface implémentée dans l'environnement utilisateur (userpace) pour les systèmes de fichier.</Summary>
<Summary xml:lang="es">Una interfaz para sistemas de archivos implementados en el espacio de usuario</Summary>
</Source>
<Package>
<Name>fuse3-devel</Name>
<Summary xml:lang="tr">fuse3 için geliştirme dosyaları</Summary>
</Package>
</PISI>