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>
|
||||
@@ -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 shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
|
||||
|
||||
def build():
|
||||
cmaketools.make("-C build")
|
||||
|
||||
def install():
|
||||
pisitools.dodoc("README.md", "LICENSE")
|
||||
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>kdiskmark</Name>
|
||||
<Homepage>https://www.kdiskmark.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPL3</License>
|
||||
<Icon>kdiskmark</Icon>
|
||||
<Summary>A simple open-source disk benchmark tool for Linux distros</Summary>
|
||||
<Description>KDiskMark is an HDD and SSD benchmark tool with a very friendly graphical user interface. KDiskMark with its presets and powerful GUI calls Flexible I/O Tester and handles the output to provide an easy to view and interpret comprehensive benchmark result.</Description>
|
||||
<Archive type="targz" sha1sum="e03fd6f0053b55e45dabdba7ffe47347c51a6df6">https://github.com/JonMagon/KDiskMark/releases/download/3.1.4/KDiskMark-3.1.4-source.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gcc</Dependency>
|
||||
<Dependency>fio</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>libaio-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>polkit-qt-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>kdiskmark</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fio</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>polkit-qt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="config">/usr/share/dbus-1</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/kdiskmark</Path>
|
||||
<Path fileType="data">/usr/share/polkit-1</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2024-02-25</Date>
|
||||
<Version>3.1.4</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>kdiskmark</Name>
|
||||
<Summary xml:lang="tr">Linux dağıtımları için basit bir açık kaynaklı disk kıyaslama aracı</Summary>
|
||||
<Description xml:lang="tr">KDiskMark, son derece kullanıcı dostu bir grafik kullanıcı arayüzüne sahip bir HDD ve SSD kıyaslama aracıdır. Ön ayarları ve güçlü GUI'si ile KDiskMark, Esnek I/O Test Cihazını çağırır ve kapsamlı bir kıyaslama sonucunun görüntülenmesi ve yorumlanması kolay sağlamak için çıktıyı yönetir.</Description>
|
||||
<Description xml:lang="fr">KDiskMark est un outil de référence pour disques durs et SSD doté d'une interface utilisateur graphique très conviviale. KDiskMark, avec ses préréglages et son interface graphique puissante, appelle Flexible I/O Tester et gère la sortie pour fournir un résultat de référence complet facile à visualiser et à interpréter.</Description>
|
||||
<Description xml:lang="es">KDiskMark es una herramienta de evaluación comparativa de HDD y SSD con una interfaz gráfica de usuario muy amigable. KDiskMark con sus ajustes preestablecidos y su potente GUI llama a Flexible I/O Tester y maneja la salida para proporcionar un resultado de referencia integral fácil de ver e interpretar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user