new packages: kdiskmark, fio
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
#!/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 get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("fio-fio-3.36")
|
||||
shelltools.cd("fio-fio-3.36")
|
||||
shelltools.system("../configure \
|
||||
--prefix=/usr \
|
||||
--disable-native --enable-gfio")
|
||||
|
||||
def build():
|
||||
shelltools.cd("fio-fio-3.36")
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("fio-fio-3.36")
|
||||
autotools.install("BINDIR=%(install)s/usr/bin \
|
||||
CONFDIR=%(install)s/etc \
|
||||
MANDIR=%(install)s/usr/share/man/man1" % { "install": get.installDIR()})
|
||||
# pisitools.dodoc("COPYING", "README.rst")
|
||||
@@ -0,0 +1,60 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fio</Name>
|
||||
<Homepage>https://github.com/axboe/fio</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL2</License>
|
||||
<Icon>fio</Icon>
|
||||
<Summary>Flexible I/O Tester</Summary>
|
||||
<Description>Scriptable I/O tool for storage benchmarks and drive testing</Description>
|
||||
<Archive type="targz" sha1sum="f3b2b66699751af54e790177109da6385cc99003">https://github.com/axboe/fio/archive/refs/tags/fio-3.36.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libaio-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>numactl-devel</Dependency>
|
||||
<Dependency>glusterfs-devel</Dependency>
|
||||
<Dependency>gperftools-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fio</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libaio</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>numactl</Dependency>
|
||||
<Dependency>glusterfs</Dependency>
|
||||
<Dependency>gperftools</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/fio</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2024-02-25</Date>
|
||||
<Version>3.36</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fio</Name>
|
||||
<Summary xml:lang="tr">Esnek G/Ç Test Cihazı</Summary>
|
||||
<Description xml:lang="tr">Depolama kıyaslamaları ve sürücü testleri için komut dosyası oluşturulabilen G/Ç aracı</Description>
|
||||
<Description xml:lang="fr">Outil d'E/S scriptable pour les tests de stockage et les tests de lecteur</Description>
|
||||
<Description xml:lang="es">Herramienta de E/S programable para pruebas comparativas de almacenamiento y pruebas de unidades</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user