new packages: dtc, glusterfs, libiscsi for qemu
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#!/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.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
shelltools.system("meson --prefix=/usr ..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("ninja")
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("GPL", "README*")
|
||||
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dtc</Name>
|
||||
<Homepage>https://github.com/telegramdesktop/dtc</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Device Tree Compiler</Summary>
|
||||
<Description>Device Tree Compiler</Description>
|
||||
<Archive sha1sum="6273fa9cdd51e7fd83d0467e21c788e3a5d3cd5d" type="tarxz">https://mirrors.edge.kernel.org/pub/software/utils/dtc/dtc-1.6.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>swig</Dependency>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>libyaml-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>valgrind-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>dtc</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libyaml</Dependency>
|
||||
<Dependency>valgrind</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libfdt.so*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/python3.9/site-packages</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>dtc-devel</Name>
|
||||
<Summary>Development files for dtc</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">dtc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-02-05</Date>
|
||||
<Version>1.6.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dtc</Name>
|
||||
<Summary xml:lang="tr">Cihaz Ağacı Derleyicisi</Summary>
|
||||
<Description xml:lang="tr">Cihaz Ağacı Derleyicisi</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>dtc-devel</Name>
|
||||
<Summary xml:lang="tr">dtc için geliştirme başlıkları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,38 @@
|
||||
#!/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():
|
||||
autotools.autoreconf("-fi")
|
||||
shelltools.system("NOCONFIGURE=1 ./autogen.sh")
|
||||
autotools.configure("--disable-static \
|
||||
--sbindir=/usr/bin \
|
||||
--with-mountutildir=/usr/bin \
|
||||
--prefix=/usr \
|
||||
--without-selinux \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/share/man \
|
||||
--libexecdir=/usr/lib \
|
||||
--with-tmpfilesdir=/usr/lib/tmpfiles.d \
|
||||
--enable-gnfs")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("AUTHORS", "COPYING*", "README*")
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>glusterfs</Name>
|
||||
<Homepage>https://www.gluster.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>a cluster file-system capable of scaling to several peta-bytes.</Summary>
|
||||
<Description>Gluster is a scalable network filesystem. Using common off-the-shelf hardware, you can create large, distributed storage solutions for media streaming, data analysis, and other data- and bandwidth-intensive tasks. Gluster is free.</Description>
|
||||
<Archive sha1sum="c347fcbff893dc789da21013a1a0b0be4f6e9a69" type="targz">https://github.com/gluster/glusterfs/archive/refs/tags/v10.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>acl-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>fuse-devel</Dependency>
|
||||
<Dependency>attr-devel</Dependency>
|
||||
<Dependency>gperftools</Dependency>
|
||||
<Dependency>spice-devel</Dependency>
|
||||
<Dependency>libaio-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>liburcu-devel</Dependency>
|
||||
<Dependency>libtirpc-devel</Dependency>
|
||||
<Dependency>liburing-devel</Dependency>
|
||||
<Dependency>readline-devel</Dependency>
|
||||
<Dependency>spice-protocol</Dependency>
|
||||
<Dependency>rpcsvc-proto-devel</Dependency>
|
||||
<Dependency>libutil-linux-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>glusterfs</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>acl</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>attr</Dependency>
|
||||
<Dependency>libaio</Dependency>
|
||||
<Dependency>liburcu</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>libtirpc</Dependency>
|
||||
<Dependency>liburing</Dependency>
|
||||
<Dependency>gperftools</Dependency>
|
||||
<Dependency>libutil-linux</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/var/lib/glusterd</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/glusterfs</Path>
|
||||
<Path fileType="config">/etc/glusterfs</Path>
|
||||
<Path fileType="data">/var/log</Path>
|
||||
<Path fileType="data">/etc/ganesha/ganesha-ha.conf.sample</Path>
|
||||
<Path fileType="data">/var/run/gluster</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>glusterfs-devel</Name>
|
||||
<Summary>Development files for glusterfs</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libutil-linux-devel</Dependency>
|
||||
<Dependency release="current">glusterfs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-02-05</Date>
|
||||
<Version>10.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>glusterfs</Name>
|
||||
<Summary xml:lang="tr">GlusterFS, güçlü bir ağ/küme dosya sistemidir.</Summary>
|
||||
<Description xml:lang="tr">Gluster, ölçeklenebilir bir ağ dosya sistemidir. Yaygın kullanıma hazır donanımı kullanarak medya akışı, veri analizi ve diğer veri ve bant genişliği yoğun görevler için büyük, dağıtılmış depolama çözümleri oluşturabilirsiniz. Gluster ücretsizdir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>glusterfs-devel</Name>
|
||||
<Summary xml:lang="tr">glusterfs için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user